/* ============================================================
   DESK TO DIVA — design system
   Blush / cream / plum. Editorial serif + clean sans.
   Mobile-first. Motion is opt-out safe (prefers-reduced-motion).
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  /* Colour */
  --cream: #fffaf7;
  --blush: #fdeef2;
  --blush-2: #fbe0e9;
  --petal: #f7c9da;
  --rose: #f08fb4;
  /* --hot is used for text on cream, so it has to clear 4.5:1 there.
     #e8447f measured 3.65:1 and failed. */
  --hot: #c8306b;
  --hot-deep: #a82a5c;
  --plum: #5b1f35;
  --plum-soft: #7a3a51;
  /* Solid muted ink instead of opacity — opacity-based muting on a tinted
     background is what pushed several labels under 4.5:1. */
  --muted-ink: #6e3e50;
  --green: #0e7a3c;
  --gold-ink: #8a6f14;
  --ink: #2e1420;
  --gold: #c9a227;
  --gold-soft: #e8cf8f;
  --white: #ffffff;
  --line: rgba(91, 31, 53, 0.12);
  --line-strong: rgba(91, 31, 53, 0.22);   /* decorative rules */
  --line-field: rgba(91, 31, 53, 0.55);    /* 3:1 — form control boundaries */

  /* Gradients */
  --grad-hero: radial-gradient(120% 90% at 80% 0%, #ffe7f0 0%, #fff6f2 45%, #fffaf7 100%);
  /* Every stop must carry white text at >=4.5:1 — the old pale start (#f8a8c6)
     measured 1.84:1, so button labels were effectively unreadable. */
  --grad-rose: linear-gradient(135deg, #d2376e 0%, #b52e60 55%, #a82a5c 100%);
  --grad-gold: linear-gradient(120deg, #f3e0a8, #c9a227 45%, #f6ebc4 80%);
  --grad-glass: linear-gradient(160deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.55));

  /* Type — a high-contrast didone for display against a geometric sans.
     This is the Vogue/Dior register: enormous serif next to tiny wide-tracked
     caps. Playfair + Jakarta reads like a template; this does not. */
  --serif: "Bodoni Moda", "Didot", "Bodoni MT", Georgia, serif;
  --sans: "Jost", "Futura", system-ui, -apple-system, "Segoe UI", sans-serif;
  --script: var(--serif);

  /* Space + shape */
  --r-sm: 12px;
  --r: 20px;
  --r-lg: 30px;
  --r-xl: 44px;
  --pad: clamp(1.15rem, 4vw, 2rem);
  --maxw: 1240px;

  /* Shadow */
  --sh-1: 0 2px 10px rgba(91, 31, 53, 0.06);
  --sh-2: 0 12px 34px -12px rgba(91, 31, 53, 0.18);
  --sh-3: 0 28px 60px -22px rgba(91, 31, 53, 0.3);
  --sh-glow: 0 14px 40px -12px rgba(232, 68, 127, 0.45);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast: 0.22s;
  --t: 0.45s;
  --t-slow: 0.9s;
}

/* ---------- 2. Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* base colour lives here so body can stay transparent and let the
     fixed .atmos layer (z-index:-1) show through */
  background: var(--cream);
}
html.lenis { scroll-behavior: auto; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.65;
  color: var(--plum-soft);
  background: transparent;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--plum);
  font-weight: 500;
  line-height: 1.02;
  /* Didones want to be set tight and large — the contrast does the work */
  letter-spacing: -0.022em;
  margin: 0 0 0.5em;
  text-wrap: balance;
  font-variation-settings: "opsz" 72;
}
/* Bigger scale jump between display and body than a template would dare */
h1 { font-size: clamp(2.7rem, 1.6rem + 4.4vw, 5.5rem); font-weight: 500; }
h2 { font-size: clamp(2.2rem, 1.4rem + 3.4vw, 4.2rem); }
h3 { font-size: clamp(1.25rem, 1.08rem + 0.8vw, 1.6rem); font-weight: 600; letter-spacing: -0.012em; font-variation-settings: "opsz" 16; }
h4 { font-variation-settings: "opsz" 16; }
p { margin: 0 0 1.1em; text-wrap: pretty; }

/* Jost sits slightly small next to a didone — nudge body up and open it out */
body { letter-spacing: 0.005em; }

::selection { background: var(--hot); color: #fff; }

/* ---------- 3. Layout ---------- */
.wrap {
  width: min(100% - (var(--pad) * 2), var(--maxw));
  margin-inline: auto;
}
.wrap--narrow { width: min(100% - (var(--pad) * 2), 800px); margin-inline: auto; }

section { position: relative; padding: clamp(3.5rem, 8vw, 7.5rem) 0; }
.sec-tight { padding: clamp(2.2rem, 5vw, 4rem) 0; }

.grid { display: grid; gap: clamp(1rem, 2.4vw, 1.75rem); }
.g-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.g-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); }
.g-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }

.center { text-align: center; }
.stack-sm > * + * { margin-top: 0.6rem; }

