/* =====================================================
   NUVII STUDIOS — luxury light system (v4)
   ===================================================== */

:root {
  --bg: #ece5d8;
  --bg-2: #f4efe6;
  --bg-3: #e3dacb;
  --ink: #17120c;
  --ink-2: #5f574a;
  --ink-3: #948a79;
  --accent: #c2461c;
  --accent-2: #b28a4e;
  --line: rgba(23, 18, 12, 0.14);
  --line-soft: rgba(23, 18, 12, 0.08);

  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter Tight", system-ui, sans-serif;

  --ease: cubic-bezier(0.62, 0.05, 0.01, 0.99);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --pad: clamp(1.2rem, 4vw, 3rem);
  --maxw: 1400px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
/* Luxury cursors — static SVG pointers, no JS, no animation.
   Small enough never to obscure text; hotspot is dead-centre so
   clicking stays precise. */
:root {
  --cur-default: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26'%3E%3Ccircle cx='13' cy='13' r='8' fill='none' stroke='%2317120c' stroke-width='1' opacity='0.55'/%3E%3Ccircle cx='13' cy='13' r='2' fill='%2317120c' opacity='0.85'/%3E%3C/svg%3E") 13 13, auto;
  --cur-link: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Ccircle cx='15' cy='15' r='10.5' fill='rgba(194,70,28,0.10)' stroke='%23c2461c' stroke-width='1.2'/%3E%3Ccircle cx='15' cy='15' r='2.4' fill='%23c2461c'/%3E%3C/svg%3E") 15 15, pointer;
  --cur-text: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26'%3E%3Crect x='12' y='4' width='1.4' height='18' fill='%23c2461c'/%3E%3C/svg%3E") 13 13, text;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
  cursor: var(--cur-default);
}
body.menu-open { overflow: hidden; }
/* base resets — these MUST stay, or links/buttons fall back to
   browser defaults (purple underlines, grey button chrome) */
a {
  color: inherit;
  text-decoration: none;
  cursor: var(--cur-link);
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: var(--cur-link);
}
[role="button"], summary, label { cursor: var(--cur-link); }
input, textarea, select { cursor: var(--cur-text); }
select, .select__trigger, .select__option { cursor: var(--cur-link); }

/* dark surfaces need a light cursor to stay visible */
.menu, .menu a, .menu button, .tier--featured, .tier--featured a,
.compare__col--nuvii, .card, .card button {
  --cur-default: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26'%3E%3Ccircle cx='13' cy='13' r='8' fill='none' stroke='%23f2ece0' stroke-width='1' opacity='0.6'/%3E%3Ccircle cx='13' cy='13' r='2' fill='%23f2ece0' opacity='0.9'/%3E%3C/svg%3E") 13 13, auto;
}
.menu { cursor: var(--cur-default); }
.menu a, .menu button, .card {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Ccircle cx='15' cy='15' r='10.5' fill='rgba(178,138,78,0.16)' stroke='%23b28a4e' stroke-width='1.2'/%3E%3Ccircle cx='15' cy='15' r='2.4' fill='%23b28a4e'/%3E%3C/svg%3E") 15 15, pointer;
}

@media (hover: none), (max-width: 900px) {
  body, a, button, input, textarea, select { cursor: auto; }
  a, button { cursor: pointer; }
}
::selection { background: var(--accent); color: var(--bg); }
img { display: block; max-width: 100%; }
ul { list-style: none; }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

/* ===== type helpers ===== */
.eyebrow {
  font-size: 0.74rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent); font-weight: 500;
  display: inline-flex; align-items: center; gap: 0.7em;
}
.eyebrow::before { content: ""; width: 2.2em; height: 1px; background: var(--accent); }
.h-lg { font-family: var(--serif); font-weight: 400; font-size: clamp(2.1rem, 5.2vw, 4.6rem); line-height: 1.02; letter-spacing: -0.02em; }
.h-md { font-family: var(--serif); font-weight: 400; font-size: clamp(1.6rem, 3.4vw, 2.8rem); line-height: 1.08; letter-spacing: -0.015em; }
.mask-line { display: block; overflow: hidden; }
.mask-line > span { display: block; will-change: transform; }
.char { display: inline-block; will-change: transform; }
.char-mask { display: inline-block; overflow: hidden; vertical-align: top; }

/* shared button */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 100px; padding: 1rem 2rem; font-size: 0.95rem; overflow: hidden;
  border: 1px solid var(--ink); will-change: transform;
}
.btn span { position: relative; z-index: 1; transition: color .5s var(--ease); }
.btn::before { content: ""; position: absolute; inset: 0; background: var(--ink); transform: translateY(101%); transition: transform .5s var(--ease); }
.btn:hover span { color: var(--bg); }
.btn:hover::before { transform: translateY(0); }
.btn--solid { background: var(--accent); border-color: var(--accent); color: var(--bg); }
.btn--solid::before { background: var(--ink); }

/* ===================================================
   Preloader
   =================================================== */
.preloader { position: fixed; inset: 0; z-index: 1000; background: var(--bg); display: grid; align-content: center; padding: clamp(1.5rem, 5vw, 4rem); }
.preloader__word { display: flex; gap: 0.05em; font-family: var(--serif); font-size: clamp(3.5rem, 14vw, 12rem); line-height: 0.9; font-weight: 400; }
.preloader__word span { display: inline-block; transform: translateY(110%); }
.preloader__tag { margin-top: 1.2rem; font-size: 0.8rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-2); opacity: 0; }
.preloader__count { position: absolute; right: clamp(1.5rem, 5vw, 4rem); bottom: clamp(1.5rem, 5vw, 4rem); font-family: var(--serif); font-size: clamp(1.4rem, 4vw, 2.4rem); display: flex; align-items: baseline; gap: 0.1em; }
.preloader__count em { font-size: 0.5em; color: var(--accent); font-style: normal; }
.preloader__bar { position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: var(--line-soft); }
.preloader__bar span { display: block; height: 100%; width: 0%; background: var(--accent); }

/* ===================================================
   Cursor / grain / webgl
   =================================================== */
/* custom cursor elements removed entirely — cursors are pure CSS now */
.cursor, .cursor-dot { display: none !important; }

.grain {
  position: fixed; inset: -50%; z-index: 800; pointer-events: none; opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain .6s steps(2) infinite;
}
@keyframes grain { 0%{transform:translate(0,0)} 50%{transform:translate(-4%,3%)} 100%{transform:translate(3%,-2%)} }
.webgl { position: fixed; inset: 0; z-index: 1; width: 100%; height: 100%; pointer-events: none; }

/* ===================================================
   Page transition overlay
   =================================================== */
/* panels are the page background colour, so a navigation never
   flashes black — it reads as one continuous surface */
.transition { position: fixed; inset: 0; z-index: 950; pointer-events: none; background: transparent; }
.transition__panels { position: absolute; inset: 0; display: flex; }
.transition__panels i { flex: 1; background: var(--bg); transform: scaleY(0); transform-origin: bottom; will-change: transform; margin-right: -1px; }
.transition__mark {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--serif); font-weight: 400; letter-spacing: 0.2em;
  font-size: clamp(0.85rem, 1.6vw, 1.05rem); color: var(--ink);
  opacity: 0; will-change: transform, opacity;
}
.transition__mark em { font-style: normal; display: inline-block; overflow: hidden; }

/* scroll progress */
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 100%; z-index: 600; background: transparent; pointer-events: none; }
.progress i { display: block; height: 100%; width: 100%; background: var(--accent); transform: scaleX(0); transform-origin: left; }

/* ===================================================
   Nav
   =================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 700;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem var(--pad);
  transition: background .5s var(--ease), padding .5s var(--ease), border-color .5s var(--ease), backdrop-filter .5s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck { background: rgba(236, 229, 216, 0.82); backdrop-filter: blur(14px); border-bottom-color: var(--line); padding-block: 0.75rem; }
.nav__logo {
  font-family: var(--serif); font-weight: 500; z-index: 2; white-space: nowrap;
  font-size: clamp(1rem, 1.5vw, 1.25rem); letter-spacing: 0.06em;
}
.nav__links { display: flex; gap: 2rem; }
.nav__links a { position: relative; font-size: 0.9rem; color: var(--ink-2); padding-bottom: 3px; transition: color .35s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease-out); }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--ink); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav__right { display: flex; align-items: center; gap: 0.9rem; z-index: 2; }
.nav__cta { border: 1px solid var(--ink); border-radius: 100px; padding: 0.62rem 1.2rem; font-size: 0.84rem; position: relative; overflow: hidden; white-space: nowrap; }
.nav__cta span { position: relative; z-index: 1; transition: color .5s var(--ease); display: block; }
.nav__cta::before { content: ""; position: absolute; inset: 0; background: var(--ink); transform: translateY(101%); transition: transform .5s var(--ease); }
.nav__cta:hover span { color: var(--bg); }
.nav__cta:hover::before { transform: translateY(0); }

/* sound toggle — animated equaliser bars, struck through when muted */
.sound {
  position: relative; width: 44px; height: 44px; flex-shrink: 0;
  border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center;
  transition: border-color .4s var(--ease);
}
.sound:hover { border-color: var(--ink); }
.sound__bars { display: flex; align-items: center; gap: 2.5px; height: 16px; }
.sound__bars i {
  width: 2px; height: 4px; background: var(--ink); border-radius: 2px;
  transform-origin: center;
  animation: eq 1s var(--ease) infinite alternate;
}
.sound__bars i:nth-child(1) { animation-delay: 0s; }
.sound__bars i:nth-child(2) { animation-delay: 0.18s; }
.sound__bars i:nth-child(3) { animation-delay: 0.36s; }
.sound__bars i:nth-child(4) { animation-delay: 0.1s; }
@keyframes eq { from { height: 3px; } to { height: 14px; } }
/* muted: bars settle flat and a diagonal line strikes through */
.sound.is-off .sound__bars i { animation: none; height: 3px; opacity: 0.45; }
.sound__off {
  position: absolute; width: 24px; height: 1.4px; background: var(--accent);
  border-radius: 2px; transform: rotate(-45deg) scaleX(0); transform-origin: center;
  transition: transform .45s var(--ease);
}
.sound.is-off .sound__off { transform: rotate(-45deg) scaleX(1); }
body.menu-open .sound { border-color: rgba(244,239,230,0.35); }
body.menu-open .sound__bars i { background: var(--bg-2); }
@media (prefers-reduced-motion: reduce) { .sound__bars i { animation: none; height: 9px; } }
@media (max-width: 480px) { .sound { display: none; } }

