/* BrowBlendz — the measured sheet, warmed.
   Blush ground sampled from her references. One accent: ocean, from her studio.
   Type: Italiana carries the display voice; Jost carries reading and labels.
   RULE: photographs are whole. Never masked, never cropped by a fade. Where words meet a
   picture, a gradient scrim sits OVER the picture on the words' side. */

:root {
  --blush: #F6ECE9;
  --blush-2: #EFDFD9;
  --cream: #F3EDE6;
  --white: #F7F4F0;
  --charcoal: #3A3532;
  --ink: #3A3532;
  --ink-soft: rgba(58, 53, 50, .74);
  --ink-mute: rgba(58, 53, 50, .56);
  --taupe: #8C7263;
  --ocean: #7A9BB0;
  --ocean-ink: #4E7085;
  --ocean-tint: #E6E9EA;      /* the one committed-colour surface: ocean folded into blush */
  --rule: rgba(58, 53, 50, .16);
  --rule-strong: rgba(58, 53, 50, .34);

  --display: "Italiana", "Didot", "Bodoni 72", Georgia, serif;
  --body: "Jost", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --script: "Parisienne", "Snell Roundhand", "Apple Chancery", cursive;   /* echoes her logo; labels only, never headlines */

  --measure: 66ch;
  --gutter: clamp(20px, 5vw, 72px);
  --section: clamp(80px, 11vw, 150px);
  --header-h: 72px;

  --ease: cubic-bezier(.16, 1, .3, 1);
  --t-fast: 160ms;
  --t-base: 380ms;
  --t-slow: 900ms;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--blush); color: var(--ink); font-family: var(--body); font-weight: 300; font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: clip; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .18em; }
button { font: inherit; color: inherit; }
::selection { background: var(--charcoal); color: var(--blush); }
:focus-visible { outline: 2px solid var(--ocean-ink); outline-offset: 4px; border-radius: 2px; }
html { scrollbar-color: var(--taupe) var(--blush); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--blush); }
::-webkit-scrollbar-thumb { background: var(--taupe); border: 3px solid var(--blush); border-radius: 8px; }

/* ---------- type ---------- */
h1, h2, h3 { font-family: var(--display); font-weight: 400; letter-spacing: -.01em; line-height: 1.02; margin: 0; text-wrap: balance; }
h1 { font-size: clamp(2.6rem, 8.2vw, 6rem); }
h2 { font-size: clamp(2rem, 5.4vw, 4.2rem); }
h3 { font-size: clamp(1.45rem, 2.6vw, 2rem); line-height: 1.12; }
p { margin: 0 0 1.1em; max-width: var(--measure); }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.55; color: var(--ink-soft); }
.label { font-family: var(--body); font-weight: 400; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ocean-ink); }
.small { font-size: .92rem; color: var(--ink-soft); }
.w { display: inline-block; will-change: transform; }

/* the brow arch under a heading, and the mapping line: the two authored marks of the site */
.brow-rule { display: block; width: clamp(64px, 8vw, 110px); height: 10px; margin: 18px 0 0; color: var(--ocean-ink); }
.brow-rule path { fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; }
/* material: the sheet has a tooth. A paper grain tile at very low strength over everything. */
body::before { content: ""; position: fixed; inset: 0; z-index: 1; pointer-events: none; background: url("assets/web/grain.png") repeat; background-size: 420px 420px; opacity: .22; mix-blend-mode: multiply; }
.site-header { z-index: 70; }
.menu { z-index: 60; }

/* ---------- layout ---------- */
.wrap { padding-inline: var(--gutter); max-width: 1440px; margin-inline: auto; }
section { padding-block: var(--section); position: relative; }
section + section { border-top: 1px solid var(--rule); }
.hero + section, section.band, section.tone-ocean, section.tone-ocean + section, .page-head + section { border-top: 0; }
section.tone-ocean { background: var(--ocean-tint); }
/* the reviews sit on a raised surface so they read as their own section, not the tail of My story */
section.tone-raised { background: var(--blush-2); border-top: 0; }
section.tone-raised + section { border-top: 0; }
.grid { display: grid; gap: clamp(28px, 4vw, 56px); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); align-items: center; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }

/* parallax windows: the image is always larger than its window, so nothing behind it ever shows */
picture { display: contents; }
.pwin { position: relative; overflow: hidden; }
.pwin img { position: absolute; left: 0; top: -12%; width: 100%; height: 124%; object-fit: cover; will-change: transform; }

/* ---------- controls ---------- */
/* square, like every picture on the site. The life is a fill that wipes in from the left
   and an arrow that walks — no lift, no glow. */