/* ---------- 4. Type helpers ---------- */
/* Micro-label: tiny, very wide tracking. The counterweight to the huge
   display type — this pairing is most of the "expensive" signal. */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--hot);
  margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow--c { justify-content: center; }
.eyebrow--c::after {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.lede {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.28rem);
  line-height: 1.6;
  color: var(--plum-soft);
  max-width: 58ch;
}
.lede--c { margin-inline: auto; }

.ital { font-family: var(--serif); font-style: italic; font-weight: 400; }
.shine {
  background: var(--grad-rose);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.muted { color: var(--muted-ink); opacity: 1; }
.tiny { font-size: 0.82rem; line-height: 1.5; }

/* ---------- 5. Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.9rem;
  border: 0;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  will-change: transform;
}
.btn:active { transform: scale(0.97); }
.btn:focus-visible { outline: 3px solid var(--hot); outline-offset: 3px; }

.btn--primary {
  background: var(--grad-rose);
  color: #fff;
  box-shadow: var(--sh-glow);
}
.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, #ff9ec4, #ff2f75);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.btn--primary:hover::before { opacity: 1; }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -12px rgba(232, 68, 127, 0.6); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--plum);
  border: 1.5px solid var(--line-strong);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: #fff; border-color: var(--hot); color: var(--hot); transform: translateY(-3px); }

.btn--wa { background: #1faa53; color: #fff; box-shadow: 0 12px 32px -12px rgba(31, 170, 83, 0.6); }
.btn--wa:hover { background: #17944a; transform: translateY(-3px); }

.btn--lg { padding: 1.15rem 2.4rem; font-size: 1.02rem; }
.btn--sm { padding: 0.65rem 1.25rem; font-size: 0.85rem; }
.btn--block { width: 100%; }

/* Shine sweep on hover */
.btn--primary::after,
.btn--wa::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg);
  transition: left 0.75s var(--ease);
}
.btn--primary:hover::after,
.btn--wa:hover::after { left: 145%; }

/* Text link with underline wipe */
.link-u {
  position: relative;
  font-weight: 600;
  color: var(--plum);
  padding-bottom: 2px;
}
.link-u::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--hot);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t) var(--ease);
}
.link-u:hover { color: var(--hot); }
.link-u:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---------- 6. Pills / badges ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--blush);
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid var(--line);
}
.pill--hot { background: var(--grad-rose); color: #fff; border-color: transparent; }
.pill--gold { background: linear-gradient(120deg, #fdf3d8, #f2e0ab); color: #7a5c10; border-color: #e8cf8f; }
.pill--glass { background: rgba(255, 255, 255, 0.72); backdrop-filter: blur(10px); }

/* ---------- 7. Cards ---------- */
.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.35rem, 3vw, 2rem);
  box-shadow: var(--sh-1);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-3);
  border-color: var(--petal);
}
.card--blush { background: var(--blush); }
.card--flat:hover { transform: none; box-shadow: var(--sh-1); }

/* ---------- 8. Header ---------- */
.hdr {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  transition: transform var(--t) var(--ease), background var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.hdr.is-stuck {
  background: rgba(255, 250, 247, 0.82);
  backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: 0 1px 0 var(--line), var(--sh-1);
}
.hdr.is-hidden { transform: translateY(-105%); }

.hdr__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo { display: inline-flex; align-items: center; gap: 0.65rem; }
/* Her actual Instagram brand mark. The source is only 150px square, so it is
   never rendered above ~44px — at 3x density that still lands crisp. */
.logo__mark {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 50%;
  object-fit: cover;
  background: var(--blush);
  box-shadow: 0 0 0 1.5px var(--petal), 0 2px 8px rgba(91, 31, 53, 0.14);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.logo:hover .logo__mark {
  transform: rotate(-4deg) scale(1.05);
  box-shadow: 0 0 0 1.5px var(--hot), 0 6px 16px rgba(232, 68, 127, 0.3);
}
.ftr .logo__mark { box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.35); }
.logo__txt {
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 700;
  color: var(--plum);
  letter-spacing: 0.01em;
  line-height: 1;
}
.logo__txt small {
  display: block;
  font-family: var(--sans);
  font-size: 0.53rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--hot);
  margin-top: 3px;
  font-weight: 700;
}

.nav { display: none; align-items: center; gap: 1.9rem; }
.nav a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--plum);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: var(--hot);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t) var(--ease);
}
.nav a:hover::after,
.nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav a[aria-current="page"] { color: var(--hot); }

.hdr__cta { display: none; }

.burger {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
}
.burger span {
  display: block;
  width: 19px;
  height: 1.8px;
  background: var(--plum);
  border-radius: 2px;
  transition: transform var(--t) var(--ease), opacity var(--t-fast) var(--ease);
}
.burger span + span { margin-top: 5px; }
body.menu-open .burger span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