/* burger — labelled so its purpose is obvious */
.burger {
  position: relative; display: inline-flex; align-items: center; gap: 0.6rem;
  height: 44px; padding: 0 1rem 0 1.15rem; border-radius: 100px;
  border: 1px solid var(--line); flex-shrink: 0;
  transition: border-color .4s, background .4s;
}
.burger:hover { border-color: var(--ink); }
.burger__label {
  font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); transition: color .4s; min-width: 3.4em; text-align: left;
}
.burger__bars { position: relative; width: 18px; height: 12px; flex-shrink: 0; }
.burger__bars i { position: absolute; left: 0; width: 18px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: background .4s; }
.burger__bars i:nth-child(1) { top: 4px; }
.burger__bars i:nth-child(2) { top: 11px; }
body.menu-open .burger { border-color: rgba(244,239,230,0.35); }
body.menu-open .burger__label { color: var(--bg-2); }
body.menu-open .burger__bars i { background: var(--bg-2); }
@media (max-width: 420px) { .burger__label { display: none; } .burger { padding: 0 0.9rem; } }

@media (max-width: 1000px) { .nav__links { display: none; } }
@media (max-width: 620px) { .nav__cta { display: none; } }

/* ===================================================
   Full-screen menu
   =================================================== */
.menu { position: fixed; inset: 0; z-index: 690; pointer-events: none; visibility: hidden; }
.menu.is-open { pointer-events: auto; visibility: visible; }
.menu__panels { position: absolute; inset: 0; display: flex; }
.menu__panels i { flex: 1; background: var(--ink); transform: scaleY(0); transform-origin: top; will-change: transform; margin-right: -1px; }

/* slow drifting warmth behind the menu */
.menu__glow {
  position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background:
    radial-gradient(50% 55% at 18% 28%, rgba(194,70,28,0.20), transparent 70%),
    radial-gradient(45% 50% at 82% 72%, rgba(178,138,78,0.16), transparent 70%);
  animation: menuDrift 14s var(--ease) infinite alternate;
}
@keyframes menuDrift {
  0% { transform: translate3d(-2%, -1%, 0) scale(1); }
  100% { transform: translate3d(2%, 2%, 0) scale(1.08); }
}

.menu__inner {
  position: relative; height: 100%;
  display: flex; flex-direction: column; gap: 2.1rem;
  /* generous inline breathing room — the old --pad sat the type too close
     to the frame edge once the menu gained a sixth link */
  padding: 7rem clamp(1.6rem, 5vw, 4.5rem) 3.4rem;
  max-width: var(--maxw); margin: 0 auto;
  /* Centred, but SAFE: with plain `center` an overflowing column is clipped
     at BOTH ends and the cut-off content cannot be scrolled to — which is
     exactly what hid the headings and the footer. */
  justify-content: center;
  justify-content: safe center;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.menu__cols { display: grid; grid-template-columns: 1.25fr 1fr; gap: 2.4rem 5rem; align-items: start; }
.menu__heading {
  font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent-2); font-weight: 500; margin-bottom: 1.5rem;
  padding-bottom: 0.85rem; border-bottom: 1px solid rgba(242,236,224,0.14);
}

/* ---- primary links ---- */
.menu__primary { display: flex; flex-direction: column; align-items: flex-start; }
.menu__link {
  position: relative; display: flex; align-items: baseline; gap: 1.2rem;
  color: var(--bg-2); font-family: var(--serif); font-weight: 300;
  letter-spacing: -0.02em;
  /* sized so SIX links plus headings and the footer all clear a 900px
     viewport — at 3.4rem the column no longer fit and got clipped */
  font-size: clamp(1.45rem, 3vw, 2.5rem); line-height: 1.18;
  padding-block: 0.12em; max-width: 100%;
}
.menu__idx {
  font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.2em;
  color: rgba(242,236,224,0.32); flex-shrink: 0; width: 2.1em;
  transition: color .45s var(--ease-out), transform .45s var(--ease-out);
}
/* nowrap + shrink-0 stops the label collapsing and stacking one
   letter per line inside the flex row */
.menu__label {
  position: relative; display: block; overflow: hidden;
  white-space: nowrap; flex-shrink: 0;
}
.menu__label span { display: block; white-space: nowrap; will-change: transform; }
.menu__label .menu__ghost {
  position: absolute; top: 0; left: 0; color: var(--accent-2);
  transform: translateY(100%);
}
.menu__label .menu__ghost, .menu__label .menu__real { transition: transform .6s var(--ease-out); }
.menu__link:hover .menu__real { transform: translateY(-100%); }
.menu__link:hover .menu__ghost { transform: translateY(0); }
.menu__link:hover .menu__idx { color: var(--accent); transform: translateX(4px); }
.menu__link.is-current .menu__idx { color: var(--accent); }
.menu__link.is-current .menu__real { color: var(--accent-2); }

/* ---- package cards ---- */
.menu__pkgs { display: flex; flex-direction: column; gap: 0.2rem; }
.menu__pkg {
  position: relative; display: flex; align-items: baseline; justify-content: space-between;
  gap: 1.5rem; padding: 1.05rem 0; border-bottom: 1px solid rgba(242,236,224,0.12);
  color: var(--bg-2); overflow: hidden;
}
.menu__pkg::after {
  content: ""; position: absolute; left: 0; bottom: -1px; width: 100%; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: right;
  transition: transform .55s var(--ease-out);
}
.menu__pkg:hover::after { transform: scaleX(1); transform-origin: left; }
.menu__pkg span { font-family: var(--serif); font-size: clamp(1rem, 1.6vw, 1.22rem); transition: transform .45s var(--ease-out), color .35s; }
.menu__pkg b { font-family: var(--serif); font-weight: 400; color: var(--accent-2); font-size: 1.02rem; white-space: nowrap; }
.menu__pkg:hover span { transform: translateX(6px); color: var(--accent-2); }

