/* ==========================================================================
   Mona Medical — site.css (v2, photography-led)
   Brand: cream #FBF9F4 · deep teal #24404C · brass #7C6230
   Type:  Playfair Display (headings) · Manrope (body)
   ========================================================================== */

:root {
  --cream: #FBF9F4;
  --sand: #F3EDE1;
  --sand-deep: #E7DEC9;
  --teal: #24404C;
  --teal-2: #3B5A67;
  --teal-deep: #1B323C;
  --teal-mist: #E2EAEB;
  --brass: #7C6230;
  --brass-2: #A88A4E;
  --brass-tint: #EFE6D2;
  --white: #FFFFFF;

  --serif: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;

  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section: clamp(4rem, 9vw, 7.5rem);
  --radius: 4px;
  --radius-lg: 10px;
  --hairline: 1px solid rgba(124, 98, 48, .28);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --shadow: 0 30px 60px -30px rgba(27, 50, 60, .35);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--cream); color: var(--teal); font-family: var(--sans); font-weight: 300; font-size: 1.0625rem; line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg { max-width: 100%; display: block; }
figure { margin: 0; }
a { color: inherit; text-decoration-color: var(--brass-2); text-underline-offset: .22em; text-decoration-thickness: 1px; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }
strong { font-weight: 500; }
ul, ol { padding-left: 1.2em; }
hr { border: 0; border-top: var(--hairline); margin: 0; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.08; letter-spacing: -.005em; margin: 0 0 .55em; color: var(--teal); }
h1 { font-size: clamp(2.7rem, 6.2vw, 5.4rem); line-height: 1.02; }
h2 { font-size: clamp(2rem, 3.8vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2.1vw, 1.7rem); line-height: 1.2; }
h4 { font-size: 1.15rem; font-family: var(--sans); font-weight: 500; margin: 0 0 .5em; line-height: 1.35; }
p { margin: 0 0 1.1em; max-width: 64ch; }
.lead { font-size: clamp(1.15rem, 1.6vw, 1.35rem); line-height: 1.5; color: var(--teal-2); max-width: 56ch; }
.small { font-size: .9rem; color: var(--teal-2); }
.measure { max-width: 62ch; }