@media (min-width: 900px) {
  .nav { display: flex; }
  .hdr__cta { display: inline-flex; }
  .burger { display: none; }
}

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 89;
  background: var(--grad-hero);
  padding: 6.5rem var(--pad) 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  clip-path: circle(0% at 92% 42px);
  transition: clip-path 0.7s var(--ease);
  overflow-y: auto;
}
body.menu-open .drawer { clip-path: circle(150% at 92% 42px); }
.drawer a {
  font-family: var(--serif);
  font-size: 1.85rem;
  color: var(--plum);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
body.menu-open .drawer a { opacity: 1; transform: none; }
body.menu-open .drawer a:nth-child(1) { transition-delay: 0.14s; }
body.menu-open .drawer a:nth-child(2) { transition-delay: 0.19s; }
body.menu-open .drawer a:nth-child(3) { transition-delay: 0.24s; }
body.menu-open .drawer a:nth-child(4) { transition-delay: 0.29s; }
body.menu-open .drawer a:nth-child(5) { transition-delay: 0.34s; }
body.menu-open .drawer a:nth-child(6) { transition-delay: 0.39s; }
body.menu-open .drawer a:nth-child(7) { transition-delay: 0.44s; }
.drawer__foot { margin-top: auto; padding-top: 1.5rem; }

/* ---------- 9. Announce bar ---------- */
.announce {
  position: relative;
  z-index: 91;
  background: var(--plum);
  color: #ffe9f1;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  overflow: hidden;
  white-space: nowrap;
}
.announce__track {
  display: inline-flex;
  gap: 3rem;
  padding: 0.55rem 0;
  animation: marquee 26s linear infinite;
  will-change: transform;
}
.announce b { color: var(--gold-soft); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.announce:hover .announce__track { animation-play-state: paused; }

/* ---------- 10. Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 3rem;
  /* transparent so the animated mesh behind the page is the hero background */
  background: transparent;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}
@media (min-width: 940px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; }
}
.hero h1 { margin-bottom: 0.35em; }
.hero__sub { max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 1.8rem 0 1.4rem; }

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--plum-soft);
}
.stars { color: var(--gold); letter-spacing: 0.1em; font-size: 0.95rem; }

/* Floating blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.blob--1 { width: 46vw; height: 46vw; background: #ffc8dd; top: -14%; right: -10%; animation: float1 17s ease-in-out infinite; }
.blob--2 { width: 34vw; height: 34vw; background: #ffe0c7; bottom: -12%; left: -8%; animation: float2 21s ease-in-out infinite; }
.blob--3 { width: 24vw; height: 24vw; background: #e7d4ff; top: 42%; left: 46%; opacity: 0.35; animation: float1 25s ease-in-out infinite reverse; }
@keyframes float1 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-4%, 6%, 0) scale(1.08); }
}
@keyframes float2 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(6%, -5%, 0) scale(0.93); }
}
.hero > .wrap { position: relative; z-index: 2; }

/* Hero visual — the nail fan */
.fan {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}
.fan__disc {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: var(--grad-glass);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--sh-3), inset 0 1px 0 #fff;
  backdrop-filter: blur(6px);
}
.fan__ring {
  position: absolute;
  inset: 2%;
  border-radius: 50%;
  border: 1.5px dashed rgba(232, 68, 127, 0.3);
  animation: spin 44s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.fan__svg { position: relative; width: 86%; z-index: 2; }

.fan__tag {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--plum);
  box-shadow: var(--sh-2);
  white-space: nowrap;
}
.fan__tag b { color: var(--hot); }
.fan__tag--1 { top: 8%; left: -2%; animation: bob 6s ease-in-out infinite; }
.fan__tag--2 { bottom: 16%; right: -4%; animation: bob 7.5s ease-in-out infinite 0.8s; }
.fan__tag--3 { bottom: 2%; left: 12%; animation: bob 6.8s ease-in-out infinite 1.6s; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ---------- 10a. Atmosphere — animated mesh + film grain ----------
   A slowly drifting multi-point gradient behind everything, plus a static
   grain overlay. Grain is the cheapest luxury cue there is: it kills the
   flat "CSS gradient" look that reads as a template. Both are fixed-position
   and pointer-events:none, so they cost one composited layer and nothing else. */
/* z-index:-1 keeps this behind all content without touching any other
   element's positioning. Do NOT reintroduce a `body > *` position override —
   it out-specifies .hdr/.drawer/.stickybar/.wa-float (all position:fixed) and
   dumps the full-screen drawer into the document flow. */
.atmos {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.atmos__mesh {
  position: absolute;
  inset: -25%;
  background:
    radial-gradient(38% 42% at 22% 28%, rgba(255, 176, 205, 0.55) 0%, transparent 62%),
    radial-gradient(34% 38% at 78% 22%, rgba(255, 214, 186, 0.5) 0%, transparent 60%),
    radial-gradient(42% 44% at 68% 76%, rgba(226, 196, 255, 0.42) 0%, transparent 62%),
    radial-gradient(36% 40% at 28% 78%, rgba(255, 198, 214, 0.45) 0%, transparent 60%);
  filter: blur(46px) saturate(1.15);
  animation: meshdrift 34s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes meshdrift {
  0%   { transform: translate3d(0, 0, 0) scale(1) rotate(0deg); }
  50%  { transform: translate3d(2.5%, -2%, 0) scale(1.08) rotate(1.5deg); }
  100% { transform: translate3d(-2%, 2.5%, 0) scale(1.04) rotate(-1.5deg); }
}
/* Fine film grain, generated — no image request */
.atmos__grain {
  position: absolute;
  inset: -120%;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  animation: grainshift 7s steps(6) infinite;
  will-change: transform;
}
@keyframes grainshift {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-4%, 3%); }
  40%  { transform: translate(3%, -4%); }
  60%  { transform: translate(-3%, -3%); }
  80%  { transform: translate(4%, 4%); }
  100% { transform: translate(0, 0); }
}
/* Vignette pulls the eye to the centre — subtle, but it's what stops a page
   looking like a flat sheet of colour. */
.atmos__vig {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% 40%, transparent 45%, rgba(91, 31, 53, 0.10) 100%);
}
@media (prefers-reduced-motion: reduce) {
  .atmos__mesh, .atmos__grain { animation: none; }
}

