/* ==========================================================================
   Graceful Beautie Health & Wellness
   Brand palette lifted from the logo + existing site:
   teal rgb(103,166,158) · mauve rgb(204,168,192) · gold #E0B252
   ========================================================================== */

:root {
  --teal:        #67a69e;
  --teal-600:    #55938b;
  --teal-700:    #427a73;
  --teal-900:    #23443f;
  --teal-050:    #eef6f5;

  --mauve:       #c9a2bc;
  --mauve-600:   #b085a2;
  --mauve-050:   #f8f0f5;

  --gold:        #e0b252;
  --gold-600:    #c1913a;

  --ink:         #242424;
  --body:        #3d3d3d;
  --muted:       #6f6f6f;
  --line:        #e7ded9;

  --cream:       #faf7f5;
  --sand:        #f4ece8;
  --white:       #ffffff;

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body:    'Jost', 'Helvetica Neue', Arial, sans-serif;

  --radius:      18px;
  --radius-sm:   12px;
  --radius-pill: 999px;

  --shadow-sm:  0 2px 10px rgba(35, 68, 63, .06);
  --shadow:     0 12px 34px rgba(35, 68, 63, .10);
  --shadow-lg:  0 26px 60px rgba(35, 68, 63, .16);

  --wrap:       1220px;
  --header-h:   124px;
  --ease:       cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------- base --- */

*, *::before, *::after { box-sizing: border-box; }

/* A class selector with `display` would otherwise out-rank the UA's
   [hidden] rule and leave hidden elements on screen. Keep this. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--body);
  background: var(--white);
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--teal-700); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--mauve-600); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .6em;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: .4em; }

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

.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;
}

.skip-link {
  position: absolute; left: 50%; top: -100px; transform: translateX(-50%);
  z-index: 200; background: var(--teal); color: #fff;
  padding: .7rem 1.4rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

/* -------------------------------------------------------- typography --- */

/* Section headings: the eyebrow word (WELCOME, WHY CHOOSE US…) is the big
   heading; the line after it is the smaller sub-heading. The hero slider has
   its own approved sizing and is excluded below. */
.eyebrow {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.12;
  color: var(--teal-700);
  margin: 0 0 .35rem;
}
.eyebrow--light { color: var(--gold); }

.eyebrow + :is(h1, h2):not(.hero__title) {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 500;
}

.lede { font-size: 1.15rem; color: var(--muted); }

/* Centered second line inside a card title, e.g. "Wrinkle Relaxers"
   under Neuromodulators. */
.title-sub { display: block; text-align: center; }

/* Aftercare disclaimer under the treatments grid. */
.disclaimer {
  text-align: center;
  margin: 2.5rem 0 0;
  color: var(--mauve-600);
  font-weight: 600;
  letter-spacing: .04em;
}

/* Big "Coverage" heading inside the Cash Pay Direct card. */
.coverage-head {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin: 1.2rem 0 .6rem;
}

/* Diagram inside an FAQ answer. */
.faq__a img {
  display: block;
  width: 100%;
  max-width: 440px;
  height: auto;
  margin: .75rem auto .5rem;
  border-radius: var(--radius-sm, 12px);
}

.rule {
  width: 64px; height: 2px; border: 0; margin: 0 0 1.6rem;
  background: linear-gradient(90deg, var(--teal), var(--mauve));
}
.rule--center { margin-inline: auto; }

.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--tint { background: var(--cream); }
.section--sand { background: linear-gradient(180deg, var(--sand), var(--cream)); }

/* Wide enough that most intro sentences sit on a single line. */
.section-head { max-width: 1080px; margin: 0 auto clamp(2.5rem, 5vw, 3.75rem); text-align: center; }
.section-head p { color: var(--muted); margin-bottom: 0; }
.section-head p:not(.eyebrow) { font-size: 1.15rem; }
.section-head--left { margin-inline: 0; text-align: left; }

/* ------------------------------------------------------------ buttons --- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body);
  font-size: .9rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  padding: .95rem 1.9rem;
  border: 1.5px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--teal); color: #fff; box-shadow: 0 8px 22px rgba(103, 166, 158, .34); }
.btn--primary:hover { background: var(--teal-600); color: #fff; box-shadow: 0 12px 28px rgba(103, 166, 158, .42); }

.btn--mauve { background: var(--mauve); color: #fff; box-shadow: 0 8px 22px rgba(201, 162, 188, .38); }
.btn--mauve:hover { background: var(--mauve-600); color: #fff; }

.btn--outline { border-color: var(--teal); color: var(--teal-700); background: transparent; }
.btn--outline:hover { background: var(--teal); color: #fff; }

.btn--ghost { border-color: rgba(255, 255, 255, .65); color: #fff; background: rgba(255, 255, 255, .08); }
.btn--ghost:hover { background: #fff; color: var(--teal-700); border-color: #fff; }

.btn--lg { padding: 1.1rem 2.3rem; font-size: .95rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 500; font-size: .88rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal-700);
}
.link-arrow::after {
  content: ""; width: 18px; height: 1.5px; background: currentColor;
  transition: width .25s var(--ease);
}
.link-arrow:hover::after { width: 30px; }

/* ------------------------------------------------------------- topbar --- */

.topbar {
  background: linear-gradient(90deg, var(--teal-600) 0%, var(--teal) 55%, var(--mauve) 100%);
  color: rgba(255, 255, 255, .96);
  font-size: .88rem;
  letter-spacing: .03em;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 42px; flex-wrap: wrap;
}
.topbar__contact, .topbar__actions { display: flex; align-items: center; gap: 1.5rem; }
.topbar__item {
  display: inline-flex; align-items: center; gap: .45rem;
  color: rgba(255, 255, 255, .96); font-weight: 500;
}
.topbar__item:hover { color: var(--teal-900); }
.topbar__item svg { width: 15px; height: 15px; fill: rgba(255, 255, 255, .85); flex: none; }
.topbar__item--strong { color: #fff; font-weight: 600; }
.topbar__item--strong::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}
.topbar__item--gift {
  background: var(--gold); color: var(--teal-900); font-weight: 600;
  padding: .2rem .8rem; border-radius: var(--radius-pill);
}
.topbar__item--gift:hover { background: #fff; color: var(--teal-700); }

/* ------------------------------------------------------------- header --- */

.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }

.site-header__inner {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: var(--header-h);
}

.brand { flex: none; }
.brand img { width: auto; height: 100px; transition: height .3s var(--ease); }
.site-header.is-stuck .brand img { height: 78px; }

.nav { margin-left: auto; display: flex; align-items: center; }
.nav__list { display: flex; align-items: center; gap: .3rem; list-style: none; margin: 0; padding: 0; }
.nav__item { position: relative; margin: 0; }

.nav__link {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .75rem .85rem;
  font-size: .84rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink);
  border-radius: var(--radius-sm);
}
.nav__link:hover, .nav__item:hover > .nav__link { color: var(--teal-700); }
.nav__link.is-active { color: var(--teal-700); }
.nav__link.is-active::after {
  content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .42rem;
  height: 2px; background: linear-gradient(90deg, var(--teal), var(--mauve));
}
.nav__caret {
  width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .25s var(--ease);
}
.nav__item:hover .nav__caret { transform: rotate(-135deg) translate(-3px, -3px); }