/* ---------- Layout ---------- */
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.section { padding-block: var(--section); }
.section-tight { padding-block: calc(var(--section) * .6); }
.band-sand { background: var(--sand); }
.band-teal { background: var(--teal); color: var(--cream); }
.band-teal h1, .band-teal h2, .band-teal h3 { color: var(--cream); }
.band-teal .lead, .band-teal .small { color: rgba(251, 249, 244, .78); }
.band-teal a { text-decoration-color: rgba(168, 138, 78, .8); }
.band-mist { background: var(--teal-mist); }
.grid { display: grid; gap: clamp(1.5rem, 4vw, 3.5rem); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.split { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.split-content { grid-template-columns: minmax(0, 8fr) minmax(0, 4fr); }
.sticky { position: sticky; top: 6.5rem; }
.section-head { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(1rem, 4vw, 4rem); align-items: end; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head h2, .section-head p { margin-bottom: 0; }
.section-head p { color: var(--teal-2); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: .55rem; padding: .95rem 1.6rem; border-radius: var(--radius); font-family: var(--sans); font-weight: 500; font-size: .95rem; letter-spacing: .01em; text-decoration: none; line-height: 1; border: 1px solid transparent; transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease); cursor: pointer; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brass); color: var(--cream); border-color: var(--brass); }
.btn-primary:hover { background: #6A5227; border-color: #6A5227; }
.btn-teal { background: var(--teal); color: var(--cream); border-color: var(--teal); }
.btn-teal:hover { background: var(--teal-deep); }
.btn-ghost { background: transparent; color: var(--teal); border-color: rgba(36, 64, 76, .35); }
.btn-ghost:hover { border-color: var(--teal); background: rgba(36, 64, 76, .04); }
.btn-light { background: transparent; color: var(--cream); border-color: rgba(251, 249, 244, .55); }
.btn-light:hover { background: rgba(251, 249, 244, .1); border-color: var(--cream); }
.band-teal .btn-ghost, .cta-band .btn-ghost { color: var(--cream); border-color: rgba(251, 249, 244, .45); }
.band-teal .btn-ghost:hover, .cta-band .btn-ghost:hover { border-color: var(--cream); background: rgba(251, 249, 244, .08); }
.cta-row { display: flex; flex-wrap: wrap; gap: .75rem 1rem; margin-top: 1.75rem; }
.text-link { font-weight: 500; text-decoration: none; border-bottom: 1px solid var(--brass-2); padding-bottom: .1em; transition: border-color .2s; }
.text-link:hover { border-color: var(--teal); }

/* ---------- Header ---------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding-block: 1.1rem; background: transparent; border-bottom: 1px solid transparent; transition: background-color .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease), color .4s var(--ease); color: var(--cream); }
.site-header.is-scrolled { background: rgba(251, 249, 244, .92); border-bottom-color: rgba(124, 98, 48, .18); padding-block: .6rem; color: var(--teal); backdrop-filter: saturate(140%) blur(10px); -webkit-backdrop-filter: saturate(140%) blur(10px); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand-mark { width: 46px; height: 46px; object-fit: contain; transition: width .35s var(--ease), height .35s var(--ease), filter .4s; filter: brightness(0) invert(1); }
.is-scrolled .brand-mark { width: 36px; height: 36px; filter: none; }
.brand-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; letter-spacing: .01em; color: inherit; white-space: nowrap; }
.nav { margin-left: auto; }
.nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: clamp(1rem, 2vw, 1.75rem); }
.nav a { text-decoration: none; font-weight: 500; font-size: .92rem; color: inherit; opacity: .88; position: relative; padding: .35rem 0; letter-spacing: .01em; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { opacity: 1; }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-phone { text-decoration: none; font-weight: 500; font-size: .92rem; color: inherit; opacity: .9; }
.site-header .btn-primary { padding: .8rem 1.25rem; }
.nav-toggle { display: none; background: none; border: 1px solid currentColor; border-radius: var(--radius); padding: .6rem .9rem; font: inherit; font-weight: 500; color: inherit; cursor: pointer; }

/* ---------- Hero (full-bleed photo) ---------- */
.hero { position: relative; min-height: 92vh; display: grid; align-items: end; color: var(--cream); overflow: hidden; background: var(--teal-deep); }
.hero-page { min-height: 64vh; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media .slide { opacity: 0; transition: opacity 1.8s var(--ease); }
.hero-media .slide.is-active { opacity: 1; animation: kenburns 16s ease-in-out both; }
.hero-media .single { animation: kenburns 24s ease-in-out both; }
@keyframes kenburns { from { transform: scale(1.02) translateY(0); } to { transform: scale(1.1) translateY(-1.5%); } }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(27, 50, 60, .35) 0%, rgba(27, 50, 60, .05) 35%, rgba(27, 50, 60, .55) 70%, rgba(27, 50, 60, .85) 100%); }
.hero-content { position: relative; padding-block: clamp(3rem, 8vw, 6rem) clamp(3rem, 7vw, 5.5rem); }
.hero h1 { color: var(--cream); max-width: 14ch; margin-bottom: 1.1rem; text-shadow: 0 2px 30px rgba(0, 0, 0, .2); }
.hero .lead { color: rgba(251, 249, 244, .9); max-width: 52ch; }
.hero .crumbs { color: rgba(251, 249, 244, .75); }
.hero-contact { color: rgba(251, 249, 244, .8); font-size: .95rem; margin-top: 1.5rem; }
.hero-contact a { color: var(--cream); font-weight: 500; }
.hero-meta { position: absolute; right: var(--gutter); bottom: 1.4rem; font-size: .8rem; color: rgba(251, 249, 244, .65); letter-spacing: .02em; }
.scroll-cue { position: absolute; left: 50%; bottom: 1.2rem; width: 1px; height: 44px; background: linear-gradient(to bottom, rgba(251, 249, 244, 0), rgba(251, 249, 244, .8)); transform: translateX(-50%); animation: cue 2.2s ease-in-out infinite; }
@keyframes cue { 0%, 100% { opacity: .2; transform: translateX(-50%) scaleY(.6); transform-origin: top; } 50% { opacity: 1; transform: translateX(-50%) scaleY(1); } }
.reveal-line { opacity: 0; transform: translateY(16px); animation: rise 1s var(--ease) forwards; }
.reveal-line:nth-child(2) { animation-delay: .15s; }
.hero .lead.reveal-line { animation-delay: .35s; }
.hero .cta-row.reveal-line { animation-delay: .5s; }
.hero .hero-contact.reveal-line { animation-delay: .62s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- Trust strip ---------- */
.trust { border-bottom: var(--hairline); background: var(--cream); }
.trust ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); }
.trust li { padding: 1.25rem 1.5rem 1.25rem 1.25rem; font-size: .93rem; color: var(--teal-2); border-left: var(--hairline); }
.trust li:first-child { border-left: 0; padding-left: 0; }
.trust li strong { display: block; color: var(--teal); font-weight: 500; font-family: var(--serif); font-size: 1.05rem; margin-bottom: .1rem; }

/* ---------- Photo primitives ---------- */
.photo { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--sand); }
.photo > img { width: 100%; height: 100%; object-fit: cover; transform: translateY(var(--py, 0)) scale(1.08); will-change: transform; transition: opacity .6s; }
.photo.is-empty { display: none !important; }
.photo-portrait { aspect-ratio: 4 / 5; }
.photo-landscape { aspect-ratio: 4 / 3; }
.photo-wide { aspect-ratio: 16 / 7; }
.photo-square { aspect-ratio: 1 / 1; }
.js .photo { clip-path: inset(0 0 100% 0); transition: clip-path 1.2s var(--ease); }
.js .photo.is-visible { clip-path: inset(0 0 0 0); }
.framed { position: relative; }
.framed::before { content: ""; position: absolute; inset: 1.25rem -1.25rem -1.25rem 1.25rem; border: 1px solid var(--brass-2); border-radius: var(--radius-lg); z-index: 0; opacity: .7; }
.framed .photo { position: relative; z-index: 1; box-shadow: var(--shadow); }

