/* ==========================================================================
   Imprints — Premium Home Cleaning & Organizing
   ========================================================================== */

:root {
  color-scheme: light;

  /* Palette */
  --bg: #FBF8F3;
  --bg-tint: #F5F0E7;
  --surface: #FFFFFF;
  --ink: #1B2826;
  --ink-2: #44524F;
  --muted: #7B8683;
  --line: #E8E1D5;
  --line-2: #DDD4C5;

  --brand: #2F6F62;
  --brand-600: #275E53;
  --brand-deep: #1D4A41;
  --brand-soft: #E4EFE9;
  --brand-mist: #F0F6F3;

  --gold: #C9A263;
  --gold-600: #B38C4E;
  --gold-soft: #F5EBD8;
  --blush: #F3E6DA;

  /* Type */
  --f-display: "Fraunces", "Times New Roman", serif;
  --f-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Shape & depth */
  --r-sm: 10px;
  --r: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --shadow-sm: 0 1px 2px rgba(27, 40, 38, .05), 0 2px 8px rgba(27, 40, 38, .04);
  --shadow: 0 10px 30px -12px rgba(27, 40, 38, .16), 0 2px 6px rgba(27, 40, 38, .04);
  --shadow-lg: 0 30px 70px -24px rgba(29, 74, 65, .28), 0 8px 20px -8px rgba(27, 40, 38, .08);

  /* Motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-io: cubic-bezier(.65, 0, .35, 1);

  --container: 100%;
  --gutter: clamp(16px, 5vw, 96px);
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; line-height: 1.1; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
em { font-style: italic; }
::selection { background: var(--brand); color: #fff; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 6px; }

.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: fixed; left: 16px; top: -60px; z-index: 200; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px; transition: top .3s var(--ease); }
.skip-link:focus { top: 16px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: center;
  background: var(--bg);
  transition: opacity .7s var(--ease), visibility .7s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__mark { display: flex; flex-direction: column; align-items: center; gap: 14px; color: var(--brand); }
.preloader__mark span { font-family: var(--f-display); font-size: 22px; letter-spacing: .02em; color: var(--ink); opacity: 0; animation: fadeUp .8s .5s var(--ease) forwards; }
.pl-arc { stroke-dasharray: 60; stroke-dashoffset: 60; animation: draw 1.1s var(--ease) forwards; }
.pl-arc--2 { animation-delay: .15s; }
.pl-arc--3 { animation-delay: .3s; }
.pl-spark { fill: var(--gold); transform-origin: 46px 18px; transform: scale(0); animation: pop .6s .7s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes pop { 60% { transform: scale(1.3) rotate(20deg); } to { transform: scale(1) rotate(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 120;
  background: linear-gradient(90deg, var(--brand), var(--gold));
  transform-origin: 0 50%; transform: scaleX(0);
}

/* ---------- Buttons ---------- */
.btn {
  --bg: transparent;
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: .005em; line-height: 1;
  white-space: nowrap;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), background-color .3s, color .3s, border-color .3s;
  will-change: transform;
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.35), transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.btn:hover::after { opacity: 1; }
.btn svg { transition: transform .45s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 10px 24px -10px rgba(47,111,98,.65); }
.btn--primary:hover { background: var(--brand-600); box-shadow: 0 16px 32px -12px rgba(47,111,98,.7); }
.btn--gold { background: linear-gradient(135deg, #D8B679, var(--gold)); color: #22211B; box-shadow: 0 10px 24px -10px rgba(201,162,99,.8); }
.btn--gold:hover { box-shadow: 0 16px 32px -12px rgba(201,162,99,.9); }
.btn--ghost { background: rgba(255,255,255,.6); color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line-2); backdrop-filter: blur(6px); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); background: #fff; }
.btn--sm { padding: 11px 18px; font-size: 14px; }
.btn--lg { padding: 18px 30px; font-size: 16px; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background-color .4s, box-shadow .4s, height .4s var(--ease), transform .5s var(--ease);
}
.header.is-scrolled {
  --header-h: 66px;
  background: rgba(251, 248, 243, .78);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  box-shadow: 0 1px 0 rgba(27,40,38,.06);
}
.header.is-hidden { transform: translateY(-100%); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo img { border-radius: 11px; transition: transform .6s var(--ease); }
.logo:hover img { transform: rotate(-8deg) scale(1.05); }
.logo__word { font-family: var(--f-display); font-size: 25px; font-weight: 500; letter-spacing: -.01em; }
.nav__list { display: flex; gap: 4px; }
.nav__list a {
  position: relative; display: block; padding: 8px 14px; border-radius: 999px;
  font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  transition: color .3s, background-color .3s;
}
.nav__list a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 1.5px;
  background: var(--brand); transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease);
}
.nav__list a:hover, .nav__list a.is-active { color: var(--ink); }
.nav__list a:hover::after, .nav__list a.is-active::after { transform: scaleX(1); transform-origin: left; }
.header__actions { display: flex; align-items: center; gap: 16px; }
.header__phone { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--ink-2); transition: color .3s; }
.header__phone:hover { color: var(--brand); }
.burger { display: none; width: 44px; height: 44px; border-radius: 50%; position: relative; background: var(--surface); box-shadow: var(--shadow-sm); }
.burger span { position: absolute; left: 13px; right: 13px; height: 1.8px; background: var(--ink); border-radius: 2px; transition: transform .45s var(--ease), top .45s var(--ease); }
.burger span:first-child { top: 18px; }
.burger span:last-child { top: 25px; }
.burger[aria-expanded="true"] span:first-child { top: 21.5px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { top: 21.5px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--bg);
  padding: calc(var(--header-h) + 24px) var(--gutter) 32px;
  display: flex; flex-direction: column; justify-content: space-between;
  clip-path: circle(0 at calc(100% - 42px) 38px);
  transition: clip-path .8s var(--ease-io);
  visibility: hidden;
}
.mobile-menu.is-open { clip-path: circle(150% at calc(100% - 42px) 38px); visibility: visible; }
.mobile-menu li { overflow: hidden; }
.mobile-menu li a {
  display: block; padding: 8px 0;
  font-family: var(--f-display); font-size: clamp(32px, 9vw, 44px); line-height: 1.15;
  transform: translateY(100%); transition: transform .7s var(--ease);
}
.mobile-menu.is-open li a { transform: none; }
.mobile-menu.is-open li:nth-child(2) a { transition-delay: .05s; }
.mobile-menu.is-open li:nth-child(3) a { transition-delay: .1s; }
.mobile-menu.is-open li:nth-child(4) a { transition-delay: .15s; }
.mobile-menu.is-open li:nth-child(5) a { transition-delay: .2s; }
.mobile-menu.is-open li:nth-child(6) a { transition-delay: .25s; }
.mobile-menu.is-open li:nth-child(7) a { transition-delay: .3s; color: var(--brand); }
.mobile-menu__foot { display: flex; flex-direction: column; gap: 6px; color: var(--ink-2); font-weight: 500; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 12px; border-radius: 999px;
  background: rgba(255,255,255,.75); box-shadow: inset 0 0 0 1px var(--line);
  font-size: 13px; font-weight: 600; color: var(--ink-2); letter-spacing: .01em;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: #4CAF84; box-shadow: 0 0 0 0 rgba(76,175,132,.6); animation: ping 2s infinite; }
@keyframes ping { 70% { box-shadow: 0 0 0 10px rgba(76,175,132,0); } 100% { box-shadow: 0 0 0 0 rgba(76,175,132,0); } }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--brand);
  margin-bottom: 18px;
}
.kicker::before { content: ""; width: 26px; height: 1.5px; background: currentColor; }
.section__title {
  font-family: var(--f-display);
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 400; letter-spacing: -.02em; line-height: 1.05;
  font-variation-settings: "opsz" 120;
}
.section__title em, .hero__title em, .footer__cta em, .gift h3 em {
  font-style: italic; font-weight: 400; color: var(--brand);
  font-variation-settings: "opsz" 144;
}
.section__lead { margin-top: 20px; font-size: 17.5px; color: var(--ink-2); max-width: 56ch; }
.section__lead a { color: var(--brand); font-weight: 600; border-bottom: 1px solid currentColor; }