.nav__toggle { display: none; }

.nav__sub {
  position: absolute; top: 100%; left: 0; min-width: 290px;
  list-style: none; margin: 0; padding: .55rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.nav__item:hover > .nav__sub, .nav__item:focus-within > .nav__sub {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__sub li { margin: 0; }
.nav__sub a {
  display: block; padding: .6rem .85rem;
  font-size: .88rem; color: var(--body); border-radius: 8px;
}
.nav__sub a:hover, .nav__sub a.is-active { background: var(--teal-050); color: var(--teal-700); }

.nav__cta { display: none; }
.site-header__cta { flex: none; padding: .8rem 1.6rem; font-size: .8rem; }

.burger {
  display: none; flex: none;
  width: 46px; height: 46px; padding: 0;
  background: var(--teal-050); border: 0; border-radius: 12px; cursor: pointer;
}
.burger__bars, .burger__bars::before, .burger__bars::after {
  display: block; width: 20px; height: 2px; background: var(--teal-700);
  margin-inline: auto; border-radius: 2px;
  transition: transform .28s var(--ease), opacity .2s var(--ease);
}
.burger__bars { position: relative; }
.burger__bars::before, .burger__bars::after { content: ""; position: absolute; left: 0; }
.burger__bars::before { top: -6px; }
.burger__bars::after  { top: 6px; }
.burger[aria-expanded="true"] .burger__bars { background: transparent; }
.burger[aria-expanded="true"] .burger__bars::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__bars::after  { transform: translateY(-6px) rotate(-45deg); }

.nav-backdrop {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(35, 68, 63, .45);
  backdrop-filter: blur(2px);
}

/* ------------------------------------------------------------- slider --- */

.hero {
  position: relative;
  height: clamp(520px, 78vh, 760px);
  overflow: hidden;
  background: var(--teal-900);
}

.hero__track { position: absolute; inset: 0; }

.hero__slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 1s var(--ease), visibility 1s;
}
.hero__slide.is-active { opacity: 1; visibility: visible; }

.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  transition: transform 8s linear;
}
.hero__slide.is-active .hero__media img { transform: scale(1.16); }

