/* ==========================================================================
   Tokens — portal-design-system.md
   ========================================================================== */
:root{
  /* ---- THE PALETTE — five colours, all from portal-design-system.md §2.
     Nothing else in this file is a colour. Every value below the rule is
     derived from one of these five, or is white. ------------------------ */
  --ink:#000000;      /* text                     */
  --bg:#F7F7F7;       /* ground                   */
  --accent:#007AFF;   /* the one accent           */
  --violet:#5566F5;   /* brand gradient, head     */
  --rose:#E0A6C6;     /* brand gradient, tail     */

  /* derived — gradient midpoint, bowed toward blue the way the system's
     sampled 4-stop ramp does. Replaces #7B84EE and #A896E0. */
  --brand-mid:#9E93E4;

  /* derived — one neutral ramp, greys biased toward --violet. Replaces the
     nine unrelated blue-greys that were scattered through the SVG art. */
  --n-50:#F3F4F8;
  --n-100:#E8EAF2;
  --n-200:#D5D9E6;
  --n-300:#B9BFD4;

  /* derived — surfaces and ink levels */
  --surface:#FFFFFF;
  --surface-glass:rgba(255,255,255,0.6);
  --surface-glass-strong:rgba(255,255,255,0.8);
  --accent-soft:rgba(0,122,255,0.10);
  --ink-75:rgba(0,0,0,0.75);
  --ink-60:rgba(0,0,0,0.6);
  --ink-15:rgba(0,0,0,0.15);
  --ink-10:rgba(0,0,0,0.1);
  --on-dark:#FFFFFF;
  --on-dark-75:rgba(255,255,255,0.75);
  --button-ink:#535398;

  /* type */
  --font-display:"Playfair Display", Georgia, serif;
  --font-body:"Inter", system-ui, -apple-system, sans-serif;

  /* ---- THE TYPE SCALE — six steps, from portal-design-system.md §3.
     No size outside this scale appears anywhere in the stylesheet. ------ */
  --t-display:clamp(3rem,8vw,4.75rem);   /* h1  — display serif, 1.0  */
  --t-h2:clamp(1.75rem,4vw,2.25rem);     /* h2  — display serif, 1.0  */
  --t-h3:1.125rem;                       /* 18  — subheads, 600       */
  --t-body:1rem;                         /* 16  — body and all UI     */
  --t-label:0.875rem;                    /* 14  — labels, captions    */
  --t-meta:0.75rem;                      /* 12  — eyebrows, meta      */
  --t-lead:clamp(1.0625rem,1.9vw,1.1875rem); /* section intros        */

  /* spacing — 2 · 4 · 6 · 10 · 12 · 16 · 20 · 40 · 60 · 80,
     extended past the system's 80px ceiling for section rhythm */
  --space-1:2px;  --space-2:4px;  --space-3:6px;  --space-4:10px; --space-5:12px;
  --space-6:16px; --space-7:20px; --space-8:40px; --space-9:60px; --space-10:80px;
  --space-11:120px;

  /* radius */
  --r-xs:7px; --r-sm:12px; --r-md:14px; --r-lg:20px;
  --r-xl:22px; --r-2xl:24px; --r-3xl:30px; --r-4xl:40px; --r-full:50px;

  /* elevation */
  --shadow-glass:
    inset 0 0.5px 0 0.5px rgba(255,255,255,0.6),
    inset 0 0 30px rgba(255,255,255,0.4),
    inset 0 0 12px rgba(255,255,255,0.8);
  --shadow-raised:
    inset 0 1px 0 #FFFFFF,
    0 0 0 1px rgba(0,0,0,0.15),
    0 3px 2px rgba(0,0,0,0.06);
  --shadow-float:
    0 0.6px 2.3px -0.4px rgba(0,0,0,0.03),
    0 2.3px 8.7px -0.8px rgba(0,0,0,0.04),
    0 10px 38px -1.25px rgba(0,0,0,0.08);

  /* motion */
  --ease:cubic-bezier(0.4,0,0.2,1);
  --t:200ms var(--ease);

  /* layout */
  --wrap:1200px;
  --gutter:var(--space-7);
  --nav-h:68px;
}

@media (min-width:810px){
  :root{ --gutter:var(--space-8); --nav-h:76px; }
}

/* ==========================================================================
   Base
   ========================================================================== */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }

body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--font-body);
  font-size:var(--t-body);
  line-height:1.55;
  letter-spacing:-0.02em;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

h1,h2,h3,p,ul,figure{ margin:0; }
ul{ padding:0; list-style:none; }
img,svg{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }

:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:3px;
  border-radius:var(--space-3);
}

/* Type scale */
h1,h2{
  font-family:var(--font-display);
  font-weight:400;
  line-height:1.0;
  letter-spacing:normal;
  text-wrap:balance;
}
/* h1 runs one step heavier than the system's 400 for editorial weight.
   h2 stays at 400 so the serif never reads bold twice on one page. */
h1{ font-size:var(--t-display); font-weight:500; }
h2{ font-size:var(--t-h2); }
h3{ font-size:var(--t-h3); font-weight:600; line-height:1.3; letter-spacing:-0.02em; }

