/* ==========================================================================
   Cestero Fresh in Faith Cleaning LLC — Alexandria, Louisiana
   Design system. Palette is taken straight from the logo: purple script,
   teal cross, pink roof/bucket, lavender wreath, gold sparkles.
   Native scroll only. CSS motion + a small IntersectionObserver reveal.
   ========================================================================== */

:root {
  /* logo colours */
  --purple: #8A5BB0;
  --purple-2: #6E4392;
  --plum: #2E1A45;
  --plum-2: #3E2760;
  --lav: #B99AD6;
  --lav-2: #E9DFF3;
  --teal: #43ADA4;
  --teal-2: #257A73;
  --mint: #9DD5C7;
  --mint-2: #E4F4F0;
  --pink: #F09CBA;
  --pink-2: #FBE3EC;
  --gold: #E9C76A;

  /* neutrals */
  --cream: #FAF7FC;
  --white: #FFFFFF;
  --ink: #2E1A45;
  --ink-2: #5E4B73;
  --line: rgba(46, 26, 69, .12);

  /* type */
  --font-d: "Bricolage Grotesque", "Hanken Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-b: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  /* rhythm */
  --wrap: 1200px;
  --gutter: clamp(20px, 4vw, 40px);
  --sec: clamp(72px, 10vh, 120px);
  --r: 18px;
  --r-lg: 28px;
  --shadow: 0 18px 50px -20px rgba(46, 26, 69, .35);
  --shadow-sm: 0 8px 24px -12px rgba(46, 26, 69, .3);
  --head-h: 76px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--head-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font-b);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--purple-2); text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: var(--purple); }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-d); font-weight: 800; line-height: 1.02; letter-spacing: -.025em; color: var(--ink); text-wrap: balance; }