/* ---------- 10b. Showreel — video-grade motion from stills ----------
   A stack of real photographs that cross-dissolve while the active frame
   slowly drifts and scales (Ken Burns). Reads like a looping video clip at
   a fraction of the bytes, and degrades to a single sharp still when the
   viewer has asked for reduced motion. */
/* Height-constrained as well as width-constrained: at 520px wide the 4:5 frame
   is 650px tall, which pushed the hero CTA below the fold on a laptop. */
.showreel {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: min(520px, 52svh);
  margin-inline: auto;
}
@media (min-width: 940px) {
  .showreel { max-width: min(500px, 58svh); }
}
.showreel__frame {
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--blush-2);
  box-shadow: var(--sh-3), 0 0 0 1px rgba(255, 255, 255, 0.7) inset;
  isolation: isolate;
}
.showreel__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.6s var(--ease);
  will-change: opacity, transform;
}
.showreel__img.is-on {
  opacity: 1;
  animation: kenburns 9s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to   { transform: scale(1.13) translate3d(-1.5%, -2%, 0); }
}
/* Warm film wash so mixed phone-camera white balance reads as one set.
   Kept light — the photographs are the product, and muddying them to
   force a palette costs more than it buys. */
.showreel__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 214, 230, 0.10) 0%, transparent 32%, rgba(91, 31, 53, 0.14) 100%);
}

/* small overlapping photo, bottom-left */
.showreel__pip {
  position: absolute;
  left: -6%;
  bottom: 7%;
  width: 40%;
  margin: 0;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 5px solid var(--cream);
  box-shadow: var(--sh-3);
  z-index: 3;
  animation: bob 8s ease-in-out infinite;
}
.showreel__pip img { width: 100%; height: 100%; object-fit: cover; }

/* progress ticks showing which frame is live */
.showreel__dots {
  position: absolute;
  right: 5%;
  bottom: 5%;
  z-index: 4;
  display: flex;
  gap: 6px;
}
.showreel__dots i {
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.45);
  overflow: hidden;
}
.showreel__dots i.is-on { background: #fff; }

@media (prefers-reduced-motion: reduce) {
  .showreel__img.is-on { animation: none; transform: none; }
  .showreel__pip { animation: none; }
}

/* ---------- 10c. Instagram strip ---------- */
.ig-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 620px) { .ig-strip { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .ig-strip { grid-template-columns: repeat(6, 1fr); } }
.ig-strip a {
  position: relative;
  display: block;
  aspect-ratio: 1;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--blush-2);
  box-shadow: var(--sh-1);
}
.ig-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s var(--ease);
}
.ig-strip a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-rose);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  mix-blend-mode: soft-light;
}
.ig-strip a:hover img { transform: scale(1.09); }
.ig-strip a:hover::after { opacity: 0.9; }

.ig-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  color: var(--plum);
  font-size: 1.05rem;
}
.ig-handle svg { flex: none; }

/* ---------- 10d. Editorial full-bleed figure ---------- */
.editorial {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: clamp(320px, 52vw, 520px);
  display: flex;
  align-items: flex-end;
  box-shadow: var(--sh-3);
}
.editorial img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.editorial__body {
  position: relative;
  z-index: 2;
  padding: clamp(1.4rem, 4vw, 3rem);
  color: #fff;
  max-width: 46ch;
}
.editorial__body h2, .editorial__body h3 { color: #fff; }
.editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(46, 16, 28, 0.86) 0%, rgba(46, 16, 28, 0.5) 38%, rgba(46, 16, 28, 0.08) 72%);
}

/* ---------- 11. Trust strip ---------- */
.trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (min-width: 780px) { .trust { grid-template-columns: repeat(4, 1fr); } }
.trust__i {
  background: var(--white);
  padding: 1.5rem 1.15rem;
  text-align: center;
  transition: background var(--t) var(--ease);
}
.trust__i:hover { background: var(--blush); }
.trust__i svg { margin: 0 auto 0.65rem; color: var(--hot); }
.trust__i strong { display: block; color: var(--plum); font-size: 0.95rem; line-height: 1.3; }
.trust__i span { font-size: 0.78rem; opacity: 0.7; }