.eyebrow{
  font-size:var(--t-meta); font-weight:500; line-height:1.3; letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--ink-60);
}
.lead{
  font-size:var(--t-lead);
  line-height:1.5;
  color:var(--ink-75);
  text-wrap:pretty;
}
.card__body,.about p,.contact p{ text-wrap:pretty; }
.meta{ font-size:var(--t-meta); font-weight:500; line-height:1.3; color:var(--ink-60); }

/* Layout primitives */
.wrap{
  width:100%;
  max-width:var(--wrap);
  margin-inline:auto;
  padding-inline:var(--gutter);
}
.section{ padding-block:var(--space-10); }
@media (min-width:810px){ .section{ padding-block:var(--space-11); } }
[id]{ scroll-margin-top:calc(var(--nav-h) + var(--space-7)); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:var(--space-3);
  height:52px; padding-inline:var(--space-8);
  border:0; border-radius:var(--r-full);
  font-family:inherit; font-size:var(--t-body); font-weight:600; letter-spacing:-0.02em;
  cursor:pointer; white-space:nowrap;
  transition:transform var(--t), box-shadow var(--t), background-color var(--t), color var(--t);
}
@media (min-width:810px){ .btn{ height:56px; padding-inline:36px; } }

/* light pill — reads forward on the gradient */
.btn--light{ background:var(--bg); color:var(--button-ink); box-shadow:var(--shadow-float); }
.btn--accent{ background:var(--accent); color:#fff; }
.btn--ghost{
  background:rgba(255,255,255,0.14);
  color:var(--on-dark);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,0.35);
}
.btn:hover{ transform:translateY(-1px); }
.btn--light:hover{ box-shadow:var(--shadow-float),0 0 0 1px rgba(0,0,0,0.04); }
.btn--accent:hover{ box-shadow:0 6px 20px rgba(0,122,255,0.28); }
.btn--ghost:hover{ background:rgba(255,255,255,0.22); }
.btn:active{ transform:translateY(0); }

/* ==========================================================================
   Nav — transparent over the hero, frosted after it
   ========================================================================== */
.nav{
  position:sticky; top:0; z-index:50;
  height:var(--nav-h);
  display:flex; align-items:center;
  --nav-link:var(--on-dark-75);
  --nav-link-on:var(--on-dark);
  --nav-link-bg:rgba(0,0,0,0.1);
  transition:background-color var(--t), box-shadow var(--t);
}
.nav.is-scrolled{
  background:rgba(247,247,247,0.72);
  -webkit-backdrop-filter:blur(20px) saturate(1.4);
  backdrop-filter:blur(20px) saturate(1.4);
  box-shadow:0 1px 0 var(--ink-10);
  --nav-link:var(--ink-60);
  --nav-link-on:var(--ink);
  --nav-link-bg:var(--ink-10);
}
@supports not ((backdrop-filter:blur(1px)) or (-webkit-backdrop-filter:blur(1px))){
  .nav.is-scrolled{ background:rgba(247,247,247,0.96); }
}

.nav__inner{ display:flex; align-items:center; gap:var(--space-6); width:100%; }

.brand{ display:flex; align-items:center; gap:var(--space-4); margin-right:auto; }
.brand__mark{
  width:32px; height:32px; flex:none;
  border-radius:var(--r-xs);
  background:linear-gradient(140deg,var(--violet),var(--brand-mid) 60%,var(--rose));
  display:grid; place-items:center;
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.55);
}
.brand__word{
  font-family:var(--font-display); font-size:var(--t-h3); line-height:1;
  color:var(--nav-link-on);
  transition:color var(--t);
  white-space:nowrap;
}

.nav__links{ display:flex; align-items:center; gap:var(--space-1); }
.nav__link{
  display:inline-flex; align-items:center; height:40px;
  padding-inline:var(--space-5);
  border-radius:var(--r-lg);
  font-size:var(--t-body); color:var(--nav-link);
  transition:color var(--t), background-color var(--t);
}
.nav__link:hover{ color:var(--nav-link-on); }
.nav__link.is-active{ color:var(--nav-link-on); background:var(--nav-link-bg); }