/* ---------- Sections ---------- */
.section { position: relative; padding: clamp(80px, 11vw, 140px) 0; }
.section--tint { background: var(--bg-tint); }
.section__head { margin-bottom: clamp(44px, 6vw, 72px); max-width: 720px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .kicker::before { display: none; }
.section__head--center .section__lead { margin-inline: auto; }
.section__head--split { max-width: none; display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: end; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(6px);
  transition: opacity 1s var(--ease), transform 1.1s var(--ease), filter 1s var(--ease);
  transition-delay: calc(var(--d, 0) * 110ms);
}
.reveal.is-in { opacity: 1; transform: none; filter: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  padding: calc(var(--header-h) + clamp(32px, 6vw, 72px)) 0 clamp(64px, 8vw, 110px);
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .7; animation: drift 18s ease-in-out infinite alternate; }
.blob--1 { width: 520px; height: 520px; background: #DCEBE3; top: -120px; right: -80px; }
.blob--2 { width: 420px; height: 420px; background: var(--gold-soft); bottom: -120px; left: -120px; animation-duration: 22s; }
.blob--3 { width: 300px; height: 300px; background: var(--blush); top: 30%; left: 38%; animation-duration: 26s; opacity: .55; }
@keyframes drift { to { transform: translate(40px, 30px) scale(1.08); } }
.bubbles span {
  position: absolute; bottom: -60px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.95), rgba(255,255,255,.2) 45%, rgba(47,111,98,.08) 70%, rgba(255,255,255,.4));
  box-shadow: inset 0 0 0 1px rgba(47,111,98,.12);
  animation: rise linear infinite;
}
@keyframes rise {
  0% { transform: translate(0, 0) scale(.8); opacity: 0; }
  10% { opacity: .9; }
  50% { transform: translate(var(--sway, 20px), -55vh) scale(1); }
  100% { transform: translate(0, -110vh) scale(1.05); opacity: 0; }
}

.hero__grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero__title {
  margin: 26px 0 26px;
  font-family: var(--f-display);
  font-size: clamp(44px, 5.2vw, 112px);
  font-weight: 350; line-height: 1; letter-spacing: -.035em;
  font-variation-settings: "opsz" 144;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.hero__title .word { display: inline-block; transform: translateY(110%) rotate(4deg); transform-origin: 0 100%; transition: transform 1.2s var(--ease); transition-delay: calc(var(--i, 0) * 70ms + 150ms); }
.is-loaded .hero__title .word { transform: none; }
.hero__lead { font-size: clamp(17px, 1.25vw, 22px); color: var(--ink-2); max-width: 52ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero__trust { display: flex; align-items: center; gap: 16px; margin-top: 40px; }
.avatars { display: flex; }
.avatars span, .avatar {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--c); color: var(--ink); font-size: 12px; font-weight: 700;
  box-shadow: 0 0 0 3px var(--bg);
}
.avatars span + span { margin-left: -10px; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 15px; }
.stars strong { color: var(--ink); letter-spacing: 0; margin-left: 4px; }
.hero__trust small { color: var(--muted); font-size: 13.5px; }

.hero__visual { position: relative; width: 100%; max-width: min(680px, 72vh); justify-self: end; }
.hero__frame {
  position: relative;
  border-radius: 300px 300px var(--r-xl) var(--r-xl);
  overflow: hidden;
  background: #F2EADF;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 600 / 720;
  transform-style: preserve-3d;
  transition: transform .8s var(--ease);
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); transition: transform 2s var(--ease); }
.is-loaded .hero__frame img { transform: scale(1); }
.hero__frame::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: inset 0 0 0 10px rgba(255,255,255,.55);
  pointer-events: none;
}

