/* ═══════════════════════════════════════════════════════════════
   Serenity Dental — luxury wellness aesthetic
   Palette: mist blue · pale lavender · sage · ivory · slate ink
   Type: Cormorant Garamond (display) + Jost (body)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --mist:        #eef3f6;
  --sky:         #dfeaf0;
  --lavender:    #e6e1f0;
  --lavender-2:  #cfc4e2;
  --lavender-deep:#8d7fae;
  --sage:        #e3eadd;
  --sage-2:      #c9d6c0;
  --sage-deep:   #5e7252;
  --sage-deep-2: #4d5f43;
  --ivory:       #fbfaf7;
  --white:       #ffffff;
  --ink:         #3c4952;
  --ink-soft:    #6b7883;
  --gold:        #c2a56b;
  --line:        rgba(60, 73, 82, .14);
  --shadow:      0 18px 50px -18px rgba(60, 73, 82, .22);
  --radius:      14px;
  --pill:        999px;
  --ease:        cubic-bezier(.22, .8, .3, 1);
  --font-d:      'Cormorant Garamond', Georgia, serif;
  --font-b:      'Jost', 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-b);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--sage-deep); text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--sage-deep-2); }

h1, h2, h3, h4 { font-family: var(--font-d); font-weight: 500; line-height: 1.15; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: 1.2rem; }
h3 { font-size: 1.45rem; }
h1 em, h2 em { font-style: italic; font-weight: 400; color: var(--lavender-deep); }

.wrap { width: min(1180px, 92vw); margin-inline: auto; }
.narrow { width: min(820px, 92vw); margin-inline: auto; }
.center { text-align: center; }

/* ── Prose rhythm ─────────────────────────────────────────────
   The global reset zeroes all margins; these give long-form
   content (and the buttons inside it) proper breathing room. */
.narrow p, .section .wrap > p { margin-bottom: 1.15rem; }
.narrow h2, .section .wrap > h2 { margin-top: 2.2rem; }
.narrow h2:first-child, .narrow .eyebrow + h2,
.section .wrap > h2:first-child { margin-top: 0; }
.narrow h3 { margin-top: 1.8rem; margin-bottom: .7rem; }
p .btn { margin-top: .7rem; margin-bottom: .2rem; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--white); padding: .6rem 1rem; z-index: 200; }
.skip-link:focus { left: 8px; top: 8px; }

/* ── Eyebrow ─────────────────────────────────────────────── */
.eyebrow {
  font-size: .78rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--lavender-deep); margin-bottom: 1rem; font-weight: 400;
}
.eyebrow--center { text-align: center; }
.eyebrow::after { content: ""; display: inline-block; width: 42px; height: 1px; background: var(--gold); margin-left: 14px; vertical-align: middle; }
.eyebrow--center::after { display: block; margin: 12px auto 0; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block; font-family: var(--font-b); font-weight: 400;
  font-size: .95rem; letter-spacing: .06em;
  padding: .95rem 2.3rem; border-radius: var(--pill);
  border: 1px solid transparent; cursor: pointer;
  transition: all .45s var(--ease);
}
.btn--sm { padding: .6rem 1.5rem; font-size: .85rem; }
.btn--primary { background: var(--sage-deep); color: var(--white); }
.btn--primary:hover { background: var(--sage-deep-2); color: var(--white); transform: translateY(-2px); box-shadow: 0 12px 28px -12px rgba(77, 95, 67, .55); }
.btn--soft { background: rgba(255,255,255,.75); color: var(--ink); border-color: rgba(255,255,255,.9); }
.btn--soft:hover { background: var(--lavender); color: var(--ink); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn--ghost:hover { background: rgba(255,255,255,.15); color: var(--white); }
.btn--outline { background: transparent; color: var(--sage-deep); border-color: var(--sage-deep); }
.btn--outline:hover { background: var(--sage-deep); color: var(--white); }

.tlink {
  font-size: .85rem; letter-spacing: .18em; text-transform: uppercase;
  border-bottom: 1px solid var(--gold); padding-bottom: 3px;
}

/* ── Header ──────────────────────────────────────────────── */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .5s var(--ease), box-shadow .5s var(--ease);
  background: transparent;
}
.header__inner {
  width: min(1320px, 94vw); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 0;
  transition: padding .4s var(--ease);
}
.header.is-solid { background: var(--ivory); box-shadow: 0 1px 0 var(--line); }
.header.is-solid .header__inner { padding: .65rem 0; }
/* Inner pages: always-solid header so the menu is clearly visible;
   only the home page starts transparent over its hero. */