/* pinned CTA */
.nav__cta{
  height:40px; padding-inline:var(--space-7);
  font-size:var(--t-body);
  background:var(--bg); color:var(--button-ink);
  box-shadow:0 1px 2px rgba(0,0,0,0.10);
}
.nav.is-scrolled .nav__cta{ background:var(--accent); color:#fff; box-shadow:none; }

@media (max-width:599px){
  .brand__word{ display:none; }
  .nav__inner{ gap:var(--space-4); }
  .nav__link{ padding-inline:var(--space-3); font-size:var(--t-label); }
  .nav__cta{ padding-inline:var(--space-6); font-size:var(--t-label); }
}
@media (max-width:339px){
  .nav__link[data-hide-xs]{ display:none; }
}

/* ==========================================================================
   Hero — mesh gradient, drifting shapes, glass card
   ========================================================================== */
.hero{
  position:relative;
  margin-top:calc(var(--nav-h) * -1);
  padding-top:calc(var(--nav-h) + var(--space-9));
  padding-bottom:var(--space-9);
  isolation:isolate;
  overflow:hidden;
  color:var(--on-dark);
  background:linear-gradient(180deg,var(--violet) 0%,var(--brand-mid) 35%,var(--brand-mid) 70%,var(--rose) 100%);
}
@media (min-width:810px){
  .hero{ padding-top:calc(var(--nav-h) + var(--space-11)); padding-bottom:var(--space-11); }
}

/* static mesh layer: soft radial pools, no filter, cheap to paint */
.hero__mesh{
  position:absolute; inset:-10%; z-index:-2; pointer-events:none;
  background:
    radial-gradient(46% 40% at 12% 8%,  rgba(255,255,255,0.42) 0%, rgba(255,255,255,0) 62%),
    radial-gradient(42% 46% at 88% 22%, rgba(255,255,255,0.36) 0%, rgba(255,255,255,0) 64%),
    radial-gradient(52% 48% at 74% 92%, rgba(224,166,198,0.34) 0%, rgba(224,166,198,0) 66%),
    radial-gradient(46% 44% at 22% 84%, rgba(85,102,245,0.42) 0%, rgba(85,102,245,0) 66%);
}

/* drifting shapes: soft-edged radial fills, animated on transform only */
.blob{
  position:absolute; z-index:-1; pointer-events:none;
  border-radius:50%;
  will-change:transform;
  transform:translate3d(0,0,0);
}
.blob--1{
  width:62vw; height:62vw; max-width:640px; max-height:640px;
  top:-14%; left:-12%;
  background:radial-gradient(circle at 50% 50%, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.18) 42%, rgba(255,255,255,0) 70%);
  animation:drift-a 32s var(--ease) infinite alternate;
}
.blob--2{
  width:72vw; height:72vw; max-width:760px; max-height:760px;
  top:6%; right:-22%;
  background:radial-gradient(circle at 50% 50%, rgba(224,166,198,0.62) 0%, rgba(224,166,198,0.22) 44%, rgba(224,166,198,0) 70%);
  animation:drift-b 44s var(--ease) infinite alternate;
}
.blob--3{
  width:56vw; height:56vw; max-width:560px; max-height:560px;
  bottom:-22%; left:26%;
  background:radial-gradient(circle at 50% 50%, rgba(255,255,255,0.46) 0%, rgba(255,255,255,0.16) 46%, rgba(255,255,255,0) 72%);
  animation:drift-c 38s var(--ease) infinite alternate;
}
@keyframes drift-a{
  from{ transform:translate3d(0,0,0) scale(1); }
  to  { transform:translate3d(9vw,7vh,0) scale(1.14); }
}
@keyframes drift-b{
  from{ transform:translate3d(0,0,0) scale(1.06); }
  to  { transform:translate3d(-11vw,10vh,0) scale(0.92); }
}
@keyframes drift-c{
  from{ transform:translate3d(0,0,0) scale(0.94); }
  to  { transform:translate3d(8vw,-9vh,0) scale(1.12); }
}

/* blend the hero into the page */
.hero__fade{
  position:absolute; left:0; right:0; bottom:0; height:140px; z-index:-1;
  pointer-events:none;
  background:linear-gradient(180deg, rgba(247,247,247,0) 0%, rgba(247,247,247,0.55) 62%, var(--bg) 100%);
}

.hero__grid{
  display:grid; gap:var(--space-8);
  align-items:center;
}
@media (min-width:960px){
  /* the heavier h1 needs more measure; the gap gives it back */
  .hero__grid{ grid-template-columns:minmax(0,1.2fr) minmax(0,0.8fr); gap:var(--space-8); }
}

.status{
  display:inline-flex; align-items:center; gap:var(--space-3);
  height:34px; padding-inline:var(--space-5) var(--space-6);
  border-radius:var(--r-full);
  background:rgba(255,255,255,0.16);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,0.34);
  font-size:var(--t-label); font-weight:500; color:var(--on-dark);
}
.status__dot{
  width:7px; height:7px; border-radius:50%;
  background:var(--surface); box-shadow:0 0 0 3px rgba(255,255,255,0.28);
}

.hero h1{ margin-block:var(--space-7) 0; }

/* ---- hand-drawn underline swash ----------------------------------------
   One-shot. Draws once on load via stroke-dashoffset, then holds at 0.
   pathLength="1" normalises the dash maths so the path data can change
   without retuning the animation. ------------------------------------- */
.swash-word{ position:relative; display:inline-block; white-space:nowrap; }
.swash{
  position:absolute;
  left:-0.05em; right:-0.05em; bottom:-0.1em;
  width:auto; height:0.2em;
  overflow:visible;
  pointer-events:none;
}
.swash path{
  fill:none;
  stroke:var(--accent);
  stroke-width:6;
  stroke-linecap:round;
  stroke-linejoin:round;
  stroke-dasharray:1;
  stroke-dashoffset:1;
  animation:swash-draw 900ms cubic-bezier(0.65,0,0.35,1) 700ms forwards;
}
@keyframes swash-draw{ to{ stroke-dashoffset:0; } }
.hero__sub{
  margin-top:var(--space-7);
  max-width:34ch;
  font-size:var(--t-lead);
  line-height:1.5;
  color:rgba(255,255,255,0.86);
  text-wrap:pretty;
}
.hero__actions{
  display:flex; flex-wrap:wrap; gap:var(--space-5);
  margin-top:var(--space-8);
}
/* stacked pills read as ragged at auto width; match them instead */
@media (max-width:479px){
  .hero__actions{ display:grid; gap:var(--space-5); }
  .hero__actions .btn{ width:100%; }
}