/* ---- foot ---- */
.menu__foot {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 2rem; flex-wrap: wrap; flex-shrink: 0;
  margin-top: 0.4rem;
  padding-top: 1.9rem; border-top: 1px solid rgba(242,236,224,0.2);
}
.menu__contact span { display: block; font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 0.55rem; }
.menu__contact a { font-family: var(--serif); font-size: clamp(1.05rem, 2vw, 1.45rem); color: var(--bg-2); transition: color .3s; }
.menu__contact a:hover { color: var(--accent-2); }
.menu__legal { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.menu__legal a { font-size: 0.86rem; color: rgba(242,236,224,0.75); transition: color .3s; }
.menu__legal a:hover { color: var(--accent-2); }

@media (max-width: 900px) {
  .menu__inner {
    justify-content: flex-start; gap: 1.8rem;
    /* --pad resolves to ~19px at 390 wide, which sat the type right on the
       frame edge; a 1.6rem floor keeps a readable margin */
    padding: 5.8rem clamp(1.6rem, 6vw, 2.4rem) 2.6rem;
    overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
  }
  .menu__cols { grid-template-columns: 1fr; gap: 1.9rem; }
  .menu__link { font-size: clamp(1.5rem, 7.5vw, 2.2rem); gap: 1rem; }
  .menu__foot { flex-direction: column; align-items: flex-start; gap: 1.3rem; padding-top: 1.4rem; }
  .menu__legal { gap: 1.1rem; }
}
@media (max-height: 780px) and (max-width: 900px) {
  .menu__inner { gap: 1.3rem; padding-top: 5rem; }
  .menu__cols { gap: 1.3rem; }
  .menu__heading { margin-bottom: 0.75rem; padding-bottom: 0.55rem; }
  .menu__link { font-size: clamp(1.25rem, 6vw, 1.7rem); }
  .menu__pkg { padding: 0.75rem 0; }
  .menu__pkg span { font-size: 0.98rem; }
  .menu__legal a { font-size: 0.78rem; }
}

/* ===================================================
   Hero
   =================================================== */
.hero { position: relative; z-index: 2; min-height: 100svh; padding: clamp(6rem, 12vh, 9rem) var(--pad) 2.5rem; display: flex; flex-direction: column; justify-content: space-between; }
.hero__meta { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.tag { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid var(--line); border-radius: 100px; padding: 0.45rem 0.95rem; color: var(--ink-2); background: rgba(244, 239, 230, 0.5); backdrop-filter: blur(4px); }
.hero__title { font-family: var(--serif); font-weight: 300; font-size: clamp(2.7rem, 11.5vw, 11rem); line-height: 0.92; letter-spacing: -0.03em; margin: auto 0; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title em { font-style: italic; color: var(--accent); font-weight: 400; }
.hero__foot { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; }
.hero__lead { max-width: 32ch; font-size: 1.02rem; line-height: 1.55; color: var(--ink-2); }
.scroll-cue { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-2); }
.scroll-cue i { width: 40px; height: 1px; background: var(--ink-2); position: relative; overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; inset: 0; background: var(--accent); transform: translateX(-100%); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0%{transform:translateX(-100%)} 60%,100%{transform:translateX(100%)} }

/* ===================================================
   Manifesto + stats
   =================================================== */
.manifesto { position: relative; z-index: 2; padding: clamp(6rem, 16vh, 12rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.manifesto__lead { font-size: 0.74rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); margin-bottom: 2.5rem; }
.manifesto__text { font-family: var(--serif); font-weight: 300; font-size: clamp(1.7rem, 5vw, 4.4rem); line-height: 1.18; letter-spacing: -0.01em; max-width: 20ch; }
.manifesto__text span[data-word] { display: inline-block; opacity: 0.16; transition: opacity .1s linear; }
.manifesto__text span[data-hot] { color: var(--accent); font-style: italic; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: clamp(4rem, 8vh, 7rem); border-top: 1px solid var(--line); padding-top: 3rem; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-family: var(--serif); font-size: clamp(3rem, 8vw, 6rem); line-height: 1; }
.stat__suf { font-size: 1rem; color: var(--accent); margin: 0.5rem 0 1rem; }
.stat__label { font-size: 0.85rem; color: var(--ink-2); }
@media (max-width: 720px) { .stats { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ===================================================
   Services
   =================================================== */
.services { position: relative; z-index: 2; padding: clamp(5rem, 12vh, 9rem) var(--pad); background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.services__head { max-width: var(--maxw); margin: 0 auto 3.5rem; }
.services__head .eyebrow { margin-bottom: 1.5rem; }
.services__list { max-width: var(--maxw); margin: 0 auto; border-top: 1px solid var(--line); }
/* isolate + z-index 0 on the wipe: z-index:-1 pushed it behind the
   section background, so the hover fill was invisible */
.service { position: relative; isolation: isolate; display: grid; grid-template-columns: 4rem 1.2fr 1.6fr auto; gap: 2rem; align-items: center; padding: 2.2rem 1rem; border-bottom: 1px solid var(--line); overflow: hidden; }
.service::before { content: ""; position: absolute; inset: 0; z-index: 0; background: var(--ink); transform: translateY(101%); transition: transform .55s var(--ease); }
.service > * { position: relative; z-index: 1; }
.service:hover::before { transform: translateY(0); }
.service:hover, .service:hover .service__desc, .service:hover .service__num, .service:hover .service__tags { color: var(--bg); }
.service > * { transition: color .5s var(--ease), transform .6s var(--ease); }
.service:hover .service__title { transform: translateX(0.6rem); }
.service__num { font-family: var(--serif); color: var(--accent); font-size: 0.95rem; }
.service__title { font-family: var(--serif); font-weight: 400; font-size: clamp(1.3rem, 2.6vw, 2rem); }
.service__desc { color: var(--ink-2); max-width: 42ch; line-height: 1.5; font-size: 0.98rem; }
.service__tags { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); white-space: nowrap; }
@media (max-width: 900px) {
  .service { grid-template-columns: 3rem 1fr; gap: 0.4rem 1.2rem; padding: 1.6rem 0.4rem; }
  .service__desc, .service__tags { grid-column: 2; }
  .service:hover .service__title { transform: none; }
}

/* ===================================================
   Compare
   =================================================== */
.compare { position: relative; z-index: 2; padding: clamp(5rem, 12vh, 9rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.compare__head { margin-bottom: 3.5rem; }
.compare__head .eyebrow { margin-bottom: 1.5rem; }
.compare__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.compare__col { border: 1px solid var(--line); border-radius: 20px; padding: 2.4rem; background: rgba(244,239,230,0.5); backdrop-filter: blur(6px); }
.compare__col--nuvii { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.compare__col h3 { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; margin-bottom: 1.8rem; display: flex; align-items: center; gap: 0.6rem; }
.compare__col li { display: flex; gap: 0.9rem; padding: 0.85rem 0; border-bottom: 1px solid var(--line-soft); font-size: 0.96rem; color: var(--ink-2); }
.compare__col--nuvii li { color: rgba(242,236,224,0.82); border-color: rgba(242,236,224,0.12); }
.compare__col li::before { content: "\2715"; color: var(--ink-3); flex-shrink: 0; }
.compare__col--nuvii li::before { content: "\2713"; color: var(--accent-2); }
@media (max-width: 820px) { .compare__grid { grid-template-columns: 1fr; } .compare__col { padding: 1.8rem; } }

/* ===================================================
   Process
   =================================================== */
.process { position: relative; z-index: 2; padding: clamp(5rem, 12vh, 9rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.process__head { margin-bottom: 4rem; }
.process__head .eyebrow { margin-bottom: 1.5rem; }
.process__steps { display: grid; gap: 1.2rem; }
.pstep { display: grid; grid-template-columns: 5rem 1fr; gap: 2rem; padding: 2.5rem; border: 1px solid var(--line); border-radius: 20px; background: rgba(244, 239, 230, 0.55); backdrop-filter: blur(6px); will-change: transform; }
.pstep__num { font-family: var(--serif); font-size: 1.6rem; color: var(--accent); }
.pstep__body h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.4rem, 3vw, 2.2rem); margin-bottom: 0.8rem; }
.pstep__body p { color: var(--ink-2); line-height: 1.6; max-width: 60ch; font-size: 1rem; }
@media (max-width: 720px) { .pstep { grid-template-columns: 1fr; gap: 1rem; padding: 1.8rem; } }

/* ===================================================
   Work
   =================================================== */
.work { position: relative; z-index: 2; padding: clamp(5rem, 12vh, 9rem) 0; overflow: hidden; }
.work__intro { padding-inline: var(--pad); margin: 0 auto 3.5rem; max-width: var(--maxw); }
/* while pinned, the section must fit exactly one screen so no card is clipped */
@media (min-width: 901px) {
  .work {
    height: 100vh; padding-block: 0;
    display: flex; flex-direction: column; justify-content: center;
  }
  .work__intro { margin-bottom: clamp(1.5rem, 4vh, 2.75rem); width: 100%; }
}
@media (max-width: 900px) {
  .card { --card-h: min(62vh, 480px); }
}
.work__intro .eyebrow { margin-bottom: 1.5rem; }
.work__disclaimer { margin-top: 1.1rem; max-width: 52ch; color: var(--ink-2); font-size: 0.95rem; line-height: 1.6; }
.work__track { display: flex; gap: 1.4rem; padding-inline: var(--pad); width: max-content; align-items: flex-start; }

/* 9:16 portrait cards matching the source footage. Height is derived
   from the viewport so a whole card fits the pinned section. */
.card {
  --card-h: min(70vh, 700px);
  position: relative; flex-shrink: 0;
  height: var(--card-h);
  width: calc(var(--card-h) * 9 / 16);
  border-radius: 18px; overflow: hidden;
  background: var(--bg-3);
  box-shadow: 0 30px 60px -32px rgba(23, 18, 12, 0.5);
  will-change: transform;
}
.card__poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease-out);
}
.card:hover .card__poster { transform: scale(1.055); }
.card__shade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(12,9,7,0.78) 0%, rgba(12,9,7,0.18) 42%, rgba(12,9,7,0.05) 70%);
  transition: opacity .5s var(--ease);
}
.card__play {
  position: absolute; top: 50%; left: 50%; z-index: 2;
  width: 84px; height: 84px; margin: -42px 0 0 -42px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(244, 239, 230, 0.94); color: var(--ink);
  backdrop-filter: blur(6px); pointer-events: none;
  opacity: 0; transform: scale(0.76);
  transition: opacity .45s var(--ease-out), transform .55s var(--ease-out), background .3s;
}
.card__play svg { margin-left: 4px; }
.card:hover .card__play { opacity: 1; transform: scale(1); }
.card:hover .card__shade { opacity: 0.85; }

.card__index {
  position: absolute; top: 17px; left: 19px; z-index: 2;
  font-family: var(--serif); font-size: 1rem; color: rgba(255,255,255,0.92);
}
.card__meta {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1.5rem 1.6rem; color: #fff; transition: transform .5s var(--ease-out);
}
.card__meta h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.3rem, 2.1vw, 1.8rem); line-height: 1.15; }
.card__meta span { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.82; }
.card:hover .card__meta { transform: translateY(-5px); }

/* ---------- fullscreen video lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 970;
  display: grid; place-items: center;
  background: rgba(9, 7, 6, 0.94);
  opacity: 0; visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__stage {
  position: relative;
  height: min(88vh, calc(94vw * 16 / 9));
  aspect-ratio: 9 / 16;
  border-radius: 14px; overflow: hidden; background: #000;
  box-shadow: 0 50px 120px -35px rgba(0, 0, 0, 0.85);
  will-change: transform, opacity;
}
.lightbox__video { width: 100%; height: 100%; object-fit: contain; display: block; background: #000; }
.lightbox__close {
  position: fixed; top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); z-index: 3;
  display: inline-flex; align-items: center; gap: 0.65rem;
  height: 52px; padding: 0 1.25rem; border-radius: 100px;
  background: rgba(244, 239, 230, 0.1); border: 1px solid rgba(244, 239, 230, 0.3);
  color: var(--bg-2); font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase;
  transition: background .35s var(--ease), border-color .35s, color .35s;
}
.lightbox__close:hover { background: var(--accent); border-color: var(--accent); color: var(--bg); }
.lightbox__caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1.6rem; color: #fff; pointer-events: none;
  background: linear-gradient(to top, rgba(9,7,6,0.85), transparent);
  transition: opacity .4s;
}
.lightbox.is-playing .lightbox__caption { opacity: 0; }
.lightbox__caption h3 { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; }
.lightbox__caption span { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.8; }
.lightbox__hint {
  position: fixed; bottom: clamp(1rem, 3vw, 2rem); left: 50%; transform: translateX(-50%);
  color: rgba(242, 236, 224, 0.45); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
}
@media (max-width: 700px) {
  .lightbox__close { height: 44px; padding: 0 1rem; font-size: 0.68rem; }
  .lightbox__hint { display: none; }
}
/* mobile: native swipe instead of pinned scroll */
.work__viewport.is-native { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.work__viewport.is-native::-webkit-scrollbar { display: none; }
.work__viewport.is-native .work__track { padding-right: var(--pad); }

/* ===================================================
   Pricing
   =================================================== */
.pricing { position: relative; z-index: 2; padding: clamp(5rem, 12vh, 9rem) var(--pad); background: var(--bg-2); border-top: 1px solid var(--line); }
.pricing__head { max-width: var(--maxw); margin: 0 auto 3.5rem; }
.pricing__head .eyebrow { margin-bottom: 1.5rem; }
.tiers { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.tier { position: relative; display: flex; flex-direction: column; padding: 2.5rem; border: 1px solid var(--line); border-radius: 20px; background: var(--bg); will-change: transform; transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out); }
.tier:hover { box-shadow: 0 30px 60px -35px rgba(23,18,12,0.45); }
.tier--featured { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.tier--featured .tier__top h3, .tier--featured .tier__price span { color: var(--bg); }
.tier--featured .tier__list li { color: rgba(242,236,224,0.82); border-color: rgba(242,236,224,0.14); }
.tier--featured .tier__list li::before { color: var(--accent-2); }
.tier__badge { position: absolute; top: -12px; left: 2.5rem; background: var(--accent); color: var(--bg); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.35rem 0.8rem; border-radius: 100px; }
.tier__top { margin-bottom: 1.8rem; }
.tier__top h3 { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; margin-bottom: 1rem; }
.tier__price { display: flex; align-items: baseline; gap: 0.15em; font-family: var(--serif); }
.tier__price em { font-size: 1.4rem; font-style: normal; color: var(--accent); }
.tier__price span { font-size: clamp(2.4rem, 5vw, 3.4rem); }
.tier__list { flex: 1; margin-bottom: 2rem; }
.tier__list li { padding: 0.7rem 0; border-bottom: 1px solid var(--line-soft); color: var(--ink-2); font-size: 0.95rem; display: flex; gap: 0.7rem; align-items: baseline; }
.tier__list li::before { content: "\2014"; color: var(--accent); flex-shrink: 0; }
.tier__cta { text-align: center; border: 1px solid currentColor; border-radius: 100px; padding: 0.9rem; font-size: 0.9rem; position: relative; overflow: hidden; }
.tier__cta span { position: relative; z-index: 1; transition: color .5s var(--ease); display: block; }
.tier__cta::before { content: ""; position: absolute; inset: 0; background: var(--accent); transform: translateY(101%); transition: transform .5s var(--ease); }
.tier__cta:hover span { color: var(--bg); }
.tier__cta:hover::before { transform: translateY(0); }
.tier__cta--solid { background: var(--accent); border-color: var(--accent); color: var(--bg); }
.tier__cta--solid::before { background: var(--bg); }
.tier__cta--solid:hover span { color: var(--ink); }
@media (max-width: 900px) { .tiers { grid-template-columns: 1fr; } }

/* ===================================================
   Testimonials
   =================================================== */
.quotes { position: relative; z-index: 2; padding: clamp(5rem, 12vh, 9rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.quotes__head { margin-bottom: 3.5rem; }
.quotes__head .eyebrow { margin-bottom: 1.5rem; }
.quotes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.quote { border: 1px solid var(--line); border-radius: 20px; padding: 2.2rem; background: rgba(244,239,230,0.5); backdrop-filter: blur(6px); display: flex; flex-direction: column; gap: 1.6rem; will-change: transform; }
.quote p { font-family: var(--serif); font-size: 1.18rem; line-height: 1.45; font-weight: 300; flex: 1; }
.quote footer { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.quote footer b { display: block; color: var(--ink); font-weight: 500; letter-spacing: 0.02em; text-transform: none; font-size: 0.95rem; margin-bottom: 0.15rem; }
@media (max-width: 900px) { .quotes__grid { grid-template-columns: 1fr; } }

/* ===================================================
   FAQ accordion
   =================================================== */
.faq { position: relative; z-index: 2; padding: clamp(5rem, 12vh, 9rem) var(--pad); max-width: 980px; margin: 0 auto; }
.faq__head { margin-bottom: 3rem; }
.faq__head .eyebrow { margin-bottom: 1.5rem; }
.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: transparent;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: 1.7rem 0.2rem; font-family: var(--serif);
  font-size: clamp(1.05rem, 2.2vw, 1.5rem); font-weight: 400; line-height: 1.25;
  transition: color .35s var(--ease), padding-left .45s var(--ease);
}
.faq__q:hover { color: var(--accent); padding-left: 0.7rem; }
.faq__item.is-open .faq__q { color: var(--accent); }
/* real elements (not pseudo) so GSAP can drive them identically everywhere */
.faq__icon {
  position: relative; width: 38px; height: 38px; flex-shrink: 0;
  border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center;
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.faq__icon i {
  position: absolute; top: 50%; left: 50%; width: 13px; height: 1.5px;
  background: var(--accent); border-radius: 2px; margin: -0.75px 0 0 -6.5px;
  will-change: transform;
}
/* the vertical stroke of the "+" is set in CSS, so the icon is correct
   even before (or without) JS — GSAP only animates the rotation */
.faq__icon i:nth-child(2) { transform: rotate(90deg); }
.faq__q:hover .faq__icon { border-color: var(--accent); }
.faq__item.is-open .faq__icon { background: var(--accent); border-color: var(--accent); }
.faq__item.is-open .faq__icon i { background: var(--bg); }
.faq__a { overflow: hidden; height: 0; }
.faq__a p { padding-bottom: 1.6rem; color: var(--ink-2); line-height: 1.65; max-width: 66ch; }

/* ===================================================
   CTA + marquee
   =================================================== */
.cta { position: relative; z-index: 2; padding: clamp(6rem, 16vh, 12rem) var(--pad) 0; text-align: center; display: flex; flex-direction: column; align-items: center; }
.cta .eyebrow { margin-bottom: 2rem; }
.cta__title { font-family: var(--serif); font-weight: 300; font-size: clamp(2.4rem, 9.5vw, 8rem); line-height: 0.98; letter-spacing: -0.03em; margin-bottom: 3rem; }
.cta__actions { display: flex; gap: 1.2rem; flex-wrap: wrap; justify-content: center; margin-bottom: clamp(4rem, 10vh, 8rem); }
.cta__mail, .cta__wa { position: relative; overflow: hidden; border-radius: 100px; padding: 1.1rem 2.2rem; font-size: 1rem; will-change: transform; }
.cta__mail { background: var(--ink); color: var(--bg); }
.cta__wa { border: 1px solid var(--ink); }
.cta__mail span, .cta__wa span { position: relative; z-index: 1; display: block; }
.marquee { width: 100%; overflow: hidden; border-top: 1px solid var(--line); padding: 1.4rem 0; }
.marquee__track { display: flex; width: max-content; will-change: transform; }
.marquee__track span { font-family: var(--serif); font-size: clamp(1.6rem, 4vw, 3rem); white-space: nowrap; padding-right: 1rem; color: var(--ink); }

/* ===================================================
   Footer
   =================================================== */
.footer { position: relative; z-index: 2; padding: clamp(3.5rem, 8vh, 5.5rem) var(--pad) 2rem; border-top: 1px solid var(--line); background: var(--bg); }
.footer__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer__brand h3 { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; margin-bottom: 0.8rem; }
.footer__brand p { color: var(--ink-2); max-width: 34ch; line-height: 1.6; font-size: 0.95rem; }
.footer__col h4 { font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.1rem; font-weight: 500; }
.footer__col a { display: block; color: var(--ink-2); font-size: 0.94rem; line-height: 2; transition: color .3s, transform .3s; }
.footer__col a:hover { color: var(--accent); transform: translateX(4px); }
.footer__row { max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; font-size: 0.85rem; color: var(--ink-3); border-top: 1px solid var(--line); padding-top: 1.8rem; }
.footer__top:hover { color: var(--accent); }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } .footer__brand { grid-column: 1 / -1; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } .footer__row { flex-direction: column; align-items: flex-start; } }

/* ===================================================
   Sub-page shared
   =================================================== */
.page-hero { position: relative; z-index: 2; padding: clamp(8rem, 20vh, 13rem) var(--pad) clamp(3rem, 8vh, 5rem); max-width: var(--maxw); margin: 0 auto; }
.crumbs { display: flex; align-items: center; gap: 0.6rem; font-size: 0.78rem; color: var(--ink-3); margin-bottom: 2rem; letter-spacing: 0.06em; }
.crumbs a:hover { color: var(--accent); }
.page-hero__title { font-family: var(--serif); font-weight: 300; font-size: clamp(2.4rem, 8vw, 6rem); line-height: 0.98; letter-spacing: -0.03em; margin-bottom: 1.5rem; }
.page-hero__title em { font-style: italic; color: var(--accent); }
.page-hero__lead { max-width: 58ch; color: var(--ink-2); font-size: 1.08rem; line-height: 1.6; }
.page-hero__bar { display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; margin-top: 2.8rem; padding-top: 2.2rem; border-top: 1px solid var(--line); }
.page-hero__stat { display: flex; flex-direction: column; gap: 0.3rem; }
.page-hero__stat b { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.page-hero__stat span { font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }

/* package detail */
.pkg { position: relative; z-index: 2; padding: clamp(3rem, 8vh, 5rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.pkg__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; align-items: start; }
.pkg__body h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem, 3vw, 2.2rem); margin: 2.6rem 0 1.1rem; }
.pkg__body h2:first-child { margin-top: 0; }
.pkg__body p { color: var(--ink-2); line-height: 1.7; margin-bottom: 1rem; max-width: 62ch; }
.pkg__list { margin: 1.2rem 0 0; }
.pkg__list li { display: flex; gap: 0.9rem; padding: 0.8rem 0; border-bottom: 1px solid var(--line-soft); color: var(--ink-2); line-height: 1.5; }
.pkg__list li::before { content: "\2014"; color: var(--accent); flex-shrink: 0; }
.pkg__list li b { color: var(--ink); font-weight: 500; }
.pkg__aside { position: sticky; top: 6rem; border: 1px solid var(--line); border-radius: 20px; padding: 2.2rem; background: var(--bg-2); }
.pkg__aside .tier__price { margin-bottom: 0.4rem; }
.pkg__note { font-size: 0.82rem; color: var(--ink-3); margin-bottom: 1.6rem; }
.pkg__aside .btn { width: 100%; margin-bottom: 0.8rem; }
.pkg__specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; margin-top: 1.5rem; }
.pkg__spec { background: var(--bg); padding: 1.4rem; }
.pkg__spec span { display: block; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 0.5rem; }
.pkg__spec b { font-family: var(--serif); font-weight: 400; font-size: 1.15rem; }
@media (max-width: 940px) { .pkg__grid { grid-template-columns: 1fr; } .pkg__aside { position: static; } }

/* other-packages strip */
.alt { position: relative; z-index: 2; padding: clamp(4rem, 10vh, 7rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.alt__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.alt__card { border: 1px solid var(--line); border-radius: 20px; padding: 2rem; background: rgba(244,239,230,0.5); display: flex; flex-direction: column; gap: 0.8rem; transition: transform .5s var(--ease-out), border-color .4s; will-change: transform; }
.alt__card:hover { transform: translateY(-6px); border-color: var(--ink); }
.alt__card h3 { font-family: var(--serif); font-weight: 400; font-size: 1.45rem; }
.alt__card p { color: var(--ink-2); font-size: 0.94rem; line-height: 1.55; }
.alt__card b { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.alt__go { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
@media (max-width: 760px) { .alt__grid { grid-template-columns: 1fr; } }

/* legal prose */
.legal { position: relative; z-index: 2; padding: clamp(2rem, 5vh, 3rem) var(--pad) clamp(5rem, 12vh, 8rem); max-width: 860px; margin: 0 auto; }
.legal__updated { font-size: 0.82rem; color: var(--ink-3); padding-bottom: 2rem; margin-bottom: 2.5rem; border-bottom: 1px solid var(--line); letter-spacing: 0.04em; }
.legal h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.35rem, 2.8vw, 1.9rem); margin: 2.8rem 0 1rem; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 1.02rem; font-weight: 600; margin: 1.6rem 0 0.6rem; }
.legal p { color: var(--ink-2); line-height: 1.75; margin-bottom: 1rem; }
.legal ul { margin: 0 0 1.2rem 0; }
.legal li { display: flex; gap: 0.8rem; color: var(--ink-2); line-height: 1.7; padding: 0.35rem 0; }
.legal li::before { content: "\2014"; color: var(--accent); flex-shrink: 0; }
.legal a { color: var(--accent); border-bottom: 1px solid transparent; transition: border-color .3s; }
.legal a:hover { border-bottom-color: var(--accent); }
.legal__toc { border: 1px solid var(--line); border-radius: 18px; padding: 1.6rem 1.8rem; background: var(--bg-2); margin-bottom: 3rem; }
.legal__toc h4 { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.9rem; }
.legal__toc a { display: block; color: var(--ink-2); font-size: 0.94rem; line-height: 1.95; border: 0; }
.legal__toc a:hover { color: var(--accent); }
.legal__callout { border-left: 2px solid var(--accent); padding: 0.4rem 0 0.4rem 1.4rem; margin: 1.8rem 0; color: var(--ink-2); font-size: 0.94rem; line-height: 1.65; background: rgba(194,70,28,0.04); }

/* ===================================================
   Booking form
   =================================================== */
.book { position: relative; z-index: 2; padding: clamp(2rem, 5vh, 3rem) var(--pad) clamp(5rem, 12vh, 8rem); max-width: 1180px; margin: 0 auto; }
.book__grid { display: grid; grid-template-columns: 1fr 0.72fr; gap: 4rem; align-items: start; }

.form__group { margin-bottom: 2.4rem; position: relative; }
.form__label {
  display: block; font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 0.75rem; font-weight: 500;
}
.form__label b { color: var(--accent); font-weight: 500; }
.form__input, .form__select, .form__textarea {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid var(--line); color: var(--ink);
  font-family: var(--sans); font-size: 1.05rem; padding: 0.85rem 0;
  outline: none; border-radius: 0;
  transition: border-color .45s var(--ease);
}
.form__input::placeholder, .form__textarea::placeholder { color: rgba(23,18,12,0.26); }
.form__input:focus, .form__select:focus, .form__textarea:focus { border-bottom-color: var(--accent); }
.form__underline { position: absolute; left: 0; bottom: 0; height: 1px; width: 100%; background: var(--accent); transform: scaleX(0); transform-origin: left; pointer-events: none; }
/* ---- custom dropdown (native <select> options can't be styled) ---- */
.select { position: relative; }
.select__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: transparent; border: none; border-bottom: 1px solid var(--line);
  padding: 0.85rem 0; font-family: var(--sans); font-size: 1.05rem;
  color: rgba(23,18,12,0.32); text-align: left;
  transition: border-color .45s var(--ease), color .3s;
}
.select__trigger.has-value { color: var(--ink); }
.select.is-open .select__trigger { border-bottom-color: var(--accent); }
.select__arrow { flex-shrink: 0; color: var(--accent); transition: transform .5s var(--ease); }
.select.is-open .select__arrow { transform: rotate(180deg); }
.select__panel {
  position: absolute; top: calc(100% + 10px); left: 0; right: 0; z-index: 30;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 16px;
  padding: 0.5rem; overflow: hidden;
  box-shadow: 0 30px 60px -28px rgba(23,18,12,0.42);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .35s var(--ease), transform .45s var(--ease-out), visibility .35s;
}
.select.is-open .select__panel { opacity: 1; visibility: visible; transform: translateY(0); }
.select__option {
  position: relative; display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; padding: 0.95rem 1rem; border-radius: 11px;
  font-size: 0.98rem; color: var(--ink-2); overflow: hidden;
  transition: color .3s, background .35s var(--ease);
}
.select__option em { font-family: var(--serif); font-style: normal; color: var(--accent-2); font-size: 1rem; white-space: nowrap; }
.select__option:hover { background: var(--ink); color: var(--bg); }
.select__option:hover em { color: var(--accent-2); }
.select__option.is-selected { background: rgba(194,70,28,0.09); color: var(--accent); }
.select__option.is-selected em { color: var(--accent); }
.form__textarea { resize: vertical; min-height: 130px; line-height: 1.65; }
.form__submit {
  width: 100%; margin-top: 0.6rem; padding: 1.25rem;
  font-size: 0.82rem; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 500;
  border-radius: 100px; position: relative; overflow: hidden;
  background: var(--accent); color: var(--bg); border: 1px solid var(--accent);
  transition: opacity .3s;
}
.form__submit span { position: relative; z-index: 1; transition: color .5s var(--ease); display: block; }
.form__submit::before { content: ""; position: absolute; inset: 0; background: var(--ink); transform: translateY(101%); transition: transform .5s var(--ease); }
.form__submit:hover span { color: var(--bg); }
.form__submit:hover::before { transform: translateY(0); }
.form__submit[disabled] { opacity: 0.6; pointer-events: none; }
.form__error {
  margin-top: 1rem; padding: 0.9rem 1.1rem; border-radius: 12px;
  background: rgba(194,70,28,0.09); border: 1px solid rgba(194,70,28,0.3);
  color: var(--accent); font-size: 0.9rem; display: none;
}
.form__error.is-shown { display: block; }

/* aside */
.book__aside { position: sticky; top: 6.5rem; border: 1px solid var(--line); border-radius: 20px; padding: 2.2rem; background: var(--bg-2); }
.book__aside h3 { font-family: var(--serif); font-weight: 400; font-size: 1.35rem; margin-bottom: 1.4rem; }
.book__steps { display: flex; flex-direction: column; gap: 1.3rem; margin-bottom: 2rem; }
.book__step { display: flex; gap: 1rem; }
.book__step b { font-family: var(--serif); color: var(--accent); font-weight: 400; flex-shrink: 0; }
.book__step p { color: var(--ink-2); font-size: 0.93rem; line-height: 1.55; }
.book__aside .book__alt { border-top: 1px solid var(--line); padding-top: 1.5rem; font-size: 0.92rem; color: var(--ink-2); line-height: 1.7; }
.book__aside .book__alt a { color: var(--accent); border-bottom: 1px solid transparent; transition: border-color .3s; }
.book__aside .book__alt a:hover { border-bottom-color: var(--accent); }

/* success */
.book__success { display: none; flex-direction: column; align-items: flex-start; padding: 2rem 0; }
.book__success.is-shown { display: flex; }
.book__tick {
  width: 66px; height: 66px; border-radius: 50%; border: 1px solid var(--accent);
  display: grid; place-items: center; color: var(--accent); margin-bottom: 2rem;
}
.book__success h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.05; margin-bottom: 1.2rem; }
.book__success h2 em { font-style: italic; color: var(--accent); }
.book__success p { color: var(--ink-2); line-height: 1.7; max-width: 48ch; margin-bottom: 2.2rem; }

@media (max-width: 940px) {
  .book__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .book__aside { position: static; }
}

/* ===================================================
   Shared modal
   =================================================== */
.modal { position: fixed; inset: 0; z-index: 980; display: grid; place-items: center; visibility: hidden; padding: var(--pad); }
.modal.is-open { visibility: visible; }
.modal__scrim { position: absolute; inset: 0; background: rgba(23, 18, 12, 0.55); backdrop-filter: blur(10px); opacity: 0; }
.modal__panel {
  position: relative; z-index: 1; width: min(560px, 100%);
  max-height: 88vh; overflow-y: auto; overscroll-behavior: contain;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 24px;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: 0 50px 110px -40px rgba(23, 18, 12, 0.55);
}
.modal__close {
  position: absolute; top: 1rem; right: 1rem; width: 38px; height: 38px;
  border-radius: 50%; display: grid; place-items: center; color: var(--ink-2);
  border: 1px solid var(--line); transition: background .35s var(--ease), color .35s, border-color .35s;
}
.modal__close:hover { background: var(--accent); border-color: var(--accent); color: var(--bg); }

.connect__eyebrow {
  display: inline-block; font-size: 0.68rem; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1.1rem;
}

/* ---- connect: prepare beat ---- */
.connect__stage { min-height: 168px; }
.connect__prep { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; padding: 2.2rem 0; color: var(--ink-2); }
.connect__spinner {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--line); border-top-color: var(--accent);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- connect: the person ---- */
.person { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; padding-bottom: 1.3rem; border-bottom: 1px solid var(--line); }
.person__avatar {
  width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; background: var(--ink); color: var(--bg);
  font-family: var(--serif); font-size: 1.35rem;
}
.person__id { display: flex; flex-direction: column; }
.person__id b { font-family: var(--serif); font-weight: 400; font-size: 1.3rem; }
.person__id span { font-size: 0.84rem; color: var(--ink-3); letter-spacing: 0.04em; }
.person__status { margin-left: auto; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--ink-2); }
/* deliberately NOT a green "online" light — there are no guaranteed hours,
   so implying live presence would be a promise we can't keep */
.person__status i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-2); }
.connect__note { margin-top: 1.2rem; color: var(--ink-2); line-height: 1.6; font-size: 0.96rem; }
.connect__what { margin-top: 0.8rem; color: var(--ink-3); font-size: 0.9rem; line-height: 1.6; }
.connect__what b { color: var(--ink); font-weight: 500; }
.connect__actions { display: flex; gap: 0.8rem; margin-top: 1.6rem; flex-wrap: wrap; }
.connect__actions .btn { flex: 1; min-width: 170px; }

/* ---- fit prompt ---- */
.prompt__title { font-family: var(--serif); font-weight: 400; font-size: clamp(1.6rem, 3.4vw, 2.2rem); margin-bottom: 0.8rem; }
.prompt__body { color: var(--ink-2); line-height: 1.65; margin-bottom: 1.6rem; }
.prompt__actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.prompt__actions .btn { flex: 1; min-width: 190px; }
.prompt__dismiss { display: block; margin: 1.2rem auto 0; font-size: 0.85rem; color: var(--ink-3); text-decoration: underline; text-underline-offset: 3px; }
.prompt__dismiss:hover { color: var(--accent); }

/* ===================================================
   Floating actions — bottom right
   =================================================== */
.fab {
  position: fixed; right: clamp(1rem, 2.5vw, 1.8rem); bottom: clamp(1rem, 2.5vw, 1.8rem);
  z-index: 650; display: flex; flex-direction: column; align-items: flex-end; gap: 0.7rem;
  opacity: 0; transform: translateY(14px) scale(0.96); pointer-events: none;
  transition: opacity .5s var(--ease-out), transform .6s var(--ease-out), bottom .6s var(--ease-out);
}
.fab.is-shown { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
/* never sit over the open menu */
body.menu-open .fab { opacity: 0; pointer-events: none; }
/* lift clear of the sticky bar on package pages — driven by a body class,
   not a sibling selector, because the FAB is inserted before the bar */
body.has-stickybar .fab { bottom: calc(clamp(1rem, 2.5vw, 1.8rem) + 74px); }

.fab__btn {
  display: inline-flex; align-items: center; gap: 0; overflow: hidden;
  height: 54px; padding: 0; border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  box-shadow: 0 16px 40px -18px rgba(23, 18, 12, 0.42);
  transition: gap .45s var(--ease-out), padding .45s var(--ease-out),
              background .4s var(--ease), border-color .4s var(--ease),
              color .4s var(--ease), box-shadow .4s var(--ease);
  /* the gentle, continuous float */
  animation: fabFloat 4.2s var(--ease) infinite;
}
.fab__btn--wa { animation-delay: -2.1s; }
.fab__icon { width: 54px; height: 54px; display: grid; place-items: center; flex-shrink: 0; }
.fab__label {
  max-width: 0; white-space: nowrap; opacity: 0;
  font-size: 0.86rem; letter-spacing: 0.02em;
  transition: max-width .5s var(--ease-out), opacity .35s var(--ease), padding .5s var(--ease-out);
  padding-left: 0;
}
@media (hover: hover) {
  .fab__btn:hover { padding-left: 1.15rem; border-color: transparent; }
  .fab__btn:hover .fab__label { max-width: 15rem; opacity: 1; }
  .fab__btn--wa:hover { background: #1f8a4c; color: #fff; }
  .fab__btn--book:hover { background: var(--ink); color: var(--bg); }
}
.fab__btn--wa { color: #1f8a4c; }
.fab__btn--book { color: var(--ink); }

@keyframes fabFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
/* Reduced motion gets a calmer float, not a dead button — this machine
   reports reduce, and killing it outright removed the effect entirely. */
@media (prefers-reduced-motion: reduce) {
  .fab__btn { animation-duration: 7s; }
  @keyframes fabFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
  }
}
@media (max-width: 560px) {
  .fab { gap: 0.55rem; }
  .fab__btn { height: 48px; }
  .fab__icon { width: 48px; height: 48px; }
}

/* ===================================================
   Sticky CTA bar — package pages
   =================================================== */
.stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 640;
  transform: translateY(110%); transition: transform .6s var(--ease-out);
  background: rgba(244, 239, 230, 0.92); backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
}
.stickybar.is-shown { transform: translateY(0); }
.stickybar__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0.9rem var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
}
.stickybar__meta { display: flex; align-items: baseline; gap: 0.85rem; min-width: 0; }
.stickybar__meta b { font-family: var(--serif); font-weight: 400; font-size: 1.05rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.stickybar__meta span { font-family: var(--serif); color: var(--accent); font-size: 1.05rem; white-space: nowrap; }
.stickybar__actions { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.stickybar__ghost { font-size: 0.86rem; color: var(--ink-2); white-space: nowrap; }
.stickybar__ghost:hover { color: var(--accent); }
.stickybar__cta {
  border-radius: 100px; padding: 0.7rem 1.3rem; font-size: 0.86rem; white-space: nowrap;
  background: var(--accent); color: var(--bg); position: relative; overflow: hidden;
}
.stickybar__cta span { position: relative; z-index: 1; }
.stickybar__cta::before { content: ""; position: absolute; inset: 0; background: var(--ink); transform: translateY(101%); transition: transform .45s var(--ease); }
.stickybar__cta:hover::before { transform: translateY(0); }
@media (max-width: 620px) {
  .stickybar__meta span { display: none; }
  .stickybar__ghost { display: none; }
  .stickybar__inner { padding: 0.75rem var(--pad); }
}

/* ===================================================
   Quiz
   =================================================== */
.page-hero--tight { padding-bottom: clamp(1.5rem, 4vh, 2.5rem); }
.quiz { position: relative; z-index: 2; padding: 0 var(--pad) clamp(5rem, 12vh, 8rem); max-width: 820px; margin: 0 auto; }
.quiz__shell { border: 1px solid var(--line); border-radius: 24px; background: var(--bg-2); padding: clamp(1.6rem, 4vw, 2.6rem); }
.quiz__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.9rem; }
.quiz__count { font-family: var(--data, var(--sans)); font-size: 0.78rem; letter-spacing: 0.2em; color: var(--ink-3); }
.quiz__count em { font-style: normal; margin: 0 0.35em; opacity: 0.5; }
.quiz__restart { font-size: 0.8rem; color: var(--ink-3); text-decoration: underline; text-underline-offset: 3px; }
.quiz__restart:hover { color: var(--accent); }
.quiz__bar { height: 2px; background: var(--line-soft); border-radius: 2px; overflow: hidden; margin-bottom: 2rem; }
.quiz__bar i { display: block; height: 100%; width: 0%; background: var(--accent); }
.quiz__stage { min-height: 320px; }

.quiz__title { font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem, 3.6vw, 2.3rem); line-height: 1.15; margin-bottom: 0.6rem; }
.quiz__hint { color: var(--ink-3); font-size: 0.92rem; margin-bottom: 1.6rem; }
.quiz__options { display: flex; flex-direction: column; gap: 0.6rem; }
.quiz__option {
  position: relative; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: 100%; text-align: left; padding: 1.05rem 1.2rem;
  border: 1px solid var(--line); border-radius: 14px; background: var(--bg);
  font-size: 1rem; color: var(--ink); overflow: hidden;
  transition: border-color .35s var(--ease), transform .35s var(--ease-out), color .35s;
}
.quiz__option::before { content: ""; position: absolute; inset: 0; background: var(--ink); transform: translateY(101%); transition: transform .45s var(--ease); }
.quiz__option span, .quiz__option i { position: relative; z-index: 1; }
.quiz__option:hover { border-color: var(--ink); transform: translateX(4px); }
.quiz__option:hover::before { transform: translateY(0); }
.quiz__option:hover span { color: var(--bg); }
.quiz__tick { width: 16px; height: 16px; border-radius: 50%; border: 1px solid var(--line); flex-shrink: 0; transition: background .3s, border-color .3s; }
.quiz__option:hover .quiz__tick { border-color: var(--accent); }
.quiz__option.is-chosen { border-color: var(--accent); }
.quiz__option.is-chosen .quiz__tick { background: var(--accent); border-color: var(--accent); }

.quiz__form { margin-top: 0.4rem; }
.quiz__or { text-align: center; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin: -0.6rem 0 1.2rem; }
.quiz__consent { font-size: 0.82rem; color: var(--ink-3); margin-top: 1rem; text-align: center; }
.quiz__consent a { color: var(--accent); }

/* ---- result ---- */
.quiz__headline { font-family: var(--serif); font-weight: 400; font-size: clamp(1.8rem, 4.4vw, 2.8rem); line-height: 1.1; margin-bottom: 0.7rem; }
.quiz__blurb { color: var(--ink-2); line-height: 1.65; margin-bottom: 2rem; max-width: 52ch; }
.quiz__fits { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 1.4rem; }
.fit__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 0.5rem; }
.fit__name { font-size: 0.95rem; color: var(--ink-2); }
.fit__pct { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); }
.fit__track { height: 6px; border-radius: 6px; background: var(--line-soft); overflow: hidden; }
.fit__fill { display: block; height: 100%; width: 0%; border-radius: 6px; background: var(--ink-3); }
.fit__fill.is-top { background: var(--accent); }
.quiz__note { font-size: 0.84rem; color: var(--ink-3); line-height: 1.6; margin-bottom: 1.8rem; }
.quiz__note em { font-style: italic; }
.quiz__actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.quiz__actions .btn { flex: 1; min-width: 180px; }
.quiz__sent { margin-top: 1.2rem; font-size: 0.88rem; color: var(--ink-3); text-align: center; }