/* ---------- 12. Tier / product cards ---------- */
.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-1);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.tier:hover { transform: translateY(-8px); box-shadow: var(--sh-3); border-color: var(--petal); }
.tier--feature { border-color: var(--hot); box-shadow: var(--sh-glow); }

.tier__vis {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--blush);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.tier__vis svg { width: 78%; transition: transform var(--t-slow) var(--ease); }
.tier:hover .tier__vis svg { transform: scale(1.07) rotate(-2deg); }
.tier__vis img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.tier:hover .tier__vis img { transform: scale(1.06); }
.tier__badge { position: absolute; top: 0.85rem; left: 0.85rem; z-index: 2; }
.tier__body { padding: 1.35rem; display: flex; flex-direction: column; flex: 1; }
.tier__head { display: flex; align-items: baseline; justify-content: space-between; gap: 0.6rem; }
.tier__head h3 { margin: 0; }

.price { display: flex; align-items: baseline; gap: 0.45rem; }
.price__now { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--plum); }
.price__pre {
  font-size: 0.75rem;
  font-weight: 700;
  color: #1faa53;
  background: #e8f7ee;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  white-space: nowrap;
}
.tier__inc { list-style: none; margin: 0.9rem 0 1.15rem; padding: 0; font-size: 0.87rem; }
.tier__inc li { display: flex; gap: 0.55rem; padding: 0.22rem 0; }
.tier__inc li::before { content: "✓"; color: var(--hot); font-weight: 800; flex: none; }
.tier__foot { margin-top: auto; }

/* ---------- 13. Steps ---------- */
.steps { counter-reset: s; display: grid; gap: 1.25rem; }
@media (min-width: 820px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  position: relative;
  counter-increment: s;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2.4rem 1.4rem 1.5rem;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--sh-2); }
.step::before {
  content: counter(s, decimal-leading-zero);
  position: absolute;
  top: 1.1rem;
  right: 1.3rem;
  font-family: var(--serif);
  font-size: 2.9rem;
  line-height: 1;
  color: var(--blush-2);
  font-weight: 700;
}
.step h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.step p { font-size: 0.9rem; margin: 0; }

/* ---------- 14. Marquee band ---------- */
.band {
  background: var(--plum);
  color: var(--blush);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  overflow: hidden;
}
.band h2 { color: #fff; }
.mq { display: flex; overflow: hidden; user-select: none; gap: 2.5rem; }
.mq__t {
  flex: none;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  min-width: 100%;
  animation: marquee 30s linear infinite;
}
.mq--rev .mq__t { animation-direction: reverse; }
.mq__i {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 3rem);
  white-space: nowrap;
  opacity: 0.92;
}
.mq__i::after { content: "✦"; color: var(--gold); margin-left: 2.5rem; font-size: 0.6em; vertical-align: middle; }

/* ---------- 15. Reviews ---------- */
.rev {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  box-shadow: var(--sh-1);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.rev:hover { transform: translateY(-5px); box-shadow: var(--sh-2); }
.rev p { font-size: 0.95rem; margin: 0; color: var(--ink); }
.rev__who { display: flex; align-items: center; gap: 0.7rem; margin-top: auto; }
.rev__av {
  width: 40px; height: 40px; flex: none;
  border-radius: 50%;
  background: var(--grad-rose);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.9rem;
}
.rev__who strong { display: block; color: var(--plum); font-size: 0.9rem; }
.rev__who span { font-size: 0.76rem; opacity: 0.7; }

/* ---------- 16. Offer cards ---------- */
.offer {
  position: relative;
  border-radius: var(--r-lg);
  padding: 1.6rem 1.4rem;
  background: var(--grad-glass);
  border: 1px dashed var(--line-strong);
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease), background var(--t) var(--ease);
}
.offer:hover { transform: translateY(-5px) rotate(-0.6deg); border-color: var(--hot); background: #fff; }
.offer h3 { font-size: 1.2rem; margin-bottom: 0.2rem; }
.offer p { margin: 0; font-size: 0.9rem; }

/* ---------- 17. FAQ / accordion ---------- */
.faq { border-top: 1px solid var(--line); }
.faq__i { border-bottom: 1px solid var(--line); }
.faq__q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  background: none;
  border: 0;
  padding: 1.25rem 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.02rem, 0.98rem + 0.3vw, 1.24rem);
  font-weight: 600;
  color: var(--plum);
  transition: color var(--t-fast) var(--ease);
}
.faq__q:hover { color: var(--hot); }
.faq__ic {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blush);
  display: grid;
  place-items: center;
  position: relative;
  transition: background var(--t) var(--ease), transform var(--t) var(--ease);
}
.faq__ic::before, .faq__ic::after {
  content: "";
  position: absolute;
  background: var(--plum);
  border-radius: 2px;
  transition: transform var(--t) var(--ease), background var(--t) var(--ease);
}
.faq__ic::before { width: 11px; height: 1.8px; }
.faq__ic::after { width: 1.8px; height: 11px; }
.faq__i.is-open .faq__ic { background: var(--hot); transform: rotate(180deg); }
.faq__i.is-open .faq__ic::before { background: #fff; }
.faq__i.is-open .faq__ic::after { transform: scaleY(0); }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t) var(--ease);
}
.faq__i.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding-bottom: 1.2rem; margin: 0; font-size: 0.95rem; max-width: 70ch; }