.btn { --bg: var(--ocean-ink); --fg: var(--white); display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 17px 28px; border-radius: 0; border: 1px solid var(--bg); background: var(--bg); color: var(--fg); text-decoration: none; white-space: nowrap; font-weight: 400; font-size: .95rem; letter-spacing: .04em; transition: background var(--t-base) var(--ease), color var(--t-base) var(--ease), border-color var(--t-base) var(--ease); box-shadow: 0 10px 26px -14px rgba(20,16,14,.55); }
.btn:hover { background: var(--white); color: var(--ocean-ink); border-color: var(--white); }
.btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; flex: none; transition: transform var(--t-base) var(--ease); }
.btn:hover svg { transform: translateX(5px); }
.btn.ghost { --bg: transparent; --fg: var(--ink); border-color: var(--rule-strong); box-shadow: none; }
.btn.ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.link { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ocean-ink); font-weight: 400; }
.link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; transition: transform var(--t-base) var(--ease); }
.link:hover svg { transform: translateX(4px); }
.actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 30px; }

/* ---------- header ---------- */
/* the header is solid at all times: blush ground, hairline underneath, no transparent state */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 70; height: var(--header-h); display: flex; align-items: center; justify-content: space-between; padding: 0 var(--gutter); background: var(--blush); border-bottom: 1px solid var(--rule); }
.site-header.scrolled { background: var(--blush); border-color: var(--rule); }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 34px; width: auto; }
@media (min-width: 900px) { .brand img { height: 40px; } }
.nav { display: none; align-items: center; gap: 32px; }
.nav a { text-decoration: none; font-size: .95rem; font-weight: 400; letter-spacing: .04em; color: var(--ink); padding: 6px 0; border-bottom: 1px solid transparent; transition: border-color var(--t-fast), color var(--t-fast); }
.nav a:hover, .nav a[aria-current="page"] { border-color: var(--ink); }
.nav a.btn { color: var(--fg); padding: 12px 22px; font-size: .9rem; border-bottom: 1px solid var(--bg); }
.nav a.btn:hover { border-color: var(--bg); }
@media (min-width: 900px) { .nav { display: flex; } .site-header .menu-toggle { display: none; } }
.menu-toggle { display: inline-grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--rule-strong); border-radius: 999px; background: transparent; cursor: pointer; }
.menu-toggle svg { width: 20px; height: 20px; stroke: var(--ink); fill: none; stroke-width: 1.5; }
.menu { position: fixed; inset: 0; z-index: 60; padding-top: calc(var(--header-h) + 24px); background: var(--blush); display: grid; align-content: center; gap: 8px; padding: var(--gutter); opacity: 0; visibility: hidden; transition: opacity var(--t-base) var(--ease), visibility 0s linear var(--t-base); }
.menu.open { opacity: 1; visibility: visible; transition-delay: 0s; }
.menu a:not(.btn) { font-family: var(--display); font-size: clamp(2.2rem, 9vw, 4rem); line-height: 1.1; text-decoration: none; padding: 6px 0; border-bottom: 1px solid var(--rule); }
.menu .close { position: absolute; top: 14px; right: var(--gutter); }
.menu .menu-foot { margin-top: 28px; display: grid; gap: 14px; }
.menu .menu-foot .btn { width: 100%; padding: 18px 24px; font-size: 1rem; }