/* ---- index entry section ---- */
.finder { position: relative; z-index: 2; padding: clamp(4rem, 10vh, 7rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.finder__card {
  border: 1px solid var(--line); border-radius: 24px; padding: clamp(2rem, 5vw, 3.2rem);
  background: rgba(244, 239, 230, 0.55); backdrop-filter: blur(8px);
  display: grid; grid-template-columns: 1.4fr auto; gap: 2.5rem; align-items: center;
}
.finder__title { font-family: var(--serif); font-weight: 400; font-size: clamp(1.7rem, 3.8vw, 2.6rem); line-height: 1.1; margin: 1rem 0 0.8rem; }
.finder__body { color: var(--ink-2); line-height: 1.65; max-width: 46ch; }
.finder__steps { display: flex; gap: 1.6rem; margin-top: 1.6rem; flex-wrap: wrap; }
.finder__step { display: flex; flex-direction: column; gap: 0.2rem; }
.finder__step b { font-family: var(--serif); font-weight: 400; font-size: 1.4rem; color: var(--accent); }
.finder__step span { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
@media (max-width: 860px) {
  .finder__card { grid-template-columns: 1fr; gap: 1.8rem; }
}

/* ===================================================
   Booking confirmation
   =================================================== */
.done__tick {
  width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--accent); color: var(--accent); margin-bottom: 1.4rem;
}
.done__title { font-family: var(--serif); font-weight: 300; font-size: clamp(1.8rem, 4.4vw, 2.6rem); line-height: 1.1; margin-bottom: 0.8rem; }
.done__title em { font-style: italic; color: var(--accent); }
.done__body { color: var(--ink-2); line-height: 1.7; margin-bottom: 1.6rem; }
.done__steps { border-top: 1px solid var(--line); padding-top: 1.4rem; display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 1.4rem; }
.done__step { display: flex; gap: 1rem; }
.done__step b { font-family: var(--serif); color: var(--accent); font-weight: 400; flex-shrink: 0; }
.done__step p { color: var(--ink-2); font-size: 0.94rem; line-height: 1.55; }
.done__watch {
  display: flex; gap: 0.8rem; align-items: flex-start;
  background: rgba(194, 70, 28, 0.07); border: 1px solid rgba(194, 70, 28, 0.22);
  border-radius: 14px; padding: 1rem 1.1rem; font-size: 0.9rem; color: var(--ink-2); line-height: 1.55;
}
.done__watch b { color: var(--ink); font-weight: 500; }
.done__actions { display: flex; gap: 0.7rem; margin-top: 1.6rem; flex-wrap: wrap; }
.done__actions .btn { flex: 1; min-width: 170px; }

/* ===================================================
   Reduced motion
   =================================================== */
/* Reduced motion: calm the looping, decorative movement but KEEP
   interface transitions. Killing every transition made hover states,
   the service wipe, the FAQ icon and menu swaps all appear broken. */
@media (prefers-reduced-motion: reduce) {
  .grain { animation: none; opacity: 0.03; }
  .scroll-cue i::after { animation: none; }
  .menu__glow { animation: none; }
  /* interface feedback stays, just a touch quicker */
  a, button, .service, .service::before, .tier, .card,
  .card__poster, .card__play, .card__close, .menu__label span,
  .faq__q, .faq__icon, .nav__cta::before, .tier__cta::before {
    transition-duration: 0.25s !important;
  }
}

/* ===================================================
   BILLING — pay.php + invoice-admin.php
   Standalone pages: no shell, no scroll engine, no WebGL.
   A client opening a payment link should see one calm,
   obviously-legitimate card and nothing competing with it.
   =================================================== */
.paypage { background: var(--bg); min-height: 100vh; }
.paypage a { color: var(--accent); }

.inv {
  max-width: 620px; margin: 0 auto;
  padding: clamp(2.5rem, 9vh, 6rem) var(--pad) clamp(3rem, 8vh, 5rem);
}
.adminwrap { max-width: 860px; }

.inv__card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 22px; padding: clamp(1.6rem, 5vw, 2.8rem);
  box-shadow: 0 40px 80px -50px rgba(23, 18, 12, 0.5);
}
.inv__card + .inv__card { margin-top: 1.6rem; }
.inv__card--empty { text-align: center; }

.inv__head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1.2rem; flex-wrap: wrap;
  padding-bottom: 1.6rem; border-bottom: 1px solid var(--line-soft);
}
.inv__eyebrow {
  display: block; font-size: 0.68rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 0.5rem;
}
.inv__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.5rem, 4.5vw, 2rem); line-height: 1.15; letter-spacing: -0.01em;
}
.inv__lead { color: var(--ink-2); line-height: 1.7; margin-top: 0.9rem; }

