:root {
  --ink: #18221f;
  --muted: #5d6761;
  --green: #12362f;
  --green-2: #0f4a3f;
  --sage: #dfe9df;
  --paper: #fff9ef;
  --cream: #f5ead9;
  --terracotta: #b9543d;
  --gold: #e4aa42;
  --blue: #315c70;
  --line: rgba(24, 34, 31, 0.14);
  --shadow: 0 22px 60px rgba(19, 35, 31, 0.16);
  --shadow-soft: 0 12px 34px rgba(19, 35, 31, 0.1);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(228, 170, 66, 0.95);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--gold);
  color: #1b1711;
  padding: 10px 14px;
  border-radius: 4px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  background: rgba(255, 249, 239, 0.9);
  border-bottom: 1px solid rgba(18, 54, 47, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 249, 239, 0.98);
  box-shadow: 0 8px 28px rgba(18, 54, 47, 0.1);
}

.header-inner {
  width: min(1180px, calc(100% - 28px));
  min-height: var(--header-height);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 1.02rem;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.2;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.primary-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #31403b;
  font-weight: 700;
  font-size: 0.92rem;
  transition: background 160ms ease, color 160ms ease;
}

.primary-nav a:hover {
  background: rgba(18, 54, 47, 0.08);
  color: var(--green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-link {
  font-weight: 800;
  color: var(--green);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--green);
  border-radius: 99px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 40px;
  padding: 10px 15px;
  font-size: 0.9rem;
}

.button-dark {
  background: var(--green);
  color: #fffdf8;
  box-shadow: 0 10px 24px rgba(18, 54, 47, 0.18);
}

.button-dark:hover {
  background: var(--green-2);
}

.button-accent {
  background: var(--gold);
  color: #1f190d;
  box-shadow: 0 16px 34px rgba(228, 170, 66, 0.26);
}

.button-accent:hover {
  background: #efbb59;
}

.button-ghost {
  color: #fffdf8;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.section-band-dark {
  color: #fffdf8;
  background:
    linear-gradient(90deg, rgba(18, 54, 47, 0.98), rgba(18, 54, 47, 0.9)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 18px
    );
}

.hero {
  position: relative;
  min-height: 76vh;
  display: flex;
  align-items: center;
  padding: 44px 0 28px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -92px;
  height: 220px;
  pointer-events: none;
  background: url("assets/botanical-bridge-light.png") center bottom / min(1600px, 136vw) auto no-repeat;
  opacity: 0.66;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.78fr);
  gap: 52px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--terracotta);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.section-band-dark .eyebrow,
.section-band-green .eyebrow {
  color: var(--gold);
}

.hero h1,
.section-heading h2,
.consult-card h2,
.location-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: 3.75rem;
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: 1.13rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 0;
}

.hero-facts div {
  min-height: 78px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.hero-facts dt {
  margin: 0 0 8px;
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: #fffdf8;
  font-weight: 900;
}

.hero-media {
  position: relative;
  align-self: center;
  height: 490px;
  min-height: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  align-items: center;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 249, 239, 0.94);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(14, 21, 19, 0.18);
}

.hero-note strong {
  line-height: 1.1;
}

.hero-note span:last-child {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.88rem;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2fa66a;
  box-shadow: 0 0 0 6px rgba(47, 166, 106, 0.15);
}

.quick-actions {
  position: relative;
  z-index: 2;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.quick-actions::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -88px;
  height: 164px;
  pointer-events: none;
  background: url("assets/botanical-bridge-green.png") center top / min(1600px, 136vw) auto no-repeat;
  opacity: 0.44;
}

.quick-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.quick-grid a {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 18px 22px;
  background: #fffdf8;
  transition: background 160ms ease, color 160ms ease;
}

.quick-grid a:hover {
  background: var(--sage);
  color: var(--green);
}

.quick-grid span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-grid strong {
  font-size: 1.05rem;
}

.section {
  padding: 96px 0;
}