p { margin: 0; }
p + p { margin-top: 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--pink); color: var(--plum); }

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 1000;
  background: var(--plum); color: #fff; padding: 12px 18px; border-radius: 10px; font-weight: 700;
}
.skip:focus { top: 12px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-tight { max-width: 900px; }
.sec { padding: var(--sec) 0; position: relative; }
.sec-tight { padding: clamp(48px, 7vh, 80px) 0; }
.tint-mint { background: var(--mint-2); }
.tint-pink { background: var(--pink-2); }
.tint-lav { background: var(--lav-2); }
.band-plum { background: var(--plum); color: #fff; }
.band-plum h2, .band-plum h3 { color: #fff; }
.band-plum p { color: rgba(255, 255, 255, .82); }

/* type scale */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-b); font-weight: 800; font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--teal-2);
}
.kicker::before { content: ""; width: 26px; height: 3px; border-radius: 3px; background: var(--pink); }
.band-plum .kicker { color: var(--mint); }
.h2 { font-size: clamp(32px, 4.6vw, 58px); margin-top: 14px; max-width: 18ch; }
.h3 { font-size: clamp(24px, 3vw, 34px); }
.acc { color: var(--purple); }
.band-plum .acc { color: var(--pink); }
.acc-teal { color: var(--teal-2); }
.lead { font-size: clamp(17px, 1.4vw, 20px); color: var(--ink-2); max-width: 54ch; }
.band-plum .lead { color: rgba(255, 255, 255, .85); }
.sec-head { max-width: 760px; }
.sec-head .lead { margin-top: 18px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .h2, .sec-head.center .lead { margin-inline: auto; }
.sec-head.center .kicker::before { display: none; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 14px 26px; border-radius: 999px;
  font-weight: 800; font-size: 16px; letter-spacing: .01em; text-decoration: none; cursor: pointer;
  border: 2px solid transparent; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--purple); color: #fff; box-shadow: 0 12px 28px -12px rgba(138, 91, 176, .8); }
.btn-primary:hover { background: var(--purple-2); color: #fff; box-shadow: 0 16px 32px -12px rgba(138, 91, 176, .9); }
.btn-teal { background: var(--teal-2); color: #fff; box-shadow: 0 12px 28px -12px rgba(37, 122, 115, .8); }
.btn-teal:hover { background: #1f6660; color: #fff; }
.btn-pink { background: var(--pink); color: var(--plum); }
.btn-pink:hover { background: #ec8aae; color: var(--plum); }
.btn-ghost { background: rgba(255, 255, 255, .1); color: #fff; border-color: rgba(255, 255, 255, .55); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255, 255, 255, .2); color: #fff; border-color: #fff; }
.btn-outline { background: transparent; color: var(--plum); border-color: var(--plum); }
.btn-outline:hover { background: var(--plum); color: #fff; }
.btn-lg { min-height: 60px; padding: 16px 32px; font-size: 17px; }
.btn-block { width: 100%; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-head {
  position: fixed; inset: 0 0 auto 0; z-index: 60; height: var(--head-h);
  display: flex; align-items: center;
  transition: transform .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.site-head::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20, 8, 36, .62), rgba(20, 8, 36, 0));
  opacity: 1; transition: opacity .35s var(--ease);
}
.site-head.scrolled { background: rgba(250, 247, 252, .92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line), 0 10px 30px -20px rgba(46, 26, 69, .4); }
.site-head.scrolled::before { opacity: 0; }
.site-head.hidden { transform: translateY(-100%); }
.site-head .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; min-height: 44px; }
.brand-mark { height: 54px; width: auto; flex: none; filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .25)); transition: filter .35s var(--ease); }
.brand-text { display: flex; flex-direction: column; line-height: 1; text-shadow: 0 1px 12px rgba(0, 0, 0, .35); }
.brand-name { font-family: var(--font-d); font-weight: 800; font-size: 22px; letter-spacing: -.02em; }
.brand-sub { font-size: 10.5px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; margin-top: 5px; opacity: .92; }
.site-head.scrolled .brand { color: var(--plum); }
.site-head.scrolled .brand-text { text-shadow: none; }
.site-head.scrolled .brand-mark { filter: none; }
.site-head.solid { background: var(--cream); box-shadow: 0 1px 0 var(--line); }
.site-head.solid::before { opacity: 0; }
.site-head.solid .brand { color: var(--plum); }
.site-head.solid .brand-text { text-shadow: none; }
.site-head.solid .brand-mark { filter: none; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  display: inline-flex; align-items: center; min-height: 44px; padding: 8px 14px; border-radius: 999px;
  color: #fff; text-decoration: none; font-weight: 700; font-size: 15px; text-shadow: 0 1px 10px rgba(0, 0, 0, .4);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { background: rgba(255, 255, 255, .16); }
.site-head.scrolled .nav a, .site-head.solid .nav a { color: var(--plum); text-shadow: none; }
.site-head.scrolled .nav a:hover, .site-head.scrolled .nav a[aria-current="page"],
.site-head.solid .nav a:hover, .site-head.solid .nav a[aria-current="page"] { background: var(--lav-2); }
.site-head .nav .btn, .site-head.scrolled .nav .btn, .site-head.solid .nav .btn { min-height: 46px; padding: 10px 20px; margin-left: 10px; text-shadow: none; color: #fff; background: var(--purple); }
.site-head .nav .btn:hover, .site-head.scrolled .nav .btn:hover, .site-head.solid .nav .btn:hover { background: var(--purple-2); color: #fff; }

.nav-dd { position: relative; }
.nav-dd summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; min-height: 44px; padding: 8px 14px; border-radius: 999px; color: #fff; font-weight: 700; font-size: 15px; text-shadow: 0 1px 10px rgba(0, 0, 0, .4); }
.nav-dd summary::-webkit-details-marker { display: none; }
.nav-dd summary::after { content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translateY(-2px) rotate(45deg); }
.nav-dd summary:hover { background: rgba(255, 255, 255, .16); }
.site-head.scrolled .nav-dd summary, .site-head.solid .nav-dd summary { color: var(--plum); text-shadow: none; }
.site-head.scrolled .nav-dd summary:hover, .site-head.solid .nav-dd summary:hover { background: var(--lav-2); }
.nav-dd-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 260px; padding: 8px;
  background: #fff; border-radius: 16px; box-shadow: var(--shadow); border: 1px solid var(--line);
}
.nav-dd-menu a { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; padding: 10px 14px; border-radius: 10px; color: var(--plum); text-shadow: none; line-height: 1.25; }
.nav-dd-menu a small { font-weight: 500; font-size: 13px; color: var(--ink-2); }
.nav-dd-menu a:hover { background: var(--lav-2); }

.menu-btn {
  display: none; align-items: center; justify-content: center; gap: 10px;
  min-width: 48px; min-height: 48px; padding: 0 14px; border-radius: 999px; border: 0;
  background: rgba(255, 255, 255, .14); color: #fff; font-weight: 800; font-size: 14px; letter-spacing: .06em; cursor: pointer;
  backdrop-filter: blur(6px);
}
.menu-btn span { width: 20px; height: 2px; background: currentColor; border-radius: 2px; box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor; }
.site-head.scrolled .menu-btn, .site-head.solid .menu-btn { background: var(--lav-2); color: var(--plum); }

.mnav {
  position: fixed; inset: 0; z-index: 70; background: var(--plum); color: #fff;
  display: flex; flex-direction: column; padding: 18px var(--gutter) calc(24px + env(safe-area-inset-bottom));
  transform: translateY(-102%); transition: transform .4s var(--ease); visibility: hidden;
  overflow-y: auto;
}
.mnav.open { transform: none; visibility: visible; }
.mnav-top { display: flex; align-items: center; justify-content: space-between; min-height: 44px; }
.mnav-close { min-width: 48px; min-height: 48px; border-radius: 999px; border: 2px solid rgba(255, 255, 255, .35); background: transparent; color: #fff; font-weight: 800; cursor: pointer; }
.mnav-links { margin-top: 28px; display: grid; gap: 4px; }
.mnav-links a {
  display: flex; align-items: center; justify-content: space-between; padding: 14px 6px; min-height: 56px;
  color: #fff; text-decoration: none; font-family: var(--font-d); font-weight: 800; font-size: clamp(28px, 7vw, 40px); letter-spacing: -.02em;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.mnav-links a.sub { font-family: var(--font-b); font-weight: 600; font-size: 18px; min-height: 48px; padding-left: 18px; color: rgba(255, 255, 255, .85); }
.mnav-links a.sub::before { content: "— "; color: var(--pink); }
.mnav-links a[aria-current="page"] { color: var(--pink); }
.mnav-cta { margin-top: auto; padding-top: 28px; display: grid; gap: 10px; }
.mnav-meta { margin-top: 18px; font-size: 14px; color: rgba(255, 255, 255, .7); }
.body-lock { overflow: hidden; }

/* --------------------------------------------------------------------------
   Hero (video loop under a plum veil, logo top centre, everything centred)
   -------------------------------------------------------------------------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden; color: #fff;
  min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center;
  background: var(--plum);
}
@supports not (height: 1svh) { .hero { min-height: 100vh; } }
.hero-media { position: absolute; inset: 0; z-index: -2; background: var(--plum) center / cover no-repeat; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media video { position: absolute; inset: 0; }
.hero-veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 78% 58% at 50% 55%, rgba(30, 14, 50, .55), transparent 72%),
    linear-gradient(180deg, rgba(30, 14, 50, .78) 0%, rgba(46, 26, 69, .6) 44%, rgba(30, 14, 50, .93) 100%);
}
.hero-in {
  position: relative; z-index: 1; width: 100%; max-width: 900px; margin: 0 auto;
  padding: calc(var(--head-h) + clamp(20px, 4vh, 44px)) var(--gutter) clamp(72px, 10vh, 110px);
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.hero-logo {
  width: min(70vw, 270px); height: auto; margin: 0 auto clamp(18px, 3vh, 28px);
  filter: drop-shadow(0 0 22px rgba(255, 255, 255, .28)) drop-shadow(0 10px 30px rgba(0, 0, 0, .35));
}
.pill {
  display: inline-flex; align-items: center; gap: 8px; max-width: min(100%, 560px); flex-wrap: wrap; justify-content: center;
  padding: 8px 16px; border-radius: 999px; border: 1.5px solid rgba(255, 255, 255, .45); background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #fff;
}
.pill i { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 4px rgba(240, 156, 186, .3); }
.hero h1 {
  color: #fff; font-size: clamp(44px, 8.2vw, 92px); margin-top: clamp(18px, 2.6vh, 30px);
  max-width: 14ch; margin-inline: auto; text-shadow: 0 6px 30px rgba(0, 0, 0, .35);
}
.hero h1 .acc { color: var(--pink); }
.hero .sub { margin: clamp(18px, 3vh, 28px) auto 0; max-width: 36ch; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6; color: rgba(255, 255, 255, .9); text-wrap: pretty; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: clamp(26px, 4vh, 40px); }
.hero-trust {
  margin-top: clamp(26px, 4vh, 40px); padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .22);
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; font-size: 14px; font-weight: 600; color: rgba(255, 255, 255, .85);
}
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 16px; height: 16px; color: var(--gold); flex: none; }
.hero-scroll {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 1;
  width: 26px; height: 42px; border: 2px solid rgba(255, 255, 255, .5); border-radius: 14px;
}
.hero-scroll::after { content: ""; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px; background: var(--pink); animation: scrollhint 1.8s ease-in-out infinite; }
@keyframes scrollhint { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { transform: translateY(0); opacity: 0; } }

/* inner-page hero: photo + slow pan */
.page-hero { min-height: min(78svh, 720px); }
@supports not (height: 1svh) { .page-hero { min-height: min(78vh, 720px); } }
.page-hero .hero-in { padding-bottom: clamp(64px, 9vh, 100px); }
.page-hero .hero-logo { width: min(44vw, 170px); }
.page-hero h1 { font-size: clamp(38px, 6.6vw, 82px); max-width: 16ch; }
.kb { animation: kenburns 26s var(--ease) infinite alternate; transform-origin: 50% 50%; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.12) translate(-1.4%, -1%); } }

/* --------------------------------------------------------------------------
   Ticker
   -------------------------------------------------------------------------- */
.ticker { background: var(--plum); color: #fff; overflow: hidden; padding: 14px 0; border-top: 1px solid rgba(255, 255, 255, .08); }
.ticker-track { display: flex; width: max-content; gap: 0; animation: tick 46s linear infinite; }
.ticker-track ul { display: flex; align-items: center; gap: 0; padding-right: 0; }
.ticker-track li { display: inline-flex; align-items: center; gap: 18px; padding: 0 18px; font-family: var(--font-d); font-weight: 700; font-size: 15px; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.ticker-track li::after { content: "//"; color: var(--pink); font-weight: 800; }
@keyframes tick { to { transform: translateX(-50%); } }
.ticker:hover .ticker-track { animation-play-state: paused; }

/* --------------------------------------------------------------------------
   Intro split (asymmetric editorial)
   -------------------------------------------------------------------------- */
.intro { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.intro-media { position: relative; }
.intro-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.intro-media .tag {
  position: absolute; right: -14px; bottom: 34px; max-width: 250px;
  padding: 16px 20px; border-radius: 16px; background: var(--plum); color: #fff; box-shadow: var(--shadow);
  font-family: var(--font-d); font-weight: 800; font-size: 20px; line-height: 1.1; letter-spacing: -.01em;
}
.intro-media .tag small { display: block; margin-top: 8px; font-family: var(--font-b); font-weight: 600; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--mint); }
.intro-media .sparkle { position: absolute; left: -18px; top: 26px; width: 64px; height: 64px; color: var(--gold); filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .15)); }
.intro-copy .h2 { max-width: 14ch; }
.intro-copy .lead { margin-top: 18px; }
.intro-list { margin-top: 26px; display: grid; gap: 12px; }
.intro-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: var(--ink); }
.intro-list svg { width: 22px; height: 22px; flex: none; color: var(--teal-2); margin-top: 2px; }
.intro-cta { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   Services — numbered editorial blocks, alternating
   -------------------------------------------------------------------------- */
.svc-list { display: grid; gap: clamp(40px, 7vh, 88px); margin-top: clamp(40px, 6vh, 64px); }
.svc { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 64px); align-items: center; }
.svc:nth-child(even) .svc-media { order: 2; }
.svc-media { position: relative; }
.svc-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.svc-num {
  position: absolute; left: 18px; top: -26px; z-index: 1;
  font-family: var(--font-d); font-weight: 800; font-size: clamp(64px, 8vw, 110px); line-height: 1; letter-spacing: -.04em;
  color: transparent; -webkit-text-stroke: 2px var(--pink); text-stroke: 2px var(--pink);
}
.svc:nth-child(even) .svc-num { left: auto; right: 18px; -webkit-text-stroke-color: var(--teal); }
.svc-copy .kicker { color: var(--purple-2); }
.svc-copy .h3 { font-size: clamp(28px, 3.6vw, 44px); margin-top: 12px; max-width: 14ch; }
.svc-copy p { margin-top: 14px; color: var(--ink-2); max-width: 44ch; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chips li { padding: 7px 13px; border-radius: 999px; background: #fff; border: 1.5px solid var(--line); font-size: 13.5px; font-weight: 700; color: var(--plum); }
.svc:nth-child(2) .chips li { border-color: rgba(67, 173, 164, .4); background: var(--mint-2); }
.svc:nth-child(3) .chips li { border-color: rgba(240, 156, 186, .5); background: var(--pink-2); }
.svc-copy .more { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; font-weight: 800; color: var(--purple-2); text-decoration: none; min-height: 44px; }
.svc-copy .more svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.svc-copy .more:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   Before & After
   -------------------------------------------------------------------------- */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 40px); margin-top: clamp(36px, 5vh, 56px); }
.ba { background: #fff; border-radius: var(--r-lg); padding: clamp(14px, 2vw, 22px); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; position: relative; }
.ba-pair figure { margin: 0; position: relative; }
.ba-pair img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 14px; }
.ba-pair figcaption {
  position: absolute; left: 10px; top: 10px; padding: 5px 11px; border-radius: 999px;
  font-size: 11.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  background: rgba(46, 26, 69, .85); color: #fff; backdrop-filter: blur(4px);
}
.ba-pair figure.after figcaption { background: var(--pink); color: var(--plum); }
.ba-arrow {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; border-radius: 50%;
  background: #fff; color: var(--purple); display: grid; place-items: center; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.ba-arrow svg { width: 18px; height: 18px; }
.ba-copy { padding: 18px 6px 4px; }
.ba-copy h3 { font-size: 22px; }
.ba-copy p { margin-top: 6px; font-size: 15px; color: var(--ink-2); }

/* --------------------------------------------------------------------------
   Full-width photo moment
   -------------------------------------------------------------------------- */
.photo-break { position: relative; isolation: isolate; overflow: hidden; min-height: min(70vh, 640px); display: flex; align-items: flex-end; color: #fff; background: var(--plum); }
.photo-break img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.photo-break::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(46, 26, 69, .05) 30%, rgba(46, 26, 69, .82) 100%); }
.photo-break .wrap { padding-block: clamp(36px, 6vh, 64px); }
.photo-break h2 { color: #fff; font-size: clamp(32px, 5vw, 64px); max-width: 14ch; }
.photo-break h2 .acc { color: var(--pink); }
.photo-break p { margin-top: 12px; max-width: 40ch; color: rgba(255, 255, 255, .85); }

/* --------------------------------------------------------------------------
   Full-width before/after split — the grout pair (same floor, same shoes,
   dark grout on the left, scrubbed grout on the right). Copy sits over the
   bottom of both halves; the difference reads across the whole frame.
   -------------------------------------------------------------------------- */
.split-ba { position: relative; isolation: isolate; overflow: hidden; background: var(--plum); color: #fff; }
.split-ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; background: var(--pink); min-height: min(74vh, 700px); }
.split-ba-pair figure { margin: 0; position: relative; overflow: hidden; background: var(--plum); min-height: inherit; }
.split-ba-pair img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-ba-pair figcaption {
  position: absolute; left: 18px; top: 18px; z-index: 1; padding: 7px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  background: rgba(46, 26, 69, .85); color: #fff; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.split-ba-pair figure.after figcaption { background: var(--pink); color: var(--plum); }
.split-ba-copy {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; text-align: center;
  padding: clamp(90px, 16vh, 160px) var(--gutter) clamp(36px, 6vh, 64px);
  background: linear-gradient(180deg, rgba(46, 26, 69, 0) 0%, rgba(46, 26, 69, .86) 55%, rgba(30, 14, 50, .97) 100%);
}
.split-ba-copy .kicker { color: var(--mint); justify-content: center; }
.split-ba-copy .kicker::before { display: none; }
.split-ba-copy h2 { color: #fff; font-size: clamp(32px, 5vw, 64px); max-width: 16ch; margin: 10px auto 0; text-shadow: 0 4px 24px rgba(0, 0, 0, .35); }
.split-ba-copy h2 .acc { color: var(--pink); }
.split-ba-copy p { margin: 12px auto 0; max-width: 44ch; color: rgba(255, 255, 255, .86); }

/* --------------------------------------------------------------------------
   Faith band — the signature moment
   -------------------------------------------------------------------------- */
.faith { position: relative; isolation: isolate; overflow: hidden; background: var(--plum); color: #fff; text-align: center; }
.faith-bg { position: absolute; inset: 0; z-index: -2; }
.faith-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .16; filter: saturate(.6); }
.faith::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 20% 20%, rgba(138, 91, 176, .45), transparent 70%),
    radial-gradient(50% 45% at 85% 80%, rgba(67, 173, 164, .35), transparent 70%);
}
.faith .wrap { max-width: 980px; }
.faith-cross { width: 44px; height: 56px; margin: 0 auto 22px; color: var(--teal); }
.faith blockquote { margin: 0 auto; max-width: 24ch; font-family: var(--font-d); font-weight: 800; font-size: clamp(28px, 4.6vw, 58px); line-height: 1.06; letter-spacing: -.02em; }
.faith blockquote .acc { color: var(--pink); }
.faith cite { display: block; margin-top: 22px; font-style: normal; font-weight: 800; font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.faith p { margin: 26px auto 0; max-width: 52ch; color: rgba(255, 255, 255, .82); }
.faith .sparkles { position: absolute; color: var(--gold); opacity: .8; width: 46px; height: 46px; }
.faith .sparkles.a { left: 8%; top: 18%; }
.faith .sparkles.b { right: 9%; bottom: 20%; width: 34px; height: 34px; }

/* --------------------------------------------------------------------------
   Reviews carousel (scroll-snap, swipeable)
   -------------------------------------------------------------------------- */
.reviews-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.rail-nav { display: flex; gap: 8px; }
.rail-btn { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--plum); background: #fff; color: var(--plum); cursor: pointer; display: grid; place-items: center; transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease); }
.rail-btn:hover { background: var(--plum); color: #fff; transform: translateY(-2px); }
.rail-btn svg { width: 20px; height: 20px; }
.rail {
  margin-top: 32px; display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter);
  padding: 8px var(--gutter) 24px; margin-inline: calc(-1 * var(--gutter)); scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.rail::-webkit-scrollbar { display: none; }
.rev-card {
  flex: 0 0 min(86vw, 400px); scroll-snap-align: start; display: flex; flex-direction: column;
  background: #fff; border-radius: var(--r-lg); padding: 26px 26px 22px; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  position: relative;
}
.rev-card::before { content: "\201C"; position: absolute; right: 22px; top: 6px; font-family: var(--font-d); font-weight: 800; font-size: 84px; line-height: 1; color: var(--lav-2); }
.stars { display: inline-flex; gap: 3px; color: var(--gold); }
.stars svg { width: 18px; height: 18px; }
.rev-card blockquote { margin: 16px 0 0; font-size: 16px; line-height: 1.6; color: var(--ink); flex: 1; }
.rev-card footer { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 14px; }
.rev-card footer strong { color: var(--plum); font-weight: 800; }
.rev-card footer span { display: inline-flex; align-items: center; gap: 6px; color: var(--ink-2); font-weight: 600; font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; }
.rev-card footer span svg { width: 16px; height: 16px; }

/* --------------------------------------------------------------------------
   Steps (numbered timeline)
   -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); margin-top: clamp(36px, 5vh, 56px); position: relative; }
.steps::before { content: ""; position: absolute; left: 6%; right: 6%; top: 30px; height: 2px; background: linear-gradient(90deg, var(--pink), var(--purple), var(--teal)); opacity: .55; }
.step { position: relative; padding-top: 0; }
.step-num { width: 60px; height: 60px; border-radius: 50%; background: var(--plum); color: #fff; display: grid; place-items: center; font-family: var(--font-d); font-weight: 800; font-size: 22px; position: relative; box-shadow: 0 0 0 8px var(--cream); }
.tint-mint .step-num { box-shadow: 0 0 0 8px var(--mint-2); }
.step:nth-child(2) .step-num { background: var(--purple); }
.step:nth-child(3) .step-num { background: var(--teal-2); }
.step h3 { margin-top: 18px; font-size: 22px; }
.step p { margin-top: 8px; color: var(--ink-2); max-width: 32ch; }

/* --------------------------------------------------------------------------
   Area band
   -------------------------------------------------------------------------- */
.area { background: var(--teal); color: var(--plum); overflow: hidden; position: relative; }
.area::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 60% at 90% 10%, rgba(255, 255, 255, .25), transparent 70%); pointer-events: none; }
.area .wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(24px, 4vw, 60px); align-items: center; position: relative; }
.area h2 { color: var(--plum); font-size: clamp(34px, 5vw, 64px); max-width: 12ch; }
.area h2 .acc { color: #fff; }
.area p { margin-top: 14px; color: rgba(46, 26, 69, .85); max-width: 42ch; font-weight: 500; }
.area-pin { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-d); font-weight: 800; font-size: clamp(22px, 2.6vw, 30px); letter-spacing: -.01em; color: var(--plum); }
.area-pin svg { width: 30px; height: 30px; color: #fff; flex: none; }
.area-side { display: grid; gap: 14px; }
.area-side .btn { justify-self: start; }
.area-note { font-size: 14px; color: rgba(46, 26, 69, .8); }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq { margin-top: clamp(28px, 4vh, 44px); display: grid; gap: 10px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; min-height: 60px; font-family: var(--font-d); font-weight: 800; font-size: 18px; letter-spacing: -.01em; color: var(--plum); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--lav-2); color: var(--purple-2); font-size: 20px; font-weight: 800; transition: transform .25s var(--ease), background .25s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); background: var(--pink); color: var(--plum); }
.faq .faq-a { padding: 0 20px 20px; color: var(--ink-2); max-width: 64ch; }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band { position: relative; isolation: isolate; overflow: hidden; background: var(--purple); color: #fff; text-align: center; }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(60% 70% at 10% 0%, rgba(240, 156, 186, .55), transparent 65%), radial-gradient(60% 70% at 95% 100%, rgba(67, 173, 164, .6), transparent 65%); }
.cta-band h2 { color: #fff; font-size: clamp(34px, 5.4vw, 70px); max-width: 16ch; margin-inline: auto; }
.cta-band h2 .acc { color: var(--pink); }
.cta-band p { margin: 16px auto 0; max-width: 44ch; color: rgba(255, 255, 255, .88); }
.cta-band .hero-cta { margin-top: 28px; }
.cta-band .btn-primary { background: #fff; color: var(--plum); box-shadow: 0 12px 30px -12px rgba(0, 0, 0, .4); }
.cta-band .btn-primary:hover { background: var(--pink-2); color: var(--plum); }

/* --------------------------------------------------------------------------
   Contact / form
   -------------------------------------------------------------------------- */
.contact { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.contact-side .h2 { max-width: 12ch; }
.contact-list { margin-top: 26px; display: grid; gap: 14px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list svg { width: 22px; height: 22px; color: var(--teal-2); flex: none; margin-top: 4px; }
.contact-list a { font-weight: 800; color: var(--plum); text-decoration: none; font-size: 18px; }
.contact-list a:hover { color: var(--purple); text-decoration: underline; }
.contact-list small { display: block; color: var(--ink-2); font-size: 14px; margin-top: 2px; }
.contact-logo { width: min(100%, 320px); height: auto; margin-top: 28px; }
.form { background: #fff; border-radius: var(--r-lg); padding: clamp(22px, 3vw, 36px); box-shadow: var(--shadow); border: 1px solid var(--line); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 800; font-size: 13.5px; letter-spacing: .04em; color: var(--plum); margin-bottom: 6px; }
.field label span { color: var(--ink-2); font-weight: 500; letter-spacing: 0; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: 12px 14px; border-radius: 12px; border: 1.5px solid rgba(46, 26, 69, .22); background: var(--cream);
  font: inherit; color: var(--ink); transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 4px rgba(138, 91, 176, .2); background: #fff; }
.field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--plum) 50%), linear-gradient(135deg, var(--plum) 50%, transparent 50%); background-position: calc(100% - 20px) 55%, calc(100% - 14px) 55%; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 40px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-foot { margin-top: 18px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-foot small { color: var(--ink-2); font-size: 13px; }
.f-status { margin-top: 14px; font-weight: 600; font-size: 15px; min-height: 1.4em; }
.f-status.ok { color: var(--teal-2); }
.f-status.err { color: #B23A5B; }
.f-status a { color: var(--purple-2); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-foot { background: var(--plum); color: rgba(255, 255, 255, .8); padding: clamp(48px, 7vh, 80px) 0 32px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(24px, 4vw, 56px); }
.foot-brand .brand { color: #fff; }
.foot-brand .brand-mark { filter: none; }
.foot-brand .brand-text { text-shadow: none; }
.foot-brand p { margin-top: 18px; max-width: 34ch; font-size: 15px; }
.foot-verse { margin-top: 18px; padding-left: 14px; border-left: 3px solid var(--pink); font-size: 14px; color: rgba(255, 255, 255, .7); max-width: 36ch; }
.foot-verse b { display: block; margin-top: 6px; color: var(--gold); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; }
.site-foot h4 { color: #fff; font-family: var(--font-b); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 14px; }
.foot-links { display: grid; gap: 8px; }
.foot-links a { color: rgba(255, 255, 255, .85); text-decoration: none; min-height: 32px; display: inline-flex; align-items: center; font-weight: 600; }
.foot-links a:hover { color: var(--pink); }
.foot-contact a { color: #fff; font-weight: 800; text-decoration: none; }
.foot-contact a:hover { color: var(--pink); }
.foot-contact li { margin-bottom: 10px; line-height: 1.4; }
.foot-contact small { display: block; color: rgba(255, 255, 255, .6); font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 2px; }
.foot-legal { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .12); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; color: rgba(255, 255, 255, .6); }

/* --------------------------------------------------------------------------
   Sticky mobile action bar
   -------------------------------------------------------------------------- */
.sticky-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(250, 247, 252, .94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line); gap: 8px;
}
.sticky-bar .btn { flex: 1; min-height: 50px; padding: 10px 12px; font-size: 15px; }

/* --------------------------------------------------------------------------
   Inner pages
   -------------------------------------------------------------------------- */
.prose { max-width: 66ch; }
.prose p { color: var(--ink-2); font-size: 17.5px; }
.prose p + p { margin-top: 1em; }
.prose h2 { font-size: clamp(28px, 3.6vw, 42px); margin-top: 1.6em; margin-bottom: .5em; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin-top: 24px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; padding: 12px 14px; border-radius: 12px; background: #fff; border: 1px solid var(--line); }
.checks svg { width: 20px; height: 20px; color: var(--teal-2); flex: none; margin-top: 3px; }
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 40px); align-items: start; }
.duo img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow); object-fit: cover; aspect-ratio: 4 / 5; }
.duo img.wide { aspect-ratio: 4 / 3; }
.duo .offset { margin-top: clamp(30px, 6vw, 80px); }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: clamp(30px, 5vh, 50px); }
.gallery figure { margin: 0; position: relative; overflow: hidden; border-radius: 18px; background: var(--lav-2); }
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; transition: transform .8s var(--ease); }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figure.tall { grid-row: span 2; }
.gallery figure.tall img { aspect-ratio: auto; height: 100%; }
.gallery figure.wide { grid-column: span 2; }
.gallery figure.wide img { aspect-ratio: 8 / 5; }
.gallery figcaption { position: absolute; left: 12px; bottom: 12px; padding: 6px 12px; border-radius: 999px; background: rgba(46, 26, 69, .82); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .06em; backdrop-filter: blur(4px); }
.svc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: clamp(30px, 5vh, 50px); }
.svc-card { position: relative; display: flex; flex-direction: column; justify-content: flex-end; min-height: 440px; border-radius: var(--r-lg); overflow: hidden; color: #fff; text-decoration: none; isolation: isolate; box-shadow: var(--shadow); }
.svc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .9s var(--ease); }
.svc-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(46, 26, 69, 0) 35%, rgba(46, 26, 69, .92) 100%); }
.svc-card:hover img { transform: scale(1.05); }
.svc-card-in { padding: 24px; }
.svc-card .num { font-family: var(--font-d); font-weight: 800; font-size: 44px; color: transparent; -webkit-text-stroke: 1.5px var(--pink); line-height: 1; }
.svc-card h3 { color: #fff; font-size: 26px; margin-top: 8px; }
.svc-card p { margin-top: 8px; color: rgba(255, 255, 255, .85); font-size: 15px; }
.svc-card .more { margin-top: 14px; font-weight: 800; color: var(--pink); display: inline-flex; align-items: center; gap: 6px; }
.svc-card .more svg { width: 16px; height: 16px; }
.breadcrumb { display: flex; gap: 8px; flex-wrap: wrap; font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(255, 255, 255, .75); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255, 255, 255, .85); text-decoration: none; }
.breadcrumb a:hover { color: var(--pink); }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: var(--pink); }
.page-cta { margin-top: 34px; display: flex; gap: 12px; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   Reveal (fail-open: only hidden when JS is present)
   -------------------------------------------------------------------------- */
html.js .rev { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .rev.in { opacity: 1; transform: none; }
html.js .rev-d1 { transition-delay: .08s; }
html.js .rev-d2 { transition-delay: .16s; }
html.js .rev-d3 { transition-delay: .24s; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .nav { display: none; }
  .menu-btn { display: inline-flex; }
  .intro { grid-template-columns: 1fr; }
  .intro-media .tag { right: 12px; bottom: -18px; }
  .contact { grid-template-columns: 1fr; }
  .svc-cards { grid-template-columns: 1fr; }
  .svc-card { min-height: 340px; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery figure.tall { grid-row: auto; }
  .gallery figure.tall img { aspect-ratio: 4 / 5; height: auto; }
  .gallery figure.wide { grid-column: span 2; }
  .area .wrap { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  :root { --head-h: 68px; --sec: clamp(56px, 8vh, 80px); }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  .sticky-bar { display: flex; }
  .brand-mark { height: 50px; }
  .brand-name { font-size: 20px; }
  .svc { grid-template-columns: 1fr; gap: 26px; }
  .svc:nth-child(even) .svc-media { order: 0; }
  .svc-media img { aspect-ratio: 4 / 3; }
  .svc-num { top: -20px; }
  .ba-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .steps::before { left: 29px; right: auto; top: 30px; bottom: 30px; width: 2px; height: auto; background: linear-gradient(180deg, var(--pink), var(--purple), var(--teal)); }
  .step { display: grid; grid-template-columns: 60px 1fr; column-gap: 18px; }
  .step h3 { margin-top: 0; grid-column: 2; }
  .step p { grid-column: 2; }
  .duo { grid-template-columns: 1fr; }
  .duo .offset { margin-top: 0; }
  .checks { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-scroll { display: none; }
  .photo-break { min-height: 60vh; }
  .split-ba-pair { min-height: min(64vh, 560px); gap: 3px; }
  .split-ba-pair figcaption { left: 10px; top: 10px; font-size: 10.5px; padding: 5px 10px; }
  .split-ba-copy { padding-top: 70px; }
  .split-ba-copy h2 { max-width: 13ch; }
}
@media (max-width: 640px) {
  .hero-in { padding-inline: 22px; }
  .hero-logo { width: min(58vw, 215px); }
  .hero h1 { max-width: 12ch; }
  .hero .sub { max-width: 30ch; font-size: 16px; }
  .hero-cta { width: 100%; flex-direction: column; gap: 10px; }
  .hero-cta .btn { width: 100%; }
  .hero-trust { gap: 8px 16px; font-size: 13px; }
  .form-grid { grid-template-columns: 1fr; }
  .intro-media .tag { max-width: 210px; font-size: 17px; padding: 14px 16px; }
  .intro-media .sparkle { width: 48px; height: 48px; left: -8px; top: 14px; }
  .rev-card { padding: 22px 20px 18px; }
  .gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery figure.wide { grid-column: span 2; }
  .ba { padding: 12px; }
  .ba-pair { gap: 8px; }
  .ba-pair figcaption { left: 8px; top: 8px; font-size: 10.5px; padding: 4px 9px; }
  .ba-arrow { width: 34px; height: 34px; }
  .brand-mark { height: 46px; }
  .brand-sub { display: none; }
  .btn { padding: 14px 20px; }
  .nav-dd-menu { display: none; }
}
@media (max-width: 380px) {
  .brand-name { font-size: 18px; }
  .hero h1 { font-size: 40px; }
}

/* --------------------------------------------------------------------------
   Reduced motion — poster only, no pans, no reveals
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media video { display: none; }
  .kb, .ticker-track, .hero-scroll::after { animation: none !important; }
  html.js .rev { opacity: 1; transform: none; transition: none; }
  .btn, .rail-btn, .gallery img, .svc-card img, .site-head, .mnav { transition: none !important; }
  .ticker-track { flex-wrap: wrap; width: auto; }
  .ticker-track ul[aria-hidden] { display: none; }
}

/* --------------------------------------------------------------------------
   Booking link (edit 2026-09-14) — pink "Book now" in the header; the header
   phone button steps aside on narrow desktops so both fit beside the About link
   -------------------------------------------------------------------------- */
.site-head .nav .btn-book, .site-head.scrolled .nav .btn-book, .site-head.solid .nav .btn-book { background: var(--pink); color: var(--plum); }
.site-head .nav .btn-book:hover, .site-head.scrolled .nav .btn-book:hover, .site-head.solid .nav .btn-book:hover { background: #ec8aae; color: var(--plum); }
@media (max-width: 1180px) { .site-head .nav .btn-call { display: none; } }
.field input[type="date"] { -webkit-appearance: none; appearance: none; min-width: 0; }
.field input[type="date"]::-webkit-date-and-time-value { text-align: left; }

/* --------------------------------------------------------------------------
   Facebook (edit 2026-09-21) — Facebook-blue circle in the desktop nav and a
   matching one beside MENU on phones, so it reads on first load
   -------------------------------------------------------------------------- */
.site-head .nav .nav-fb, .site-head.scrolled .nav .nav-fb, .site-head.solid .nav .nav-fb { justify-content: center; width: 46px; min-height: 46px; padding: 0; margin-left: 10px; background: #166FE5; color: #fff; text-shadow: none; }
.site-head .nav .nav-fb:hover, .site-head.scrolled .nav .nav-fb:hover, .site-head.solid .nav .nav-fb:hover { background: #1256B8; color: #fff; }
.nav-fb svg, .head-fb svg { width: 20px; height: 20px; flex: none; }
.head-fb { display: none; align-items: center; justify-content: center; flex: none; width: 48px; height: 48px; margin-left: auto; margin-right: -6px; border-radius: 999px; background: #166FE5; color: #fff; box-shadow: 0 8px 20px -10px rgba(22, 111, 229, .9); }
.head-fb:hover { background: #1256B8; color: #fff; }
@media (max-width: 960px) { .head-fb { display: inline-flex; } }

/* print */
@media print {
  .site-head, .sticky-bar, .mnav, .hero-media video, .hero-scroll, .ticker { display: none !important; }
  .hero { min-height: auto; color: #000; background: #fff; }
  .hero-veil { display: none; }
}

/* fb label */
.nav-fb .fb-txt, .head-fb .fb-txt { display: none; font-weight: 800; font-size: 14px; letter-spacing: .01em; }
@media (min-width: 1400px) { .site-head .nav .nav-fb, .site-head.scrolled .nav .nav-fb, .site-head.solid .nav .nav-fb { width: auto; padding: 0 16px 0 12px; gap: 8px; } .site-head .nav .nav-fb .fb-txt { display: inline; } }
@media (min-width: 430px) and (max-width: 860px) { .head-fb { width: auto; padding: 0 16px 0 12px; gap: 8px; } .head-fb .fb-txt { display: inline; } }
.breadcrumb, .breadcrumb li { list-style: none; padding-left: 0; }
.site-head .brand-sub { white-space: nowrap; }
.nav > a, .nav-dd > summary { white-space: nowrap; }
@media (max-width: 1399px) { .nav { gap: 2px; } .nav > a, .nav-dd > summary { padding-left: 10px; padding-right: 10px; } }
.site-head .head-fb, .site-head .nav .nav-fb { box-shadow: 0 0 0 2px rgba(255,255,255,.55), 0 8px 20px -10px rgba(0,0,0,.6); }

/* pricing page */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: clamp(30px, 5vh, 50px); }
.price-card { position: relative; display: flex; flex-direction: column; gap: 10px; padding: 26px 22px 24px; border-radius: 20px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.price-card.mint { border-top: 5px solid var(--teal); } .price-card.lav { border-top: 5px solid var(--lav); } .price-card.pink { border-top: 5px solid var(--pink); }
.price-card h3 { font-size: 1.35rem; line-height: 1.1; }
.price-card .price { font-family: inherit; font-size: 1.6rem; font-weight: 800; color: var(--purple-2); letter-spacing: -.01em; }
.price-card .note { font-size: .92rem; color: var(--plum-2); opacity: .85; margin-top: auto; }
.price-card .btn { align-self: flex-start; margin-top: 6px; }
.checks.one { grid-template-columns: 1fr; gap: 8px; margin-top: 6px; }
.checks.one li { padding: 8px 10px; font-size: .95rem; font-weight: 600; }
.price-rows { list-style: none; margin: 18px 0 0; padding: 0; border-top: 1px solid var(--line); }
.price-rows li { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
.price-rows li b { color: var(--purple-2); white-space: nowrap; font-weight: 800; }
.price-rows.head li:first-child { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--plum-2); }
.price-rows.head li:first-child b { color: var(--plum-2); }
.trio { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: clamp(20px, 3vw, 40px); align-items: start; }
.trio .note, .duo .note { font-size: .92rem; color: var(--plum-2); opacity: .85; margin-top: 14px; }
.policy-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-top: clamp(30px, 5vh, 50px); }
.policy { padding: 24px 22px; border-radius: 18px; background: #fff; border: 1px solid var(--line); }
.policy h3 { font-size: 1.15rem; margin-bottom: 10px; }
.policy p { font-size: .97rem; line-height: 1.6; }
.policy .price-rows { margin-top: 12px; } .policy .price-rows li { padding: 9px 0; font-size: .95rem; }
.cards { margin-top: clamp(30px, 5vh, 50px); }
.card-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 18px; }
.card-row a { display: block; border-radius: 16px; overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); color: var(--plum); text-decoration: none; }
.card-row img { width: 100%; height: auto; display: block; aspect-ratio: 2 / 3; object-fit: cover; object-position: top; }
.card-row span { display: block; padding: 12px 14px; font-weight: 800; font-size: .95rem; }
.field.agree label { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; font-size: .96rem; line-height: 1.5; cursor: pointer; }
.field.agree input { width: 22px; height: 22px; margin-top: 2px; accent-color: var(--purple); flex: none; }
.field.agree a { color: var(--purple-2); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 1100px) { .price-grid { grid-template-columns: 1fr 1fr; } .policy-grid, .trio { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) { .price-grid, .policy-grid, .trio, .card-row { grid-template-columns: 1fr; } }