/* Glass card */
.glass{
  padding:var(--space-7);
  border-radius:var(--r-3xl);
  background:var(--surface-glass);
  -webkit-backdrop-filter:blur(20px);
  backdrop-filter:blur(20px);
  box-shadow:var(--shadow-glass),0 10px 38px -1.25px rgba(30,22,70,0.14);
  color:var(--ink);
}
@supports not ((backdrop-filter:blur(1px)) or (-webkit-backdrop-filter:blur(1px))){
  .glass{ background:var(--surface-glass-strong); }
}
@media (min-width:600px){ .glass{ padding:var(--space-8); } }

.glass__title{ font-size:var(--t-label); font-weight:600; color:var(--ink); }
.glass__list{ margin-top:var(--space-6); display:grid; gap:var(--space-5); }
.glass__item{ display:flex; align-items:flex-start; gap:var(--space-4); }
.chip{
  width:28px; height:28px; flex:none;
  display:grid; place-items:center;
  border-radius:var(--r-xs);
  background:var(--accent-soft); color:var(--accent);
}
.glass__item span{ font-size:var(--t-body); color:var(--ink-75); line-height:1.4; }
.glass__foot{
  margin-top:var(--space-7); padding-top:var(--space-6);
  border-top:1px solid var(--ink-15);
  font-size:var(--t-meta); font-weight:500; color:var(--ink-60);
}

/* ==========================================================================
   Section header
   ========================================================================== */
.head{ max-width:52ch; }
.head h2{ margin-top:var(--space-5); }
.head .lead{ margin-top:var(--space-6); }

/* ==========================================================================
   Work grid
   ========================================================================== */
