@font-face {
  font-family: "Supreme Sans";
  src: url("assets/fonts/geist-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --paper: #f4f0e9;
  --paper-deep: #e5dccf;
  --ink: #211d1b;
  --ink-soft: #62584f;
  --cherry: #702d3d;
  --oxblood: #48252c;
  --champagne: #d7c5ae;
  --espresso: #302722;
  --line: rgba(33,29,27,.24);
  --line-inverse: rgba(244,240,233,.26);
  --white: #fcf9f4;
  --page-pad: clamp(1.2rem, 3.1vw, 3.8rem);
  --header-h: 5.2rem;
  --font: "Supreme Sans", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; overflow-x: clip; background: var(--paper); color: var(--ink); font-family: var(--font); font-size: 16px; text-rendering: optimizeLegibility; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button { border: 0; }
img { display: block; max-width: 100%; }
h1, h2, h3 { text-wrap: balance; }
input, textarea { caret-color: var(--cherry); }
::selection { background: var(--champagne); color: var(--ink); }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { border: 3px solid var(--ink); background: var(--paper); }
:focus-visible { outline: 2px solid currentColor; outline-offset: 5px; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: .65rem; left: .65rem; display: inline-flex; min-height: 2.75rem; align-items: center; padding: .75rem 1rem; background: var(--white); color: var(--ink); font-size: .72rem; font-weight: 700; transform: translateY(-180%); transition: transform 180ms var(--ease); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; display: grid; grid-template-columns: auto 1fr auto auto; min-height: var(--header-h); align-items: center; border-bottom: 1px solid rgba(16,16,20,.24); color: var(--ink); mix-blend-mode: normal; transition: color 250ms ease, background 250ms ease, border-color 250ms ease; }
.site-header::before { position: absolute; z-index: -1; inset: 0; background: var(--paper); content: ""; opacity: 0; transition: opacity 250ms ease; }
.site-header.is-scrolled::before { opacity: 1; }
.site-header.on-dark { color: var(--white); border-color: rgba(255,255,255,.3); }
.site-header.on-dark::before { background: var(--ink); }
.brand { display: inline-flex; align-items: center; padding-left: var(--page-pad); }
.site-header .brand { min-height: var(--header-h); align-items: center; }
.brand__viewport { display: flex; width: 13.2rem; min-height: 2.3rem; align-items: center; }
.brand__viewport img { width: 100%; height: auto; }
.site-header.on-dark .brand__viewport img,
body.menu-open .site-header .brand__viewport img { filter: invert(1); }
body.menu-open .site-header { color: var(--white); border-color: rgba(255,255,255,.3); }
.brand__supreme { font-size: 1.16rem; font-weight: 850; letter-spacing: -.04em; }
.brand__salon { position: relative; padding-left: .65rem; font-size: .7rem; font-weight: 500; letter-spacing: .08em; }
.brand__salon::before { position: absolute; top: 50%; left: 0; width: .52rem; height: 2px; background: var(--cherry); content: ""; transform: translateY(-50%) rotate(-24deg); transform-origin: center; }
.site-header.on-dark .brand__salon::before { background: var(--champagne); }
.utility-nav { display: flex; justify-content: center; gap: clamp(1rem, 2.4vw, 2.8rem); }
.utility-nav a, .book-link, .menu-toggle { font-size: .72rem; font-weight: 720; letter-spacing: .025em; text-transform: uppercase; }
.utility-nav a { position: relative; padding: 1rem .1rem; }
.utility-nav a::after { position: absolute; right: 0; bottom: .72rem; left: 0; height: 1px; background: currentColor; content: ""; transform: scaleX(0); transform-origin: right; transition: transform 260ms var(--ease); }
.utility-nav a:hover::after, .utility-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.book-link { display: grid; min-width: 9.5rem; min-height: var(--header-h); place-content: center; padding: 0 1.4rem; border-left: 1px solid currentColor; background: var(--ink); color: var(--white); line-height: 1.35; text-align: center; transition: background 220ms ease, color 220ms ease; }
.book-link span:last-child { font-size: .72rem; font-weight: 500; letter-spacing: .025em; text-transform: uppercase; }
.site-header.on-dark .book-link { background: var(--champagne); color: var(--ink); }
.book-link:hover, .book-link:focus-visible { background: var(--cherry); color: var(--white); }
.menu-toggle { display: grid; width: 4.8rem; min-height: var(--header-h); place-content: center; gap: .22rem; border-left: 1px solid currentColor; background: transparent; cursor: pointer; }
.menu-toggle__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.menu-toggle__line { width: 1.3rem; height: 1px; background: currentColor; transition: transform 240ms var(--ease); }
.menu-toggle[aria-expanded="true"] .menu-toggle__line:first-of-type { transform: translateY(2px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__line:last-of-type { transform: translateY(-2px) rotate(-45deg); }

.site-menu { position: fixed; z-index: 90; inset: 0; display: grid; grid-template-columns: 1fr 2fr; grid-template-rows: auto 1fr auto; gap: 2rem 4rem; padding: calc(var(--header-h) + 2.5rem) var(--page-pad) 2.5rem; background: var(--ink); color: var(--white); visibility: hidden; opacity: 0; clip-path: inset(0 0 100% 0); transition: opacity 220ms ease, visibility 220ms ease, clip-path 560ms var(--ease); }
.site-menu[aria-hidden="false"] { visibility: visible; opacity: 1; clip-path: inset(0); }
.site-menu > p { margin: .2rem 0; color: #c7beb4; font-family: var(--font); font-size: clamp(1.25rem, 2vw, 2rem); line-height: 1.05; }
.site-menu__links { display: flex; flex-direction: column; align-items: flex-start; }
.site-menu__links a { position: relative; font-family: var(--font); font-weight: 350; font-size: clamp(2.7rem, 6.1vw, 6rem); line-height: 1.12; letter-spacing: -.04em; }
.site-menu__links a::before { position: absolute; top: 50%; right: calc(100% + 1rem); width: 2.7rem; height: 1px; background: var(--cherry); content: ""; transform: scaleX(0); transform-origin: right; transition: transform 260ms var(--ease); }
.site-menu__links a:hover::before, .site-menu__links a:focus-visible::before { transform: scaleX(1); }
.site-menu__book { align-self: end; justify-self: start; padding: 1rem 1.25rem; border: 1px solid currentColor; font-size: .7rem; font-weight: 700; text-transform: uppercase; }
.site-menu > small { align-self: end; justify-self: end; color: #b5a99d; font-size: .72rem; text-transform: uppercase; }

.story { position: relative; height: 250svh; background: var(--paper); }
.story.is-session-complete { height: 100svh; }
.story.is-session-complete .campaign-title span,
.story.is-session-complete .campaign-intro__note,
.story.is-session-complete .campaign-actions,
.story.is-session-complete .ritual-index,
.story.is-session-complete .portrait-stage { animation: none; clip-path: none; }
.story-sticky { position: sticky; top: 0; height: 100svh; min-height: 42rem; overflow: hidden; isolation: isolate; color: var(--ink); background: var(--paper); }
.campaign-intro { position: absolute; top: 49%; left: var(--page-pad); width: 43%; max-width: 39rem; transform: translateY(-45%); }
.campaign-title { margin: 0; font-size: clamp(3.6rem, 6.7vw, 6rem); font-weight: 350; line-height: 1; letter-spacing: -.04em; text-wrap: initial; }
.campaign-title span { display: block; animation: title-slice 900ms var(--ease) both; }
.campaign-title span + span { animation-delay: 90ms; }
.campaign-intro__note { margin: 2rem 0 0; max-width: 32ch; color: var(--ink-soft); font-size: 1rem; line-height: 1.65; }
.campaign-intro__note, .campaign-actions, .ritual-index { animation: detail-in 700ms var(--ease) both; }
.campaign-intro__note { animation-delay: 280ms; }
.campaign-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.4rem; margin-top: 2rem; animation-delay: 360ms; }
.campaign-actions a, .film-toggle { display: inline-flex; min-height: 3.2rem; align-items: center; justify-content: center; font-size: .83rem; font-weight: 500; }
.campaign-actions a:first-child { padding: .9rem 1.3rem; background: var(--cherry); color: var(--white); }
.campaign-actions a:first-child:hover { background: var(--oxblood); }
.film-toggle { gap: .55rem; padding: .6rem 0; background: transparent; cursor: pointer; border-bottom: 1px solid currentColor; }
.film-toggle svg { width: 1rem; height: 1rem; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.film-toggle .film-icon-play { fill: currentColor; stroke: none; }
.film-toggle .film-icon-pause { display: none; }
.film-toggle[aria-pressed="true"] .film-icon-play { display: none; }
.film-toggle[aria-pressed="true"] .film-icon-pause { display: block; }
.ritual-index { display: grid; max-width: 34rem; grid-template-columns: repeat(3,minmax(0,1fr)); margin-top: 2.2rem; border-top: 1px solid var(--line); animation-delay: 440ms; }
.ritual-index button { position: relative; display: flex; min-height: 2.8rem; align-items: center; gap: .55rem; padding: .7rem .5rem .7rem 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--ink-soft); cursor: pointer; font-size: .74rem; text-align: left; }
.ritual-index button::after { position: absolute; right: .5rem; bottom: -1px; left: 0; height: 2px; background: var(--cherry); content: ""; transform: scaleX(0); transform-origin: left; transition: transform 320ms var(--ease); }
.ritual-index button[aria-pressed="true"] { color: var(--ink); font-weight: 650; }
.ritual-index button[aria-pressed="true"]::after { transform: scaleX(1); }
.ritual-index span { color: var(--cherry); font-size: .66rem; font-variant-numeric: tabular-nums; }
.stage-select { display: none; }
.portrait-stage { position: absolute; top: calc(var(--header-h) + 1.7rem); right: var(--page-pad); bottom: 10.25rem; left: 52%; overflow: hidden; background: #eee6da; animation: portrait-open 1100ms var(--ease) 120ms both; }
.portrait-layer { position: absolute; inset: -.2%; width: 100.4%; height: 100.4%; object-fit: cover; object-position: 50% 18%; opacity: 0; transform: scale(1.002); }
.portrait-layer:first-child { opacity: 1; }
.campaign-caption { position: absolute; right: var(--page-pad); bottom: 2.8rem; left: 52%; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: .7rem 1rem; min-height: 4rem; }
.story-copy { display: grid; grid-template-columns: auto 1fr; align-items: baseline; column-gap: .65rem; min-width: 0; }
.state-word { grid-column: 1 / -1; margin: 0 0 .35rem; color: var(--ink-soft); font-size: .75rem; font-weight: 500; }
.beat-title { margin: 0; font-size: clamp(1.1rem, 1.8vw, 1.65rem); font-weight: 400; line-height: 1.15; letter-spacing: -.025em; }
.beat-follow { margin: 0; max-width: 20ch; font-size: .8rem; line-height: 1.5; color: var(--ink-soft); }
.campaign-caption__control { display: flex; align-items: center; flex-shrink: 0; gap: 1.25rem; }
.story-progress { font-size: .7rem; font-variant-numeric: tabular-nums; color: var(--ink-soft); }
.next-look { display: inline-flex; min-height: 2.75rem; align-items: center; gap: .6rem; padding: .5rem 0 .5rem .5rem; background: transparent; cursor: pointer; font-size: .8rem; }
.next-look svg { width: 1.25rem; height: 1.25rem; fill: none; stroke: currentColor; stroke-width: 1.25; }
.next-look:hover svg { transform: translateY(3px); }
.film-scrubber { position: relative; grid-column: 1 / -1; display: block; height: 1.25rem; cursor: ew-resize; }
.film-scrubber input { position: absolute; z-index: 2; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: inherit; }
.film-track { position: absolute; top: 50%; right: 0; left: 0; height: 1px; background: rgba(33,29,27,.22); transform: translateY(-50%); }
.film-track__fill { display: block; width: 100%; height: 2px; background: var(--cherry); transform: scaleX(0); transform-origin: left; }
.film-scrubber input:focus-visible + .film-track { outline: 2px solid var(--ink); outline-offset: 5px; }
.campaign-escape { position: absolute; bottom: 3.25rem; left: var(--page-pad); display: flex; align-items: center; gap: 1rem; color: var(--ink-soft); font-size: .72rem; }
.campaign-escape a { display: inline-flex; min-height: 2.75rem; align-items: center; border-bottom: 1px solid currentColor; color: var(--ink); font-weight: 650; }
.campaign-disclosure { position: absolute; right: var(--page-pad); bottom: .9rem; margin: 0; color: var(--ink-soft); font-size: .72rem; font-weight: 400; }
.chapter-rail { position: absolute; z-index: -1; inset: 0; }
.chapter { height: 41.666svh; }

.payoff { min-height: 92svh; display: grid; grid-template-columns: minmax(0,1.42fr) minmax(20rem,.58fr); padding: 0 var(--page-pad); background: var(--oxblood); color: var(--white); }
.payoff__statement { display: flex; flex-direction: column; justify-content: center; padding: 8rem clamp(3rem,8vw,9rem) 8rem 0; }
.payoff__statement > p { margin: 0 0 1.8rem; color: #e0c5ca; font-family: var(--font); font-size: 1rem; font-style: normal; }
.payoff h2 { margin: 0; font-family: var(--font); font-size: clamp(4.7rem, 10vw, 6rem); font-weight: 350; line-height: 1.02; letter-spacing: -.04em; }
.text-link { display: inline-flex; min-height: 2.75rem; align-items: center; margin-top: 3rem; padding-top: .35rem; border-bottom: 1px solid currentColor; font-size: .74rem; font-weight: 720; text-transform: uppercase; }
.payoff__facts { display: grid; align-content: center; border-left: 1px solid rgba(255,255,255,.28); }
.payoff__facts p { display: grid; min-height: 9rem; align-content: center; gap: .7rem; margin: 0; padding: 1.8rem clamp(1.5rem,3vw,3rem); border-bottom: 1px solid rgba(255,255,255,.28); }
.payoff__facts p:last-child { border-bottom: 0; }
.payoff__facts span { color: #e0c5ca; font-size: .72rem; }
.payoff__facts strong { max-width: 28ch; font-size: 1.05rem; font-weight: 500; line-height: 1.45; }

@keyframes title-slice {
  from { clip-path: inset(0 0 100% 0); transform: translateY(.3em); }
  to { clip-path: inset(0); transform: translateY(0); }
}
@keyframes detail-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes portrait-open {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0); }
}

.consultation, .services, .booking, .visit { padding: clamp(6.5rem, 11vw, 10rem) var(--page-pad); scroll-margin-top: var(--header-h); }
.consultation { background: var(--paper-deep); }
.consultation, .booking { padding-block: clamp(5.5rem, 7.5vw, 7.5rem); }
.chapter-heading { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(16rem,.45fr); align-items: end; gap: 4rem; margin-bottom: clamp(4rem, 7vw, 7rem); }
.chapter-heading h2 { max-width: 18ch; margin: 0; font-family: var(--font); font-size: clamp(3rem, 5.5vw, 5.2rem); font-weight: 350; line-height: 1.04; letter-spacing: -.035em; }
.chapter-heading > p { max-width: 34rem; margin: 0; font-size: 1rem; line-height: 1.65; }
.consultation-builder { border-top: 1px solid rgba(16,16,20,.38); }
.consultation-builder fieldset { display: grid; grid-template-columns: minmax(12rem,.45fr) 1fr; align-items: center; gap: 1rem; margin: 0; padding: 1.65rem 0; border: 0; border-bottom: 1px solid rgba(16,16,20,.38); }
.consultation-builder legend { float: left; width: 100%; font-family: var(--font); font-size: clamp(1.65rem, 2.7vw, 2.5rem); letter-spacing: -.03em; }
.consultation-builder fieldset > div { display: flex; flex-wrap: wrap; gap: .55rem; }
.consultation-builder button, .service-controls button { min-height: 2.8rem; padding: .7rem 1rem; border: 1px solid rgba(16,16,20,.52); border-radius: 999px; background: transparent; cursor: pointer; font-size: .8rem; font-weight: 500; }
.consultation-builder button[aria-pressed="true"], .service-controls button[aria-pressed="true"] { background: var(--ink); color: var(--white); }
.consultation-result { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 3.4rem; padding: 1.25rem 1.35rem; background: var(--ink); color: var(--white); }
.consultation-result div { display: grid; gap: .2rem; }
.consultation-result span { color: #c7beb4; font-size: .72rem; font-weight: 680; text-transform: uppercase; }
.consultation-result strong { font-family: var(--font); font-size: clamp(1.3rem, 2.2vw, 2rem); font-weight: 400; }
.consultation-result a { display: inline-flex; min-height: 2.75rem; align-items: center; padding-top: .3rem; border-bottom: 1px solid currentColor; font-size: .72rem; font-weight: 700; text-transform: uppercase; }

.audience-edit { scroll-margin-top: var(--header-h); }
.audience-panel { display: grid; min-height: 92svh; grid-template-columns: 42% 58%; }
.audience-panel figure { min-height: 50rem; margin: 0; overflow: hidden; }
.audience-panel img { width: 100%; height: 100%; object-fit: cover; }
.audience-panel__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(5rem, 9vw, 9rem) var(--page-pad); }
.audience-panel__copy h2 { margin: 0; font-family: var(--font); font-size: clamp(4.5rem, 9vw, 6rem); font-weight: 350; line-height: 1.02; letter-spacing: -.04em; }
.audience-panel__copy > p { max-width: 30rem; margin: 2rem 0 3rem; font-size: 1.04rem; line-height: 1.55; }
.audience-panel__copy nav { display: flex; flex-direction: column; border-top: 1px solid currentColor; }
.audience-panel__copy nav a { display: flex; min-height: 3.4rem; align-items: center; justify-content: space-between; border-bottom: 1px solid currentColor; font-size: .74rem; font-weight: 690; text-transform: uppercase; }
.audience-panel__copy nav a::after { content: ""; width: .55rem; height: .55rem; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg); margin-right: .2rem; }
.audience-panel--women { background: var(--champagne); }
.audience-panel--men { grid-template-columns: 58% 42%; background: var(--espresso); color: var(--white); }

.salon-world { display: grid; min-height: 100svh; grid-template-columns: minmax(0,1.55fr) minmax(22rem,.7fr); background: var(--ink); color: var(--white); scroll-margin-top: var(--header-h); }
.salon-world__main { display: grid; grid-template-rows: auto 1fr; }
.salon-world figure { margin: 0; overflow: hidden; }
.salon-world__facade { aspect-ratio: 1600 / 740; }
.salon-world figure > img { width: 100%; height: 100%; object-fit: cover; }
.salon-world__facade img { object-position: 50% 50%; }
.salon-world__detail img { object-position: 50% 46%; }
.salon-world__copy { display: grid; grid-template-columns: minmax(7rem,.3fr) 1fr; align-items: end; gap: clamp(2rem,5vw,6rem); padding: clamp(4rem,7vw,7rem) var(--page-pad); border-top: 1px solid var(--line-inverse); }
.salon-world__seal { width: clamp(6.5rem,9vw,9rem); height: auto; filter: invert(1); mix-blend-mode: screen; }
.salon-world__copy h2 { margin: 0; font-family: var(--font); font-size: clamp(3.2rem,6vw,5.8rem); font-weight: 350; line-height: 1.02; letter-spacing: -.04em; }
.salon-world__copy p { max-width: 30rem; margin: 2rem 0 0; color: #d4cbc3; font-size: 1rem; line-height: 1.6; }
.salon-world__copy .text-link { width: max-content; }

.provenance { display: grid; min-height: 78svh; grid-template-columns: minmax(18rem,.72fr) minmax(0,1.28fr); background: var(--champagne); color: var(--ink); }
.provenance__heritage { display: flex; min-height: 30rem; flex-direction: column; justify-content: center; padding: clamp(4rem,8vw,8rem) var(--page-pad); border-right: 1px solid var(--line); }
.provenance__heritage p, .provenance__heritage span { margin: 0; font-size: .76rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }
.provenance__heritage strong { margin: .3rem 0 .9rem; color: var(--oxblood); font-size: clamp(5rem,12vw,9rem); font-weight: 300; line-height: .82; letter-spacing: -.04em; }
.provenance__story { display: flex; flex-direction: column; justify-content: center; padding: clamp(5rem,9vw,9rem) var(--page-pad); }
.provenance__story h2 { margin: 0; font-size: clamp(3.2rem,6vw,5.8rem); font-weight: 350; line-height: 1.02; letter-spacing: -.04em; }
.provenance__story > p { max-width: 35rem; margin: 2rem 0 3.5rem; font-size: 1.05rem; line-height: 1.6; }
.provenance__story dl { margin: 0; border-top: 1px solid var(--line); }
.provenance__story dl > div { display: grid; grid-template-columns: minmax(7rem,.32fr) 1fr; gap: 1.2rem; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.provenance__story dt { font-size: .72rem; font-weight: 720; text-transform: uppercase; }
.provenance__story dd { margin: 0; line-height: 1.5; }

.services { background: var(--paper); }
.service-controls { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 2.5rem; }
.service-index { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 1fr minmax(7rem,.2fr) auto; align-items: center; gap: 1.5rem; min-height: 7.4rem; border-bottom: 1px solid var(--line); transition: background 200ms ease; }
.service-row[hidden] { display: none; }
.service-row > div { transition: transform 260ms var(--ease); }
.service-row:hover, .service-row:focus-within { background: var(--white); }
.service-row:hover > div, .service-row:focus-within > div { transform: translateX(.7rem); }
.service-row h3 { margin: 0; font-family: var(--font); font-size: clamp(1.8rem, 3.2vw, 3rem); font-weight: 400; line-height: 1.12; letter-spacing: -.035em; }
.service-row p { margin: .35rem 0 0; color: var(--ink-soft); font-size: .875rem; line-height: 1.5; }
.service-row > span { color: var(--ink-soft); font-size: .72rem; font-variant-numeric: tabular-nums; }
.service-row button { min-width: 5.7rem; min-height: 2.75rem; border: 1px solid var(--ink); border-radius: 999px; background: transparent; cursor: pointer; font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.service-row button:hover, .service-row button:focus-visible { background: var(--ink); color: var(--white); }

.method { display: grid; min-height: 100svh; grid-template-columns: 58% 42%; background: var(--ink); color: var(--white); scroll-margin-top: var(--header-h); }
.method figure { min-height: 42rem; margin: 0; }
.method img { width: 100%; height: 100%; object-fit: cover; }
.method__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(5rem, 8vw, 8rem) var(--page-pad); }
.method h2 { margin: 0 0 4rem; font-family: var(--font); font-size: clamp(3.2rem, 4.8vw, 4.6rem); font-weight: 350; line-height: 1.04; letter-spacing: -.04em; }
.method ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-inverse); }
.method li { display: grid; grid-template-columns: minmax(8rem,.65fr) 1fr; gap: 1.2rem; padding: 1.35rem 0; border-bottom: 1px solid var(--line-inverse); }
.method li strong { font-size: 1rem; font-weight: 500; line-height: 1.5; }
.method li span { color: #c7beb4; font-size: .9rem; line-height: 1.6; }

.colour-study { position: relative; min-height: 94svh; overflow: hidden; background: var(--oxblood); color: var(--white); }
.colour-study > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.colour-study::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(39,3,10,.82), rgba(39,3,10,.14) 58%, transparent); content: ""; }
.colour-study__copy { position: relative; z-index: 2; display: flex; min-height: 94svh; max-width: 42rem; flex-direction: column; justify-content: center; padding: 8rem var(--page-pad); }
.colour-study h2 { margin: 0; font-family: var(--font); font-size: clamp(4rem, 8vw, 6rem); font-weight: 350; line-height: 1.02; letter-spacing: -.04em; }
.colour-study p { max-width: 24rem; margin: 2rem 0; font-size: 1rem; line-height: 1.5; }
.colour-study button { align-self: flex-start; min-height: 3rem; padding: .75rem 1rem; border: 1px solid currentColor; background: transparent; color: inherit; cursor: pointer; font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.colour-study > span { position: absolute; z-index: 2; right: var(--page-pad); bottom: 1.4rem; font-size: .72rem; font-weight: 700; text-transform: uppercase; }

.booking { background: var(--paper-deep); }
.chapter-heading--booking { margin-bottom: clamp(3.2rem, 5vw, 5rem); border-bottom: 1px solid var(--line); padding-bottom: 2.5rem; }
.booking-shell { display: grid; grid-template-columns: minmax(12rem,.28fr) 1fr; min-height: 42rem; border-bottom: 1px solid var(--line); }
.booking-steps { display: flex; flex-direction: column; border-right: 1px solid var(--ink); }
.booking-steps button { display: grid; gap: .25rem; min-height: 8rem; align-content: center; padding: 1.3rem; border-bottom: 1px solid var(--line); background: transparent; color: rgba(16,16,20,.42); text-align: left; }
.booking-steps button:not(:disabled) { cursor: pointer; }
.booking-steps button[aria-current="step"] { background: var(--cherry); color: var(--white); }
.booking-steps span { font-size: .72rem; font-weight: 680; text-transform: uppercase; }
.booking-steps b { font-family: var(--font); font-size: 1.55rem; font-weight: 400; }
.booking-form { padding: clamp(2rem, 5vw, 5rem); }
.booking-pane { max-width: 58rem; }
.booking-pane__head > span, .booking-success > span { font-size: .72rem; font-weight: 720; text-transform: uppercase; }
.booking-pane h3 { max-width: 13ch; margin: .8rem 0 3rem; font-family: var(--font); font-size: clamp(2.35rem, 3.8vw, 3.6rem); font-weight: 350; line-height: 1.08; letter-spacing: -.035em; }
.booking-pane h3[tabindex="-1"]:focus { outline: 0; }
.booking-choice-group { margin: 0; padding: 0; border: 0; }
.booking-services { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid var(--line); }
.booking-services label { position: relative; min-width: 0; cursor: pointer; border-bottom: 1px solid var(--line); }
.booking-services label:nth-child(odd) { border-right: 1px solid var(--ink); }
.booking-services label:last-child:nth-child(odd) { grid-column: 1 / -1; border-right: 0; }
.booking-services input { position: absolute; width: 1px; height: 1px; min-height: 1px; opacity: 0; }
.booking-services label > span { display: flex; min-height: 4.8rem; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem .85rem; }
.booking-services input:checked + span { background: var(--ink); color: var(--white); }
.booking-services input:focus-visible + span { outline: 2px solid var(--ink); outline-offset: 4px; }
.booking-services strong { font-size: 1rem; font-weight: 500; line-height: 1.4; }
.booking-services small { color: var(--ink-soft); font-size: .72rem; line-height: 1.35; }
.booking-services input:checked + span small { color: #d8cfc6; }
.brief-field, .booking-fields label { display: grid; gap: .55rem; font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.brief-field { margin-top: 2.2rem; }
input, select, textarea { width: 100%; min-height: 3rem; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; font-size: 1rem; text-transform: none; }
input[readonly] { color: var(--ink-soft); cursor: default; }
textarea { min-height: 5rem; padding-top: .7rem; resize: vertical; }
input::placeholder, textarea::placeholder { color: rgba(16,16,20,.53); }
.booking-next, .booking-submit, .booking-success > button, .whatsapp-confirm, .call-confirm, .enquiry-actions button { min-height: 3.1rem; margin-top: 2.2rem; padding: .8rem 1.1rem; background: var(--ink); color: var(--white); cursor: pointer; font-size: .72rem; font-weight: 710; text-transform: uppercase; }
button:disabled { cursor: not-allowed; opacity: .38; }
.booking-fields { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 2rem; }
.booking-fields--contact label:last-of-type { grid-column: 1 / -1; }
.field-optional { margin-left: .35rem; color: var(--ink-soft); font-weight: 450; text-transform: none; }
.time-preference { margin: 2.2rem 0 0; padding: 0; border: 0; }
.time-preference legend { margin-bottom: .75rem; font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.time-preference > div { display: flex; flex-wrap: wrap; gap: .55rem; }
.time-preference label { position: relative; cursor: pointer; }
.time-preference input { position: absolute; width: 1px; height: 1px; min-height: 1px; opacity: 0; }
.time-preference span { display: inline-flex; min-height: 2.8rem; align-items: center; padding: .7rem 1rem; border: 1px solid rgba(16,16,20,.52); border-radius: 999px; font-size: .8rem; }
.time-preference input:checked + span { background: var(--ink); color: var(--white); }
.time-preference input:focus-visible + span { outline: 2px solid var(--ink); outline-offset: 4px; }
.booking-message { min-height: 1.25rem; margin: 1rem 0 0; font-size: .71rem; line-height: 1.5; }
.booking-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 2rem; }
.booking-actions > button:first-child { padding: .8rem 0; background: transparent; cursor: pointer; font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.booking-actions .booking-next, .booking-actions .booking-submit { margin-top: 0; }
.booking-summary { margin-bottom: 2rem; padding: 1.2rem; border: 1px solid var(--ink); font-family: var(--font); font-size: 1.2rem; line-height: 1.4; }
.consent { display: flex; align-items: flex-start; gap: .7rem; margin-top: 1.8rem; font-size: .7rem; line-height: 1.45; }
.consent input { width: 1rem; min-height: 1rem; margin: .15rem 0 0; accent-color: var(--ink); }
.consent a { text-decoration: underline; text-underline-offset: .2rem; }
.honeypot { position: absolute !important; left: -9999px; }
.booking-success { max-width: 43rem; scroll-margin-top: calc(var(--header-h) + 1rem); }
.booking-success__copy { max-width: 35rem; font-size: .92rem; line-height: 1.6; }
.enquiry-summary-label { display: grid; gap: .55rem; margin-top: 2rem; font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.enquiry-summary { min-height: 14rem; padding: 1rem; border: 1px solid var(--ink); background: rgba(252,249,244,.45); font-size: .85rem; line-height: 1.55; resize: vertical; }
.enquiry-actions { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.4rem; }
.enquiry-actions .whatsapp-confirm, .enquiry-actions .call-confirm, .enquiry-actions button { display: inline-flex; align-items: center; justify-content: center; margin: 0; }
.enquiry-actions .whatsapp-confirm { background: var(--white); color: var(--ink); border: 1px solid var(--ink); }
.enquiry-actions .call-confirm { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.enquiry-actions button { border: 1px solid var(--ink); }
.booking-success > button { background: transparent; color: var(--ink); border: 1px solid currentColor; }
.booking-mode { margin: 1.3rem 0 0; color: rgba(16,16,20,.66); font-size: .72rem; line-height: 1.5; }

.visit { min-height: 100svh; display: grid; grid-template-columns: 1fr minmax(20rem,.6fr); align-content: center; gap: 5rem; background: var(--paper); }
.visit__title h2 { margin: 0; font-family: var(--font); font-size: clamp(4rem, 8vw, 6rem); font-weight: 350; line-height: 1.02; letter-spacing: -.04em; }
.visit__title > p { margin: 2rem 0 0; font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.visit__details { margin: 0; border-top: 1px solid var(--line); }
.visit__details div { display: grid; grid-template-columns: minmax(7rem,.35fr) 1fr; gap: 1rem; padding: 1.35rem 0; border-bottom: 1px solid var(--line); }
.visit__details dt { font-size: .72rem; font-weight: 720; text-transform: uppercase; }
.visit__details dd { margin: 0; color: var(--ink-soft); font-size: 1rem; line-height: 1.6; }
.visit__details a { color: var(--ink); text-decoration: underline; text-underline-offset: .25rem; }
.visit__actions { grid-column: 2; display: flex; flex-wrap: wrap; gap: .7rem; }
.visit__actions a { min-height: 3rem; padding: .85rem 1rem; border: 1px solid var(--ink); font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.visit__actions a:last-child { background: var(--ink); color: var(--white); }
.visit footer { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr auto; align-items: end; gap: 2rem; margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.brand--footer { padding-left: 0; align-self: start; }
.brand--footer .brand__viewport { width: clamp(18rem,26vw,24rem); min-height: 0; }
.visit footer p { margin: 0; font-size: .72rem; line-height: 1.6; }
.visit footer p span { color: var(--ink-soft); }
.visit footer nav { display: flex; max-width: 32rem; flex-wrap: wrap; justify-content: flex-end; gap: .35rem 1.2rem; font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.visit footer nav a { display: inline-flex; min-width: 2.75rem; min-height: 2.75rem; align-items: center; justify-content: center; }

.legal-site-header { grid-template-columns: 1fr auto; }
.legal-header-link { display: inline-flex; min-height: var(--header-h); align-items: center; padding: 0 var(--page-pad); border-left: 1px solid var(--line); background: var(--ink); color: var(--white); font-size: .72rem; font-weight: 720; text-transform: uppercase; }
.legal-header-link:hover, .legal-header-link:focus-visible { background: var(--cherry); }
.legal-page { min-height: 100svh; padding: calc(var(--header-h) + clamp(4rem,8vw,8rem)) var(--page-pad) clamp(5rem,9vw,9rem); background: var(--paper); }
.legal-page__header { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(17rem,.45fr); align-items: end; gap: 4rem; padding-bottom: clamp(3rem,6vw,6rem); border-bottom: 1px solid var(--line); }
.legal-page h1 { max-width: 11ch; margin: 0; font-size: clamp(3.5rem,8vw,6rem); font-weight: 350; line-height: .98; letter-spacing: -.04em; }
.legal-page__header p { max-width: 34rem; margin: 0; color: var(--ink-soft); line-height: 1.65; }
.legal-page__body { display: grid; max-width: 70rem; grid-template-columns: minmax(11rem,.32fr) 1fr; gap: 4rem; padding-top: clamp(3.5rem,7vw,7rem); }
.legal-page__index { align-self: start; position: sticky; top: calc(var(--header-h) + 2rem); display: grid; gap: .25rem; }
.legal-page__index a { display: flex; min-height: 2.75rem; align-items: center; border-bottom: 1px solid var(--line); font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.legal-copy section { padding-bottom: 3rem; border-bottom: 1px solid var(--line); }
.legal-copy section + section { padding-top: 3rem; }
.legal-copy h2 { margin: 0 0 1.2rem; font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 400; line-height: 1.12; letter-spacing: -.03em; }
.legal-copy p, .legal-copy li { max-width: 70ch; color: var(--ink-soft); line-height: 1.7; }
.legal-copy ul { padding-left: 1.2rem; }
.legal-copy a { color: var(--ink); text-decoration: underline; text-underline-offset: .25rem; }
.legal-back { display: inline-flex; min-height: 3rem; align-items: center; margin-top: 3rem; padding: .8rem 1rem; border: 1px solid var(--ink); font-size: .72rem; font-weight: 700; text-transform: uppercase; }

@media (max-width: 900px) {
  .story { height: 240svh; }
  .story.is-session-complete { height: 100svh; }
  .chapter { height: 40svh; }
  .story-sticky { min-height: 42rem; }
  .campaign-intro { top: calc(var(--header-h) + 1.5rem); left: var(--page-pad); right: var(--page-pad); width: auto; max-width: none; transform: none; }
  .campaign-title { font-size: clamp(2.7rem, 7.8vw, 4.4rem); line-height: 1.02; }
  .campaign-title span { display: inline; }
  .campaign-title span + span::before { content: " "; }
  .campaign-intro__note { display: block; max-width: 28ch; margin-top: .75rem; font-size: .8rem; line-height: 1.4; }
  .campaign-actions { gap: 1.3rem; margin-top: .9rem; }
  .ritual-index { grid-template-columns: repeat(2,minmax(0,1fr)); margin-top: 1.3rem; }
  .campaign-actions a, .film-toggle { min-height: 2.8rem; font-size: .8rem; }
  .portrait-stage { top: calc(var(--header-h) + 14rem); right: var(--page-pad); bottom: 8.4rem; left: var(--page-pad); }
  .campaign-caption { right: var(--page-pad); left: var(--page-pad); bottom: 2.4rem; }
  .story-copy { display: block; }
  .beat-title { font-size: 1.3rem; }
  .beat-follow { display: none; }
  .campaign-caption__control { gap: .8rem; }
  .campaign-escape { right: var(--page-pad); bottom: .55rem; left: auto; }
  .campaign-escape span { display: none; }
  .campaign-escape a { min-height: 2.75rem; font-size: .68rem; }
  .campaign-disclosure { right: auto; left: var(--page-pad); bottom: .8rem; }
  :root { --page-pad: 1.1rem; --header-h: 4.45rem; }
  .site-header { grid-template-columns: 1fr auto auto; }
  .brand__viewport { width: 10.2rem; min-height: 0; }
  .utility-nav { display: none; }
  .book-link { min-width: 7.6rem; min-height: var(--header-h); padding: 0 .8rem; font-size: .7rem; }
  .menu-toggle { width: 3.25rem; min-height: var(--header-h); }
  .site-menu { grid-template-columns: 1fr; grid-template-rows: auto 1fr auto auto; gap: 1.3rem; padding-top: calc(var(--header-h) + 1.7rem); }
  .site-menu > p { font-size: 1rem; }
  .site-menu__links a { font-size: clamp(2.45rem, 10vw, 4.3rem); }
  .site-menu__book { align-self: auto; }
  .site-menu > small { justify-self: start; }
  .payoff { min-height: auto; grid-template-columns: 1fr; }
  .payoff__statement { padding: 7rem 0 5rem; }
  .payoff h2 { font-size: clamp(3.4rem, 14vw, 5.4rem); }
  .payoff__facts { border-top: 1px solid rgba(255,255,255,.28); border-left: 0; padding-bottom: 3rem; }
  .payoff__facts p { min-height: 7rem; padding-right: 0; padding-left: 0; }
  .consultation, .services, .booking, .visit { padding-block: 6.5rem; }
  .chapter-heading { grid-template-columns: 1fr; gap: 2.1rem; }
  .chapter-heading h2 { font-size: clamp(2.8rem, 9.5vw, 4.4rem); }
  .consultation-builder fieldset { grid-template-columns: 1fr; }
  .consultation-builder legend { margin-bottom: 1rem; }
  .consultation-result { align-items: flex-start; flex-direction: column; }
  .audience-panel, .audience-panel--men { min-height: auto; grid-template-columns: 1fr; }
  .audience-panel figure, .audience-panel--men figure { min-height: 35rem; }
  .audience-panel--men figure { order: 2; }
  .audience-panel--men .audience-panel__copy { order: 1; }
  .audience-panel__copy { min-height: 70svh; padding-block: 6rem; }
  .salon-world { min-height: auto; grid-template-columns: 1fr; }
  .salon-world__main { grid-template-rows: auto auto; }
  .salon-world__copy { grid-template-columns: minmax(6rem,.25fr) 1fr; }
  .salon-world__detail { height: min(110vw,46rem); }
  .provenance { min-height: auto; grid-template-columns: 1fr; }
  .provenance__heritage { min-height: 24rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-row { grid-template-columns: 1fr auto; gap: .8rem; min-height: 6.5rem; }
  .service-row > span { grid-column: 1; }
  .service-row > button { grid-row: 1 / 3; grid-column: 2; }
  .method { grid-template-columns: 1fr; }
  .method figure { min-height: 58vw; }
  .method__copy { padding-block: 6.5rem; }
  .colour-study__copy { min-height: 86svh; }
  .booking-shell { grid-template-columns: 1fr; }
  .booking-steps { flex-direction: row; border-right: 0; border-bottom: 1px solid var(--line); }
  .booking-steps button { min-height: 5.6rem; flex: 1; border-right: 1px solid var(--ink); border-bottom: 0; padding: .75rem; }
  .booking-steps button:last-child { border-right: 0; }
  .booking-steps b { font-size: 1.05rem; }
  .booking-form { padding: 2.5rem 0; }
  .booking-services { grid-template-columns: 1fr; }
  .booking-services label:nth-child(odd) { border-right: 0; }
  .booking-services label:last-child:nth-child(odd) { grid-column: auto; }
  .booking-fields { grid-template-columns: 1fr; gap: 1.4rem; }
  .booking-fields--contact label:last-of-type { grid-column: auto; }
  .slot-list { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .visit { grid-template-columns: 1fr; gap: 3rem; align-content: start; }
  .visit__title h2 { font-size: clamp(2.55rem, 9.5vw, 5rem); }
  .visit__actions { grid-column: 1; }
  .visit footer { grid-template-columns: 1fr; align-items: start; }
  .visit footer nav { justify-content: flex-start; }
  .legal-page__header, .legal-page__body { grid-template-columns: 1fr; gap: 2.5rem; }
  .legal-page__index { position: static; }
}

@media (min-width: 701px) and (max-width: 900px) {
  .story { height: 250svh; }
  .chapter { height: 41.666svh; }
  .campaign-intro { top: 49%; right: auto; left: var(--page-pad); width: 43%; max-width: 34rem; transform: translateY(-45%); }
  .campaign-title { font-size: clamp(2.6rem, 5.4vw, 4rem); line-height: 1.02; }
  .campaign-title span { display: block; }
  .campaign-title span + span::before { content: none; }
  .campaign-intro__note { display: block; margin-top: 1.5rem; font-size: .88rem; }
  .campaign-actions { align-items: flex-start; flex-direction: column; gap: .8rem; margin-top: 1.4rem; }
  .portrait-stage { top: calc(var(--header-h) + 1.5rem); right: var(--page-pad); bottom: 12rem; left: 52%; }
  .campaign-caption { right: var(--page-pad); bottom: 4rem; left: 52%; }
  .beat-follow { display: block; }
  .campaign-disclosure { right: auto; bottom: .7rem; left: var(--page-pad); }
}

@media (max-width: 700px) {
  .ritual-index { display: none; }
  .stage-select { display: grid; width: min(13rem,100%); gap: .35rem; margin-top: .8rem; color: var(--ink-soft); font-size: .68rem; font-weight: 700; text-transform: uppercase; }
  .stage-select select { min-height: 2.75rem; padding: 0 .7rem; border: 1px solid var(--line); background: var(--paper); color: var(--ink); font-size: .78rem; }
}

@media (max-width: 520px) {
  .campaign-title { font-size: clamp(2.35rem, 10.5vw, 3.4rem); }
  .campaign-title span { display: block; }
  .campaign-title span + span::before { content: none; }
  .campaign-actions { gap: 1.1rem; }
  .campaign-actions a:first-child { padding: .65rem .95rem; }
  .portrait-stage { top: calc(var(--header-h) + 16.8rem); bottom: 10rem; }
  .campaign-caption { bottom: 4rem; }
  .campaign-caption__control { gap: .65rem; }
  .next-look { font-size: .73rem; }
  .state-word { margin-bottom: .2rem; }
  .brand--footer { max-width: 100%; }
  .brand--footer .brand__viewport { width: min(100%,18rem); }
  .salon-world__copy { grid-template-columns: 1fr; align-items: start; padding-block: 4rem; }
  .salon-world__seal { width: 5.5rem; }
  .salon-world__copy h2 { font-size: clamp(2.8rem,13vw,4rem); }
  .salon-world__detail { height: 120vw; max-height: 40rem; }
  .service-row h3 { font-size: 1.65rem; }
  .service-row p { max-width: 28ch; line-height: 1.5; }
  .method li { grid-template-columns: 1fr; gap: .45rem; }
  .colour-study::after { background: linear-gradient(90deg, rgba(39,3,10,.88), rgba(39,3,10,.35)); }
  .colour-study__copy { justify-content: flex-end; padding-bottom: 6rem; }
  .booking-steps span { display: none; }
  .booking-steps b { font-size: .94rem; }
  .visit__details div { grid-template-columns: 1fr; gap: .45rem; }
}



@media (prefers-reduced-motion: reduce) {
  .story { height: 100svh; }
  .chapter { height: 16.666svh; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .campaign-title span, .campaign-intro__note, .campaign-actions, .ritual-index, .portrait-stage { animation: none !important; clip-path: none; opacity: 1; transform: none; }
}

.error-page { min-height: 100svh; padding: clamp(28px, 7vw, 96px); background: var(--ink); color: var(--paper); display: flex; flex-direction: column; justify-content: space-between; }
.error-page p { margin: 0; font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.error-page h1 { margin: auto 0; font-family: var(--font); font-size: clamp(4rem, 12vw, 10rem); font-weight: 400; line-height: .82; letter-spacing: -.04em; }
.error-page a { width: max-content; color: inherit; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; text-decoration-thickness: 1px; text-underline-offset: 6px; }