/* ---------- 18. Forms ---------- */
.field { display: block; margin-bottom: 1.15rem; }
.field > span {
  display: block;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}
.field > span em { font-style: normal; color: var(--hot); }
.field .hint { display: block; font-weight: 500; font-size: 0.76rem; opacity: 0.7; margin-top: 2px; }

input[type="text"], input[type="tel"], input[type="email"], input[type="number"], input[type="date"], select, textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--line-field);
  border-radius: var(--r-sm);
  /* Must be >=16px. Below that, iOS Safari zooms the viewport on focus and
     never zooms back out — on a 16-field form that is brutal. */
  font-size: 1rem;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--hot);
  box-shadow: 0 0 0 4px rgba(232, 68, 127, 0.13);
}
textarea { resize: vertical; min-height: 110px; }

/* Chip radio / checkbox group */
.chips { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.05rem;
  border: 1.5px solid var(--line-strong);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--plum);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  user-select: none;
}
.chip span:hover { border-color: var(--rose); transform: translateY(-2px); }
.chip input:checked + span {
  background: var(--grad-rose);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--sh-glow);
}
.chip input:focus-visible + span { outline: 3px solid var(--hot); outline-offset: 3px; }

/* Selectable option card */
.opt { position: relative; display: block; }
.opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.opt__box {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r);
  background: var(--white);
  cursor: pointer;
  height: 100%;
  transition: all var(--t-fast) var(--ease);
}
.opt__box:hover { border-color: var(--rose); transform: translateY(-3px); box-shadow: var(--sh-2); }
.opt input:checked + .opt__box {
  border-color: var(--hot);
  background: #fff6f9;
  box-shadow: 0 0 0 3px rgba(232, 68, 127, 0.14);
}
.opt__box strong { display: block; color: var(--plum); font-size: 0.97rem; }
.opt__box small { font-size: 0.79rem; opacity: 0.75; line-height: 1.45; display: block; }
.opt__tick {
  flex: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--line-strong);
  margin-top: 2px;
  display: grid;
  place-items: center;
  transition: all var(--t-fast) var(--ease);
}
.opt input:checked + .opt__box .opt__tick { border-color: var(--hot); background: var(--hot); }
.opt__tick::after {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #fff;
  transform: scale(0);
  transition: transform var(--t-fast) var(--ease);
}
.opt input:checked + .opt__box .opt__tick::after { transform: scale(1); }
.opt__price { margin-left: auto; font-weight: 800; color: var(--hot); font-size: 0.95rem; white-space: nowrap; }

/* ---------- 18b. Booking — location cards ---------- */
.place { position: relative; display: block; }
.place input { position: absolute; opacity: 0; width: 0; height: 0; }
.place__box {
  position: relative;
  display: block;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-lg);
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  height: 100%;
  transition: all var(--t) var(--ease);
}
.place__box:hover { border-color: var(--rose); transform: translateY(-4px); box-shadow: var(--sh-2); }
.place input:checked + .place__box {
  border-color: var(--hot);
  box-shadow: 0 0 0 3px rgba(232, 68, 127, 0.16), var(--sh-2);
}
/* These are <span>s so they stay valid inside the <label>. Inline elements
   ignore aspect-ratio and overflow, so every one of them must be blockified. */