/* ---------- Service tiles ---------- */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.tile { position: relative; display: block; aspect-ratio: 3 / 4; border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; color: var(--cream); background: var(--teal-deep); isolation: isolate; }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(27, 50, 60, 0) 30%, rgba(27, 50, 60, .55) 70%, rgba(27, 50, 60, .92) 100%); transition: opacity .5s; }
.tile:hover img { transform: scale(1.06); }
.tile-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem; z-index: 2; }
.tile h3 { color: var(--cream); font-size: clamp(1.4rem, 1.8vw, 1.75rem); margin-bottom: .35rem; }
.tile p { color: rgba(251, 249, 244, .85); font-size: .92rem; margin: 0 0 .8rem; line-height: 1.5; }
.tile .tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.tag { font-size: .74rem; font-weight: 500; letter-spacing: .02em; border: 1px solid rgba(251, 249, 244, .45); color: rgba(251, 249, 244, .95); border-radius: 999px; padding: .28rem .65rem; white-space: nowrap; }
.tag-dark { color: var(--teal-2); border-color: rgba(36, 64, 76, .28); }
.tag-soon { color: var(--brass); border-color: rgba(124, 98, 48, .45); }
.js .tile { opacity: 0; transform: translateY(20px); transition: opacity .9s var(--ease) var(--d, 0s), transform .9s var(--ease) var(--d, 0s); }
.js .tile.is-visible { opacity: 1; transform: none; }

/* ---------- Feature (aesthetics) ---------- */
.feature { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.feature-media { position: relative; padding-right: 18%; padding-bottom: 14%; }
.feature-media .photo-main { aspect-ratio: 4 / 5; }
.feature-media .photo-inset { position: absolute; right: 0; bottom: 0; width: 46%; aspect-ratio: 1 / 1; box-shadow: var(--shadow); border: 6px solid var(--cream); }
.treatments { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 2.5rem; }
.treatments li { padding: .85rem 0; border-bottom: var(--hairline); display: grid; gap: .15rem; align-content: start; }
.treatments li strong { font-family: var(--serif); font-weight: 400; font-size: 1.1rem; }
.treatments li span { color: var(--teal-2); font-size: .9rem; }
.treatments .tag { justify-self: start; margin-top: .3rem; }

/* ---------- Photo bands (parallax) ---------- */
.band-photo { position: relative; min-height: 62vh; display: grid; place-items: center; text-align: center; color: var(--cream); overflow: hidden; background: var(--teal-deep); }
.band-media { position: absolute; inset: -12% 0; }
.band-media img { width: 100%; height: 100%; object-fit: cover; transform: translateY(var(--py, 0)); will-change: transform; }
.band-scrim { position: absolute; inset: 0; background: rgba(27, 50, 60, .48); }
.band-photo .band-content { position: relative; padding: clamp(3rem, 8vw, 6rem) var(--gutter); max-width: 900px; }
.band-photo blockquote { margin: 0; font-family: var(--serif); font-style: italic; font-size: clamp(1.7rem, 3.6vw, 3rem); line-height: 1.25; color: var(--cream); }
.band-photo .band-note { margin: 1.25rem 0 0; font-size: .9rem; color: rgba(251, 249, 244, .8); letter-spacing: .02em; }
.cta-band { position: relative; color: var(--cream); overflow: hidden; background: var(--teal); }
.cta-band .band-scrim { background: linear-gradient(90deg, rgba(27, 50, 60, .92), rgba(27, 50, 60, .55)); }
.cta-band .container { position: relative; }
.cta-band h2 { color: var(--cream); max-width: 20ch; }
.cta-band p { color: rgba(251, 249, 244, .85); }
.cta-band .split { align-items: center; }

/* ---------- Story ---------- */
.story-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.story-quote { font-family: var(--serif); font-style: italic; font-size: clamp(1.6rem, 2.9vw, 2.5rem); line-height: 1.25; margin: 0 0 1.5rem; max-width: 22ch; }
.signature { font-family: var(--serif); font-style: italic; font-size: 1.15rem; margin-top: 1.5rem; }
.creds { list-style: none; margin: 1.75rem 0 0; padding: 0; display: grid; gap: .6rem; font-size: .95rem; }
.creds li { padding-left: 1.1rem; position: relative; }
.creds li::before { content: ""; position: absolute; left: 0; top: .72em; width: .45rem; height: 1px; background: var(--brass-2); }

/* ---------- Team ---------- */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem 2.5rem; }
.person h3 { margin: 1.1rem 0 .1em; }
.person .role { color: var(--brass); font-weight: 500; font-size: .92rem; margin-bottom: .7rem; }
.person p { font-size: .97rem; }

/* ---------- Marquee (inspiration strip) ---------- */
.marquee { overflow: hidden; padding-block: .5rem; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track { display: flex; gap: 1rem; width: max-content; animation: marquee 70s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track figure { flex: 0 0 auto; width: clamp(220px, 24vw, 360px); aspect-ratio: 4 / 3; border-radius: var(--radius-lg); overflow: hidden; background: var(--sand); }
.marquee-track figure:nth-child(odd) { aspect-ratio: 3 / 4; width: clamp(180px, 18vw, 270px); }
.marquee-track img { width: 100%; height: 100%; object-fit: cover; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-caption { text-align: center; margin: 1.5rem 0 0; font-size: .9rem; color: var(--teal-2); }

/* ---------- Reviews ---------- */
.review-panel { border: var(--hairline); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 3rem); display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 2rem; align-items: center; background: var(--white); }
.review-panel p { margin-bottom: 0; }
.review-actions { display: flex; flex-direction: column; gap: .75rem; align-items: flex-start; justify-self: end; }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2.5rem; }
.quote { border-left: 2px solid var(--brass); padding-left: 1.25rem; }
.quote p { font-family: var(--serif); font-style: italic; font-size: 1.15rem; line-height: 1.4; }
.quote cite { font-style: normal; font-size: .9rem; color: var(--teal-2); }

/* ---------- Steps ---------- */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; display: grid; gap: 1.25rem; }
.steps li { counter-increment: step; display: grid; grid-template-columns: 2.5rem 1fr; gap: 1rem; align-items: start; }
.steps li::before { content: counter(step); font-family: var(--serif); font-size: 1.8rem; line-height: 1; color: var(--brass-2); padding-top: .05rem; }
.steps strong { display: block; font-weight: 500; margin-bottom: .2rem; }
.steps p { margin: 0; font-size: .97rem; }