.inv__status {
  flex-shrink: 0; font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 0.5rem 0.9rem; border-radius: 100px;
  background: rgba(178, 138, 78, 0.14); color: #8a6a37;
  border: 1px solid rgba(178, 138, 78, 0.3);
}
.inv__status.is-paid {
  background: rgba(46, 122, 74, 0.12); color: #2e7a4a;
  border-color: rgba(46, 122, 74, 0.28);
}

.inv__rows { margin: 1.7rem 0 0; }
.inv__rows > div {
  display: grid; grid-template-columns: 8.5rem 1fr; gap: 1rem;
  padding: 0.75rem 0; border-bottom: 1px solid var(--line-soft);
}
.inv__rows dt {
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3); padding-top: 0.22rem;
}
.inv__rows dd { color: var(--ink); line-height: 1.65; }

.inv__total {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; margin-top: 1.8rem; padding: 1.3rem 1.4rem;
  background: var(--bg-3); border-radius: 14px;
}
.inv__total span {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-2);
}
.inv__total strong {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.6rem, 6vw, 2.2rem); color: var(--accent);
}

.inv__action { margin-top: 1.8rem; }
.inv__btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; padding: 1.15rem 1.6rem; border-radius: 100px;
  background: var(--accent); color: var(--bg-2);
  border: 1px solid var(--accent);
  font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease), opacity .3s;
}
.inv__btn:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -16px rgba(194, 70, 28, 0.65); }
.inv__btn[disabled] { opacity: 0.55; transform: none; box-shadow: none; }
.inv__btn--ghost {
  background: transparent; color: var(--accent); margin-top: 1.6rem; width: auto;
  padding-left: 2.2rem; padding-right: 2.2rem;
}
.inv__secure {
  margin-top: 1rem; font-size: 0.82rem; line-height: 1.6;
  color: var(--ink-3); text-align: center;
}
.inv__error {
  display: none; margin-top: 1.1rem; padding: 0.9rem 1.1rem;
  border-left: 2px solid var(--accent); background: rgba(194, 70, 28, 0.07);
  border-radius: 0 10px 10px 0; font-size: 0.9rem; line-height: 1.6; color: var(--ink-2);
}
.inv__error.is-shown { display: block; }