.place__vis {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--blush);
  overflow: hidden;
}
.place__vis img { width: 100%; height: 100%; object-fit: cover; }
.place__vis::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(46, 16, 28, 0.62), transparent 62%);
}
.place__tag {
  position: absolute;
  left: 0.9rem;
  bottom: 0.7rem;
  z-index: 2;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.35rem);
  font-weight: 600;
  white-space: nowrap;
  text-shadow: 0 1px 8px rgba(46, 16, 28, 0.5);
}
.place__body { display: block; padding: 1.1rem 1.2rem 1.25rem; }
.place__body p { font-size: 0.88rem; margin: 0.35rem 0 0; }
.place__body strong { display: block; }
.place__pick {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(46, 16, 28, 0.28);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  transition: all var(--t-fast) var(--ease);
}
.place__pick::after {
  content: "";
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #fff;
  transform: scale(0);
  transition: transform var(--t-fast) var(--ease);
}
.place input:checked + .place__box .place__pick { background: var(--hot); border-color: #fff; }
.place input:checked + .place__box .place__pick::after { transform: scale(1); }

/* ---------- 18c. Booking — date strip ---------- */
/* Grid items default to min-width:auto, which resolves to min-content. The
   date strip's 14 fixed-width chips (~980px) therefore blew the form column
   wide open and pushed the summary off-screen. min-width:0 lets the track
   shrink and the strip scroll internally, which is the point of it. */
#bookGrid > *, #builderGrid > * { min-width: 0; }

.datestrip {
  display: flex;
  gap: 0.5rem;
  min-width: 0;
  overflow-x: auto;
  padding: 0.25rem 0.25rem 0.75rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.datestrip::-webkit-scrollbar { height: 5px; }
.datestrip::-webkit-scrollbar-thumb { background: var(--petal); border-radius: 4px; }
.dchip { position: relative; flex: none; scroll-snap-align: start; }
.dchip input { position: absolute; opacity: 0; width: 0; height: 0; }
.dchip span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 62px;
  padding: 0.65rem 0.4rem;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r);
  background: var(--white);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  user-select: none;
}
.dchip span b { font-family: var(--serif); font-size: 1.32rem; color: var(--plum); line-height: 1; }
.dchip span i {
  font-style: normal;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--plum-soft);
  opacity: 0.75;
}
.dchip span:hover { border-color: var(--rose); transform: translateY(-2px); }
.dchip input:checked + span {
  background: var(--grad-rose);
  border-color: transparent;
  box-shadow: var(--sh-glow);
}
.dchip input:checked + span b,
.dchip input:checked + span i { color: #fff; opacity: 1; }
.dchip input:focus-visible + span { outline: 3px solid var(--hot); outline-offset: 3px; }

/* ---------- 18d. Booking — time slots ---------- */
.slots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 0.55rem;
}
.slot { position: relative; }
.slot input { position: absolute; opacity: 0; width: 0; height: 0; }
.slot span {
  display: block;
  text-align: center;
  padding: 0.72rem 0.5rem;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--plum);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}
.slot span:hover { border-color: var(--rose); transform: translateY(-2px); }
.slot input:checked + span {
  background: var(--grad-rose);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--sh-glow);
}
.slot input:focus-visible + span { outline: 3px solid var(--hot); outline-offset: 3px; }

/* ---------- 18e. Service picker row ---------- */
.svc { position: relative; display: block; }
.svc input { position: absolute; opacity: 0; width: 0; height: 0; }
.svc__row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1.05rem;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r);
  background: var(--white);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}
.svc__row:hover { border-color: var(--rose); transform: translateY(-2px); box-shadow: var(--sh-1); }
.svc input:checked + .svc__row {
  border-color: var(--hot);
  background: #fff6f9;
  box-shadow: 0 0 0 3px rgba(232, 68, 127, 0.13);
}
.svc__tick {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 7px;
  border: 2px solid var(--line-strong);
  display: grid;
  place-items: center;
  transition: all var(--t-fast) var(--ease);
}
.svc__tick::after {
  content: "";
  width: 10px; height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) scale(0);
  transition: transform var(--t-fast) var(--ease);
  margin-top: -2px;
}
.svc input:checked + .svc__row .svc__tick { background: var(--hot); border-color: var(--hot); }
.svc input:checked + .svc__row .svc__tick::after { transform: rotate(-45deg) scale(1); }
.svc__name { flex: 1; }
.svc__name strong { display: block; color: var(--plum); font-size: 0.98rem; }
.svc__name small { font-size: 0.79rem; opacity: 0.75; }
.svc__meta { text-align: right; white-space: nowrap; }
.svc__meta b { display: block; color: var(--hot); font-size: 1rem; }
.svc__meta small { font-size: 0.74rem; opacity: 0.7; }

/* ---------- 18f. Out-of-area notice ---------- */
.gate {
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--r-lg);
  background: var(--blush);
  padding: 1.3rem 1.4rem;
}
.gate h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.gate p { font-size: 0.9rem; margin: 0 0 0.9rem; }