body:not(.home) .header { background: var(--ivory); box-shadow: 0 1px 0 var(--line); }

.brand { display: flex; align-items: center; gap: .6rem; color: var(--ink); }
.brand__mark { width: 34px; height: 34px; color: var(--gold); flex: none; }
.brand__text {
  font-family: var(--font-d); font-size: 1.45rem; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 500; color: var(--ink);
}
.brand__text em { font-style: normal; font-weight: 300; color: var(--ink-soft); margin-left: .35rem; }

.nav { display: flex; align-items: center; gap: 1.8rem; }
.nav__list { display: flex; gap: 1.7rem; list-style: none; }
.nav__link {
  font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink);
  padding-bottom: 4px; border-bottom: 1px solid transparent;
}
.nav__link:hover, .nav__link.is-active { color: var(--sage-deep); border-bottom-color: var(--gold); }

/* Burger + mobile nav — NOTE: no backdrop-filter anywhere on .header
   (it would re-anchor the fixed mobile nav; hard-won lesson) */
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 10px; z-index: 120; }
.burger span { display: block; width: 26px; height: 1.6px; background: var(--ink); margin: 6px 0; transition: all .35s var(--ease); }
body.nav-open .burger span:nth-child(1) { transform: translateY(7.6px) rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: translateY(-7.6px) rotate(-45deg); }

.mnav {
  display: none; position: fixed; inset: 0; background: var(--ivory);
  padding: 6.5rem 8vw 3rem; z-index: 110;
  opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility .45s;
}
.mnav ul { list-style: none; display: flex; flex-direction: column; gap: 1.4rem; }
.mnav a:not(.btn) { font-family: var(--font-d); font-size: 1.7rem; color: var(--ink); }
.mnav .btn { margin-top: .5rem; }
.mnav__phone a { font-family: var(--font-b) !important; font-size: 1rem !important; letter-spacing: .1em; color: var(--sage-deep) !important; }
body.nav-open .mnav { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero__bg, .pagehero__bg, .quoteband__bg {
  position: absolute; inset: -12% 0; background-size: cover; background-position: center;
  will-change: transform;
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(230, 225, 240, .55), rgba(223, 234, 240, .35) 45%, rgba(251, 250, 247, .15) 70%),
    linear-gradient(to bottom, rgba(251,250,247,.25), rgba(251,250,247,0) 30%, rgba(251,250,247,.9) 96%);
}
.hero__content { position: relative; z-index: 2; padding: 7rem 6vw 5rem; max-width: 900px; }
.hero__eyebrow {
  font-family: var(--font-d); font-style: italic; font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  color: var(--ink-soft); margin-bottom: 1.1rem;
}
.hero__title { margin-bottom: 1.4rem; font-weight: 400; }
.hero__sub { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--ink-soft); margin-bottom: 2.4rem; letter-spacing: .04em; }
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__trust { margin-top: 2.6rem; font-size: .8rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); }