.inv__done { margin-top: 1.8rem; text-align: center; }
.inv__tick {
  width: 52px; height: 52px; margin: 0 auto 1.1rem;
  display: grid; place-items: center; border-radius: 50%;
  background: rgba(46, 122, 74, 0.12); color: #2e7a4a;
}
.inv__done h2 { font-family: var(--serif); font-weight: 300; font-size: 1.4rem; }
.inv__done p { margin-top: 0.7rem; color: var(--ink-2); line-height: 1.7; font-size: 0.95rem; }
.inv__done small { color: var(--ink-3); font-size: 0.8rem; }

.inv__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  margin-top: 2rem; padding-top: 1.3rem; border-top: 1px solid var(--line-soft);
  font-size: 0.82rem; color: var(--ink-3);
}
.inv__legal {
  margin-top: 1.6rem; text-align: center;
  font-size: 0.82rem; line-height: 1.7; color: var(--ink-3);
}

/* ---- admin ---- */
.adm__top {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 1.8rem;
}
.adm__logout { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; }
.adm__h2 {
  font-family: var(--serif); font-weight: 300; font-size: 1.25rem; margin-bottom: 1.6rem;
}
.adm__form .form__group { margin-bottom: 1.7rem; }
.adm__note {
  margin-bottom: 1.4rem; padding: 0.9rem 1.1rem; border-radius: 0 10px 10px 0;
  font-size: 0.9rem; line-height: 1.6; border-left: 2px solid var(--accent);
  background: rgba(194, 70, 28, 0.07); color: var(--ink-2);
}
.adm__note--ok { border-left-color: #2e7a4a; background: rgba(46, 122, 74, 0.09); }

.adm__link {
  margin-bottom: 1.6rem; padding: 1.3rem 1.4rem;
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 16px;
}
.adm__link p { font-size: 0.9rem; color: var(--ink-2); margin-bottom: 0.9rem; }
.adm__link input {
  width: 100%; padding: 0.8rem 0.9rem; margin-bottom: 0.9rem;
  font-family: var(--sans); font-size: 0.88rem; color: var(--ink);
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px;
}
.adm__link .inv__btn { width: auto; padding: 0.8rem 1.6rem; }

.adm__row {
  display: grid; grid-template-columns: 1fr auto auto auto;
  gap: 1rem; align-items: center;
  padding: 1rem 0; border-bottom: 1px solid var(--line-soft);
}
.adm__row:last-child { border-bottom: none; }
.adm__cell b { display: block; font-size: 0.9rem; font-weight: 500; }
/* target only the subtitle — a bare `.adm__cell span` also caught
   .inv__status and overrode its paid/unpaid colour */
.adm__cell b + span { font-size: 0.82rem; color: var(--ink-3); }
.adm__cell--amt { font-family: var(--serif); font-size: 1.05rem; white-space: nowrap; }
.adm__copy {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.5rem 0.9rem; border: 1px solid var(--line); border-radius: 100px;
  color: var(--ink-2); transition: border-color .3s, color .3s;
}
.adm__copy:hover { border-color: var(--accent); color: var(--accent); }

@media (max-width: 640px) {
  .inv__rows > div { grid-template-columns: 1fr; gap: 0.25rem; }
  .adm__row { grid-template-columns: 1fr auto; row-gap: 0.6rem; }
}

/* ==========================================================================
   Payment terms — the 50/50 section between pricing and the FAQ.

   Follows .process for rhythm and card treatment so it reads as part of the
   same page rather than a bolted-on trust badge. The two big 50% numerals do
   the explaining; the prose underneath is there for the person who reads.
   ========================================================================== */

.pay50 {
  position: relative;
  z-index: 2;
  padding: clamp(5rem, 12vh, 9rem) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.pay50__head { margin-bottom: 3.4rem; max-width: 62ch; }
.pay50__head .eyebrow { margin-bottom: 1.5rem; }
.pay50__lead {
  margin-top: 1.6rem;
  color: var(--ink-2);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  max-width: 54ch;
}

.pay50__steps {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr;
  margin-bottom: 1.2rem;
}
@media (min-width: 860px) { .pay50__steps { grid-template-columns: 1fr 1fr; } }

.pay50__step {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1.8rem;
  align-items: start;
  padding: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(244, 239, 230, 0.55);
  backdrop-filter: blur(6px);
  will-change: transform;
}
.pay50__num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  line-height: 0.9;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.pay50__num i { font-style: normal; font-size: 0.44em; vertical-align: super; margin-left: 0.06em; }
.pay50__body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  margin-bottom: 0.8rem;
}
.pay50__body p { color: var(--ink-2); line-height: 1.65; font-size: 1rem; max-width: 42ch; }

@media (max-width: 720px) {
  .pay50__step { grid-template-columns: 1fr; gap: 0.9rem; padding: 1.8rem; }
}

/* ---- the gateway + guarantees strip ---- */

.pay50__trust {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) { .pay50__trust { grid-template-columns: 1fr 1.15fr; align-items: start; } }

.pay50__gate {
  padding: 2.2rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(23, 18, 12, 0.035);
}
.pay50__gate h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  margin-bottom: 0.9rem;
}
.pay50__gate p { color: var(--ink-2); line-height: 1.7; font-size: 0.98rem; }
.pay50__gate strong { color: var(--ink); font-weight: 500; }