.section-band-light {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.section-band-green {
  position: relative;
  overflow: hidden;
  background: var(--green);
  color: #fffdf8;
}

.section-band-light::before,
.section-band-green::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background: url("assets/leaf-corner-real.png") center / contain no-repeat;
}

.section-band-light::before {
  width: 300px;
  height: 300px;
  left: max(12px, calc((100vw - 1120px) / 2 - 108px));
  top: 28px;
  opacity: 0.3;
}

.section-band-green::after {
  width: 380px;
  height: 380px;
  right: max(-50px, calc((100vw - 1120px) / 2 - 142px));
  bottom: -64px;
  opacity: 0.22;
  filter: brightness(1.35) saturate(0.86);
}

.section-band-light > .container,
.section-band-green > .container {
  position: relative;
  z-index: 1;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.section-heading {
  max-width: 620px;
}

.section-heading.narrow {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.consult-card h2,
.location-copy h2 {
  font-size: 3rem;
}

.section-heading p:not(.eyebrow),
.consult-card > p,
.location-copy > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-band-green .location-copy > p {
  color: rgba(255, 253, 248, 0.78);
}

.rhythm-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.rhythm-card,
.option-card,
.fact-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fffdf8;
  box-shadow: var(--shadow-soft);
}

.rhythm-card::after,
.option-card::after,
.fact-tile::after {
  content: "";
  position: absolute;
  width: 154px;
  height: 154px;
  right: -56px;
  bottom: -64px;
  pointer-events: none;
  background: url("assets/leaf-corner-real.png") center / contain no-repeat;
  opacity: 0.13;
  transform: rotate(-18deg);
}

.rhythm-card > *,
.option-card > *,
.fact-tile > * {
  position: relative;
  z-index: 1;
}

.rhythm-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.rhythm-card span {
  color: var(--terracotta);
  font-weight: 950;
}

.rhythm-card h3,
.option-card h3 {
  margin: auto 0 12px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.rhythm-card p,
.option-card p,
.fact-tile p {
  margin: 0;
  color: var(--muted);
}

.menu-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff9ef 0%, #fff9ef 58%, #f5ead9 58%, #f5ead9 100%);
}

.menu-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 160px;
  pointer-events: none;
  background: url("assets/botanical-bridge-green.png") center top / min(1600px, 136vw) auto no-repeat;
  opacity: 0.23;
}

.menu-section > .container {
  position: relative;
  z-index: 1;
}

.option-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 20px;
  align-items: stretch;
  margin-top: 42px;
}

.feature-photo {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 34, 31, 0) 42%, rgba(24, 34, 31, 0.78) 100%);
}

.feature-photo div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  color: #fffdf8;
}