.hero__scroll { position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero__scroll span {
  display: block; width: 1px; height: 56px; background: var(--ink-soft); opacity: .6;
  animation: scrollhint 2.4s var(--ease) infinite;
  transform-origin: top;
}
@keyframes scrollhint { 0% { transform: scaleY(0); } 45% { transform: scaleY(1); } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ── Page hero (inner pages) ─────────────────────────────── */
.pagehero {
  position: relative; min-height: 62svh; display: flex; align-items: flex-end;
  overflow: hidden; padding-bottom: 4.5rem;
}
.pagehero--short { min-height: 48svh; padding-bottom: 3.2rem; }
.pagehero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(150deg, rgba(230,225,240,.6), rgba(223,234,240,.3) 55%),
    linear-gradient(to bottom, rgba(251,250,247,.3), rgba(251,250,247,0) 40%, rgba(251,250,247,.96));
}
.pagehero__content { position: relative; z-index: 2; width: min(1180px, 92vw); margin-inline: auto; }
.pagehero h1 { font-weight: 400; }

/* ── Sections ────────────────────────────────────────────── */
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section--tint { background: linear-gradient(180deg, var(--mist), var(--ivory)); }

/* Pillars */
.pillars { padding-top: clamp(3rem, 6vw, 4.5rem); }
.pillars__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.pillar {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.6rem 2rem; text-align: center; color: var(--ink);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
}
.pillar svg { width: 44px; height: 44px; margin: 0 auto 1.1rem; color: var(--lavender-deep); }
.pillar h3 { margin-bottom: .45rem; font-size: 1.3rem; }
.pillar p { font-size: .95rem; color: var(--ink-soft); }
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--lavender-2); }

/* Split layouts */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
.split--rev .split__media { order: -1; }
.split__media { position: relative; }
.split__media img {
  border-radius: var(--radius); box-shadow: var(--shadow);
  aspect-ratio: 4 / 4.6; object-fit: cover; width: 100%;
  transition: transform 1.4s var(--ease);
}
.rv .split__media img { transform: scale(1.001); }
.split__media:hover img { transform: scale(1.03); }
.split__badge {
  position: absolute; left: -1.2rem; bottom: 2rem; background: var(--white);
  border-radius: var(--radius); padding: 1rem 1.4rem; box-shadow: var(--shadow);
  font-size: .85rem; max-width: 240px;
}
.split__badge strong { font-family: var(--font-d); font-size: 1.05rem; display: block; font-style: italic; font-weight: 500; }
.split__badge span { color: var(--ink-soft); }
.split__copy p { margin-bottom: 1.1rem; color: var(--ink-soft); }
.split__copy .btn { margin-top: .8rem; }

.pull { border-left: 2px solid var(--gold); padding-left: 1.4rem; margin: 1.6rem 0; }
.pull p { font-family: var(--font-d); font-style: italic; font-size: 1.25rem; color: var(--ink); }
.pull cite { font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); font-style: normal; }

/* Quote band (lavender parallax) */
.quoteband { position: relative; min-height: 56svh; display: flex; align-items: center; justify-content: center; overflow: hidden; text-align: center; }
.quoteband__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(141,127,174,.45), rgba(60,73,82,.35)); }
.quoteband__quote { position: relative; z-index: 2; padding: 5rem 6vw; max-width: 860px; }
.quoteband__quote p { font-family: var(--font-d); font-style: italic; font-weight: 400; font-size: clamp(1.5rem, 3.4vw, 2.4rem); color: var(--white); line-height: 1.4; margin-bottom: 1.2rem; text-shadow: 0 2px 24px rgba(60,73,82,.35); }
.quoteband__quote cite { font-style: normal; font-size: .85rem; letter-spacing: .26em; text-transform: uppercase; color: rgba(255,255,255,.85); }

/* Cards */
.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; margin-top: 2.8rem; }
.cards4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-top: 2.8rem; }
.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card__img { overflow: hidden; aspect-ratio: 16 / 10; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.card:hover .card__img img { transform: scale(1.06); }
.card h3 { padding: 1.5rem 1.6rem .4rem; }
.card p { padding: 0 1.6rem; color: var(--ink-soft); font-size: .97rem; flex: 1; }
.card .tlink { margin: 1.2rem 1.6rem 1.6rem; align-self: flex-start; }
.card--flat { padding: 2.2rem 2rem; }
.card--flat h3 { padding: 0 0 .6rem; }
.card--flat p { padding: 0; }

.minicard {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.5rem; text-align: center;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.minicard:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.minicard h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.minicard p { font-size: .92rem; color: var(--ink-soft); }

/* Amenities list */
.amenities { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .7rem 1.6rem; margin: 1.4rem 0; }
.amenities li { padding-left: 1.6rem; position: relative; font-size: .97rem; color: var(--ink-soft); }
.amenities li::before { content: "❧"; position: absolute; left: 0; color: var(--gold); }

.ticks { list-style: none; margin: 1.2rem 0; }
.ticks li { padding: .35rem 0 .35rem 1.8rem; position: relative; color: var(--ink-soft); }
.ticks li::before { content: ""; position: absolute; left: 0; top: .85rem; width: 14px; height: 7px; border-left: 1.6px solid var(--sage-deep); border-bottom: 1.6px solid var(--sage-deep); transform: rotate(-45deg); }

/* Services grid + chips */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.4rem; margin-top: 2.8rem; }
.svc {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem 1.7rem; transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
}
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--sage-2); }
.svc h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.svc p { font-size: .93rem; color: var(--ink-soft); }