.pay50__facts { list-style: none; margin: 0; padding: 0; }
.pay50__facts li {
  position: relative;
  padding: 1.05rem 0 1.05rem 1.7rem;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-2);
  line-height: 1.65;
  font-size: 0.97rem;
}
.pay50__facts li:last-child { border-bottom: 0; }
.pay50__facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.52rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-2);
}
.pay50__facts b { color: var(--ink); font-weight: 500; }

/* The voice widget is page furniture, not content — never print it. */
@media print {
  elevenlabs-convai { display: none !important; }
}

/* ==========================================================================
   Account entry in the nav.

   A bordered capsule with a live status dot rather than a text link. It has to
   read as a considered part of the identity while still losing to the
   consultation CTA beside it — so it carries the gold, and the CTA keeps
   the ember.
   ========================================================================== */

.nav__acct {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.62rem 1.05rem 0.62rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(244, 239, 230, 0.5);
  backdrop-filter: blur(8px);
  color: var(--ink-2);
  font-family: inherit;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  transition:
    color 0.55s var(--ease-out),
    border-color 0.55s var(--ease-out),
    background 0.55s var(--ease-out),
    transform 0.55s var(--ease-out);
}
.nav__acct[hidden] { display: none; }

.nav__acct:hover {
  color: var(--ink);
  border-color: rgba(178, 138, 78, 0.75);
  background: rgba(178, 138, 78, 0.1);
  transform: translateY(-1px);
}