/* ---------- Locations ---------- */
.locations { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.location { background: var(--white); border: var(--hairline); border-radius: var(--radius-lg); overflow: hidden; }
.location .photo { border-radius: 0; aspect-ratio: 16 / 9; }
.location-body { padding: clamp(1.5rem, 3vw, 2.25rem); }
.location h3 { margin-bottom: .3em; }
.location address { font-style: normal; line-height: 1.55; margin-bottom: 1rem; }
.location .meta { display: grid; gap: .35rem; font-size: .95rem; color: var(--teal-2); margin-bottom: 1.25rem; }
.location .meta a { font-weight: 500; color: var(--teal); }
.telehealth-note { margin-top: 2rem; display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 2rem; align-items: center; border-top: var(--hairline); padding-top: 2rem; }
.telehealth-note p { margin: 0; }

/* ---------- FAQ ---------- */
.faq { border-top: var(--hairline); }
.faq details { border-bottom: var(--hairline); }
.faq summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: 1fr 1.5rem; gap: 1rem; align-items: center; padding: 1.2rem 0; font-family: var(--serif); font-size: 1.22rem; line-height: 1.3; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; width: .9rem; height: .9rem; justify-self: end; border-right: 1px solid var(--brass); border-bottom: 1px solid var(--brass); transform: rotate(45deg) translateY(-3px); transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: rotate(225deg) translateY(-3px); }
.faq details > div { padding: 0 0 1.4rem; }
.faq details > div p:last-child { margin-bottom: 0; }

/* ---------- Interior pages ---------- */
.crumbs { font-size: .88rem; margin-bottom: 1.25rem; }
.crumbs a { text-decoration: none; }
.crumbs span { margin: 0 .5rem; opacity: .6; }
.hero-page h1 { font-size: clamp(2.3rem, 4.8vw, 4rem); max-width: 18ch; }
.service-block { padding-block: clamp(2.5rem, 5vw, 4rem); border-top: var(--hairline); }
.split-content .service-block:first-child { border-top: 0; padding-top: 0; }
.service-block h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.meta-list { list-style: none; margin: 1.25rem 0 0; padding: 0; display: grid; gap: .5rem; font-size: .95rem; color: var(--teal-2); }
.meta-list li { padding-left: 1.1rem; position: relative; }
.meta-list li::before { content: ""; position: absolute; left: 0; top: .75em; width: .45rem; height: 1px; background: var(--brass-2); }
.aside-card { background: var(--sand); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2rem); }
.aside-card h3 { font-size: 1.35rem; }
.aside-card p { font-size: .95rem; }
.aside-card .btn { width: 100%; justify-content: center; margin-top: .5rem; }
.aside-card .contact-lines { font-size: .95rem; margin: 1rem 0 0; display: grid; gap: .3rem; }
.aside-card .contact-lines a { font-weight: 500; text-decoration: none; }
.aside-photo { margin-top: 1.25rem; aspect-ratio: 4 / 5; }
.callout { border-left: 2px solid var(--brass); padding: .25rem 0 .25rem 1.25rem; margin: 1.5rem 0; color: var(--teal-2); }
.callout p { margin: 0; }
.checklist { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: .6rem; }
.checklist li { padding-left: 1.5rem; position: relative; }
.checklist li::before { content: ""; position: absolute; left: 0; top: .55em; width: .55rem; height: .3rem; border-left: 1.5px solid var(--brass); border-bottom: 1.5px solid var(--brass); transform: rotate(-45deg); }
.principles { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 3rem; }
.principles li { border-top: var(--hairline); padding-top: 1.1rem; }
.principles strong { display: block; font-family: var(--serif); font-weight: 400; font-size: 1.35rem; margin-bottom: .35rem; }
.principles p { margin: 0; font-size: .97rem; color: var(--teal-2); }
.person-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 3rem; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.gallery .photo { aspect-ratio: 1 / 1; }
.gallery .photo:nth-child(1) { grid-column: span 2; aspect-ratio: 2 / 1; }
.gallery .photo:nth-child(6) { grid-column: span 2; aspect-ratio: 2 / 1; }