.chipgrid { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 2.4rem; }
.chipgrid span, .chipgrid a {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--pill);
  padding: .55rem 1.4rem; font-size: .9rem; color: var(--ink-soft);
  transition: all .4s var(--ease);
}
.chipgrid span:hover, .chipgrid a:hover { border-color: var(--lavender-2); background: var(--lavender); color: var(--ink); }

/* Counters */
.counters { background: linear-gradient(120deg, var(--lavender), var(--sky) 55%, var(--sage)); padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.counters--strip { border-radius: var(--radius); padding: 2.4rem 1.5rem; margin-top: 3rem; }
.counters__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.counter strong { font-family: var(--font-d); font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 500; color: var(--ink); display: block; line-height: 1; }
.counter span { font-size: .88rem; color: var(--ink-soft); display: block; margin-top: .5rem; }

/* Testimonials slider */
.tslider { position: relative; max-width: 780px; margin: 3rem auto 0; text-align: center; min-height: 240px; }
.tslide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1s var(--ease), visibility 1s; display: flex; flex-direction: column; justify-content: center; gap: 1.1rem; padding: 0 1rem; }
.tslide.is-on { opacity: 1; visibility: visible; position: relative; }
.tslide p { font-family: var(--font-d); font-style: italic; font-size: clamp(1.25rem, 2.6vw, 1.7rem); line-height: 1.5; color: var(--ink); }
.tslide cite { font-style: normal; font-size: .82rem; letter-spacing: .24em; text-transform: uppercase; color: var(--lavender-deep); }
.tdots { display: flex; gap: .55rem; justify-content: center; margin-top: 1.6rem; }
.tdots button { width: 9px; height: 9px; border-radius: 50%; border: 1px solid var(--lavender-deep); background: transparent; cursor: pointer; padding: 0; transition: background .4s; }
.tdots button.is-on { background: var(--lavender-deep); }

/* Visit / hours / map */
.visit__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.hours { width: 100%; border-collapse: collapse; margin: 1.4rem 0 1.8rem; }
.hours td { padding: .55rem 0; border-bottom: 1px solid var(--line); font-size: .95rem; color: var(--ink-soft); }
.hours td:last-child { text-align: right; }
.hours tr.today td, .footer__hours li.today { color: var(--sage-deep); font-weight: 400; }
.hours tr.today td:first-child::after { content: " · today"; font-size: .75rem; letter-spacing: .1em; color: var(--gold); }
.visit__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.visit__map iframe { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; }
.visit__map--full { border-radius: 0; box-shadow: none; }
.visit__map--full iframe { min-height: 420px; }

/* Contact */
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.contact__line { margin-bottom: 1.2rem; color: var(--ink-soft); }
.contact__line strong { color: var(--ink); font-weight: 500; letter-spacing: .06em; }