.float-card {
  position: absolute; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px 14px 14px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  font-size: 14px;
  animation: bob 6s ease-in-out infinite;
}
.float-card strong { display: block; font-weight: 700; line-height: 1.2; }
.float-card small { display: block; color: var(--muted); font-size: 12.5px; line-height: 1.3; }
.float-card__icon { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.float-card__icon--mint { background: var(--brand-soft); color: var(--brand); }
.float-card__icon--gold { background: var(--gold-soft); color: var(--gold-600); }
.float-card--a { top: 18%; left: -12%; }
.float-card--b { bottom: 20%; right: -8%; animation-delay: -2s; }
.float-card--c { bottom: -3%; left: 6%; flex-direction: column; align-items: stretch; gap: 8px; width: 230px; animation-delay: -4s; }
.float-card--c b { color: var(--brand); }
.mini-progress { height: 6px; background: var(--brand-soft); border-radius: 6px; overflow: hidden; }
.mini-progress span { display: block; height: 100%; width: 0; border-radius: inherit; background: linear-gradient(90deg, var(--brand), #5FA58F); transition: width 2.4s 1.2s var(--ease); }
.is-loaded .mini-progress span { width: 82%; }
@keyframes bob { 50% { translate: 0 -10px; } }

.scroll-cue { position: absolute; left: 50%; bottom: 28px; translate: -50% 0; width: 26px; height: 42px; border-radius: 20px; box-shadow: inset 0 0 0 1.5px var(--line-2); }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 4px; background: var(--brand); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden; padding: 26px 0;
  border-block: 1px solid var(--line);
  background: var(--surface);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track { display: flex; align-items: center; gap: 36px; width: max-content; animation: marquee 48s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee span { font-family: var(--f-display); font-size: clamp(22px, 2.6vw, 32px); font-weight: 350; white-space: nowrap; letter-spacing: -.01em; }
.marquee span:nth-of-type(even) { font-style: italic; color: var(--brand); }
.marquee i { font-style: normal; color: var(--gold); font-size: 18px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Services ---------- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service {
  position: relative; overflow: hidden;
  padding: 32px 30px 30px;
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.service::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(47,111,98,.09), transparent 45%);
  opacity: 0; transition: opacity .5s;
}
.service:hover { transform: translateY(-6px); box-shadow: inset 0 0 0 1px transparent, var(--shadow-lg); }
.service:hover::before { opacity: 1; }
.service__icon {
  width: 58px; height: 58px; border-radius: 18px;
  display: grid; place-items: center;
  background: var(--brand-mist); color: var(--brand);
  margin-bottom: 26px;
  transition: transform .6s var(--ease), background-color .4s, color .4s;
}
.service__icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service:hover .service__icon { transform: rotate(-8deg) scale(1.06); background: var(--brand); color: #fff; }
.service h3 { font-family: var(--f-display); font-size: 25px; font-weight: 450; letter-spacing: -.01em; margin-bottom: 12px; }
.service p { color: var(--ink-2); font-size: 15px; }
.service__price { display: inline-block; margin-top: 22px; padding: 6px 12px; border-radius: 999px; background: var(--gold-soft); color: #8A6A33; font-size: 13px; font-weight: 700; }
.service--feature { background: linear-gradient(155deg, var(--brand) 0%, var(--brand-deep) 100%); color: #fff; box-shadow: var(--shadow-lg); }
.service--feature p { color: rgba(255,255,255,.8); }
.service--feature .service__icon { background: rgba(255,255,255,.12); color: var(--gold); }
.service--feature:hover .service__icon { background: var(--gold); color: var(--brand-deep); }
.service--feature::before { background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(255,255,255,.12), transparent 45%); }
.service__link { display: inline-block; margin-top: 22px; font-weight: 700; color: var(--gold); font-size: 14.5px; transition: letter-spacing .4s var(--ease); }
.service__link:hover { letter-spacing: .03em; }

/* ---------- Results / compare ---------- */
.results { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.checks { margin-top: 28px; display: grid; gap: 12px; }
.checks li { position: relative; padding-left: 34px; color: var(--ink-2); font-weight: 500; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 12.5l4 4 8-9' fill='none' stroke='%232F6F62' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.checks--grid { grid-template-columns: 1fr 1fr; gap: 16px 28px; margin: 0; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line-2); }
.stat__num { display: block; font-family: var(--f-display); font-size: clamp(34px, 3.6vw, 46px); font-weight: 400; letter-spacing: -.03em; line-height: 1; color: var(--brand); }
.stat__label { display: block; margin-top: 8px; font-size: 13.5px; color: var(--muted); font-weight: 500; }

.compare__stage {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 800 / 560;
  user-select: none; touch-action: pan-y;
  background: #EEE;
}
.compare__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.compare__before { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.compare__handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; margin-left: -1px; background: #fff; box-shadow: 0 0 20px rgba(0,0,0,.2); pointer-events: none; }
.compare__handle span {
  position: absolute; top: 50%; left: 50%; translate: -50% -50%;
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  background: #fff; color: var(--brand);
  box-shadow: var(--shadow);
  transition: scale .4s var(--ease);
}
.compare__stage:hover .compare__handle span, .compare__stage.is-dragging .compare__handle span { scale: 1.1; }
.compare__range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }
.compare__range:focus-visible + * , .compare__stage:focus-within .compare__handle span { box-shadow: 0 0 0 4px rgba(47,111,98,.35), var(--shadow); }
.compare__tag { position: absolute; top: 20px; padding: 7px 14px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; backdrop-filter: blur(8px); pointer-events: none; }
.compare__tag--before { left: 20px; background: rgba(27,40,38,.7); color: #fff; }
.compare__tag--after { right: 20px; background: rgba(255,255,255,.9); color: var(--brand); }

/* ---------- Process ---------- */
.steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; counter-reset: step; }
.steps__line { position: absolute; top: 36px; left: 36px; right: calc(25% - 50px); height: 1.5px; background: var(--line-2); }
.steps__line span { display: block; height: 100%; background: linear-gradient(90deg, var(--brand), var(--gold)); transform-origin: left; transform: scaleX(var(--p, 0)); }
.step { position: relative; }
.step__num {
  position: relative; z-index: 1;
  display: grid; place-items: center;
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--surface); box-shadow: inset 0 0 0 1.5px var(--line-2), 0 0 0 10px var(--bg);
  font-family: var(--f-display); font-size: 24px; font-style: italic; color: var(--brand);
  margin-bottom: 28px;
  transition: background-color .5s, color .5s, box-shadow .5s;
}
.step.is-in .step__num { transition-delay: calc(var(--d, 0) * 250ms + 300ms); background: var(--brand); color: #fff; box-shadow: inset 0 0 0 1.5px var(--brand), 0 0 0 10px var(--bg); }
.step h3 { font-family: var(--f-display); font-size: 24px; font-weight: 450; margin-bottom: 10px; }
.step p { color: var(--ink-2); font-size: 15px; }

/* ---------- Checklist tabs ---------- */
.checklist { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.hero__grid > *, .results > *, .checklist > *, .quote > *, .faq > *, .booking > *, .gift > * { min-width: 0; }
.tabs { background: var(--surface); border-radius: var(--r-xl); padding: clamp(22px, 3vw, 36px); box-shadow: var(--shadow); }
.tabs__list { position: relative; display: flex; gap: 4px; padding: 5px; background: var(--bg-tint); border-radius: 999px; margin-bottom: 30px; overflow-x: auto; scrollbar-width: none; }
.tabs__list::-webkit-scrollbar { display: none; }
.tabs__tab { position: relative; z-index: 1; flex: 1; padding: 11px 16px; border-radius: 999px; font-size: 14.5px; font-weight: 600; color: var(--muted); white-space: nowrap; transition: color .4s; }
.tabs__tab[aria-selected="true"] { color: var(--ink); }
.tabs__ink { position: absolute; top: 5px; bottom: 5px; left: 0; width: 0; border-radius: 999px; background: var(--surface); box-shadow: var(--shadow-sm); transition: transform .6s var(--ease), width .6s var(--ease); }
.tabs__panel { animation: panelIn .6s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(10px); } }

/* ---------- Pricing ---------- */
.billing { position: relative; display: inline-flex; gap: 4px; margin-top: 32px; padding: 5px; border-radius: 999px; background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); }
.billing__opt { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; border-radius: 999px; font-weight: 600; font-size: 14.5px; color: var(--muted); transition: color .4s; }
.billing__opt.is-active { color: #fff; }
.billing__ink { position: absolute; top: 5px; bottom: 5px; left: 0; border-radius: 999px; background: var(--brand); transition: transform .6s var(--ease), width .6s var(--ease); }
.pill { padding: 3px 8px; border-radius: 999px; background: var(--gold-soft); color: #8A6A33; font-size: 11.5px; font-weight: 700; }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan {
  position: relative;
  display: flex; flex-direction: column;
  padding: 40px 34px 34px;
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.plan:hover { transform: translateY(-6px); box-shadow: inset 0 0 0 1px transparent, var(--shadow-lg); }
.plan--featured { background: linear-gradient(170deg, #FFFFFF 0%, var(--brand-mist) 100%); box-shadow: inset 0 0 0 1.5px var(--brand), var(--shadow-lg); transform: translateY(-12px); }
.plan--featured:hover { transform: translateY(-18px); box-shadow: inset 0 0 0 1.5px var(--brand), var(--shadow-lg); }
.plan__badge { position: absolute; top: -14px; left: 34px; padding: 6px 14px; border-radius: 999px; background: linear-gradient(135deg, #D8B679, var(--gold)); color: #22211B; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; box-shadow: 0 8px 18px -8px rgba(201,162,99,.9); }
.plan__name { font-family: var(--f-display); font-size: 30px; font-weight: 450; }
.plan__desc { margin-top: 10px; color: var(--ink-2); font-size: 15px; min-height: 48px; }
.plan__price { display: flex; align-items: flex-start; gap: 2px; margin: 26px 0 26px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.plan__price .cur { font-family: var(--f-display); font-size: 26px; margin-top: 8px; color: var(--ink-2); }
.plan__price .amt { font-family: var(--f-display); font-size: 64px; font-weight: 400; letter-spacing: -.04em; line-height: 1; display: inline-block; min-width: 2.6ch; transition: opacity .25s, transform .4s var(--ease); }
.plan__price .amt.is-swap { opacity: 0; transform: translateY(-12px); }
.plan__price .per { align-self: flex-end; margin: 0 0 8px 8px; color: var(--muted); font-size: 14px; }
.plan__list { flex: 1; display: grid; gap: 12px; align-content: start; margin-bottom: 32px; }
.plan__list li { position: relative; padding-left: 28px; font-size: 15px; color: var(--ink-2); }
.plan__list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 8px; border-left: 2px solid var(--brand); border-bottom: 2px solid var(--brand); transform: rotate(-45deg); }
.plans__note { margin-top: 36px; text-align: center; color: var(--muted); font-size: 14.5px; }
.plans__note a { color: var(--brand); font-weight: 600; border-bottom: 1px solid currentColor; }

/* ---------- Quote ---------- */
.section--deep { background: linear-gradient(180deg, var(--brand-mist) 0%, #EAF3EE 100%); overflow: hidden; }
.section--deep::before { content: ""; position: absolute; width: 640px; height: 640px; border-radius: 50%; right: -200px; top: -200px; background: radial-gradient(circle, rgba(201,162,99,.18), transparent 65%); }
.quote { position: relative; display: grid; grid-template-columns: 1.35fr .9fr; gap: 28px 48px; align-items: start; }
.quote__intro { grid-column: 1 / -1; max-width: 680px; margin-bottom: 20px; }
.quote__form { display: grid; gap: 30px; padding: clamp(24px, 3vw, 40px); background: var(--surface); border-radius: var(--r-xl); box-shadow: var(--shadow); }
.field { display: grid; gap: 10px; }
.field > label, .field legend { font-size: 13.5px; font-weight: 700; color: var(--ink); letter-spacing: .01em; padding: 0; margin-bottom: 10px; }
.field > label { margin-bottom: 0; }
.field > label small { font-weight: 500; color: var(--muted); }
.field legend + * { margin-top: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stepper { display: flex; align-items: center; justify-content: space-between; padding: 6px; border-radius: 999px; background: var(--bg-tint); }
.stepper button { width: 42px; height: 42px; border-radius: 50%; background: var(--surface); box-shadow: var(--shadow-sm); font-size: 20px; line-height: 1; transition: transform .3s var(--ease), background-color .3s, color .3s; }
.stepper button:hover { background: var(--brand); color: #fff; }
.stepper button:active { transform: scale(.9); }
.stepper output { font-family: var(--f-display); font-size: 26px; min-width: 2ch; text-align: center; }
.seg { display: flex; flex-wrap: wrap; gap: 8px; }
.seg label { flex: 1 1 auto; }
.seg input, .addon input { position: absolute; opacity: 0; pointer-events: none; }
.seg span {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 16px; border-radius: 14px; cursor: pointer;
  background: var(--bg); box-shadow: inset 0 0 0 1.5px var(--line);
  font-size: 14.5px; font-weight: 600; color: var(--ink-2); white-space: nowrap;
  transition: box-shadow .3s, background-color .3s, color .3s, transform .3s var(--ease);
}
.seg span small { font-size: 11.5px; color: var(--gold-600); font-weight: 700; }
.seg span:hover { box-shadow: inset 0 0 0 1.5px var(--line-2); }
.seg input:checked + span { background: var(--brand-mist); box-shadow: inset 0 0 0 1.5px var(--brand); color: var(--brand-deep); }
.seg input:focus-visible + span, .addon input:focus-visible + span { outline: 2px solid var(--brand); outline-offset: 2px; }
.addons { display: grid; grid-template-columns: repeat(auto-fit, minmax(max(150px, calc(25% - 10px)), 1fr)); gap: 10px; }
.addon span {
  position: relative; display: flex; flex-direction: column; gap: 2px;
  padding: 14px 14px 14px 14px; border-radius: 14px; cursor: pointer;
  background: var(--bg); box-shadow: inset 0 0 0 1.5px var(--line);
  transition: box-shadow .3s, background-color .3s, transform .4s var(--ease);
}
.addon span::after {
  content: ""; position: absolute; top: 12px; right: 12px; width: 18px; height: 18px; border-radius: 6px;
  box-shadow: inset 0 0 0 1.5px var(--line-2); background: #fff center / 12px no-repeat;
  transition: background-color .3s, box-shadow .3s;
}
.addon b { font-size: 14px; font-weight: 600; padding-right: 22px; line-height: 1.3; }
.addon small { font-size: 12.5px; color: var(--muted); font-weight: 600; }
.addon span:hover { transform: translateY(-2px); }
.addon input:checked + span { background: var(--brand-mist); box-shadow: inset 0 0 0 1.5px var(--brand); }
.addon input:checked + span::after {
  background-color: var(--brand); box-shadow: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.quote__total {
  position: sticky; top: calc(var(--header-h) + 24px);
  padding: 36px 32px 30px;
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.quote__total::before { content: ""; position: absolute; width: 300px; height: 300px; right: -120px; top: -120px; border-radius: 50%; background: radial-gradient(circle, rgba(217,183,122,.35), transparent 70%); }
.quote__label { font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.quote__price { margin-top: 10px; font-family: var(--f-display); font-size: 76px; line-height: 1; letter-spacing: -.04em; font-weight: 350; }
.quote__price span:first-child { font-size: 34px; vertical-align: top; margin-right: 4px; position: relative; top: 10px; opacity: .8; }
.quote__per { color: rgba(255,255,255,.7); margin-top: 6px; font-size: 14px; }
.quote__time { display: flex; align-items: center; gap: 8px; margin-top: 22px; padding: 12px 14px; border-radius: 12px; background: rgba(255,255,255,.08); font-size: 14px; color: rgba(255,255,255,.88); }
.quote__summary { margin: 22px 0 26px; display: grid; gap: 10px; font-size: 14px; color: rgba(255,255,255,.82); }
.quote__summary li { display: flex; justify-content: space-between; gap: 12px; padding-bottom: 10px; border-bottom: 1px dashed rgba(255,255,255,.16); animation: panelIn .4s var(--ease); }
.quote__summary li b { color: #fff; font-weight: 600; }
.quote__summary li.is-discount b { color: var(--gold); }
.quote__fine { display: block; margin-top: 16px; font-size: 12px; color: rgba(255,255,255,.6); line-height: 1.5; }

/* ---------- Why / features ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border-radius: var(--r-xl); overflow: hidden; box-shadow: inset 0 0 0 1px var(--line); }
.feature { padding: clamp(28px, 3.4vw, 44px); background: var(--bg); transition: background-color .5s; }
.feature:hover { background: var(--surface); }
.feature__icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--gold-soft); color: var(--gold-600); margin-bottom: 22px; transition: transform .7s var(--ease); }
.feature:hover .feature__icon { transform: rotateY(180deg); }
.feature__icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { font-family: var(--f-display); font-size: 23px; font-weight: 450; margin-bottom: 10px; }
.feature p { color: var(--ink-2); font-size: 15px; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: repeat(2, clamp(260px, 22vw, 440px)); gap: 20px; }
.gallery__item { position: relative; margin: 0; border-radius: var(--r-lg); overflow: hidden; background: #EEE7DC; box-shadow: var(--shadow); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  display: flex; flex-direction: column; gap: 2px;
  padding: 14px 18px; border-radius: 16px;
  background: rgba(255,255,255,.88); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  font-size: 14px; font-weight: 600;
  transform: translateY(12px); opacity: .0;
  transition: transform .6s var(--ease), opacity .6s var(--ease);
}
.gallery__item figcaption span { font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--brand); }
.gallery__item:hover figcaption, .gallery__item:focus-within figcaption { transform: none; opacity: 1; }
@media (hover: none) { .gallery__item figcaption { transform: none; opacity: 1; } }

/* ---------- Testimonials ---------- */
.carousel { max-width: 1200px; margin: 0 auto; }
.carousel__viewport { overflow: hidden; border-radius: var(--r-xl); }
.carousel__track { display: flex; transition: transform .9s var(--ease); }
.quote-card {
  flex: 0 0 100%;
  margin: 0; padding: clamp(32px, 5vw, 64px);
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: inset 0 0 0 1px var(--line);
  text-align: center;
}
.quote-card .stars { font-size: 18px; }
.quote-card p { margin: 22px auto 32px; max-width: 34ch; font-family: var(--f-display); font-size: clamp(22px, 2.6vw, 32px); font-weight: 350; line-height: 1.35; letter-spacing: -.01em; }
.quote-card footer { display: inline-flex; align-items: center; gap: 14px; text-align: left; }
.quote-card footer .avatar { width: 48px; height: 48px; box-shadow: none; }
.quote-card footer small { display: block; color: var(--muted); font-size: 13.5px; }
.carousel__controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 28px; }
.round-btn { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; background: var(--surface); box-shadow: inset 0 0 0 1.5px var(--line-2); transition: background-color .3s, color .3s, box-shadow .3s, transform .4s var(--ease); }
.round-btn:hover { background: var(--brand); color: #fff; box-shadow: none; transform: scale(1.06); }
.carousel__dots { display: flex; gap: 8px; }
.carousel__dots button { width: 8px; height: 8px; border-radius: 8px; background: var(--line-2); transition: width .5s var(--ease), background-color .5s; }
.carousel__dots button[aria-selected="true"] { width: 28px; background: var(--brand); }

/* ---------- Audience + gift ---------- */
.audience { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.aud { padding: 30px 26px; border-radius: var(--r-lg); background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); transition: transform .6s var(--ease), box-shadow .6s var(--ease); }
.aud:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.aud__icon { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 16px; background: var(--blush); color: #9A6B4A; margin-bottom: 20px; }
.aud__icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.aud h3 { font-family: var(--f-display); font-size: 22px; font-weight: 450; margin-bottom: 8px; }
.aud p { color: var(--ink-2); font-size: 14.5px; }

.gift {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: center;
  margin-top: clamp(56px, 7vw, 96px);
  padding: clamp(28px, 5vw, 64px);
  border-radius: var(--r-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.gift__card {
  position: relative; overflow: hidden;
  aspect-ratio: 1.6; max-width: 440px; width: 100%; margin: 0 auto;
  padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 70%);
  color: #fff;
  box-shadow: 0 40px 60px -30px rgba(29,74,65,.6);
  transform: rotate(-4deg);
  transition: transform .8s var(--ease);
}
.gift:hover .gift__card { transform: rotate(0) scale(1.02); }
.gift__card::before { content: ""; position: absolute; inset: auto -40% -60% auto; width: 300px; height: 300px; border-radius: 50%; border: 36px solid rgba(217,183,122,.18); }
.gift__shine { position: absolute; inset: 0; background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.25) 45%, transparent 60%); transform: translateX(-100%); animation: shine 4.5s ease-in-out infinite; }
@keyframes shine { 60%, 100% { transform: translateX(100%); } }
.gift__top { display: flex; align-items: center; gap: 10px; font-family: var(--f-display); font-size: 22px; }
.gift__top img { border-radius: 10px; box-shadow: 0 0 0 1px rgba(255,255,255,.2); }
.gift__amt { font-family: var(--f-display); font-size: 64px; line-height: 1; letter-spacing: -.03em; font-weight: 350; transition: opacity .25s; }
.gift__label { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.gift__copy .kicker { margin-bottom: 14px; }
.gift h3 { font-family: var(--f-display); font-size: clamp(28px, 3.2vw, 40px); font-weight: 400; letter-spacing: -.02em; }
.gift__copy > p:not(.kicker) { margin-top: 14px; color: var(--ink-2); }
.gift__amounts { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 28px; }
.chip { padding: 10px 18px; border-radius: 999px; font-weight: 600; font-size: 14.5px; box-shadow: inset 0 0 0 1.5px var(--line-2); transition: background-color .3s, color .3s, box-shadow .3s, transform .3s var(--ease); }
.chip:hover { transform: translateY(-2px); }
.chip.is-active { background: var(--ink); color: #fff; box-shadow: none; }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.faq__intro { position: sticky; top: calc(var(--header-h) + 32px); }
.accordion { display: grid; gap: 12px; }
.acc { border-radius: var(--r); background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); transition: box-shadow .4s; }
.acc[open] { box-shadow: inset 0 0 0 1px var(--line-2), var(--shadow); }
.acc summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 26px; cursor: pointer; list-style: none; font-weight: 600; font-size: 17px; }
.acc summary::-webkit-details-marker { display: none; }
.acc__icon { position: relative; flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--bg-tint); transition: background-color .4s, transform .5s var(--ease); }
.acc__icon::before, .acc__icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 1.8px; margin: -.9px 0 0 -6px; background: var(--ink); border-radius: 2px; transition: transform .5s var(--ease), background-color .4s; }
.acc__icon::after { transform: rotate(90deg); }
.acc[open] .acc__icon { background: var(--brand); transform: rotate(180deg); }
.acc[open] .acc__icon::before, .acc[open] .acc__icon::after { background: #fff; }
.acc[open] .acc__icon::after { transform: rotate(0); }
.acc__body { overflow: hidden; }
.acc__body p { padding: 0 26px 24px; color: var(--ink-2); }

/* ---------- Booking ---------- */
.booking { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.contact { margin-top: 36px; display: grid; gap: 14px; }
.contact li { display: flex; align-items: center; gap: 16px; padding: 16px 18px; border-radius: var(--r); background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); transition: transform .5s var(--ease); }
.contact li:hover { transform: translateX(6px); }
.contact__icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: var(--brand-mist); color: var(--brand); flex: none; }
.contact__icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact small { display: block; color: var(--muted); font-size: 12.5px; font-weight: 600; letter-spacing: .04em; }
.contact a, .contact span:not(.contact__icon) { font-weight: 600; }
.contact a:hover { color: var(--brand); }

.booking__card { position: relative; padding: clamp(24px, 4vw, 44px); border-radius: var(--r-xl); background: var(--surface); box-shadow: var(--shadow-lg); }
.progress { display: flex; align-items: center; gap: 10px; margin-bottom: 34px; }
.progress__step { position: relative; display: grid; place-items: center; width: 34px; height: 34px; flex: none; border-radius: 50%; background: var(--bg-tint); font-size: 13px; font-weight: 700; color: var(--muted); transition: background-color .5s, color .5s; }
.progress__step em { position: absolute; top: 40px; left: 50%; translate: -50% 0; font-style: normal; font-size: 11.5px; font-weight: 600; white-space: nowrap; color: var(--muted); }
.progress__step.is-active, .progress__step.is-done { background: var(--brand); color: #fff; }
.progress__step.is-active em { color: var(--ink); }
.progress__bar { flex: 1; height: 2px; border-radius: 2px; background: var(--bg-tint); overflow: hidden; }
.progress__bar span { display: block; height: 100%; background: var(--brand); transform: scaleX(0); transform-origin: left; transition: transform .7s var(--ease); }
.progress__bar.is-done span { transform: scaleX(1); }

.bstep { display: none; gap: 20px; padding-top: 18px; }
.bstep.is-active { display: grid; animation: stepIn .6s var(--ease); }
.bstep.is-back { animation-name: stepBack; }
@keyframes stepIn { from { opacity: 0; transform: translateX(24px); } }
@keyframes stepBack { from { opacity: 0; transform: translateX(-24px); } }
.bstep__nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 6px; }

input:where(:not([type="checkbox"]):not([type="radio"]):not([type="range"])), select, textarea {
  width: 100%; padding: 14px 16px;
  border: 0; border-radius: 14px;
  background: var(--bg); box-shadow: inset 0 0 0 1.5px var(--line);
  font-size: 15px;
  transition: box-shadow .3s, background-color .3s;
  appearance: none; -webkit-appearance: none;
}
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='%237B8683' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 42px; }
textarea { resize: vertical; min-height: 96px; }
input:hover, select:hover, textarea:hover { box-shadow: inset 0 0 0 1.5px var(--line-2); }
input:focus, select:focus, textarea:focus { outline: none; background: #fff; box-shadow: inset 0 0 0 1.5px var(--brand), 0 0 0 4px rgba(47,111,98,.12); }
.field.is-invalid input, .field.is-invalid select { box-shadow: inset 0 0 0 1.5px #C2554A, 0 0 0 4px rgba(194,85,74,.1); }
.err { display: none; font-size: 12.5px; color: #B0473D; font-weight: 600; }
.field.is-invalid .err, .err--consent.is-shown { display: block; }
.field.is-invalid { animation: shake .4s; }
@keyframes shake { 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } }

.review { display: grid; grid-template-columns: auto 1fr; gap: 12px 24px; margin: 0; padding: 22px; border-radius: var(--r); background: var(--bg); box-shadow: inset 0 0 0 1px var(--line); font-size: 14.5px; }
.review dt { color: var(--muted); font-weight: 600; }
.review dd { margin: 0; font-weight: 600; word-break: break-word; }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--ink-2); cursor: pointer; }
.consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--brand); flex: none; }

.success { text-align: center; padding: 20px 0 10px; }
.success:not([hidden]) { animation: panelIn .7s var(--ease); }
.success__check { width: 88px; height: 88px; margin: 0 auto 22px; }
.success__check circle { fill: var(--brand-mist); stroke: var(--brand); stroke-width: 2.5; stroke-dasharray: 230; stroke-dashoffset: 230; animation: draw 1s .1s var(--ease) forwards; }
.success__check path { fill: none; stroke: var(--brand); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 60; stroke-dashoffset: 60; animation: draw .7s .7s var(--ease) forwards; }
.success h3 { font-family: var(--f-display); font-size: 32px; font-weight: 400; }
.success p { margin: 12px auto 26px; max-width: 36ch; color: var(--ink-2); }

/* ---------- Footer ---------- */
.footer { position: relative; padding: clamp(64px, 8vw, 110px) 0 32px; background: #F0E9DD; color: var(--ink); overflow: hidden; }
.footer__cta {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  padding: clamp(32px, 5vw, 60px);
  margin-bottom: clamp(56px, 7vw, 88px);
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.footer__cta::after { content: ""; position: absolute; right: -170px; bottom: -230px; width: 420px; height: 420px; border-radius: 50%; border: 60px solid rgba(217,183,122,.14); pointer-events: none; }
.footer__cta h2 { font-family: var(--f-display); font-size: clamp(30px, 4vw, 52px); font-weight: 350; letter-spacing: -.02em; line-height: 1.08; position: relative; z-index: 1; }
.footer__cta h2 em { color: var(--gold); }
.footer__cta .btn { position: relative; z-index: 1; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--line-2); }
.footer__brand p { margin: 18px 0 22px; color: var(--ink-2); max-width: 32ch; }
.footer h4 { font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.footer ul { display: grid; gap: 10px; }
.footer ul a { color: var(--ink-2); font-weight: 500; transition: color .3s, padding-left .4s var(--ease); }
.footer ul a:hover { color: var(--brand); padding-left: 4px; }
.footer__grid > div > p { color: var(--ink-2); font-size: 15px; margin-bottom: 16px; }
.socials { display: flex; gap: 10px; }
.socials a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); transition: background-color .3s, color .3s, transform .4s var(--ease); }
.socials a:hover { background: var(--brand); color: #fff; transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.newsletter { display: flex; padding: 6px; border-radius: 999px; background: var(--surface); box-shadow: var(--shadow-sm); }
.newsletter input { flex: 1; min-width: 0; background: transparent; box-shadow: none; padding: 10px 14px; }
.newsletter input:focus { box-shadow: none; background: transparent; }
.newsletter button { width: 44px; height: 44px; flex: none; border-radius: 50%; display: grid; place-items: center; background: var(--brand); color: #fff; transition: transform .4s var(--ease), background-color .3s; }
.newsletter button:hover { transform: rotate(-45deg); background: var(--brand-deep); }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; color: var(--muted); font-size: 13.5px; }

/* ---------- Floating UI ---------- */
.to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 80;
  width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface); color: var(--brand);
  box-shadow: var(--shadow);
  opacity: 0; transform: translateY(20px) scale(.9); pointer-events: none;
  transition: opacity .5s var(--ease), transform .5s var(--ease), background-color .3s, color .3s;
}
.to-top.is-shown { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--brand); color: #fff; }
.toast {
  position: fixed; left: 50%; bottom: 28px; z-index: 150;
  padding: 14px 22px; border-radius: 999px;
  background: var(--ink); color: #fff; font-size: 14.5px; font-weight: 500;
  box-shadow: var(--shadow-lg);
  transform: translate(-50%, 140%); opacity: 0;
  transition: transform .6s var(--ease), opacity .6s var(--ease);
  max-width: calc(100vw - 32px); text-align: center;
}
.toast.is-shown { transform: translate(-50%, 0); opacity: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .nav { display: none; }
  .burger { display: block; }
  .header__phone { display: none; }
  .float-card--a { left: -4%; }
  .float-card--b { right: -2%; }
}
@media (max-width: 960px) {
  .hero__grid, .results, .checklist, .quote, .faq, .booking, .gift, .section__head--split { grid-template-columns: 1fr; }
  .hero__visual { max-width: 520px; margin: 24px auto 0; width: 100%; justify-self: center; }
  .services, .plans { grid-template-columns: repeat(2, 1fr); }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-6px); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
  .steps__line { display: none; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .audience { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 260px 260px; }
  .gallery__item--tall { grid-row: span 2; }
  .gallery__item--wide { grid-column: span 1; }
  .quote__total { position: relative; top: 0; }
  .faq__intro { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  :root { --header-h: 68px; }
  .header__actions .btn { display: none; }
  .hero { min-height: auto; }
  .hero__title { font-size: clamp(40px, 11.5vw, 56px); }
  .hero__cta .btn { flex: 1 1 100%; }
  .float-card { padding: 10px 14px 10px 10px; font-size: 13px; }
  .float-card__icon { width: 34px; height: 34px; }
  .float-card--a { left: -2%; top: 12%; }
  .float-card--b { display: none; }
  .float-card--c { left: calc(50% - 105px); bottom: -4%; width: 210px; }
  .scroll-cue { display: none; }
  .services, .plans, .features, .audience, .checks--grid, .field-row { grid-template-columns: 1fr; }
  .stats { gap: 10px; }
  .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: none; grid-auto-rows: 240px; }
  .gallery__item--tall { grid-row: span 2; }
  .addons { grid-template-columns: 1fr 1fr; }
  .seg span { padding: 12px 12px; font-size: 14px; }
  .quote__price { font-size: 64px; }
  .review { grid-template-columns: 1fr; gap: 2px; }
  .review dd { margin-bottom: 10px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__cta .btn { width: 100%; }
  .gift__amt { font-size: 52px; }
  .progress__step em { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; transition-delay: 0s !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; filter: none; }
  .hero__title .word { transform: none; }
  .bubbles { display: none; }
}