.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(35, 68, 63, .90) 0%, rgba(35, 68, 63, .70) 38%, rgba(35, 68, 63, .18) 72%, rgba(35, 68, 63, .30) 100%),
    linear-gradient(0deg, rgba(35, 68, 63, .55), rgba(35, 68, 63, 0) 55%);
}

.hero__inner {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; align-items: center;
}
.hero__content { max-width: 680px; color: #fff; padding: 3rem 0; }
.hero__content .eyebrow {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1.3;
  margin-bottom: .55rem;
}

.hero__title {
  color: #fff;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  font-weight: 700;
  margin-bottom: .5em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .28);
}
.hero__text {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: rgba(255, 255, 255, .9);
  max-width: 33em;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }

/* entrance animation, staggered */
.hero__slide .eyebrow,
.hero__slide .hero__title,
.hero__slide .hero__text,
.hero__slide .hero__actions {
  opacity: 0; transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.hero__slide.is-active .eyebrow,
.hero__slide.is-active .hero__title,
.hero__slide.is-active .hero__text,
.hero__slide.is-active .hero__actions { opacity: 1; transform: none; }
.hero__slide.is-active .eyebrow      { transition-delay: .25s; }
.hero__slide.is-active .hero__title  { transition-delay: .38s; }
.hero__slide.is-active .hero__text   { transition-delay: .5s; }
.hero__slide.is-active .hero__actions{ transition-delay: .62s; }

.hero__arrow {
  position: absolute; top: 50%; z-index: 5;
  width: 54px; height: 54px; margin-top: -27px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .12);
  border: 1.5px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  color: #fff; cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background-color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.hero__arrow:hover { background: #fff; color: var(--teal-700); border-color: #fff; }
.hero__arrow svg { width: 20px; height: 20px; fill: currentColor; }
.hero__arrow--prev { left: clamp(.75rem, 3vw, 2.5rem); }
.hero__arrow--next { right: clamp(.75rem, 3vw, 2.5rem); }
.hero__arrow--prev:hover { transform: translateX(-3px); }
.hero__arrow--next:hover { transform: translateX(3px); }

.hero__dots {
  position: absolute; z-index: 5; left: 0; right: 0; bottom: clamp(1.5rem, 4vh, 2.75rem);
  display: flex; justify-content: center; gap: .7rem;
}
.hero__dot {
  width: 46px; height: 4px; padding: 0;
  background: rgba(255, 255, 255, .35);
  border: 0; border-radius: var(--radius-pill);
  cursor: pointer; overflow: hidden; position: relative;
  transition: background-color .25s var(--ease);
}
.hero__dot:hover { background: rgba(255, 255, 255, .6); }
.hero__dot::after {
  content: ""; position: absolute; inset: 0;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
}
.hero__dot.is-active::after { animation: dotFill var(--slide-duration, 6.5s) linear forwards; }
@keyframes dotFill { to { transform: scaleX(1); } }
.hero.is-paused .hero__dot.is-active::after { animation-play-state: paused; }

.hero__scroll {
  position: absolute; z-index: 5;
  right: clamp(1rem, 4vw, 3rem); bottom: clamp(1.25rem, 3.5vh, 2.4rem);
  display: inline-flex; align-items: center; gap: .55rem;
  color: #fff; font-size: .8rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  background: rgba(35, 68, 63, .35);
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: var(--radius-pill);
  padding: .55rem 1.1rem;
  backdrop-filter: blur(6px);
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.hero__scroll:hover { background: #fff; color: var(--teal-700); }
.hero__scroll svg { width: 16px; height: 16px; fill: currentColor; animation: scrollNudge 1.8s ease-in-out infinite; }
@keyframes scrollNudge {
  0%, 100% { transform: translateY(-2px); }
  50%      { transform: translateY(3px); }
}
@media (prefers-reduced-motion: reduce) { .hero__scroll svg { animation: none; } }
@media (max-width: 640px) { .hero__scroll span { display: none; } .hero__scroll { padding: .55rem .7rem; } }

/* ---------------------------------------------------------- page hero --- */

.page-hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4.5rem);
  background: linear-gradient(120deg, var(--teal-900) 0%, var(--teal-700) 55%, var(--mauve-600) 140%);
  color: #fff;
  overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 178, 82, .28), transparent 65%);
}
.page-hero__inner { position: relative; z-index: 2; max-width: 780px; }
.page-hero h1 { color: #fff; margin-bottom: .35em; }
.page-hero p { color: rgba(255, 255, 255, .88); font-size: 1.1rem; margin-bottom: 0; }
.page-hero .eyebrow {
  color: var(--gold);
  font-size: clamp(2.3rem, 4.6vw, 3.9rem);
  font-weight: 700;
}

.crumbs {
  display: flex; flex-wrap: wrap; gap: .5rem;
  list-style: none; margin: 1.6rem 0 0; padding: 0;
  font-size: .82rem; letter-spacing: .05em;
  color: rgba(255, 255, 255, .7);
}
.crumbs li { margin: 0; }
.crumbs li + li::before { content: "/"; margin-right: .5rem; opacity: .55; }
.crumbs a { color: rgba(255, 255, 255, .85); }
.crumbs a:hover { color: var(--gold); }

/* -------------------------------------------------------------- cards --- */

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.card {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.1rem 1.9rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--teal), var(--mauve));
  opacity: 0; transition: opacity .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { opacity: 1; }