.grid{
  display:grid; gap:var(--space-8);
  margin-top:var(--space-9);
}
@media (min-width:700px){ .grid{ grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (min-width:1000px){ .grid{ grid-template-columns:repeat(3,minmax(0,1fr)); } }

.card{
  display:flex; flex-direction:column;
  background:var(--surface);
  border-radius:var(--r-2xl);
  padding:var(--space-7);
  box-shadow:var(--shadow-raised);
  transition:transform var(--t), box-shadow var(--t);
}
@media (min-width:700px){ .card,.step{ padding:var(--space-8); } }
.card:hover,.card:focus-within{
  transform:translateY(-4px);
  box-shadow:inset 0 1px 0 #FFFFFF,0 0 0 1px rgba(0,0,0,0.12),var(--shadow-float);
}
.card__media{
  border-radius:var(--r-md);
  overflow:hidden;
  background:linear-gradient(160deg,var(--n-50) 0%,var(--n-50) 100%);
  box-shadow:inset 0 0 0 1px rgba(0,0,0,0.05);
}
.card__media svg{ width:100%; height:auto; }
.card__top{
  display:flex; align-items:center; justify-content:space-between; gap:var(--space-4);
  margin-top:var(--space-6);
}
.card__no{ font-size:var(--t-meta); font-weight:600; color:var(--accent); letter-spacing:0.04em; }
.badge{
  padding:var(--space-2) var(--space-3);
  border-radius:var(--r-full);
  background:var(--ink-10); color:var(--ink-60);
  font-size:var(--t-meta); font-weight:500; letter-spacing:-0.01em;
}
.card h3{ margin-top:var(--space-4); }
.card__body{ margin-top:var(--space-4); font-size:var(--t-body); color:var(--ink-75); line-height:1.5; }
.tags{
  display:flex; flex-wrap:wrap; gap:var(--space-3);
  margin-top:var(--space-6); margin-bottom:var(--space-6);
}
.tag{
  padding:var(--space-2) var(--space-4);
  border-radius:var(--r-full);
  background:var(--accent-soft); color:var(--accent);
  font-size:var(--t-meta); font-weight:500;
}
.card__link{
  display:inline-flex; align-items:center; gap:var(--space-3);
  margin-top:auto; padding-top:var(--space-6);
  border-top:1px solid var(--ink-10);
  font-size:var(--t-label); font-weight:600; color:var(--accent); text-decoration:none;
}
.card__link svg{ transition:transform var(--t); }
.card:hover .card__link svg{ transform:translateX(3px); }

/* ==========================================================================
   By the numbers — static, no animation of any kind
   ========================================================================== */
.numbers{
  background:var(--surface);
  border-radius:var(--r-3xl);
  padding:var(--space-8) var(--space-7);
  box-shadow:var(--shadow-raised);
  display:grid; gap:var(--space-8);
}
@media (min-width:700px){
  .numbers{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:0;
    padding:var(--space-9) var(--space-8);
  }
}
.stat{ text-align:center; }
@media (min-width:700px){
  .stat{ padding-inline:var(--space-7); }
  .stat + .stat{ border-left:1px solid var(--ink-10); }
}
.stat__rule{
  width:26px; height:2px; margin:0 auto var(--space-6);
  border-radius:2px; background:var(--accent);
}
.stat__n{
  font-family:var(--font-display);
  font-weight:500;
  font-size:var(--t-h2);
  line-height:1.0;
  letter-spacing:normal;
  color:var(--ink);
}
.stat__label{
  margin:var(--space-5) auto 0;
  max-width:26ch;
  font-size:var(--t-label); font-weight:500; line-height:1.4;
  color:var(--ink-60);
  text-wrap:pretty;
}

/* ==========================================================================
   About
   ========================================================================== */
.about{
  display:grid; gap:var(--space-8);
  align-items:start;
}
@media (min-width:900px){
  .about{ grid-template-columns:minmax(0,1.1fr) minmax(0,0.9fr); gap:var(--space-9); }
}
.about p{ margin-top:var(--space-6); color:var(--ink-75); }
.about p + p{ margin-top:var(--space-5); }

.facts{
  background:var(--surface);
  border-radius:var(--r-2xl);
  padding:var(--space-7);
  box-shadow:var(--shadow-raised);
}
.facts__row{
  display:flex; align-items:baseline; justify-content:space-between; gap:var(--space-6);
  padding-block:var(--space-5);
}
.facts__row + .facts__row{ border-top:1px solid var(--ink-10); }
.facts__k{ font-size:var(--t-label); font-weight:500; color:var(--ink-60); }
.facts__v{ font-size:var(--t-body); font-weight:600; color:var(--ink); text-align:right; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact{
  position:relative; overflow:hidden; isolation:isolate;
  border-radius:var(--r-3xl);
  padding:var(--space-9) var(--space-7);
  text-align:center;
  color:var(--on-dark);
  background:linear-gradient(140deg,var(--violet) 0%,var(--brand-mid) 40%,var(--brand-mid) 72%,var(--rose) 100%);
  box-shadow:var(--shadow-float);
}
@media (min-width:810px){ .contact{ padding:var(--space-11) var(--space-8); } }
.contact::before{
  content:""; position:absolute; inset:-20%; z-index:-1;
  background:
    radial-gradient(40% 50% at 18% 10%, rgba(255,255,255,0.40) 0%, rgba(255,255,255,0) 64%),
    radial-gradient(46% 54% at 84% 88%, rgba(224,166,198,0.34) 0%, rgba(224,166,198,0) 66%);
}
.contact .eyebrow{ color:rgba(255,255,255,0.7); }
.contact h2{ margin-top:var(--space-5); }
.contact p{
  margin:var(--space-6) auto 0;
  max-width:44ch;
  font-size:var(--t-lead);
  color:rgba(255,255,255,0.86);
}
.contact .btn{ margin-top:var(--space-8); }
.contact__alt{ margin-top:var(--space-6); font-size:var(--t-label); color:rgba(255,255,255,0.75); }
.contact__alt a{ text-decoration:underline; text-underline-offset:3px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer{
  padding-block:var(--space-8);
  border-top:1px solid var(--ink-10);
  margin-top:var(--space-9);
}
.footer__inner{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between;
  gap:var(--space-6);
}
.footer a:hover{ color:var(--ink); }
.footer__links{ display:flex; gap:var(--space-6); }

/* ==========================================================================
   Scroll progress — one transform write per frame, nothing else
   ========================================================================== */
.progress{
  position:fixed; top:0; left:0; right:0; height:3px; z-index:70;
  transform:scaleX(0); transform-origin:0 50%;
  background:linear-gradient(90deg,var(--violet),var(--accent) 55%,var(--rose));
  will-change:transform;
  pointer-events:none;
}

/* ==========================================================================
   Hero image + floating booking card
   ========================================================================== */
.hero__media{
  position:relative;
  border-radius:var(--r-3xl);
  /* warm gradient fallback — shows through if the photo never arrives */
  background:linear-gradient(150deg,var(--rose) 0%,var(--rose) 42%,var(--brand-mid) 100%);
  box-shadow:0 18px 50px -12px rgba(30,22,70,0.35),inset 0 0 0 1px rgba(255,255,255,0.28);
  overflow:hidden;
  aspect-ratio:4/5;
  max-height:60vh;
}
@media (min-width:960px){ .hero__media{ max-height:none; } }
.hero__media img{
  width:100%; height:100%;
  object-fit:cover; object-position:50% 30%;
  will-change:transform;
  /* overscan so the parallax shift never exposes an edge */
  transform:scale(1.08) translate3d(0,0,0);
}
.hero__media::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(200deg,rgba(30,22,70,0) 40%,rgba(30,22,70,0.45) 100%);
  pointer-events:none;
}

.booking{
  position:absolute; z-index:2;
  left:var(--space-6); right:var(--space-6); bottom:var(--space-6);
  padding:var(--space-6);
  border-radius:var(--r-2xl);
}
@media (min-width:600px){
  .booking{ left:auto; right:var(--space-7); bottom:var(--space-7); width:290px; }
}
.booking__title{ font-size:var(--t-body); font-weight:600; }
.booking__body{ margin-top:var(--space-3); font-size:var(--t-label); line-height:1.45; color:var(--ink-75); }
.booking .btn{
  width:100%; height:44px; margin-top:var(--space-6);
  padding-inline:var(--space-6); font-size:var(--t-body);
}
.booking__meta{ margin-top:var(--space-4); font-size:var(--t-meta); font-weight:500; color:var(--ink-60); text-align:center; }

/* ==========================================================================
   How it works — bobbing icons
   ========================================================================== */
.steps{
  display:grid; gap:var(--space-8);
  margin-top:var(--space-9);
  counter-reset:step;
}
@media (min-width:760px){ .steps{ grid-template-columns:repeat(3,minmax(0,1fr)); gap:var(--space-8); } }
.step{
  background:var(--surface);
  border-radius:var(--r-2xl);
  padding:var(--space-7);
  box-shadow:var(--shadow-raised);
  transition:transform var(--t), box-shadow var(--t);
}
.step:hover{ transform:translateY(-4px); box-shadow:inset 0 1px 0 #FFF,0 0 0 1px rgba(0,0,0,0.12),var(--shadow-float); }
.step__icon{
  width:54px; height:54px;
  display:grid; place-items:center;
  border-radius:var(--r-lg);
  background:var(--accent-soft); color:var(--accent);
  will-change:transform;
  animation:bob 4.4s ease-in-out infinite alternate;
}
.step:nth-child(2) .step__icon{ animation-duration:5.2s; animation-delay:-1.4s; }
.step:nth-child(3) .step__icon{ animation-duration:4.8s; animation-delay:-2.6s; }
@keyframes bob{
  from{ transform:translate3d(0,0,0); }
  to  { transform:translate3d(0,-7px,0); }
}
.step__no{ margin-top:var(--space-6); font-size:var(--t-meta); font-weight:600; letter-spacing:0.08em; color:var(--accent); }
.step h3{ margin-top:var(--space-3); }
.step p{ margin-top:var(--space-4); font-size:var(--t-body); line-height:1.5; color:var(--ink-75); text-wrap:pretty; }

/* ==========================================================================
   Pricing
   ========================================================================== */
.tiers{
  display:grid; gap:var(--space-8);
  margin-top:var(--space-9);
  /* stretch so the three CTAs land on one line; the featured tier is
     distinguished by its ring and scale, not by being a different height */
  align-items:stretch;
}
@media (min-width:860px){ .tiers{ grid-template-columns:repeat(3,minmax(0,1fr)); } }
.tier{
  position:relative;
  display:flex; flex-direction:column;
  background:var(--surface);
  border-radius:var(--r-2xl);
  padding:var(--space-7);
  box-shadow:var(--shadow-raised);
  transition:transform var(--t), box-shadow var(--t);
}
@media (min-width:600px){ .tier{ padding:var(--space-8) var(--space-8) var(--space-8); } }
.tier:hover{ transform:translateY(-4px); box-shadow:inset 0 1px 0 #FFF,0 0 0 1px rgba(0,0,0,0.12),var(--shadow-float); }

/* featured tier breathes, very slightly */
.tier--featured{
  box-shadow:inset 0 1px 0 #FFF,0 0 0 1.5px var(--accent),var(--shadow-float);
  will-change:transform;
  animation:breathe 6s ease-in-out infinite;
}
.tier--featured:hover{
  animation-play-state:paused;
  box-shadow:inset 0 1px 0 #FFF,0 0 0 1.5px var(--accent),var(--shadow-float);
}
@keyframes breathe{
  0%,100%{ transform:scale(1); }
  50%    { transform:scale(1.018); }
}
.tier__flag{
  position:absolute; top:calc(var(--space-5) * -1); left:50%;
  transform:translateX(-50%);
  padding:var(--space-3) var(--space-6);
  border-radius:var(--r-full);
  background:var(--accent); color:#fff;
  font-size:var(--t-meta); font-weight:600; letter-spacing:0.06em; text-transform:uppercase;
  white-space:nowrap;
}
.tier__name{ font-size:var(--t-label); font-weight:600; color:var(--ink-60); }
.tier__price{
  margin-top:var(--space-5);
  font-family:var(--font-display); font-weight:500;
  font-size:var(--t-h2); line-height:1; letter-spacing:normal;
}
.tier__unit{ font-family:var(--font-body); font-size:var(--t-label); font-weight:500; color:var(--ink-60); letter-spacing:-0.02em; }
.tier__for{ margin-top:var(--space-5); font-size:var(--t-body); line-height:1.45; color:var(--ink-75); text-wrap:pretty; }
.tier__list{ margin:var(--space-7) 0 var(--space-8); display:grid; gap:var(--space-5); }
.tier__item{ display:flex; align-items:flex-start; gap:var(--space-4); font-size:var(--t-body); line-height:1.45; color:var(--ink-75); }
.tick{ flex:none; margin-top:2px; color:var(--accent); }
.tick path{
  fill:none; stroke:currentColor; stroke-width:2.4;
  stroke-linecap:round; stroke-linejoin:round;
}
/* drawn by default; JS pulls them back and lets them draw on scroll-in */
.js .tick path{
  stroke-dasharray:1; stroke-dashoffset:1;
  transition:stroke-dashoffset 520ms var(--ease);
  transition-delay:var(--td,0ms);
}
.js .is-in .tick path{ stroke-dashoffset:0; }
.tier .btn{ width:100%; margin-top:auto; }

/* ==========================================================================
   Offer band
   ========================================================================== */
.offer{
  position:relative; overflow:hidden; isolation:isolate;
  border-radius:var(--r-3xl);
  padding:var(--space-8) var(--space-7);
  color:var(--on-dark);
  background:linear-gradient(115deg,var(--violet) 0%,var(--brand-mid) 46%,var(--brand-mid) 78%,var(--rose) 100%);
  box-shadow:var(--shadow-float);
  display:grid; gap:var(--space-7); align-items:center;
  text-align:center;
}
@media (min-width:820px){
  .offer{
    grid-template-columns:1fr auto;
    text-align:left;
    padding:var(--space-9) var(--space-8);
  }
}
.offer::before{
  content:""; position:absolute; inset:-30%; z-index:-1;
  background:
    radial-gradient(38% 52% at 14% 16%, rgba(255,255,255,0.42) 0%, rgba(255,255,255,0) 64%),
    radial-gradient(44% 56% at 88% 84%, rgba(224,166,198,0.40) 0%, rgba(224,166,198,0) 66%);
}
.offer__tag{
  display:inline-flex; align-items:center; gap:var(--space-3);
  padding:var(--space-2) var(--space-5);
  border-radius:var(--r-full);
  background:rgba(255,255,255,0.18);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,0.32);
  font-size:var(--t-meta); font-weight:600; letter-spacing:0.06em; text-transform:uppercase;
}
.offer h2{ margin-top:var(--space-6); }
.offer p{ margin-top:var(--space-7); font-size:var(--t-body); color:rgba(255,255,255,0.86); max-width:46ch; text-wrap:pretty; }
@media (max-width:819px){ .offer p{ margin-inline:auto; } }

/* ==========================================================================
   Reviews — deliberate empty state, not invented quotes
   ========================================================================== */
.reviews{ display:grid; gap:var(--space-8); margin-top:var(--space-9); }
@media (min-width:760px){ .reviews{ grid-template-columns:repeat(3,minmax(0,1fr)); } }
.review--empty{
  border-radius:var(--r-2xl);
  padding:var(--space-8) var(--space-7);
  border:1.5px dashed var(--ink-15);
  background:rgba(255,255,255,0.5);
  text-align:center;
}
.review--empty svg{ margin:0 auto; color:var(--ink-15); }
.review--empty p{ margin-top:var(--space-6); font-size:var(--t-label); line-height:1.5; color:var(--ink-60); text-wrap:pretty; }
.review--empty span{ display:block; margin-top:var(--space-5); font-size:var(--t-meta); font-weight:500; color:var(--ink-15); }

/* ==========================================================================
   Guarantee
   ========================================================================== */
.guarantee{
  display:grid; gap:var(--space-8);
  background:var(--surface);
  border-radius:var(--r-3xl);
  padding:var(--space-8) var(--space-7);
  box-shadow:var(--shadow-raised);
  align-items:center;
}
@media (min-width:820px){
  .guarantee{ grid-template-columns:auto minmax(0,1fr); padding:var(--space-10) var(--space-9); gap:var(--space-10); }
}
.guarantee__seal{
  width:96px; height:96px; margin-inline:auto;
  display:grid; place-items:center;
  border-radius:50%;
  background:var(--accent-soft); color:var(--accent);
  flex:none;
}
.guarantee h2{ margin-top:var(--space-5); }
.guarantee h2{ max-width:26ch; }
.guarantee p{ margin-top:var(--space-6); max-width:60ch; color:var(--ink-75); text-wrap:pretty; }
.guarantee p + p{ margin-top:var(--space-5); }

/* ==========================================================================
   FAQ — <details> so it works with zero JS
   ========================================================================== */
.faq{ margin-top:var(--space-9); max-width:820px; }
.faq details{
  background:var(--surface);
  border-radius:var(--r-xl);
  box-shadow:var(--shadow-raised);
  overflow:hidden;
}
.faq details + details{ margin-top:var(--space-5); }
.faq summary{
  display:flex; align-items:center; justify-content:space-between; gap:var(--space-6);
  padding:var(--space-7);
  font-size:var(--t-h3); font-weight:600; line-height:1.35;
  cursor:pointer; list-style:none;
  transition:color var(--t);
}
.faq summary::-webkit-details-marker{ display:none; }
.faq summary:hover{ color:var(--accent); }
.faq__sign{
  flex:none; width:26px; height:26px;
  display:grid; place-items:center;
  border-radius:50%; background:var(--accent-soft); color:var(--accent);
  transition:transform var(--t);
}
.faq details[open] .faq__sign{ transform:rotate(45deg); }
.faq__a{
  padding:0 var(--space-7) var(--space-7);
  font-size:var(--t-body); line-height:1.55; color:var(--ink-75); text-wrap:pretty;
  max-width:62ch;
}

/* ==========================================================================
   Sticky book-now bar — pure CSS, present with or without JS
   ========================================================================== */
:root{ --bar-h:62px; }
@media (min-width:600px){ :root{ --bar-h:70px; } }
body{ padding-bottom:var(--bar-h); }

.bar{
  position:fixed; left:0; right:0; bottom:0; z-index:60;
  min-height:var(--bar-h);
  display:flex; align-items:center;
  background:rgba(247,247,247,0.86);
  -webkit-backdrop-filter:blur(20px) saturate(1.4);
  backdrop-filter:blur(20px) saturate(1.4);
  box-shadow:0 -1px 0 var(--ink-10),0 -8px 30px -12px rgba(0,0,0,0.16);
  padding-block:var(--space-3);
}
@supports not ((backdrop-filter:blur(1px)) or (-webkit-backdrop-filter:blur(1px))){
  .bar{ background:rgba(247,247,247,0.98); }
}
.bar__inner{
  display:flex; align-items:center; justify-content:space-between; gap:var(--space-6);
  width:100%;
}
.bar__copy{ min-width:0; }
.bar__title{ font-size:var(--t-body); font-weight:600; line-height:1.25; }
.bar__note{
  display:flex; align-items:center; gap:var(--space-3);
  margin-top:var(--space-1);
  font-size:var(--t-meta); font-weight:500; color:var(--ink-60);
}
.bar__dot{
  width:6px; height:6px; border-radius:50%; flex:none;
  background:var(--rose); box-shadow:0 0 0 3px rgba(224,166,198,0.22);
}
.bar .btn{ height:44px; padding-inline:var(--space-7); font-size:var(--t-body); flex:none; }
@media (max-width:479px){
  .bar__title{ font-size:var(--t-label); }
  .bar__note{ font-size:var(--t-meta); }
  .bar .btn{ height:42px; padding-inline:var(--space-6); font-size:var(--t-label); }
}

/* ==========================================================================
   One-time nudge
   ========================================================================== */
.nudge{
  position:fixed; z-index:65;
  left:var(--space-6); right:var(--space-6);
  bottom:calc(var(--bar-h) + var(--space-5));
  padding:var(--space-6) var(--space-7);
  border-radius:var(--r-2xl);
  background:var(--surface);
  box-shadow:0 0 0 1px var(--ink-10),0 18px 44px -10px rgba(0,0,0,0.28);
  display:flex; align-items:center; gap:var(--space-6);
  /* hidden until JS opts it in; without JS it never renders at all */
  display:none;
}
@media (min-width:600px){
  .nudge{ left:var(--space-7); right:auto; width:352px; }
}
.js .nudge{ display:flex; opacity:0; transform:translateY(16px); pointer-events:none;
  transition:opacity 420ms var(--ease), transform 420ms var(--ease); }
.js .nudge.is-in{ opacity:1; transform:none; pointer-events:auto; }
.nudge__icon{
  width:38px; height:38px; flex:none;
  display:grid; place-items:center; border-radius:var(--r-sm);
  background:var(--accent-soft); color:var(--accent);
}
.nudge__title{ font-size:var(--t-body); font-weight:600; }
.nudge__body{ margin-top:var(--space-2); font-size:var(--t-label); line-height:1.4; color:var(--ink-60); }
.nudge__body a{ color:var(--accent); font-weight:600; text-decoration:underline; text-underline-offset:2px; }
.nudge__x{
  flex:none; align-self:flex-start;
  width:28px; height:28px; margin:-4px -6px 0 0;
  display:grid; place-items:center;
  border:0; border-radius:50%; background:transparent; color:var(--ink-60);
  cursor:pointer; transition:background-color var(--t), color var(--t);
}
.nudge__x:hover{ background:var(--ink-10); color:var(--ink); }

/* ==========================================================================
   Button life — sparkle on hover, pulse + shine on the nav CTA
   ========================================================================== */
.btn{ position:relative; }
.btn--sparkle::after{
  content:"";
  position:absolute; top:-5px; right:2px;
  width:13px; height:13px;
  background:currentColor;
  clip-path:polygon(50% 0%,60% 40%,100% 50%,60% 60%,50% 100%,40% 60%,0% 50%,40% 40%);
  opacity:0; transform:scale(0.2) rotate(-40deg);
  transition:opacity 260ms var(--ease), transform 380ms cubic-bezier(0.34,1.56,0.64,1);
  pointer-events:none;
}
.btn--sparkle:hover::after,.btn--sparkle:focus-visible::after{ opacity:1; transform:scale(1) rotate(0deg); }

.nav__cta{
  overflow:hidden;
  will-change:transform;
  animation:cta-pulse 3.6s ease-in-out infinite;
}
.nav__cta:hover{ animation-play-state:paused; }
@keyframes cta-pulse{
  0%,72%,100%{ transform:scale(1); }
  84%        { transform:scale(1.045); }
}
.nav__cta::after{
  content:""; position:absolute; top:0; bottom:0; left:0; width:45%;
  background:linear-gradient(90deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0.6) 50%,rgba(255,255,255,0) 100%);
  transform:translateX(-260%) skewX(-18deg);
  animation:cta-shine 3.6s ease-in-out infinite;
  pointer-events:none;
}
@keyframes cta-shine{
  0%,55%{ transform:translateX(-260%) skewX(-18deg); }
  85%,100%{ transform:translateX(360%) skewX(-18deg); }
}

/* ==========================================================================
   Reveal — only applied when JS is on, so no-JS renders fully visible
   ========================================================================== */
.js .reveal{
  opacity:0;
  transform:translateY(20px);
  transition:opacity 600ms var(--ease), transform 600ms var(--ease);
  transition-delay:var(--d,0ms);
}
.js .reveal.is-in{ opacity:1; transform:none; }

@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  .blob{ animation:none !important; }
  /* swash arrives already drawn rather than not at all */
  .swash path{ animation:none !important; stroke-dashoffset:0; }
  .js .reveal{ transform:none; transition:opacity 300ms linear; }
  .btn:hover,.card:hover,.card:focus-within{ transform:none; }
  .card:hover .card__link svg{ transform:none; }
  /* everything that loops or draws arrives at its resting state instead */
  .step__icon,.tier--featured,.nav__cta,.nav__cta::after{ animation:none !important; }
  .tier--featured{ transform:none; }
  .js .tick path{ stroke-dashoffset:0 !important; transition:none; }
  .btn--sparkle::after{ display:none; }
  .step:hover,.tier:hover{ transform:none; }
  .hero__media img{ transform:scale(1.08); }
  .js .nudge{ transform:none; transition:opacity 200ms linear; }
  *,*::before,*::after{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; }
}