/* ---------- 19. Order summary (sticky) ---------- */
.summary {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.4rem;
  box-shadow: var(--sh-2);
}
@media (min-width: 980px) { .summary { position: sticky; top: 100px; } }
.sum__row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.42rem 0; font-size: 0.92rem; }
.sum__row span:last-child { font-weight: 700; color: var(--plum); white-space: nowrap; }
.sum__row--save span:last-child { color: #1faa53; }
.sum__rule { height: 1px; background: var(--line); margin: 0.7rem 0; }
.sum__total { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.sum__total b { font-family: var(--serif); font-size: 1.75rem; color: var(--plum); }
.sum__strike { text-decoration: line-through; opacity: 0.5; font-weight: 500; font-size: 0.9rem; }

/* ---------- 20. Steps progress ---------- */
.prog { display: flex; gap: 0.4rem; margin-bottom: 1.8rem; }
.prog__s { flex: 1; height: 4px; border-radius: 4px; background: var(--blush-2); overflow: hidden; }
.prog__s i { display: block; height: 100%; width: 0; background: var(--grad-rose); transition: width var(--t-slow) var(--ease); }
.prog__s.is-done i, .prog__s.is-now i { width: 100%; }

/* ---------- 21. Sticky mobile bar ---------- */
.stickybar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  display: flex;
  gap: 0.6rem;
  align-items: center;
  padding: 0.65rem var(--pad) calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(255, 250, 247, 0.93);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  transform: translateY(120%);
  transition: transform var(--t) var(--ease);
}
.stickybar.is-on { transform: none; }
.stickybar .btn { flex: 1; padding: 0.85rem 1rem; }
.stickybar__p { font-size: 0.8rem; line-height: 1.25; }
.stickybar__p b { display: block; font-family: var(--serif); font-size: 1.15rem; color: var(--plum); }
@media (min-width: 900px) { .stickybar { display: none; } }

/* ---------- 22. Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 5.2rem;
  z-index: 82;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #1faa53;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px -8px rgba(31, 170, 83, 0.65);
  transition: transform var(--t) var(--ease);
}
.wa-float:hover { transform: scale(1.09) rotate(6deg); }
.wa-float::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(31, 170, 83, 0.45);
  animation: ping 2.4s var(--ease-in-out) infinite;
}
@keyframes ping {
  0% { transform: scale(0.85); opacity: 0.9; }
  70%, 100% { transform: scale(1.35); opacity: 0; }
}
@media (min-width: 900px) { .wa-float { bottom: 1.5rem; right: 1.5rem; } }

/* ---------- 23. Footer ---------- */
.ftr { background: var(--plum); color: rgba(255, 235, 243, 0.78); padding: clamp(3rem, 7vw, 5rem) 0 1.5rem; }
.ftr h4 { color: #fff; font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem; }
.ftr a { color: rgba(255, 235, 243, 0.78); font-size: 0.92rem; transition: color var(--t-fast) var(--ease); }
.ftr a:hover { color: var(--gold-soft); }
.ftr__grid { display: grid; gap: 2.2rem; }
@media (min-width: 760px) { .ftr__grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }
.ftr__links { display: flex; flex-direction: column; gap: 0.55rem; }
.ftr__bot {
  margin-top: 2.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  justify-content: space-between;
  font-size: 0.8rem;
}
.ftr .logo__txt { color: #fff; }

/* ---------- 24. Scroll reveal ----------
   Hidden states are scoped to .js — set by an inline script in <head>.
   If JavaScript never runs, every element stays fully visible instead of
   leaving the page blank. */
.js [data-rv] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  will-change: opacity, transform;
}
.js [data-rv].is-in { opacity: 1; transform: none; }
.js [data-rv="left"] { transform: translateX(-30px); }
.js [data-rv="right"] { transform: translateX(30px); }
.js [data-rv="zoom"] { transform: scale(0.94); }
.js [data-rv="fade"] { transform: none; }
.js [data-rv].is-in { transform: none; }

/* Word-by-word headline reveal */
.rv-w { display: inline-block; overflow: hidden; vertical-align: bottom; }
.js .rv-w > i {
  display: inline-block;
  font-style: inherit;
  transform: translateY(105%);
  transition: transform 0.9s var(--ease);
}
.rv-w > i { display: inline-block; font-style: inherit; }
.js .is-in .rv-w > i, .js .rv-w.is-in > i { transform: none; }

/* Progress bar */
.readbar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--grad-rose);
  z-index: 99;
  transition: width 0.1s linear;
}

/* Custom cursor (desktop, fine pointer only) */
.cur, .cur-dot { display: none; }
@media (hover: hover) and (pointer: fine) and (min-width: 900px) {
  .cur {
    display: block;
    position: fixed;
    top: 0; left: 0;
    width: 30px; height: 30px;
    border: 1.5px solid var(--hot);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999;
    transform: translate3d(-100px, -100px, 0);
    transition: width 0.28s var(--ease), height 0.28s var(--ease), background 0.28s var(--ease), border-color 0.28s var(--ease);
    mix-blend-mode: multiply;
  }
  .cur.is-big { width: 62px; height: 62px; background: rgba(232, 68, 127, 0.14); }
  .cur-dot {
    display: block;
    position: fixed;
    top: 0; left: 0;
    width: 5px; height: 5px;
    background: var(--hot);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999;
    transform: translate3d(-100px, -100px, 0);
  }
}

/* ---------- 25. Utility ---------- */
.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 {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.8rem 1.2rem;
  background: var(--plum);
  color: #fff;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip:focus { left: 0; top: 0; }

.divider-wave { display: block; width: 100%; height: auto; color: var(--blush); }
/* Translucent so the drifting mesh reads through the page instead of being
   hidden behind opaque bands. Cards stay solid for text contrast. */
.bg-blush { background: rgba(247, 230, 233, 0.72); }
.bg-cream { background: rgba(255, 250, 247, 0.62); }
.bg-white { background: rgba(255, 255, 255, 0.7); }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 1.6rem; } .mt-3 { margin-top: 2.4rem; }

/* ---------- 26. Motion opt-out ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-rv] { opacity: 1 !important; transform: none !important; }
  .rv-w > i { transform: none !important; }
  .cur, .cur-dot { display: none !important; }
}

/* ---------- 27. Print ---------- */
@media print {
  .hdr, .drawer, .stickybar, .wa-float, .announce, .cur, .cur-dot { display: none !important; }
  body { background: #fff; }
}