.form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.4rem 2.2rem; box-shadow: var(--shadow); }
.form h3 { margin-bottom: 1.4rem; font-size: 1.6rem; }
.form label { display: block; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 1.1rem; }
.form input, .form textarea, .form select {
  width: 100%; margin-top: .45rem; padding: .8rem 1rem;
  border: 1px solid var(--line); border-radius: 8px; background: var(--ivory);
  font-family: var(--font-b); font-size: 1rem; color: var(--ink);
  transition: border-color .3s, box-shadow .3s;
}
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--lavender-deep); box-shadow: 0 0 0 3px rgba(141,127,174,.15); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form .btn { width: 100%; }
.form__note { margin-top: 1rem; font-size: .85rem; color: var(--ink-soft); text-align: center; }
.form__success { display: none; background: var(--sage); border: 1px solid var(--sage-2); color: var(--sage-deep-2); border-radius: 8px; padding: .9rem 1.1rem; font-size: .95rem; margin-bottom: 1.2rem; }
.form__success.show { display: block; }
.form__error { display: none; background: #f9e9e6; border: 1px solid #e4b9b0; color: #8c3b2d; border-radius: 8px; padding: .9rem 1.1rem; font-size: .95rem; margin-bottom: 1.2rem; }
.form__error.show { display: block; }
.form__error a { color: inherit; text-decoration: underline; }
.hp { position: absolute !important; left: -9999px !important; height: 0; width: 0; opacity: 0; }

/* CTA band */
.cta-band { background: linear-gradient(140deg, var(--sage-deep), #6d8160 60%, var(--lavender-deep)); text-align: center; padding: clamp(4rem, 8vw, 6rem) 0; }
.cta-band__title { color: var(--white); font-weight: 400; }
.cta-band__title em { color: var(--lavender); }
.cta-band__sub { color: rgba(255,255,255,.8); margin: 1rem 0 2rem; font-size: .95rem; letter-spacing: .05em; }
.cta-band__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-band .btn--primary { background: var(--white); color: var(--sage-deep-2); }
.cta-band .btn--primary:hover { background: var(--ivory); }

/* Footer */
.footer { background: #303b42; color: rgba(255,255,255,.75); font-size: .93rem; }
.footer__grid { display: grid; grid-template-columns: 1.35fr .95fr 1.1fr .8fr .95fr 1.05fr; gap: 2.2rem; padding: 3.2rem 0 2.6rem; }
.footer h4 { color: var(--white); font-size: 1.15rem; margin-bottom: 1rem; font-weight: 500; letter-spacing: .06em; }
.footer a { color: rgba(255,255,255,.75); }
.footer a:hover { color: var(--white); }
.footer .brand__text, .footer .brand__text em { color: var(--white); }
.footer__brand p { margin: 1rem 0; }
.footer__social { display: flex; gap: .7rem; }
.footer__social a {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: .8rem; letter-spacing: .02em;
  transition: all .4s var(--ease);
}
.footer__social a:hover { background: var(--lavender-deep); border-color: var(--lavender-deep); }
.footer__hours, .footer__nav { list-style: none; }
.footer__hours li { display: flex; justify-content: space-between; gap: 1rem; padding: .25rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__hours li.today { color: var(--sage-2); }
.footer__nav li { padding: .25rem 0; }
.footer__base { border-top: 1px solid rgba(255,255,255,.12); padding: 1.3rem 0; font-size: .82rem; }
.footer__base .wrap { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* ── Real-photo helpers ──────────────────────────────────── */
.split__media--real img { aspect-ratio: auto; object-fit: contain; background: var(--white); padding: 10px; }
.figrid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.figrid figure { margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.figrid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.figrid figcaption { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); text-align: center; padding: .7rem .5rem; }

.ba-figure { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.2rem; margin: 2.5rem 0; }
.ba-figure img { width: 100%; border-radius: 8px; }
.ba-figure figcaption { text-align: center; font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); padding-top: .9rem; }

.badge-strip { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; margin: 1.6rem 0; }
.badge-strip img { max-height: 110px; width: auto; }
.badge-strip span { font-size: .9rem; color: var(--ink-soft); max-width: 340px; }

.products { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.6rem; margin-top: 2.6rem; }
.product { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; text-align: center; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.product:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product img { height: 190px; width: auto; max-width: 100%; margin: 0 auto 1rem; object-fit: contain; }
.product h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.product p { font-size: .88rem; color: var(--ink-soft); }

.paylogos { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; margin-top: 1rem; }
.paylogos img { height: 52px; width: auto; border-radius: 6px; }

/* ── FAQ accordion ───────────────────────────────────────── */
.faq { max-width: 860px; margin: 2.4rem auto 0; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; background: none; border: 0; cursor: pointer; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.15rem .2rem; font-family: var(--font-d); font-size: 1.2rem; color: var(--ink); transition: color .3s; }
.faq__q:hover { color: var(--sage-deep); }
.faq__q::after { content: "+"; font-family: var(--font-b); font-weight: 300; font-size: 1.5rem; color: var(--gold); transition: transform .4s var(--ease); flex: none; }
.faq__item.open .faq__q::after { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .55s var(--ease); }
.faq__a > div { padding: 0 .2rem 1.3rem; color: var(--ink-soft); font-size: .97rem; }
html.no-js .faq__a, html:not(.js) .faq__a { max-height: none; }

.svc-link { display: block; }
.svc-link:hover h3 { color: var(--sage-deep); }

/* ── Home layout refinements (desktop) ────────────────────────
   The fullPage wheel-glide engine + full-viewport panels were
   removed 2026-08-28 per client feedback — scrolling is native.
   Only the still-useful layout polish from that era remains. */
@media (min-width: 900px) and (min-height: 600px) {
  .home .figrid img { aspect-ratio: 16 / 10; }
  .home .card__img { aspect-ratio: 16 / 8.5; }
  /* map fills its column, matching the info column's height */
  .home .visit__grid { align-items: stretch; }
  .home .visit__map { height: auto; }
  .home .visit__map iframe { min-height: 420px; height: 100%; }
}

/* ── Reveal animations ───────────────────────────────────────
   Gated behind html.js so content is NEVER hidden without JS. */
html.js .rv { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: var(--d, 0s); }
html.js .rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .rv { opacity: 1; transform: none; transition: none; }
  .hero__scroll { display: none; }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1020px) {
  .nav { display: none; }
  .burger { display: block; }
  .mnav { display: block; }
  .pillars__grid, .cards3 { grid-template-columns: 1fr; }
  .cards4 { grid-template-columns: 1fr 1fr; }
  .split, .visit__grid, .contact__grid { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .split__media img { aspect-ratio: 16 / 11; }
  .counters__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 1rem; }
  .visit__map iframe { min-height: 340px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .cards4 { grid-template-columns: 1fr; }
  .amenities { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .split__badge { left: .8rem; bottom: .8rem; }
  .hero__actions .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__base .wrap { justify-content: center; text-align: center; }
}

/* ── v10 additions: galleries, videos, testimonials, blog ─────── */
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2.2rem 0; }
.ba-pair figure { margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.ba-pair img { width: 100%; display: block; flex: 1; object-fit: cover; }
.ba-pair figcaption { text-align: center; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); padding: .7rem .5rem; }
.videogrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.6rem; margin-top: 2.4rem; }
.videogrid .video { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #000; }
.videogrid iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.quotelist { display: grid; gap: 1.4rem; margin-top: 2.4rem; }
.quotelist blockquote { margin: 0; background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--lavender-2); border-radius: var(--radius); padding: 1.6rem 1.8rem; box-shadow: var(--shadow); }
.quotelist blockquote p { font-family: var(--font-d); font-style: italic; font-size: 1.15rem; line-height: 1.6; margin-bottom: .6rem; }
.quotelist cite { font-style: normal; font-size: .8rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); }
.bloglist { display: grid; gap: 1.6rem; margin-top: 2.4rem; }
.bloglist article { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 2rem; box-shadow: var(--shadow); }
.bloglist h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.bloglist p { color: var(--ink-soft); margin-bottom: .8rem; }
.edu-figure { margin: 2rem 0; text-align: center; }
.edu-figure img { max-width: 100%; border-radius: 8px; border: 1px solid var(--line); }
.edu-figure + .edu-figure { margin-top: 1rem; }
.float-r { float: right; max-width: 280px; margin: 0 0 1.2rem 1.6rem; border-radius: 8px; border: 1px solid var(--line); }
@media (max-width: 700px) {
  .ba-pair { grid-template-columns: 1fr; }
  .float-r { float: none; display: block; margin: 0 auto 1.4rem; }
}