.feature-photo span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.feature-photo strong {
  display: block;
  max-width: 340px;
  font-size: 1.55rem;
  line-height: 1.12;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.option-card {
  min-height: 258px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.option-card h3 {
  margin-top: 0;
}

.text-button {
  align-self: flex-start;
  margin-top: auto;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 2px solid currentColor;
  background: transparent;
  color: var(--terracotta);
  font-weight: 900;
}

.text-button:hover {
  color: var(--green);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 1.16fr);
  gap: 36px;
  align-items: center;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}

.contact-list div {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.contact-list span {
  color: rgba(255, 253, 248, 0.66);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-list strong {
  line-height: 1.25;
}

.contact-list a,
.copy-button {
  justify-self: start;
  margin-top: 6px;
  border: 0;
  border-bottom: 2px solid currentColor;
  background: transparent;
  color: var(--gold);
  padding: 0 0 3px;
  font-weight: 900;
}

.map-panel {
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #d7ded9;
}

.map-panel iframe {
  width: 100%;
  height: 520px;
  border: 0;
  display: block;
  filter: saturate(0.82) contrast(1.04);
}

.consult-section {
  background: var(--paper);
}

.consult-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.consult-photo {
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.consult-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consult-card {
  padding: 0;
}

.wa-form {
  display: grid;
  gap: 11px;
  margin-top: 28px;
}

.wa-form label {
  color: #2f3d38;
  font-weight: 850;
}

.wa-form input,
.wa-form select,
.wa-form textarea {
  width: 100%;
  border: 1px solid rgba(24, 34, 31, 0.18);
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--ink);
  padding: 13px 14px;
  resize: vertical;
}

.wa-form input:focus,
.wa-form select:focus,
.wa-form textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(18, 54, 47, 0.14);
}

.wa-form .button {
  margin-top: 8px;
  justify-self: start;
}

.facts-section {
  padding-top: 0;
  background: var(--paper);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.fact-tile {
  min-height: 184px;
  padding: 24px;
}

.fact-tile span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fact-tile strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.35rem;
  line-height: 1.12;
}

.faq-section {
  background: #fffdf8;
  border-top: 1px solid var(--line);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 46px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

.faq-list summary::marker {
  color: var(--terracotta);
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.site-footer {
  background: #101916;
  color: #fffdf8;
  padding: 44px 0 96px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) auto minmax(220px, 0.8fr);
  gap: 30px;
  align-items: start;
}

.footer-brand .brand-mark {
  background: var(--gold);
  color: #1f190d;
}

.footer-brand small,
.site-footer p,
.footer-meta {
  color: rgba(255, 253, 248, 0.68);
}

.site-footer p {
  max-width: 410px;
  margin: 16px 0 0;
}

.site-footer nav {
  display: grid;
  gap: 10px;
}

.site-footer nav a {
  color: #fffdf8;
  font-weight: 850;
}

.site-footer nav a:hover {
  color: var(--gold);
}

.footer-meta {
  display: grid;
  gap: 8px;
  font-size: 0.86rem;
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 60;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(18, 54, 47, 0.12);
  border-radius: 999px;
  background: rgba(255, 249, 239, 0.96);
  box-shadow: 0 16px 36px rgba(14, 21, 19, 0.18);
  backdrop-filter: blur(16px);
}

.mobile-cta a {
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--green);
  font-weight: 900;
}

.mobile-cta a:nth-child(2) {
  background: var(--green);
  color: #fffdf8;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 70px;
  }

  .header-inner {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 0;
    padding: 14px 16px 20px;
    background: rgba(255, 249, 239, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(18, 54, 47, 0.12);
  }

  .nav-open .primary-nav {
    display: grid;
  }

  .primary-nav a {
    border-radius: var(--radius);
    padding: 14px;
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 58px 0 38px;
  }

  .hero-grid,
  .split-layout,
  .location-grid,
  .consult-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .hero-media,
  .hero-media img,
  .consult-photo {
    min-height: 440px;
  }

  .hero-media {
    height: auto;
  }

  .rhythm-grid,
  .facts-grid {
    grid-template-columns: 1fr;
  }

  .rhythm-card {
    min-height: 220px;
  }

  .option-layout {
    grid-template-columns: 1fr;
  }

  .feature-photo {
    min-height: 380px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 82px;
  }

  .container {
    width: min(100% - 24px, 1120px);
  }

  .brand strong {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand small {
    font-size: 0.74rem;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: 2.48rem;
    line-height: 1.03;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-facts,
  .quick-grid,
  .option-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    min-height: auto;
  }

  .quick-grid a {
    min-height: 86px;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading.narrow {
    text-align: left;
  }

  .section-heading h2,
  .consult-card h2,
  .location-copy h2 {
    font-size: 2.18rem;
    line-height: 1.04;
  }

  .feature-photo,
  .hero-media,
  .hero-media img,
  .consult-photo {
    min-height: 340px;
  }

  .hero-media {
    height: auto;
  }

  .option-card,
  .rhythm-card,
  .fact-tile {
    min-height: auto;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 380px;
    height: 380px;
  }

  .mobile-cta {
    display: grid;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero h1 {
    font-size: 2.12rem;
  }

  .section-heading h2,
  .consult-card h2,
  .location-copy h2 {
    font-size: 1.92rem;
  }

  .hero-note {
    position: static;
    margin-top: -4px;
    border-radius: 0 0 var(--radius) var(--radius);
  }
}