/* the travelling light, on hover */
.nav__acct::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 34%, rgba(255, 255, 255, 0.7) 50%, transparent 66%);
  transform: translateX(-135%);
  transition: transform 0.95s var(--ease-out);
}
.nav__acct:hover::after { transform: translateX(135%); }

/* status dot — gold and breathing when signed in, hollow when not */
.nav__acct span { position: relative; z-index: 1; }
.nav__acct::before {
  content: "";
  position: relative;
  z-index: 1;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex: none;
  border: 1px solid var(--ink-3);
  transition: background 0.55s var(--ease-out), border-color 0.55s var(--ease-out),
              box-shadow 0.55s var(--ease-out);
}
.nav__acct[data-auth-in]::before {
  background: var(--accent-2);
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(178, 138, 78, 0.18);
  animation: acctPulse 3.4s var(--ease) infinite;
}
@keyframes acctPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(178, 138, 78, 0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(178, 138, 78, 0.05); }
}
.nav__acct:hover::before { border-color: var(--accent-2); }

/* The compact bar has no room on a phone — the overlay menu carries the
   account entry there instead, at full width. */
@media (max-width: 860px) {
  .nav__acct, .nav__acct[hidden] { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .nav__acct[data-auth-in]::before { animation: none; }
  .nav__acct::after { display: none; }
}

/* ==========================================================================
   Account entry inside the overlay menu.

   On a phone this is the ONLY route to the client area, so it is given real
   weight rather than being tucked in with the legal links.
   ========================================================================== */

.menu__acct { margin-top: auto; padding-top: clamp(1.5rem, 4vh, 2.6rem); }

.menu__acctLink {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  padding: 1.15rem 3rem 1.15rem 1.3rem;
  border: 1px solid rgba(236, 229, 216, 0.22);
  border-radius: 14px;
  background: rgba(236, 229, 216, 0.05);
  color: var(--bg);
  overflow: hidden;
  transition: border-color 0.5s var(--ease-out), background 0.5s var(--ease-out),
              transform 0.5s var(--ease-out);
}
.menu__acctLink[hidden] { display: none; }
.menu__acctLink:hover {
  border-color: rgba(194, 70, 28, 0.75);
  background: rgba(194, 70, 28, 0.12);
  transform: translateY(-2px);
}

/* the light pass again, this time on hover */
.menu__acctLink::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 34%, rgba(236, 229, 216, 0.14) 50%, transparent 66%);
  transform: translateX(-120%);
  transition: transform 0.9s var(--ease-out);
  pointer-events: none;
}
.menu__acctLink:hover::before { transform: translateX(120%); }

/* arrow */
.menu__acctLink::after {
  content: "";
  position: absolute;
  right: 1.4rem;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(-45deg);
  opacity: 0.5;
  transition: transform 0.5s var(--ease-out), opacity 0.4s;
}
.menu__acctLink:hover::after { transform: translateY(-50%) translateX(4px) rotate(-45deg); opacity: 1; }

.menu__acctK {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
}
.menu__acctV {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.15rem, 3.2vw, 1.5rem);
  letter-spacing: -0.01em;
  margin: 0.35rem 0 0.28rem;
}
.menu__acctE { display: block; font-size: 0.8rem; opacity: 0.5; }

@media (max-width: 640px) {
  .menu__acctLink { padding: 1rem 2.6rem 1rem 1.1rem; }
}

/* ==========================================================================
   Client area — a contact sheet.

   Three frames on a light table. The perforations, the ghost frame number and
   the travelling light are the studio's own vocabulary, so this section reads
   as film work rather than a product page.

   Revealed by [data-frame] in app.js, which owns its OWN ScrollTrigger. The
   earlier version borrowed [data-pstep], whose trigger is the process section
   far above — so these cards had already animated by the time anyone scrolled
   down to them, and arrived looking static.
   ========================================================================== */

.area {
  position: relative;
  z-index: 2;
  padding: clamp(5rem, 12vh, 9rem) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.area__head { margin-bottom: 3.6rem; max-width: 60ch; }
.area__head .eyebrow { margin-bottom: 1.5rem; }
.area__lead {
  margin-top: 1.6rem;
  color: var(--ink-2);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  max-width: 50ch;
}

/* ---------------------------------------------------------------- frames */

.area__sheet {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
  margin-bottom: 1.1rem;
}
@media (min-width: 900px) { .area__sheet { grid-template-columns: repeat(3, 1fr); } }

.frame {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 2.6rem 1.9rem 1.5rem;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 4px;                 /* film frames are square-ish, not pills */
  background: rgba(244, 239, 230, 0.62);
  backdrop-filter: blur(6px);
  transition:
    border-color 0.8s var(--ease-out),
    transform 0.8s var(--ease-out),
    box-shadow 0.8s var(--ease-out);
}
.frame:hover {
  border-color: rgba(178, 138, 78, 0.65);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(23, 18, 12, 0.09);
}

/* Entrance. The offset state applies ONLY when app.js has confirmed it can
   reveal them again — no script, no hiding. */
.area-js .frame {
  opacity: 0;
  transform: translateY(46px);
}
.area-js .frame.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.85s var(--ease-out), transform 1s var(--ease-out);
}
.area-js .frame.is-in:hover { transform: translateY(-6px); }

.area-js .area__facts li {
  opacity: 0;
  transform: translateX(-12px);
}
.area-js .area__facts li.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease-out), transform 0.8s var(--ease-out);
}

/* sprocket perforations along the top edge */
.frame__perf {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 7px;
  background-image: radial-gradient(circle at 7px 50%, rgba(23, 18, 12, 0.17) 2.3px, transparent 2.5px);
  background-size: 21px 100%;
  opacity: 0.85;
  transition: opacity 0.8s var(--ease-out);
}
.frame:hover .frame__perf { opacity: 1; }

/* the frame number, set enormous and nearly invisible behind the copy */
.frame__ghost {
  position: absolute;
  right: -0.06em;
  bottom: -0.3em;
  z-index: -1;
  font-family: var(--serif);
  font-size: clamp(7rem, 13vw, 10.5rem);
  line-height: 0.75;
  letter-spacing: -0.05em;
  color: var(--ink);
  opacity: 0.05;
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  pointer-events: none;
}
.frame:hover .frame__ghost { opacity: 0.09; transform: translateY(-5px); }

.frame__body { flex: 1; }
.frame__body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  letter-spacing: -0.015em;
  margin-bottom: 0.8rem;
}
.frame__body p { color: var(--ink-2); line-height: 1.68; font-size: 0.96rem; max-width: 34ch; }

.frame__idx {
  margin-top: 1.6rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line-soft);
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  color: var(--ink-3);
}

/* the travelling light — once as the frame arrives, again on hover */
.frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 33%, rgba(255, 255, 255, 0.62) 49%, transparent 65%);
  transform: translateX(-135%);
  transition: transform 1.1s var(--ease-out);
}
.frame:hover::after { transform: translateX(135%); }
.frame.is-lit::after { animation: frameLight 1.5s var(--ease-out) both; }
@keyframes frameLight {
  from { transform: translateX(-135%); }
  to   { transform: translateX(135%); }
}

/* ---------------------------------------------------------------- trust */

.area__trust {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
  margin-top: 1.1rem;
}
@media (min-width: 900px) { .area__trust { grid-template-columns: 1fr 1.1fr; align-items: start; } }

.area__why {
  padding: 2.3rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(23, 18, 12, 0.035);
}
.area__why h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  margin-bottom: 0.9rem;
}
.area__why p { color: var(--ink-2); line-height: 1.7; font-size: 0.98rem; }
.area__why2 { margin-top: 1rem; color: var(--ink-3) !important; font-size: 0.93rem !important; }

.area__facts { list-style: none; margin: 0; padding: 0; }
.area__facts li {
  position: relative;
  padding: 1.1rem 0 1.1rem 2rem;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-2);
  line-height: 1.65;
  font-size: 0.97rem;
}
.area__facts li:last-child { border-bottom: 0; }
.area__facts b { color: var(--ink); font-weight: 500; }

/* a tick drawn in two strokes as the row arrives */
.area__facts li::before,
.area__facts li::after {
  content: "";
  position: absolute;
  background: var(--accent-2);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out);
}
.area__facts li::before {
  left: 2px;
  top: 1.62rem;
  width: 6px;
  height: 1.5px;
  rotate: 45deg;
}
.area__facts li::after {
  left: 5px;
  top: 1.5rem;
  width: 11px;
  height: 1.5px;
  rotate: -45deg;
  transition-delay: 0.12s;
}
.area__facts li.is-in::before,
.area__facts li.is-in::after,
.area__facts li:hover::before,
.area__facts li:hover::after { transform: scaleX(1); }

/* ---------------------------------------------------------------- CTA */

.area__cta {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  flex-wrap: wrap;
  margin-top: 2.8rem;
}
.area__btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  border: 1px solid var(--ink);
  border-radius: 100px;
  background: var(--ink);
  color: var(--bg);
  font-family: inherit;
  font-size: 0.94rem;
  padding: 1.05rem 1.5rem 1.05rem 2.1rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.65s var(--ease-out), border-color 0.65s var(--ease-out),
              transform 0.65s var(--ease-out), padding 0.65s var(--ease-out);
}
.area__btn[hidden] { display: none; }
.area__btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  padding-right: 1.75rem;
}
.area__btnT { position: relative; z-index: 1; }

/* the arrow extends out of the button edge on hover */
.area__btnA {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: width 0.65s var(--ease-out);
}
.area__btnA::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.area__btn:hover .area__btnA { width: 30px; }

.area__btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 36%, rgba(236, 229, 216, 0.24) 50%, transparent 64%);
  transform: translateX(-135%);
  transition: transform 0.95s var(--ease-out);
}
.area__btn:hover::after { transform: translateX(135%); }

.area__note { font-size: 0.85rem; color: var(--ink-3); }
.area__note[hidden] { display: none; }

@media (max-width: 720px) {
  .frame { padding: 2.3rem 1.4rem 1.3rem; min-height: 0; }
  .area__why { padding: 1.7rem 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  .frame::after { display: none; }
  .area__facts li::before,
  .area__facts li::after { transform: scaleX(1); transition: none; }
}