/* ---------- hero: the whole picture, a scrim where the words are ---------- */
.hero { position: relative; min-height: 100dvh; display: grid; align-items: end; padding: 0; border-top: 0; overflow: hidden; isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -2; pointer-events: none; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.hero-media video { opacity: 0; transition: opacity var(--t-slow) var(--ease); }
.hero-media img.poster { display: none; }
.hero-media video.ready { opacity: 1; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(to top, rgba(246,236,233,1) 0%, rgba(246,236,233,.98) 14%, rgba(246,236,233,.92) 24%, rgba(246,236,233,.8) 33%, rgba(246,236,233,.62) 42%, rgba(246,236,233,.42) 51%, rgba(246,236,233,.24) 60%, rgba(246,236,233,.1) 70%, rgba(246,236,233,0) 82%); }
.hero-content { position: relative; padding: 0 var(--gutter) clamp(40px, 7vh, 96px); max-width: 1440px; margin-inline: auto; width: 100%; }
.hero-content h1 { max-width: 13ch; }
.hero-content .lead { margin-top: 22px; max-width: 44ch; color: var(--ink); }
.hero-meta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 8px 28px; }
.hero-meta span { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
@media (orientation: landscape) and (min-width: 900px) {
  .hero { align-items: center; }
  .hero-content { padding-block: clamp(80px, 12vh, 140px); }
  .hero-content h1, .hero-content .lead, .hero-content .actions, .hero-meta { max-width: min(46ch, 44vw); }
  .hero-media video, .hero-media img { object-position: 62% 45%; }
  .hero::before { background: linear-gradient(to right, rgba(246,236,233,1) 0%, rgba(246,236,233,.98) 22%, rgba(246,236,233,.92) 32%, rgba(246,236,233,.8) 40%, rgba(246,236,233,.62) 47%, rgba(246,236,233,.42) 54%, rgba(246,236,233,.24) 61%, rgba(246,236,233,.1) 68%, rgba(246,236,233,0) 78%); }
}
@media (orientation: landscape) and (max-height: 560px) {
  .hero { align-items: center; }
  .hero-content { padding-top: 84px; padding-bottom: 28px; }
  .hero-content h1 { font-size: clamp(1.9rem, 6.2vh, 2.8rem); max-width: 14ch; }
  .hero-content .lead { font-size: .95rem; margin-top: 12px; max-width: min(40ch, 52vw); }
  .hero-content .actions { margin-top: 16px; }
  .hero-content .btn { padding: 12px 20px; font-size: .88rem; }
  .hero-meta { margin-top: 16px; } .hero-meta span { font-size: .66rem; }
  .hero-media video, .hero-media img { object-position: 70% 45%; }
  .hero::before { background: linear-gradient(to right, rgba(246,236,233,1) 0%, rgba(246,236,233,.97) 28%, rgba(246,236,233,.88) 38%, rgba(246,236,233,.7) 46%, rgba(246,236,233,.48) 54%, rgba(246,236,233,.26) 62%, rgba(246,236,233,.1) 70%, rgba(246,236,233,0) 80%); }
}
@media (orientation: portrait) {
  .hero-content .lead { font-size: 1.02rem; margin-top: 16px; max-width: 34ch; }
  .hero-content .actions { margin-top: 22px; }
  .hero-meta { margin-top: 24px; gap: 6px 20px; } .hero-meta span { font-size: .7rem; }
  .hero::before { background: linear-gradient(to top, rgba(246,236,233,1) 0%, rgba(246,236,233,1) 18%, rgba(246,236,233,.97) 26%, rgba(246,236,233,.9) 33%, rgba(246,236,233,.78) 40%, rgba(246,236,233,.6) 47%, rgba(246,236,233,.4) 54%, rgba(246,236,233,.22) 62%, rgba(246,236,233,.08) 71%, rgba(246,236,233,0) 82%); }
}

/* ---------- the studies: three equal plates, captions beneath ---------- */
.studies { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 36px); margin-top: clamp(40px, 6vw, 72px); }
.study { text-decoration: none; color: inherit; display: grid; gap: 0; }
.study figure { margin: 0 0 18px; aspect-ratio: 3 / 4; }
.study .caption { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--rule-strong); padding-bottom: 10px; }
.study .caption h3 { font-size: clamp(1.3rem, 1.9vw, 1.7rem); }
.price { font-family: var(--body); font-weight: 300; font-size: 1.05rem; color: var(--ink-soft); white-space: nowrap; }
.study p { font-size: .95rem; color: var(--ink-soft); margin: 12px 0 0; max-width: 32ch; }
.study .label { margin-top: 10px; }
@media (max-width: 899px) { .studies { grid-template-columns: 1fr; gap: clamp(36px, 8vw, 56px); } .study figure { aspect-ratio: 4 / 3; } }
@media (min-width: 600px) and (max-width: 899px) { .studies { grid-template-columns: repeat(3, 1fr); gap: 16px; } .study figure { aspect-ratio: 3 / 4; } }

/* ---------- healing: the stages scroll, the picture stays and changes with them ---------- */
.heal { display: grid; gap: clamp(28px, 5vw, 72px); margin-top: clamp(36px, 5vw, 64px); }
.heal-stages { position: relative; list-style: none; margin: 0; padding: 0; }
.tl-track { position: absolute; left: 11px; top: 12px; bottom: 12px; width: 1px; background: rgba(78,112,133,.25); }
.tl-track i { position: absolute; inset: 0; background: var(--ocean-ink); transform-origin: top; }
.stage { display: grid; grid-template-columns: 24px 1fr; gap: 20px; padding: 18px 0; }
.stage .dot { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--ocean-ink); background: var(--ocean-tint); position: relative; z-index: 1; transition: background var(--t-base), box-shadow var(--t-base); }
.stage.on .dot { background: var(--ocean-ink); box-shadow: 0 0 0 5px rgba(78,112,133,.15); }
.stage h3 { font-size: 1.3rem; }
.stage .when { color: var(--ocean-ink); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 6px; display: block; }
.stage p { margin: 6px 0 0; font-size: .98rem; color: var(--ink-soft); max-width: 44ch; }
.stage .stage-img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; margin: 14px 0 0; }
.heal-figure { display: none; }
@media (min-width: 900px) {
  .heal { grid-template-columns: 1fr 1fr; align-items: start; }
  .stage { padding: clamp(28px, 4vw, 48px) 0; grid-template-columns: 24px 1fr; }
  .stage .stage-img { display: none; }
  .heal-figure { display: block; position: sticky; top: calc(var(--header-h) + 32px); aspect-ratio: 1; overflow: hidden; }
  .heal-figure img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 700ms var(--ease); }
  .heal-figure img.on { opacity: 1; }
  .heal-figure .stage-tag { position: absolute; left: 22px; bottom: 18px; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--white); background: rgba(58,53,50,.62); padding: 8px 12px; }
}