/* ---------- Forms ---------- */
.newsletter { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 2rem 4rem; align-items: start; }
.form-row { display: grid; grid-template-columns: 1fr 1.4fr auto; gap: .75rem; align-items: end; }
.field label { display: block; font-size: .85rem; font-weight: 500; margin-bottom: .35rem; color: var(--teal-2); }
.field input[type="text"], .field input[type="email"] { width: 100%; padding: .85rem 1rem; border: 1px solid rgba(36, 64, 76, .3); border-radius: var(--radius); background: var(--white); font: inherit; font-size: 1rem; color: var(--teal); }
.field input:focus { outline: 2px solid var(--brass); outline-offset: 1px; border-color: transparent; }
.consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .85rem; color: var(--teal-2); margin-top: 1rem; }
.consent input { margin-top: .3rem; accent-color: var(--brass); }
.hidden { position: absolute; left: -9999px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--teal-deep); color: rgba(251, 249, 244, .82); padding-block: clamp(3rem, 6vw, 5rem) 2rem; font-size: .95rem; }
.site-footer a { text-decoration: none; color: rgba(251, 249, 244, .82); }
.site-footer a:hover { color: var(--cream); text-decoration: underline; text-decoration-color: var(--brass-2); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(251, 249, 244, .14); }
.footer-brand .brand-name { color: var(--cream); font-size: 1.6rem; display: block; margin-bottom: .75rem; }
.footer-grid h4 { color: var(--cream); font-size: .95rem; margin-bottom: .9rem; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.footer-grid address { font-style: normal; line-height: 1.6; margin-bottom: .5rem; }
.footer-legal { padding-top: 1.75rem; display: grid; gap: .8rem; font-size: .82rem; color: rgba(251, 249, 244, .6); }
.footer-legal p { max-width: none; margin: 0; }
.footer-legal a { color: rgba(251, 249, 244, .7); }
.legal-links { display: inline-flex; gap: 1rem; margin-left: .5rem; }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .9s var(--ease) var(--d, 0s), transform .9s var(--ease) var(--d, 0s); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Mobile nav ---------- */
@media (max-width: 960px) {
  .nav { position: fixed; inset: 0; background: var(--cream); color: var(--teal); padding: 6rem var(--gutter) 2rem; transform: translateY(-100%); opacity: 0; transition: transform .4s var(--ease), opacity .3s; z-index: 40; margin: 0; }
  .nav.is-open { transform: none; opacity: 1; }
  .nav ul { flex-direction: column; gap: .25rem; }
  .nav a { font-family: var(--serif); font-size: 2rem; font-weight: 400; color: var(--teal); padding: .5rem 0; opacity: 1; }
  .nav a::after { display: none; }
  .nav-toggle { display: inline-block; position: relative; z-index: 60; }
  .site-header.menu-open { color: var(--teal); }
  .header-phone { display: none; }
  .header-actions { margin-left: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) { .tiles { grid-template-columns: repeat(2, 1fr); } .team { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) {
  .split, .split-content, .section-head, .review-panel, .newsletter, .telehealth-note, .story-grid, .feature, .person-row { grid-template-columns: 1fr; }
  .review-actions { justify-self: start; }
  .trust ul { grid-template-columns: 1fr 1fr; }
  .trust li:nth-child(3) { border-left: 0; padding-left: 0; }
  .trust li { border-top: var(--hairline); }
  .trust li:nth-child(-n+2) { border-top: 0; }
  .locations, .grid-2, .grid-3, .treatments, .quotes, .principles { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery .photo:nth-child(1), .gallery .photo:nth-child(6) { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sticky { position: static; }
  .hero { min-height: 78vh; }
  .framed::before { display: none; }
  .feature-media { padding-right: 14%; padding-bottom: 12%; }
}
@media (max-width: 600px) {
  .btn { padding: .9rem 1.2rem; font-size: .93rem; }
  .brand-name { font-size: 1.25rem; }
  .brand-mark { width: 36px; height: 36px; }
  .trust ul { grid-template-columns: 1fr; }
  .trust li { border-left: 0; padding-left: 0; border-top: var(--hairline); padding-block: .9rem; }
  .trust li:first-child { border-top: 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .tiles { grid-template-columns: 1fr; }
  .tile { aspect-ratio: 4 / 3; }
  .team { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery .photo:nth-child(1), .gallery .photo:nth-child(6) { grid-column: auto; aspect-ratio: 4 / 3; }
  .hero-meta { display: none; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal-line, .js .reveal, .js .tile { opacity: 1; transform: none; }
  .js .photo { clip-path: none; }
  .photo > img, .band-media img, .tile img { transform: none; }
  .marquee-track { animation: none; overflow-x: auto; }
  .hero-media .slide.is-active, .hero-media .single { transform: none; }
}
@media print { .site-header, .site-footer, .nav-toggle, .cta-row, .aside-card, .marquee { display: none; } body { background: #fff; color: #000; } }

/* Simple pages without a photo hero (legal, thank-you, 404) */
.page-hero { padding-block: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2.5rem); }
body.no-hero { padding-top: 5.5rem; }

/* Small fixes after review */
.site-header .btn-primary { white-space: nowrap; }
.marquee-caption { max-width: none; }
@media (max-width: 600px) { .site-header .btn-primary { padding: .65rem .9rem; font-size: .85rem; } }

/* ==========================================================================
   Brand: circle mark + "Mona Medical" in the site serif, side by side
   ========================================================================== */
.brand { --m: 56px; gap: calc(var(--m) * .28); }
.brand-mark { width: var(--m); height: var(--m); border-radius: 50%; filter: none; background: none; box-shadow: none; transition: width .35s var(--ease), height .35s var(--ease); }
.is-scrolled .brand { --m: 46px; }
.brand-word, .footer-lockup .brand-word { display: block; }
.brand-name { display: none; }
.brand-word { display: block; height: calc(var(--m) / 2 * 1.0128); color: inherit; }
.brand-word svg { display: block; height: 100%; width: auto; }
.brand-mark-halo { width: calc(var(--m) * 1.08); height: calc(var(--m) * 1.08); margin: calc(var(--m) * -.04); }
.is-scrolled .brand-mark-halo, .no-hero .brand-mark-halo { display: none; }
.brand-mark-flat { display: none; }
.is-scrolled .brand-mark-flat, .no-hero .brand-mark-flat { display: block; }
.footer-lockup { --m: 56px; display: inline-flex; align-items: center; gap: calc(var(--m) * .24); color: var(--cream); margin-bottom: 1rem; text-decoration: none; }
.footer-lockup img { width: var(--m); height: var(--m); border-radius: 50%; }
.footer-lockup { --m: 64px; }
.footer-lockup .brand-word { height: calc(var(--m) / 2 * 1.0128); }
.site-footer .footer-lockup:hover { text-decoration: none; }

/* Trust strip leads with the mark */
.trust ul { grid-template-columns: auto repeat(4, 1fr); align-items: center; }
.trust .trust-mark { padding: .9rem 1.75rem .9rem 0; border-left: 0; }
.trust .trust-mark img { width: 64px; height: 64px; border-radius: 50%; }
.trust li:nth-child(2) { border-left: 0; padding-left: 0; }

/* Seal above the coastal quote */
.band-seal { width: 104px; height: 104px; margin: 0 auto 1.4rem; border-radius: 50%; filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .35)); }

/* Team cards: booking links */
.person .book-link { display: inline-block; margin-top: .2rem; font-size: .92rem; }
.person .note { font-size: .88rem; color: var(--teal-2); margin: 0; }

@media (max-width: 900px) {
  .trust ul { grid-template-columns: 1fr 1fr; }
  .trust .trust-mark { grid-column: 1 / -1; padding: 1rem 0 .25rem; border-top: 0; }
  .trust li:nth-child(2) { border-top: 0; }
}
@media (max-width: 600px) {
  .brand { --m: 42px; }
  .is-scrolled .brand { --m: 38px; }
  .brand-name { font-size: 1.25rem; }
  .trust ul { grid-template-columns: 1fr; }
  .trust li:nth-child(2) { border-top: 0; }
  .trust li:nth-child(3) { border-top: var(--hairline); }
}

/* Header fit: the wide one-line wordmark needs the room; nav never wraps, phone hides on narrower desktops */
.nav a { white-space: nowrap; }
@media (max-width: 1480px) { .header-phone { display: none; } }
@media (max-width: 1180px) { .nav ul { gap: 1rem; } }

/* ==========================================================================
   Header v3: Menu (left) · lockup (center) · Book (right); full-screen menu
   ========================================================================== */
.site-header { padding-block: .9rem; }
.header-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; }
.header-actions { justify-self: end; margin-left: 0; }
.brand { --m: 60px; justify-self: center; gap: calc(var(--m) * .26); }
.is-scrolled .brand, .menu-open .brand { --m: 44px; }
.brand-mark-halo, .brand-mark-flat { width: var(--m); height: var(--m); }
.brand-word-line { display: block; height: calc(var(--m) / 2 * 1.0128); }
.brand-word-stack { display: none; height: calc(var(--m) / 1.12); }
.brand-word-stack svg, .brand-word-line svg { display: block; height: 100%; width: auto; }
.menu-toggle { display: inline-flex; align-items: center; gap: .6rem; background: none; border: 0; padding: .4rem 0; font: inherit; font-weight: 500; font-size: .95rem; letter-spacing: .02em; color: inherit; cursor: pointer; justify-self: start; }
.burger { position: relative; width: 24px; height: 12px; display: block; }
.burger i { position: absolute; left: 0; right: 0; height: 1.5px; background: currentColor; transition: transform .35s var(--ease), top .35s var(--ease), opacity .3s; }
.burger i:first-child { top: 0; } .burger i:last-child { top: 10px; }
.menu-open .burger i:first-child { top: 5px; transform: rotate(45deg); }
.menu-open .burger i:last-child { top: 5px; transform: rotate(-45deg); }
.site-header.menu-open { background: var(--cream); color: var(--teal); border-bottom-color: rgba(124, 98, 48, .18); padding-block: .6rem; }
.menu-open .brand-mark-halo { display: none; } .menu-open .brand-mark-flat { display: block; }
.nav, .nav-toggle, .header-phone { display: none !important; }

.menu { position: fixed; inset: 0; z-index: 45; background: var(--cream); color: var(--teal); transform: translateY(-100%); opacity: 0; visibility: hidden; transition: transform .55s var(--ease), opacity .4s var(--ease), visibility 0s .55s; overflow-y: auto; }
.menu.is-open { transform: none; opacity: 1; visibility: visible; transition: transform .55s var(--ease), opacity .4s var(--ease), visibility 0s; }
.menu-inner { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(2rem, 6vw, 6rem); padding: 7.5rem 0 4rem; min-height: 100%; align-items: start; }
.menu-primary ul { list-style: none; margin: 0; padding: 0; }
.menu-primary li { border-bottom: var(--hairline); }
.menu-primary a { display: block; padding: 1rem 0; font-family: var(--serif); font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.1; text-decoration: none; color: var(--teal); transition: color .3s, padding-left .35s var(--ease); }
.menu-primary a:hover, .menu-primary a[aria-current="page"] { color: var(--brass); padding-left: .4rem; }
.menu-secondary { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2.5rem 2rem; padding-top: .6rem; }
.menu-col h4 { font-family: var(--serif); font-weight: 400; font-size: 1.15rem; margin-bottom: .9rem; color: var(--teal); }
.menu-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.menu-col a { text-decoration: none; font-size: .95rem; color: var(--teal-2); }
.menu-col a:hover { color: var(--brass); }
.menu-contact p { font-size: .95rem; color: var(--teal-2); margin-bottom: .9rem; }
.menu-contact .btn { margin-top: .4rem; }
/* menu items animate in a beat after the panel */
.menu-primary li, .menu-col { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.menu.is-open .menu-primary li, .menu.is-open .menu-col { opacity: 1; transform: none; }
.menu.is-open .menu-primary li:nth-child(1) { transition-delay: .15s; } .menu.is-open .menu-primary li:nth-child(2) { transition-delay: .21s; } .menu.is-open .menu-primary li:nth-child(3) { transition-delay: .27s; } .menu.is-open .menu-primary li:nth-child(4) { transition-delay: .33s; } .menu.is-open .menu-primary li:nth-child(5) { transition-delay: .39s; } .menu.is-open .menu-primary li:nth-child(6) { transition-delay: .45s; }
.menu.is-open .menu-col:nth-child(1) { transition-delay: .3s; } .menu.is-open .menu-col:nth-child(2) { transition-delay: .38s; } .menu.is-open .menu-col:nth-child(3) { transition-delay: .46s; }

/* Hero text drifts up and fades as you scroll away */
.hero-content { transform: translateY(var(--hy, 0)); opacity: var(--ho, 1); will-change: transform, opacity; }

@media (max-width: 960px) {
  .menu-inner { grid-template-columns: 1fr; padding-top: 6.5rem; gap: 2.5rem; }
  .menu-secondary { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .brand { --m: 44px; } .is-scrolled .brand, .menu-open .brand { --m: 40px; }
  .brand-word-line { display: none; } .brand-word-stack { display: block; }
  .menu-label { display: none; }
  .menu-secondary { grid-template-columns: 1fr; }
  .menu-primary a { font-size: 1.8rem; padding: .8rem 0; }
}
@media (prefers-reduced-motion: reduce) { .menu, .menu-primary li, .menu-col { transition: none; } .hero-content { transform: none; opacity: 1; } }

/* ---------- Header: a little more presence ---------- */
.site-header { padding-block: 1.4rem; }
.site-header.is-scrolled, .site-header.menu-open { padding-block: 1rem; }
.brand { --m: 62px; }
.is-scrolled .brand, .menu-open .brand { --m: 46px; }

/* ---------- Before and after ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.ba-card h3 { font-size: 1.3rem; margin: 1rem 0 .2rem; }
.ba-card p { font-size: .95rem; color: var(--teal-2); margin: 0; }
.ba-slider { position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden; background: var(--sand); isolation: isolate; }
.ba-frame { position: absolute; inset: 0; margin: 0; }
.ba-frame img { width: 100%; height: 100%; object-fit: cover; }
.ba-frame.is-empty img { display: none; }
.ba-frame figcaption { position: absolute; top: .9rem; font-size: .78rem; font-weight: 500; letter-spacing: .04em; color: var(--cream); background: rgba(27, 50, 60, .6); padding: .3rem .6rem; border-radius: var(--radius); }
.ba-before figcaption { left: .9rem; } .ba-after figcaption { right: .9rem; }
.ba-after { clip-path: inset(0 0 0 var(--pos)); }
.ba-after.is-empty { background: var(--teal-mist); }
.ba-slider::after { content: ""; position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; background: var(--cream); box-shadow: 0 0 0 1px rgba(27, 50, 60, .25); transform: translateX(-1px); pointer-events: none; }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.ba-slider .ba-empty-note { position: absolute; left: 50%; bottom: 1rem; transform: translateX(-50%); font-size: .8rem; color: var(--teal-2); white-space: nowrap; }

/* ---------- Quotes ---------- */
.quotes { margin: 0 0 2rem; }
.quote.is-sample cite { color: var(--brass); }
.quote.is-sample cite::before { content: "•"; margin-right: .4rem; }

/* ---------- Promo ---------- */
.promo-card { background: rgba(251, 249, 244, .06); border: 1px solid rgba(251, 249, 244, .18); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.25rem); }
.promo-card h3 { color: var(--cream); }
.promo-card .checklist li { color: rgba(251, 249, 244, .88); }
.promo-card .checklist li::before { border-color: var(--brass-2); }
.band-teal .promo-card .btn-ghost { color: var(--cream); border-color: rgba(251, 249, 244, .45); }

/* ---------- Consultation form ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.field select { width: 100%; padding: .85rem 1rem; border: 1px solid rgba(36, 64, 76, .3); border-radius: var(--radius); background: var(--white); font: inherit; font-size: 1rem; color: var(--teal); }
.aside-card .contact-lines a.small { color: var(--teal-2); }

@media (max-width: 900px) { .ba-grid { grid-template-columns: 1fr; } .form-grid { grid-template-columns: 1fr; } }
.callout-note { border-left-color: var(--brass); color: var(--teal); padding: .5rem 0 .5rem 1.5rem; margin: 1.5rem 0 1.75rem; }
.callout-note p { margin-bottom: 1em; font-size: 1.02rem; }
.callout-note .signature { margin-top: .25rem; margin-bottom: 0; }

/* ---------- Round: phone in header, three-line menu icon, 4:3 location photos, halo seal, links ---------- */
.header-phone { display: inline-block !important; text-decoration: none; font-weight: 500; font-size: .95rem; color: inherit; opacity: .9; margin-right: .5rem; }
.burger { height: 16px; }
.burger i:nth-child(1) { top: 0; } .burger i:nth-child(2) { top: 7px; } .burger i:nth-child(3) { top: 14px; }
.menu-open .burger i:nth-child(1) { top: 7px; transform: rotate(45deg); }
.menu-open .burger i:nth-child(2) { opacity: 0; }
.menu-open .burger i:nth-child(3) { top: 7px; transform: rotate(-45deg); }
.location .photo { aspect-ratio: 4 / 3; }
.band-seal-halo { width: 118px; height: 118px; margin: -7px auto 1.1rem; filter: none; }
.treatments li strong a { text-decoration: none; border-bottom: 1px solid rgba(124, 98, 48, .35); transition: border-color .2s, color .2s; }
.treatments li strong a:hover { color: var(--brass); border-color: var(--brass); }
.person .book-link + .book-link { margin-left: 1.1rem; }
@media (max-width: 900px) { .header-phone { display: none !important; } }
.cherry-panel { display: grid; gap: 1.5rem; }
.cherry-panel #calculator { border: var(--hairline); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); }
.cherry-panel #calculator:empty { display: none; }

/* Header 50% taller, fade A on every hero, trust line */
.site-header { padding-block: 2rem; }
.site-header.is-scrolled, .site-header.menu-open { padding-block: 1rem; }
.brand { --m: 76px; }
.is-scrolled .brand, .menu-open .brand { --m: 48px; }
.hero-scrim { background: linear-gradient(90deg, rgba(27,50,60,.62) 0%, rgba(27,50,60,.38) 45%, rgba(27,50,60,.08) 75%), linear-gradient(180deg, rgba(27,50,60,.25) 0%, rgba(27,50,60,0) 30%, rgba(27,50,60,.55) 75%, rgba(27,50,60,.85) 100%); }
.band-photo .band-scrim { background: rgba(27, 50, 60, .55); }
.trust-line { display: flex; align-items: center; gap: 1.5rem; padding-block: 1.4rem; }
.trust-line img { width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0; }
.trust-line p { margin: 0; font-family: var(--serif); font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.5; color: var(--teal); max-width: none; }
@media (max-width: 600px) { .trust-line { flex-direction: column; align-items: flex-start; gap: .9rem; } }
.areas li strong { font-size: 1.15rem; }
.areas li span { font-size: .95rem; }

/* Credentials bar: editorial line + letterspaced row */
.creds-bar { border-bottom: var(--hairline); background: var(--cream); padding-block: 1.9rem 1.7rem; text-align: center; }
.creds-lead { font-family: var(--serif); font-style: italic; font-size: clamp(1.35rem, 2.2vw, 1.9rem); color: var(--teal); margin: 0 0 .9rem; max-width: none; }
.creds-row { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; }
.creds-row li { font-family: var(--sans); font-weight: 500; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-2); padding: .2rem 1.4rem; border-left: 1px solid rgba(124, 98, 48, .35); }
.creds-row li:first-child { border-left: 0; }
/* Tiles: equal heading and description heights so the tags line up */
.tile h3 { min-height: 1.1em; }
.tile p { min-height: 3em; }
.service-block h2 .tag { vertical-align: middle; margin-left: .5rem; font-size: .7rem; }
@media (max-width: 700px) { .creds-row li { border-left: 0; padding: .15rem .6rem; } }
.team-two { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 860px; }
a.framed { display: block; text-decoration: none; }
@media (max-width: 600px) { .team-two { grid-template-columns: 1fr; } }

/* Anchor targets clear the fixed header; centered band note; policy pages; linked team cards */
[id] { scroll-margin-top: 130px; }
.band-photo .band-note { text-align: center; }
.policy h2 { font-size: 1.5rem; margin-top: 2.2rem; }
.policy ul { padding-left: 1.2rem; }
.policy li { margin-bottom: .6rem; }
.person a { text-decoration: none; color: inherit; }
.person h3 a:hover { color: var(--brass); }
.location .text-link { display: inline-block; margin-top: .5rem; }
.legal-links { flex-wrap: wrap; }

/* Menu: the Book button keeps its cream text; hero contact link on dark */
.menu-col a.btn { color: var(--cream); }
.menu-col a.btn:hover { color: var(--cream); }
.hero-contact a { text-decoration-color: rgba(251,249,244,.5); }
.promo-card .checklist { margin-top: .6rem; }

/* Header: phone tucked under the Book button; feature without inset; band note centered; forms */
.header-actions { display: flex; flex-direction: column; align-items: flex-end; gap: .3rem; }
.header-phone { margin-right: 0; font-size: .82rem; opacity: .85; }
.feature-media { padding-right: 0; padding-bottom: 0; }
.band-photo .band-content { text-align: center; }
.band-photo .band-note { display: block; width: 100%; max-width: none; margin: 1.25rem auto 0; text-align: center; }
.field input[type="tel"] { width: 100%; padding: .85rem 1rem; border: 1px solid rgba(36, 64, 76, .3); border-radius: var(--radius); background: var(--white); font: inherit; font-size: 1rem; color: var(--teal); }
.form-note { text-align: center; margin-top: .9rem; }
.photo { transition-duration: .8s; }
@media (max-width: 900px) { .header-phone { display: none !important; } }

/* Alignment pass: side-by-side section heads align at the top; centered variant for the team and welcome sections; form note centered */
.section-head { align-items: start; }
.section-head p { padding-top: .45em; }
.section-head-center { grid-template-columns: 1fr; text-align: center; justify-items: center; }
.section-head-center h2 { max-width: 22ch; }
.section-head-center p { padding-top: 0; max-width: 60ch; margin: .9rem auto 0; }
.form-note { display: block; max-width: 64ch; margin: .9rem auto 0; text-align: center; }
.band-teal .section-head-center p { color: rgba(251, 249, 244, .85); }
.disclosure { margin-top: 2.5rem; padding-top: 1.25rem; border-top: var(--hairline); color: var(--teal-2); }