.card__icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--teal-050);
  margin-bottom: 1.35rem;
}
.card__icon img { width: 34px; height: 34px; }
.card:nth-child(even) .card__icon { background: var(--mauve-050); }

.card h3 { margin-bottom: .55rem; }
.card p { color: var(--muted); font-size: .98rem; }
.card .link-arrow { margin-top: auto; padding-top: .9rem; }

/* feature list (why choose us) */
.feature {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}
.feature:last-child { border-bottom: 0; }
.feature__num {
  flex: none;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--teal);
  color: var(--teal-700);
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
}
.feature h3 { font-size: 1.2rem; margin-bottom: .2rem; }
.feature p { margin: 0; color: var(--muted); font-size: .97rem; }

/* two-column media block */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--reverse .split__media { order: 2; }

.split__media { position: relative; }
.split__media img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.split__media::after {
  content: ""; position: absolute; inset: auto -18px -18px auto;
  width: 55%; height: 55%; z-index: -1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--mauve-050), var(--teal-050));
}

.badge-stat {
  position: absolute; left: -20px; bottom: 28px;
  background: #fff; border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 1rem 1.4rem;
  text-align: center;
}
.badge-stat strong {
  display: block; font-family: var(--font-display);
  font-size: 2.1rem; line-height: 1; color: var(--teal-700);
}
.badge-stat span { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* checklist */
.checks { list-style: none; padding: 0; margin: 0 0 1.6rem; }
.checks li {
  position: relative; padding-left: 2rem; margin-bottom: .75rem;
}
.checks li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 11px; height: 6px;
  border-left: 2px solid var(--teal); border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}