/* ---------- story ---------- */
.portrait { aspect-ratio: 4 / 5; }
.story { align-items: center; }
.facts { display: flex; flex-wrap: wrap; gap: 10px 36px; margin-top: clamp(28px, 4vw, 48px); padding-top: 22px; border-top: 1px solid var(--rule); }
.facts span { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ocean-ink); }
.mt-lead { margin-top: 22px; }

/* ---------- pictures rest on the sheet ----------
   Hard corners read as pasted-on because a rectangle floating on flat paper has no weight.
   A wide, very low shadow makes it a print lying on the sheet. No radius, no fade. */
.study figure, .service figure, .portrait, .heal-figure, .stage .stage-img, .gallery img {
  box-shadow: 0 42px 72px -32px rgba(58,53,50,.72), 0 12px 28px -14px rgba(58,53,50,.42);
}

/* ---------- reviews ---------- */
.rating { display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.stars { display: inline-flex; gap: 3px; color: var(--ocean-ink); }
.stars svg { width: 15px; height: 15px; fill: currentColor; }
@media (max-width: 599px) { .rating > .stars { display: none; } }
.reviews-strip { display: grid; grid-auto-flow: column; grid-auto-columns: 360px; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 4px; scrollbar-width: none; overscroll-behavior-x: contain; }
.reviews-strip::-webkit-scrollbar { display: none; }
/* under 900px exactly one review fills the view: the column is the full width, so the
   next card starts past the right edge and never peeks. */
@media (max-width: 899px) { .reviews-strip { grid-auto-columns: 100%; gap: clamp(20px, 6vw, 32px); } .review { min-height: 0; } }
.review { scroll-snap-align: start; border-top: 1px solid var(--rule-strong); padding-top: 22px; display: grid; align-content: start; gap: 14px; min-height: 200px; }
.review blockquote { margin: 0; font-size: 1.02rem; line-height: 1.55; }
.review cite { font-style: normal; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ocean-ink); }
.strip-dots { display: flex; justify-content: center; align-items: center; gap: 9px; margin-top: 26px; min-height: 8px; }
.strip-dots button { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%; background: rgba(58,53,50,.2); cursor: pointer; transition: background var(--t-base) var(--ease), transform var(--t-base) var(--ease); }
.strip-dots button:hover { background: rgba(58,53,50,.4); }
.strip-dots button.on { background: var(--ocean-ink); transform: scale(1.4); }
.reviews-foot { display: flex; justify-content: center; margin-top: clamp(26px, 4vw, 40px); }
.verified { display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); }
.verified svg { width: 16px; height: 16px; stroke: var(--ocean-ink); fill: none; stroke-width: 1.6; }