/* stat strip */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem; text-align: center;
}
.stat strong {
  display: block; font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem); line-height: 1; color: var(--teal-700);
}
.stat span { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* ------------------------------------------------------- price tables --- */

.filterbar {
  position: sticky; top: var(--header-h); z-index: 60;
  margin: 0 0 1.75rem;
  padding: 1rem 0 .9rem;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.filterbar__search { position: relative; margin-bottom: .85rem; }
.filterbar__search svg {
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; fill: var(--muted); pointer-events: none;
}
.filterbar__search input {
  width: 100%;
  font-family: inherit; font-size: 1rem; color: var(--body);
  padding: .8rem 2.6rem;
  background: var(--cream);
  border: 1.5px solid var(--line); border-radius: var(--radius-pill);
  -webkit-appearance: none;
}
.filterbar__search input:focus { outline: none; border-color: var(--teal); background: #fff; }
.filterbar__search input::-webkit-search-cancel-button { display: none; }

.filterbar__clear {
  position: absolute; right: .55rem; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px;
  font-size: 1.3rem; line-height: 1; color: var(--muted);
  background: none; border: 0; border-radius: 50%; cursor: pointer;
}
.filterbar__clear:hover { background: var(--line); color: var(--ink); }

.filterbar__pills {
  display: flex; flex-wrap: wrap; gap: .4rem;
}

.pill {
  font-family: inherit; font-size: .8rem; font-weight: 400;
  color: var(--body);
  padding: .42rem .9rem;
  background: var(--cream);
  border: 1.5px solid transparent; border-radius: var(--radius-pill);
  cursor: pointer; white-space: nowrap;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.pill:hover { border-color: var(--teal); color: var(--teal-700); }
.pill.is-active {
  background: var(--teal); border-color: var(--teal); color: #fff; font-weight: 500;
}

.filterbar__count {
  margin: -.75rem 0 1.75rem;
  font-size: .85rem; letter-spacing: .04em; color: var(--muted);
}

.price-empty {
  padding: 2.5rem 1.5rem; text-align: center;
  color: var(--muted);
  background: var(--cream); border-radius: var(--radius);
}
.link-reset {
  font: inherit; color: var(--teal-700); background: none; border: 0; padding: 0;
  text-decoration: underline; cursor: pointer;
}

@media (max-width: 620px) {
  .filterbar { padding-top: .75rem; }
  .filterbar__pills {
    flex-wrap: nowrap; overflow-x: auto;
    margin-inline: -1rem; padding-inline: 1rem 1rem;
    scrollbar-width: none;
  }
  .filterbar__pills::-webkit-scrollbar { display: none; }
}

.price-block { margin-bottom: 3.25rem; }
.price-block:last-child { margin-bottom: 0; }
.price-block__head {
  display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap;
  padding-bottom: .9rem; margin-bottom: 1.25rem;
  border-bottom: 2px solid var(--teal-050);
}
.price-block__head h3 { margin: 0; }
.price-block__head span { font-size: .85rem; color: var(--muted); }

.price-list { list-style: none; margin: 0; padding: 0; }
.price-list li {
  display: flex; align-items: baseline; gap: .75rem;
  padding: .7rem 0; margin: 0;
  border-bottom: 1px dashed var(--line);
}
.price-list li:last-child { border-bottom: 0; }
.price-list .name { flex: 1 1 auto; }
.price-list .name em { display: block; font-size: .86rem; color: var(--muted); font-style: normal; }
.price-list .dots { flex: 1 1 auto; border-bottom: 1px dotted var(--line); transform: translateY(-4px); }
.price-list .price { flex: none; font-weight: 500; color: var(--teal-700); white-space: nowrap; }

.note {
  background: var(--mauve-050);
  border-left: 3px solid var(--mauve);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.1rem 1.4rem;
  font-size: .95rem;
  color: var(--body);
}
.note p:last-child { margin-bottom: 0; }
.note--teal { background: var(--teal-050); border-left-color: var(--teal); }

/* ------------------------------------------------------------ gallery --- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.25rem;
}
.gallery-grid figure {
  margin: 0; overflow: hidden; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); background: var(--sand);
}
.gallery-grid img {
  width: 100%; height: 340px; object-fit: cover;
  transition: transform .6s var(--ease);
}
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figure:nth-child(4n+1) img { height: 420px; }

.gallery-open {
  display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in;
}

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  padding: clamp(1rem, 5vw, 3rem);
  background: rgba(28, 56, 51, .94);
  backdrop-filter: blur(4px);
}
/* must beat the display:grid above — [hidden] alone loses to a class selector */
.lightbox[hidden] { display: none; }
.lightbox__figure { margin: 0; max-width: min(92vw, 1000px); text-align: center; }
.lightbox__figure img {
  max-height: 78vh; width: auto; margin-inline: auto;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.lightbox__figure figcaption {
  margin-top: 1rem; color: rgba(255, 255, 255, .8); font-size: .92rem;
}
.lightbox__close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  width: 48px; height: 48px;
  font-size: 2rem; line-height: 1; color: #fff;
  background: rgba(255, 255, 255, .12); border: 0; border-radius: 50%; cursor: pointer;
  transition: background-color .25s var(--ease);
}
.lightbox__close:hover { background: var(--teal); }

/* --------------------------------------------------------------- FAQ --- */

.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: 0; cursor: pointer;
  padding: 1.35rem 0;
  font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600;
  color: var(--ink); text-align: left;
}
.faq__q::after {
  content: ""; flex: none;
  width: 14px; height: 14px;
  border-right: 2px solid var(--teal); border-bottom: 2px solid var(--teal);
  transform: rotate(45deg) translateY(-4px);
  transition: transform .3s var(--ease);
}
.faq__item.is-open .faq__q::after { transform: rotate(-135deg) translate(-4px, -4px); }
.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s var(--ease);
}
.faq__a > div { padding: 0 0 1.4rem; color: var(--muted); }
.faq__a ul { margin-bottom: 0; }

/* ------------------------------------------------------------- forms --- */

.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: var(--shadow);
}
.field { margin-bottom: 1.1rem; }
.field label {
  display: block; margin-bottom: .4rem;
  font-size: .82rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: inherit; font-size: 1rem; color: var(--body);
  padding: .85rem 1rem;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); background: #fff;
}
.field textarea { min-height: 150px; resize: vertical; }
.field--half { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.1rem; }
.field--half .field { margin-bottom: 0; }
.hp { position: absolute; left: -9999px; }

.alert {
  padding: 1rem 1.25rem; border-radius: var(--radius-sm);
  margin-bottom: 1.5rem; font-size: .95rem;
}
.alert--ok  { background: var(--teal-050); border: 1px solid var(--teal); color: var(--teal-700); }
.alert--err { background: #fdf0f0; border: 1px solid #e0a1a1; color: #a33; }

.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); margin: 0; }
.info-list li:last-child { border-bottom: 0; }
.info-list .ico {
  flex: none; width: 44px; height: 44px; display: grid; place-items: center;
  background: var(--teal-050); border-radius: 50%;
}
.info-list .ico svg { width: 19px; height: 19px; fill: var(--teal-700); }
.info-list strong { display: block; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 500; }

.map-embed {
  border: 0; width: 100%; height: 380px;
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  filter: saturate(.85);
}

/* ----------------------------------------------------------- cta band --- */

.cta-band {
  background: linear-gradient(115deg, var(--teal-700) 0%, var(--teal-900) 60%, #3a5f5a 100%);
  color: #fff;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; left: -80px; bottom: -140px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 188, .3), transparent 65%);
}
.cta-band__inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-band__title { color: #fff; margin-bottom: .35em; }
.cta-band__text { color: rgba(255, 255, 255, .85); margin: 0; max-width: 46ch; }
.cta-band__actions { display: flex; gap: .9rem; flex-wrap: wrap; }
.cta-band .eyebrow { color: var(--gold); }

/* ------------------------------------------------------------- footer --- */

.site-footer { background: #1c3833; color: rgba(255, 255, 255, .72); font-size: .95rem; }
.site-footer__grid {
  display: grid; grid-template-columns: 1.5fr .95fr .8fr 1fr 1.15fr;
  gap: 2.25rem;
  padding: clamp(3rem, 6vw, 4.5rem) 0 3rem;
}
.site-footer__logo {
  height: 118px; width: auto;
  background: #fff; border-radius: var(--radius-sm);
  padding: .5rem .75rem; margin-bottom: 1.25rem;
}
.site-footer__blurb { max-width: 30ch; }
.site-footer__head {
  color: #fff; font-family: var(--font-body);
  font-size: .82rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.site-footer__links, .site-footer__contact { list-style: none; margin: 0; padding: 0; }
.site-footer__links li, .site-footer__contact li { margin-bottom: .6rem; }
.site-footer a { color: rgba(255, 255, 255, .72); }
.site-footer a:hover { color: var(--gold); }
.site-footer__contact li { line-height: 1.6; }

.open-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  margin: 0 0 .9rem;
  font-size: .78rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: var(--radius-pill);
}
.open-badge span {
  width: 7px; height: 7px; border-radius: 50%; flex: none;
}
.open-badge.is-open {
  color: #d6f2e6; background: rgba(103, 166, 158, .22);
}
.open-badge.is-open span {
  background: #7fd4b4;
  box-shadow: 0 0 0 0 rgba(127, 212, 180, .7);
  animation: openPulse 2.4s infinite;
}
@keyframes openPulse {
  70%  { box-shadow: 0 0 0 7px rgba(127, 212, 180, 0); }
  100% { box-shadow: 0 0 0 0 rgba(127, 212, 180, 0); }
}
.open-badge.is-closed {
  color: rgba(255, 255, 255, .6); background: rgba(255, 255, 255, .07);
}
.open-badge.is-closed span { background: rgba(255, 255, 255, .45); }

.site-footer__hours { list-style: none; margin: 0 0 .9rem; padding: 0; font-size: .9rem; }
.site-footer__hours li {
  display: flex; justify-content: space-between; gap: .75rem;
  padding: .3rem 0; margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.site-footer__hours li:last-child { border-bottom: 0; }
.site-footer__hours .day { color: rgba(255, 255, 255, .85); white-space: nowrap; }
.site-footer__hours .span { color: rgba(255, 255, 255, .62); white-space: nowrap; }
.site-footer__hours .span.is-closed { color: rgba(255, 255, 255, .38); }
.site-footer__hours-note {
  margin: 0; font-size: .8rem; line-height: 1.5;
  color: var(--gold);
}

.social { display: flex; gap: .6rem; }
.social a {
  width: 40px; height: 40px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .08); border-radius: 50%;
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.social a:hover { background: var(--teal); transform: translateY(-3px); }
.social svg { width: 17px; height: 17px; fill: #fff; }

.site-footer__bar { border-top: 1px solid rgba(255, 255, 255, .1); font-size: .85rem; }
.site-footer__bar-inner {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 1.25rem 0;
}
.site-footer__bar p { margin: 0; }

/* --------------------------------------------------------------- chat --- */

.chat { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 120; }

.chat__launcher {
  position: relative;
  width: 60px; height: 60px; padding: 0;
  display: grid; place-items: center;
  background: var(--teal); color: #fff;
  border: 0; border-radius: 50%;
  box-shadow: 0 10px 30px rgba(35, 68, 63, .3);
  cursor: pointer;
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.chat__launcher:hover { background: var(--teal-600); transform: translateY(-2px); }
.chat__launcher svg { width: 26px; height: 26px; fill: currentColor; grid-area: 1 / 1; transition: opacity .2s var(--ease), transform .2s var(--ease); }
.chat__icon-close { opacity: 0; transform: rotate(-45deg) scale(.7); }
.chat.is-open .chat__icon-open { opacity: 0; transform: rotate(45deg) scale(.7); }
.chat.is-open .chat__icon-close { opacity: 1; transform: none; }

.chat__ping {
  position: absolute; top: 4px; right: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold); border: 2px solid #fff;
}
.chat.is-open .chat__ping { display: none; }

.chat__panel {
  position: absolute; right: 0; bottom: calc(100% + .85rem);
  width: min(90vw, 372px);
  max-height: min(74vh, 620px);
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  opacity: 0; transform: translateY(14px) scale(.98);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.chat__panel[hidden] { display: none; }
.chat__panel.is-open { opacity: 1; transform: none; }

.chat__head {
  display: flex; align-items: center; gap: .8rem;
  padding: .85rem 1rem;
  background: linear-gradient(115deg, var(--teal-700), var(--teal-900));
  color: #fff;
}
.chat__head img {
  width: 42px; height: 42px; flex: none;
  object-fit: contain; background: #fff; border-radius: 50%; padding: 3px;
}
.chat__head strong { display: block; font-size: .95rem; font-weight: 500; }
.chat__head span { font-size: .74rem; color: rgba(255, 255, 255, .75); }
.chat__close {
  margin-left: auto; flex: none;
  width: 32px; height: 32px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .14); border: 0; border-radius: 50%;
  color: #fff; cursor: pointer;
  transition: background-color .2s var(--ease);
}
.chat__close:hover { background: rgba(255, 255, 255, .28); }
.chat__close svg { width: 13px; height: 13px; fill: currentColor; }

.chat__log {
  flex: 1 1 auto; min-height: 190px;
  padding: 1.1rem 1rem .5rem;
  overflow-y: auto;
  background: var(--cream);
  display: flex; flex-direction: column; gap: .55rem;
  scroll-behavior: smooth;
}

.chat__msg {
  max-width: 84%;
  padding: .65rem .9rem;
  font-size: .92rem; line-height: 1.55;
  border-radius: 16px;
  animation: chatIn .28s var(--ease) both;
}
@keyframes chatIn { from { opacity: 0; transform: translateY(8px); } }

.chat__msg--bot {
  align-self: flex-start;
  background: #fff; color: var(--body);
  border: 1px solid var(--line);
  border-bottom-left-radius: 5px;
}
.chat__msg--me {
  align-self: flex-end;
  background: var(--teal); color: #fff;
  border-bottom-right-radius: 5px;
}

.chat__typing { display: flex; gap: 4px; align-items: center; padding: .8rem .9rem; }
.chat__typing span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal);
  animation: chatDot 1.1s infinite ease-in-out;
}
.chat__typing span:nth-child(2) { animation-delay: .15s; }
.chat__typing span:nth-child(3) { animation-delay: .3s; }
@keyframes chatDot { 0%, 60%, 100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

.chat__chips {
  display: flex; flex-wrap: wrap; gap: .4rem;
  padding: .6rem 1rem .8rem;
  background: var(--cream);
}
.chat__chip {
  font-family: inherit; font-size: .82rem; color: var(--teal-700);
  padding: .45rem .85rem;
  background: #fff;
  border: 1.5px solid var(--teal); border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.chat__chip:hover { background: var(--teal); color: #fff; }
.chat__chip--quiet { border-color: var(--line); color: var(--muted); }
.chat__chip--quiet:hover { background: var(--muted); border-color: var(--muted); }

.chat__form {
  display: flex; gap: .5rem; align-items: center;
  padding: .7rem .8rem;
  border-top: 1px solid var(--line);
  background: #fff;
}
.chat__input {
  flex: 1 1 auto; min-width: 0;
  font-family: inherit; font-size: .95rem; color: var(--body);
  padding: .6rem .85rem;
  background: var(--cream);
  border: 1.5px solid var(--line); border-radius: var(--radius-pill);
}
.chat__input:focus { outline: none; border-color: var(--teal); background: #fff; }
.chat__pot { position: absolute; left: -9999px; width: 1px; height: 1px; }
.chat__send {
  flex: none; width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--teal); border: 0; border-radius: 50%;
  color: #fff; cursor: pointer;
  transition: background-color .2s var(--ease);
}
.chat__send:hover { background: var(--teal-600); }
.chat__send svg { width: 17px; height: 17px; fill: currentColor; }

.chat__note {
  margin: 0; padding: .6rem 1rem .8rem;
  font-size: .7rem; line-height: 1.5; color: var(--muted);
  background: #fff; border-top: 1px solid var(--line);
}

@media (max-width: 480px) {
  .chat { right: 1rem; bottom: 1rem; }
  .chat__panel {
    position: fixed; inset: auto .75rem calc(60px + 1.75rem) .75rem;
    width: auto; max-height: 72vh;
  }
}

/* ------------------------------------------------------------ to top --- */

.to-top {
  position: fixed; left: 1.25rem; bottom: 1.25rem; z-index: 70;
  width: 46px; height: 46px; display: grid; place-items: center;
  background: var(--teal); border-radius: 50%;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s, background-color .25s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--teal-700); }
.to-top svg { width: 20px; height: 20px; fill: #fff; }

/* ------------------------------------------------------- reveal on scroll */

.js .reveal { opacity: 0; transform: translateY(26px); }
.js .reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

/* -------------------------------------------------------- breakpoints --- */

@media (max-width: 1100px) {
  .nav__link { padding: .7rem .6rem; font-size: .78rem; }
  .site-header__cta { display: none; }
}

@media (max-width: 1150px) {
  .site-footer__grid { grid-template-columns: repeat(3, 1fr); gap: 2rem 2.25rem; }
  .site-footer__col--brand { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__media { order: 0; }
  .badge-stat { left: 12px; }
}

@media (max-width: 900px) {
  :root { --header-h: 96px; }

  .topbar__item--email, .topbar__actions .topbar__item:first-child { display: none; }
  .topbar__inner { justify-content: center; }

  .burger { display: grid; place-items: center; margin-left: auto; }

  .nav {
    position: fixed; top: 0; right: 0; z-index: 85;
    width: min(88vw, 380px); height: 100dvh;
    flex-direction: column; align-items: stretch;
    background: #fff;
    padding: 5.5rem 1.5rem 2rem;
    overflow-y: auto;
    box-shadow: -20px 0 50px rgba(35, 68, 63, .18);
    transform: translateX(100%);
    transition: transform .35s var(--ease);
  }
  .nav.is-open { transform: none; }

  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__item { border-bottom: 1px solid var(--line); }
  .nav__link { padding: 1rem .25rem; font-size: .9rem; }
  .nav__link.is-active::after { display: none; }
  .nav__caret { display: none; }

  .nav__toggle {
    display: block; position: absolute; top: .55rem; right: 0;
    width: 44px; height: 44px;
    background: none; border: 0; cursor: pointer;
  }
  .nav__toggle::before, .nav__toggle::after {
    content: ""; position: absolute; left: 50%; top: 50%;
    width: 12px; height: 2px; background: var(--teal-700);
    transform: translate(-50%, -50%);
    transition: transform .25s var(--ease), opacity .25s var(--ease);
  }
  .nav__toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
  .nav__toggle[aria-expanded="true"]::after { opacity: 0; }

  .nav__sub {
    position: static; opacity: 1; visibility: visible; transform: none;
    border: 0; box-shadow: none; background: var(--cream);
    border-radius: var(--radius-sm);
    max-height: 0; padding: 0 .5rem; overflow: hidden;
    transition: max-height .3s var(--ease), padding .3s var(--ease), margin .3s var(--ease);
  }
  .nav__sub.is-open { max-height: 420px; padding: .5rem; margin-bottom: .75rem; }

  .nav__cta { display: block; margin-top: 1.75rem; }
  .nav__cta .btn { width: 100%; }

  .hero { height: auto; min-height: 560px; }
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(35, 68, 63, .78) 0%, rgba(35, 68, 63, .62) 50%, rgba(35, 68, 63, .88) 100%);
  }
  .hero__inner { padding-block: 4.5rem 5.5rem; }
  .hero__content { max-width: none; text-align: center; }
  .hero__text { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__arrow { width: 44px; height: 44px; margin-top: -22px; }
  .hero__arrow svg { width: 16px; height: 16px; }
}

@media (max-width: 620px) {
  body { font-size: 1rem; }
  .wrap { width: calc(100% - 2rem); }
  .brand img { height: 70px; }
  .card { padding: 1.75rem 1.4rem; }
  .hero__arrow { display: none; }
  .hero__dot { width: 34px; }
  .gallery-grid img, .gallery-grid figure:nth-child(4n+1) img { height: 260px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-band__actions .btn { flex: 1 1 100%; }
  .badge-stat { position: static; margin-top: 1rem; display: inline-block; }
  .split__media::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .hero__slide.is-active .hero__media img { transform: scale(1.06); }
}

@media print {
  .topbar, .site-header, .hero, .cta-band, .to-top, .site-footer__bar { display: none; }
  body { color: #000; }
}