/* ---------- band: the whole picture, a charcoal scrim where the words are ---------- */
.band { position: relative; background: var(--charcoal); color: var(--blush); overflow: hidden; }
.band-art { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.band-art img { object-position: 65% 50%; }
.band::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(to right, rgba(58,53,50,.96) 0%, rgba(58,53,50,.9) 38%, rgba(58,53,50,.45) 60%, rgba(58,53,50,.1) 100%); }
.band .grid-2 { grid-template-columns: 1fr; max-width: 56ch; position: relative; z-index: 2; gap: 24px; }
.band .brow-rule { color: var(--ocean); }
.band .btn { --bg: var(--ocean-ink); --fg: var(--white); box-shadow: 0 12px 30px -16px rgba(20,16,14,.7); }
.band .btn:hover { background: var(--white); color: var(--ocean-ink); border-color: var(--white); }
.band .btn.ghost { --bg: var(--white); --fg: var(--charcoal); border-color: var(--white); box-shadow: 0 12px 30px -16px rgba(20,16,14,.7); }
.band .btn.ghost:hover { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.band p { color: rgba(246,236,233,.82); }
.band::before { background: linear-gradient(to right, rgba(58,53,50,.97) 0%, rgba(58,53,50,.95) 22%, rgba(58,53,50,.9) 34%, rgba(58,53,50,.78) 44%, rgba(58,53,50,.6) 54%, rgba(58,53,50,.4) 64%, rgba(58,53,50,.22) 76%, rgba(58,53,50,.08) 90%, rgba(58,53,50,0) 100%); }
@media (max-width: 899px) {
  /* the band is only as tall as it needs to be: enough picture to read, the words over its
     lower third on a compact scrim. It was a full screen for three lines of text. */
  .band { min-height: min(72vh, 620px); display: flex; align-items: flex-end; padding-block: clamp(36px, 7vw, 56px); }
  .band-art { position: absolute; inset: 0; width: auto; height: auto; margin: 0; }
  .band-art img { object-position: 50% 32%; }
  .band > .grid-2 { width: 100%; }
  .band::before { background: linear-gradient(to top, rgba(58,53,50,.97) 0%, rgba(58,53,50,.93) 22%, rgba(58,53,50,.84) 34%, rgba(58,53,50,.7) 44%, rgba(58,53,50,.5) 54%, rgba(58,53,50,.3) 64%, rgba(58,53,50,.15) 75%, rgba(58,53,50,.05) 87%, rgba(58,53,50,0) 100%); }
}

/* ---------- footer ---------- */
.site-footer { padding: clamp(56px, 8vw, 96px) var(--gutter) 40px; border-top: 1px solid var(--rule); max-width: 1440px; margin-inline: auto; }
.foot-grid { display: grid; gap: 36px; grid-template-columns: 1.6fr 1fr 1fr 1fr; }
.foot-brand img { height: 84px; width: auto; }
.foot-brand p { margin: 20px 0 0; font-size: .95rem; color: var(--ink-soft); max-width: 30ch; }
.site-footer h4 { margin: 0 0 14px; font-family: var(--body); font-weight: 400; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ocean-ink); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer a { text-decoration: none; color: var(--ink); font-size: .98rem; }
.site-footer a:hover { color: var(--ocean-ink); }
.site-footer li span { font-size: .98rem; color: var(--ink-soft); }
.foot-legal { display: flex; flex-wrap: wrap; gap: 10px 28px; justify-content: space-between; align-items: center; font-size: .82rem; color: var(--ink-mute); padding-top: 24px; margin-top: 44px; border-top: 1px solid var(--rule); }
.foot-legal a { font-size: .82rem; color: var(--ink-mute); }
@media (max-width: 899px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-brand, .foot-grid > div:last-child { grid-column: span 2; } }

/* ---------- inner pages: a full-width picture, then the title ---------- */
/* ---- page heads: the picture is the ground, the words sit on it ----
   The image used to stand alone at full height with the title pushed underneath, which spent
   most of a screen on a photograph nobody came for. Now they share the same space. */
.page-head { position: relative; padding: 0; border-top: 0; min-height: clamp(380px, 68vh, 660px); display: flex; align-items: stretch; overflow: hidden; }
.head-art { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.head-art img { position: absolute; left: 0; top: -12%; width: 100%; height: 124%; object-fit: cover; object-position: 50% 40%; will-change: transform; }
.page-head::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to bottom, rgba(40,34,31,.9) 0%, rgba(40,34,31,.84) 10%, rgba(40,34,31,.72) 20%, rgba(40,34,31,.52) 30%, rgba(40,34,31,.28) 40%, rgba(40,34,31,.08) 49%, rgba(40,34,31,0) 56%, rgba(40,34,31,.12) 66%, rgba(40,34,31,.38) 78%, rgba(40,34,31,.66) 89%, rgba(40,34,31,.82) 100%); }
.head-words { position: relative; z-index: 2; width: 100%; display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; gap: clamp(24px, 5vh, 48px); padding-top: calc(var(--header-h) + clamp(22px, 4vh, 44px)); padding-bottom: clamp(34px, 6vh, 64px); }
.head-words > .head-title { display: block; }
.page-head h1, .page-head .lead { color: var(--white); text-shadow: 0 1px 2px rgba(20,16,14,.95), 0 2px 6px rgba(20,16,14,.8), 0 6px 18px rgba(20,16,14,.7), 0 16px 40px rgba(20,16,14,.55); }
.page-head h1 { font-size: clamp(2.4rem, 6.4vw, 4.6rem); max-width: 18ch; }
.page-head .lead { margin-top: 18px; font-weight: 400; max-width: 52ch; }
.page-head .brow-rule { color: var(--ocean); }
.page-head.no-art { min-height: 0; display: block; padding-top: calc(var(--header-h) + clamp(60px, 10vh, 120px)); }
.page-head.no-art::before { display: none; }
.page-head.no-art h1, .page-head.no-art .lead { color: var(--ink); text-shadow: none; }
.page-head.no-art .lead { color: var(--ink-soft); }
.faq { display: grid; border-top: 1px solid var(--rule-strong); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; font-family: var(--display); font-size: clamp(1.3rem, 2.2vw, 1.8rem); transition: color var(--t-fast); }
.faq summary:hover { color: var(--ocean-ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { width: 20px; height: 20px; flex: none; stroke: var(--ocean-ink); fill: none; stroke-width: 1.4; transition: transform var(--t-base) var(--ease); }
.faq details[open] summary svg { transform: rotate(45deg); }
.faq .answer { padding: 0 0 26px; color: var(--ink-soft); max-width: var(--measure); }
.faq .answer ul { padding-left: 1.1em; margin: .6em 0; }
.service { display: grid; gap: clamp(28px, 5vw, 72px); grid-template-columns: 1fr 1fr; align-items: center; padding: clamp(40px, 6vw, 80px) 0; border-top: 1px solid var(--rule); }
.service:first-of-type { border-top: 0; padding-top: 0; }
.service figure { margin: 0; aspect-ratio: 1; }
.service .meta { display: flex; flex-wrap: wrap; gap: 10px 28px; margin: 16px 0 20px; font-size: .9rem; color: var(--ink-soft); }
.service .meta strong { font-weight: 400; color: var(--ocean-ink); }
.service p { margin-bottom: 1.4em; }
@media (max-width: 899px) { .service { grid-template-columns: 1fr; } .service figure { order: -1; aspect-ratio: 4 / 3; } }
.gallery { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
.gallery figure { margin: 0; }
.gallery figure:first-child { grid-column: span 2; }
.gallery figure:first-child img { aspect-ratio: 8 / 5; }
.gallery img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; }
.gallery figcaption { padding: 12px 2px 4px; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ocean-ink); }
@media (max-width: 899px) { .gallery { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
.note { border: 1px solid var(--rule-strong); padding: 22px 24px; max-width: 60ch; font-size: .95rem; color: var(--ink-soft); }
.prose { max-width: var(--measure); }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 2em 0 .6em; }
.prose h3 { font-size: 1.25rem; margin: 1.6em 0 .4em; font-family: var(--body); font-weight: 400; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; border-top: 1px solid var(--rule-strong); }
.contact-list li { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--rule); align-items: baseline; }
.contact-list li span:first-child { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ocean-ink); }
.contact-list a { text-decoration: none; color: var(--ink); font-size: 1.15rem; }
.contact-list a:hover { color: var(--ocean-ink); }

/* ---------- reveal fallback (GSAP replaces it) ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease); }
.reveal.in, html.gsap .reveal { opacity: 1; transform: none; transition: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media video { display: none; }
  .hero-media img.poster { display: block; }
  .pwin img, .head-art img { top: 0; height: 100%; transform: none; }
  .btn, .link svg { transition: none; }
}


/* ================= the scroll-driven hero =================
   A tall runway with the hero pinned inside it; scrolling the runway scrubs the film. The
   video decodes off-screen and a canvas shows it (an iOS video stops compositing after a
   navigation; a canvas does not).
   WORDS: one track in the forehead, where the picture is empty in all three acts — the
   headline on the opening frame, then a beat per act that reads as one sentence across the
   film: it begins as a drawing, then the line, then the colour. The chin carries the booking
   button on the opening frame only. Charcoal scrims top and bottom, the middle left clear. */
.hero-scroll { height: 320vh; position: relative; }
.hero.hero-scrub { position: sticky; top: 0; height: 100dvh; min-height: 0; }
.hero-scrub .hero-media canvas.scrub { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.hero-scrub .hero-media video.scrub-src { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.hero.hero-scrub::before { background: linear-gradient(to bottom, rgba(40,34,31,.74) 0%, rgba(40,34,31,.6) 16%, rgba(40,34,31,.38) 30%, rgba(40,34,31,.15) 42%, rgba(40,34,31,0) 54%); }
.hero.hero-scrub::after { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; background: linear-gradient(to top, rgba(40,34,31,.76) 0%, rgba(40,34,31,.6) 12%, rgba(40,34,31,.38) 24%, rgba(40,34,31,.14) 34%, rgba(40,34,31,0) 44%); }
@media (orientation: landscape) { .hero.hero-scrub::before { background: linear-gradient(to bottom, rgba(40,34,31,.72) 0%, rgba(40,34,31,.54) 18%, rgba(40,34,31,.3) 32%, rgba(40,34,31,.1) 44%, rgba(40,34,31,0) 56%); } }
/* the forehead track: opening headline and the three act beats share one anchor */
.hero-scrub .hero-content, .hero-scrub .scrub-caps { position: absolute; left: 0; right: 0; top: calc(var(--header-h) + clamp(26px, 5vh, 48px)); bottom: auto; padding: 0 var(--gutter); margin: 0; max-width: none; z-index: 2; }
.hero-scrub .hero-content { transition: opacity 300ms var(--ease); }
.hero-scrub.past .hero-content { opacity: 0; pointer-events: none; }
.hero-scrub .hero-content h1 { max-width: 14ch; }
.scrub-caps { pointer-events: none; }
.scrub-caps .cap { position: absolute; left: var(--gutter); right: var(--gutter); top: 0; opacity: 0; transform: translateY(14px); transition: opacity 420ms var(--ease), transform 560ms var(--ease); }
.scrub-caps .cap h2 { font-size: clamp(2.2rem, 9vw, 3.4rem); line-height: 1.04; margin: 0; max-width: 15ch; }
.scrub-caps .cap p { margin: 14px 0 0; max-width: 32ch; font-size: 1rem; }
.hero-scrub[data-act="1"] .cap[data-act="1"], .hero-scrub[data-act="2"] .cap[data-act="2"], .hero-scrub[data-act="3"] .cap[data-act="3"] { opacity: 1; transform: none; }
/* the chin: booking button and the facts, on the opening frame only, sharing one left edge */
.hero-scrub .hero-bottom, .hero-scrub .scrub-services { position: absolute; left: 0; right: 0; bottom: clamp(46px, 7vh, 84px); padding: 0 var(--gutter); z-index: 2; }
.hero-scrub .hero-bottom { transition: opacity 300ms var(--ease); }
.scrub-services { pointer-events: none; }
.scrub-services .svc { position: absolute; left: var(--gutter); right: var(--gutter); bottom: 0; opacity: 0; transform: translateY(12px); transition: opacity 420ms var(--ease), transform 560ms var(--ease); }
.scrub-services .svc h3 { font-family: var(--script); font-weight: 400; font-size: clamp(2rem, 8vw, 2.8rem); line-height: 1.1; margin: 0; }
/* her script names the services wherever they appear; ocean on the sheet, white on the film */
.svc-name { font-family: var(--script); font-weight: 400; letter-spacing: 0; color: var(--ocean-ink); }
.study .caption .svc-name { font-size: clamp(1.7rem, 3vw, 2.1rem); line-height: 1.1; }
.service .svc-name { font-size: clamp(2.2rem, 5vw, 3.2rem); line-height: 1.05; }
.scrub-services .svc p { margin: 8px 0 0; max-width: 32ch; font-size: .95rem; font-weight: 400; }
.hero-scrub[data-act="1"] .svc[data-act="1"], .hero-scrub[data-act="2"] .svc[data-act="2"], .hero-scrub[data-act="3"] .svc[data-act="3"] { opacity: 1; transform: none; }
.hero-scrub.past .hero-bottom { opacity: 0; pointer-events: none; }
.hero-scrub .hero-bottom .actions { margin: 22px 0 0; }
.hero-scrub .hero-bottom .btn { box-shadow: 0 6px 16px -6px rgba(20,16,14,.6), 0 18px 44px -18px rgba(20,16,14,.7); }
.hero-scrub .hero-bottom .hero-meta { margin: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.hero-scrub .hero-bottom .hero-meta .line { display: inline-flex; align-items: center; gap: 9px; line-height: 1.1; }
.hero-scrub .hero-bottom .hero-meta .stars { display: inline-flex; gap: 3px; color: var(--white); line-height: 0; }
.hero-scrub .hero-bottom .hero-meta .stars svg { width: 14px; height: 14px; fill: currentColor; filter: drop-shadow(0 1px 2px rgba(20,16,14,.7)); }
.hero-scrub .hero-bottom .hero-meta span { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; }
/* ink: white, with a hard close shadow and a wide soft one */
.hero-scrub .hero-content h1, .hero-scrub .hero-content .lead, .hero-scrub .hero-meta span, .hero-scrub .scrub-caps h2, .hero-scrub .scrub-caps p, .hero-scrub .scrub-services h3, .hero-scrub .scrub-services p, .hero-scrub .scrub-hint { color: var(--white); text-shadow: 0 1px 2px rgba(20,16,14,.85), 0 3px 8px rgba(20,16,14,.6), 0 12px 32px rgba(20,16,14,.45); }
.hero-scrub .scrub-caps p, .hero-scrub .hero-content .lead { font-weight: 400; }
.hero-scrub .hero-content .lead { margin: 14px 0 0; max-width: 30ch; font-size: 1rem; }
.hero-scrub .scrub-caps .cap h2 { font-family: var(--display); }
.hero-scrub .hero-meta span, .hero-scrub .scrub-caps .label { font-weight: 500; }
/* scroll hint and chapter ticks */
.hero-scrub .scrub-hint { position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; display: flex; align-items: center; gap: 8px; z-index: 3; transition: opacity 260ms var(--ease); }
.hero-scrub .scrub-hint svg { width: 12px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.3; }
.hero-scrub.past .scrub-hint { opacity: 0; }
.scrub-progress { position: absolute; left: var(--gutter); right: var(--gutter); top: calc(var(--header-h) + 12px); display: flex; gap: 6px; z-index: 3; pointer-events: none; opacity: 0; transition: opacity 320ms var(--ease); }
.hero-scrub.past .scrub-progress { opacity: 1; }
.scrub-progress i { flex: 1; height: 2px; background: rgba(247,244,240,.35); transition: background 320ms var(--ease); }
.hero-scrub[data-act="1"] .scrub-progress i:nth-child(1), .hero-scrub[data-act="2"] .scrub-progress i:nth-child(-n+2), .hero-scrub[data-act="3"] .scrub-progress i { background: var(--white); }
@media (min-width: 900px) {
  .hero-scrub .hero-content h1 { max-width: min(14ch, 46vw); }
  .scrub-caps .cap { right: auto; width: min(44ch, 46vw); }
  .scrub-caps .cap h2 { font-size: clamp(2.6rem, 4.4vw, 4rem); }
}

/* the menu opens under the header, so the logo stays put; the header button becomes the close */
.menu .close { display: none; }
.site-header .menu-toggle svg .bar-a, .site-header .menu-toggle svg .bar-b { transition: transform var(--t-base) var(--ease); transform-origin: center; }
body.menu-open .site-header .menu-toggle svg .bar-a { transform: translateY(4px) rotate(45deg); }
body.menu-open .site-header .menu-toggle svg .bar-b { transform: translateY(-4px) rotate(-45deg); }

/* ---- bands on a phone: heading at the top, buttons at the bottom, the picture between ----
   The words used to pile at the bottom under a tall gradient while the top half sat empty. */
@media (max-width: 899px) {
  .band { align-items: stretch; }
  /* flex:1 not height:100% — the band has a min-height, so a percentage height resolves to auto
     and the buttons never reach the bottom. align-items:start because .grid-2 centres by default. */
  .band > .grid-2 { flex: 1; display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; gap: clamp(28px, 6vh, 56px); }
  .band::before { background: linear-gradient(to bottom, rgba(40,34,31,.86) 0%, rgba(40,34,31,.72) 12%, rgba(40,34,31,.48) 22%, rgba(40,34,31,.22) 32%, rgba(40,34,31,.06) 41%, rgba(40,34,31,0) 52%, rgba(40,34,31,0) 62%, rgba(40,34,31,.06) 72%, rgba(40,34,31,.16) 82%, rgba(40,34,31,.28) 92%, rgba(40,34,31,.36) 100%); }
  .band h2, .band .lead, .band p { text-shadow: 0 1px 2px rgba(20,16,14,.85), 0 3px 10px rgba(20,16,14,.6), 0 14px 34px rgba(20,16,14,.45); }
  .band .lead, .band p { font-weight: 400; color: var(--white); }
  .band .actions { margin-top: 0; }
}


/* ================= landscape phones =================
   A short, wide viewport is its own layout, not a scaled portrait one. The menu was 488px of
   content in a 390px window with no way to scroll, and the hero's two text blocks overlapped. */
@media (max-width: 899px) and (orientation: landscape) {
  /* the menu scrolls, and its type is sized to the height available rather than the width */
  .menu { align-content: start; overflow-y: auto; -webkit-overflow-scrolling: touch;
    padding: calc(var(--header-h) + 16px) var(--gutter) 24px; gap: 2px; }
  .menu a:not(.btn) { font-size: clamp(1.3rem, 7vh, 1.9rem); padding: 4px 0; }
  .menu .menu-foot { margin-top: 16px; gap: 10px; }
  .menu .menu-foot .btn { padding: 12px 20px; font-size: .92rem; }
  .menu .menu-foot .small { font-size: .8rem; }

  /* hero: the headline and the booking block stop colliding, and the film keeps the middle */
  .hero-scrub .hero-content { top: calc(var(--header-h) + 10px); }
  .hero-scrub .hero-content h1 { font-size: clamp(1.5rem, 5.4vh, 2.2rem); max-width: 20ch; }
  .hero-scrub .hero-content .lead { margin-top: 8px; font-size: .88rem; max-width: 40ch; }
  .hero-scrub .hero-bottom { bottom: 16px; }
  .hero-scrub .hero-bottom .hero-meta { flex-direction: row; flex-wrap: wrap; gap: 6px 18px; margin: 0 0 12px; }
  .hero-scrub .hero-bottom .hero-meta .line { font-size: .66rem; }
  .hero-scrub .hero-bottom .actions { margin: 0; }
  .hero-scrub .hero-bottom .btn { padding: 12px 20px; font-size: .88rem; }
  .scrub-caps .cap h2 { font-size: clamp(1.4rem, 5vh, 2rem); max-width: 22ch; }
  .scrub-caps .cap p { margin-top: 8px; font-size: .86rem; max-width: 44ch; }
  .scrub-services .svc h3 { font-size: clamp(1.5rem, 5.4vh, 2.1rem); }
  .scrub-services .svc p { margin-top: 4px; font-size: .84rem; max-width: 40ch; }

  /* heads and bands: sized to the short viewport, not to a tall one */
  .page-head { min-height: min(88vh, 420px); }
  .head-words { padding-top: calc(var(--header-h) + 12px); padding-bottom: 20px; gap: 14px; }
  .page-head h1 { font-size: clamp(1.6rem, 6vh, 2.4rem); }
  .page-head .lead { margin-top: 10px; font-size: .9rem; }
  .band { min-height: min(96vh, 460px); }
  .band h2 { font-size: clamp(1.5rem, 5.6vh, 2.2rem); }
  .band .lead { font-size: .9rem; }
  .band .actions { gap: 10px; }
  .band .btn { padding: 12px 20px; font-size: .88rem; }
}
