/* ============================================================
   Strathcona Hair Co. — main.css
   Theme:  Nocturne (dark editorial)
   Type:   Bodoni Moda (display serif) + Hanken Grotesk (sans)
   ============================================================ */

/* ---------- @font-face (self-hosted) ---------- */
@font-face {
  font-family: "Bodoni Moda";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/bodoni-moda/bodoni-moda-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Bodoni Moda";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/bodoni-moda/bodoni-moda-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Bodoni Moda";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/bodoni-moda/bodoni-moda-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Bodoni Moda";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/bodoni-moda/bodoni-moda-latin-400-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Bodoni Moda";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/bodoni-moda/bodoni-moda-latin-500-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/hanken-grotesk/hanken-grotesk-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/hanken-grotesk/hanken-grotesk-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/hanken-grotesk/hanken-grotesk-latin-600-normal.woff2") format("woff2");
}

/* ---------- tokens ----------
   Theme is dark "Nocturne". --paper is the dark page; --ink is the warm-bone primary text.
   --sage is named for token parity across demos, but value is a soft blush — see ARCHITECTURE.md D4. */
:root {
  --paper:       #1a1712;
  --paper-2:     #221d16;
  --paper-3:     #2a241b;
  --panel:       #28221a;
  --ink:         #f1e9db;
  --ink-soft:    #bcb2a0;
  --ink-faint:   #8b8173;
  --sage:        #d3a395;
  --sage-deep:   #c08a7b;
  --sage-tint:   #2c2521;
  --sage-bright: #e3bcae;
  --on-accent:   #1a1712;
  --line:        #352f25;
  --line-soft:   #2a241d;

  --serif: "Bodoni Moda", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --mono:  ui-monospace, "SF Mono", "Roboto Mono", Menlo, monospace;

  --pad: clamp(20px, 5vw, 72px);
  --maxw: 1240px;
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--sage); color: var(--paper); }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section { padding: clamp(56px, 9vw, 132px) 0; }
.section--tight { padding: clamp(40px, 6vw, 80px) 0; }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sage-deep);
  margin: 0;
}
.display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.012em;
  margin: 0;
  font-size: clamp(52px, 9vw, 132px);
}
.display em, .serif em { font-style: italic; font-weight: 400; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; line-height: 1.04; margin: 0; }
.h-xl { font-size: clamp(44px, 6.4vw, 92px); line-height: 0.98; }
.h-lg { font-size: clamp(32px, 4.4vw, 60px); }
.h-md { font-size: clamp(25px, 3vw, 38px); }
.h-sm { font-size: clamp(20px, 2.2vw, 26px); }
.lede {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55; color: var(--ink-soft); font-weight: 400;
  max-width: 46ch; text-wrap: pretty;
}
.muted { color: var(--ink-soft); }
.faint { color: var(--ink-faint); }
p { text-wrap: pretty; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 15px; font-weight: 600; letter-spacing: 0.01em;
  padding: 15px 28px; border-radius: 999px; text-decoration: none; cursor: pointer;
  border: 1px solid transparent;
  transition: background .25s, color .25s, border-color .25s, transform .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--sage); color: var(--on-accent); }
.btn-primary:hover { background: var(--sage-bright); }
.btn-ghost  { background: transparent; color: var(--ink); border-color: color-mix(in srgb, var(--ink) 45%, transparent); }
.btn-ghost:hover { background: var(--ink); color: var(--on-accent); border-color: var(--ink); }
.btn-sage   { background: var(--ink); color: var(--on-accent); }
.btn-sage:hover { background: var(--sage); }
.btn-sm { padding: 11px 20px; font-size: 14px; }
.btn-lg { padding: 19px 36px; font-size: 17px; }
.btn .arw { font-family: var(--serif); font-style: italic; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px; text-decoration: none;
  color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 2px;
  transition: gap .2s, color .2s, border-color .2s;
  white-space: nowrap; flex: 0 0 auto;
}
.link-arrow:hover { gap: 14px; color: var(--sage-deep); border-color: var(--sage-deep); }

/* ---------- placeholders ---------- */
.ph {
  position: relative; width: 100%; overflow: hidden;
  background-color: var(--paper-2);
  background-image: repeating-linear-gradient(135deg, rgba(211,163,149,0.10) 0 2px, transparent 2px 12px);
  display: flex; align-items: center; justify-content: center;
}
.ph::before { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(211,163,149,0.20); }
.ph > span {
  position: relative; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  color: var(--sage-bright); text-transform: uppercase; text-align: center;
  background: rgba(12,10,8,0.5); padding: 6px 11px; border-radius: 3px; max-width: 80%;
}
.ph > img.fill {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; z-index: 0;
}
.ph > img.fill + span { z-index: 1; opacity: 0; pointer-events: none; }
.ph.dark { background-color: #15120d; background-image: repeating-linear-gradient(135deg, rgba(211,163,149,0.09) 0 2px, transparent 2px 12px); }
.ph.dark::before { border-color: rgba(211,163,149,0.16); }
.ph.dark > span  { color: var(--sage-bright); background: rgba(0,0,0,0.45); }
.ph--portrait  { aspect-ratio: 4 / 5; }
.ph--tall      { aspect-ratio: 3 / 4; }
.ph--taller    { aspect-ratio: 2 / 3; }
.ph--landscape { aspect-ratio: 4 / 3; }
.ph--wide      { aspect-ratio: 16 / 9; }
.ph--square    { aspect-ratio: 1 / 1; }
.ph--fill      { height: 100%; }

/* ---------- reveal on scroll ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(18px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1);
}
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- small shared components ---------- */
.tag {
  display: inline-flex; align-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--sage-deep);
}
.kicker-row { display: flex; align-items: center; gap: 14px; }
.kicker-row .dash { width: 28px; height: 1px; background: var(--sage); }

/* ============================================================
   Phase 2 — Chrome (header, mobile-menu, footer, page-hero, book-band)
   ============================================================ */

/* ---------- site header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.brandmark {
  font-family: var(--serif); font-weight: 600; font-size: 21px; letter-spacing: 0.005em;
  text-decoration: none; white-space: nowrap; flex: 0 0 auto; color: var(--ink);
}
.nav-links { display: flex; align-items: center; gap: 34px; flex: 0 0 auto; }
.nav-links a.navlink {
  font-size: 14.5px; font-weight: 500; text-decoration: none;
  color: var(--ink-soft); transition: color .2s; position: relative;
}
.nav-links a.navlink:hover,
.nav-links a.navlink[aria-current="page"] { color: var(--ink); }
.nav-links a.navlink[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--sage);
}
.nav-actions { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.nav-phone {
  font-size: 14.5px; font-weight: 600; text-decoration: none;
  color: var(--ink); white-space: nowrap;
}
.nav-phone:hover { color: var(--sage-deep); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; margin: -8px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--ink); margin: 5px 0; transition: transform .3s, opacity .3s; }
.site-header.menu-open .nav-toggle span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.site-header.menu-open .nav-toggle span:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }

/* ---------- mobile menu overlay ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 49;
  background: var(--paper);
  padding: 96px var(--pad) 48px;
  display: flex; flex-direction: column;
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.3,.8,.3,1);
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu .inner { display: flex; flex-direction: column; flex: 1; }
.mobile-menu a.mlink {
  font-family: var(--serif); font-size: 40px; padding: 14px 0;
  text-decoration: none; border-bottom: 1px solid var(--line); color: var(--ink);
}
.mobile-menu .m-actions {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 14px;
  padding-top: 32px;
}

/* ---------- footer ---------- */
.site-footer {
  background: #131009; color: var(--ink);
  padding: clamp(56px, 8vw, 96px) 0 40px;
  border-top: 1px solid var(--line);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .fmark { font-family: var(--serif); font-size: 30px; }
.footer-brand p { color: #b6b0a3; max-width: 32ch; margin: 16px 0 0; font-size: 15px; }
.footer-col h4 {
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: #9a9488; font-weight: 600; margin: 0 0 18px;
}
.footer-col a, .footer-col p {
  color: #d8d2c5; text-decoration: none; font-size: 15px;
  display: block; margin: 0 0 10px;
}
.footer-col a:hover { color: var(--ink); }
.footer-credits {
  margin-top: clamp(40px, 5vw, 56px);
  padding-top: 28px;
  border-top: 1px solid rgba(245,241,232,0.10);
}
.footer-credits h4 {
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: #9a9488; font-weight: 600; margin: 0 0 14px;
}
.footer-credits ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.footer-credits li { color: #8f897d; font-size: 13.5px; line-height: 1.5; }
.footer-credits a { color: #b6b0a3; text-decoration: underline; text-underline-offset: 2px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 20px; flex-wrap: wrap;
  margin-top: clamp(48px, 7vw, 80px);
  padding-top: 28px;
  border-top: 1px solid rgba(245,241,232,0.14);
}
.footer-bottom .disclaimer { color: #8f897d; font-size: 13.5px; }
.footer-bottom .credit     { color: #8f897d; font-size: 13.5px; }

/* ---------- page-hero (interior pages — 2-col with optional callout) ---------- */
.page-hero {
  padding-top: clamp(48px, 7vw, 96px);
  padding-bottom: clamp(36px, 5vw, 60px);
}
.page-hero .grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}
.page-hero h1   { max-width: 11ch; }
.page-hero .lede { padding-bottom: 8px; max-width: 56ch; }

/* page-hero callout (consult prompt) */
.callout {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--sage-tint);
  border: 1px solid color-mix(in srgb, var(--sage) 35%, var(--line));
  border-radius: 4px;
  padding: 22px 26px;
}
.callout .mark { font-family: var(--serif); font-size: 26px; line-height: 1; color: var(--sage-deep); flex: 0 0 auto; }
.callout p { margin: 0; font-size: 15.5px; color: var(--ink-soft); }
.callout strong { color: var(--ink); font-weight: 600; }

@media (max-width: 820px) {
  .page-hero .grid { grid-template-columns: 1fr; align-items: start; }
}

/* ---------- book-band (bottom CTA, panel variant) ---------- */
.book-band {
  background: var(--panel); color: var(--ink); border-radius: 4px;
  padding: clamp(36px, 5vw, 72px);
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.book-band .display, .book-band .bb-display { color: var(--ink); font-size: clamp(38px, 5vw, 68px); line-height: 1; }
.book-band .lede   { color: #c8c2b5; }
.book-band .bb-eyebrow { color: var(--sage-bright); margin-bottom: 14px; }
.book-band .bb-lead .bb-display { margin-top: 0; }
.book-band-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.book-band .bb-ghost { color: var(--ink); border-color: rgba(245,241,232,0.5); }
.book-band .bb-ghost:hover { background: var(--ink); color: var(--on-accent); border-color: var(--ink); }

/* Home variant: rich info-rows on right */
.book-band--home .book-info { display: grid; gap: 22px; }
.book-band--home .book-info .row {
  display: grid; grid-template-columns: 96px 1fr; gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(245,241,232,0.16);
}
.book-band--home .book-info .row:last-child { border-bottom: 0; padding-bottom: 0; }
.book-band--home .book-info .lbl {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: #9a9488; padding-top: 3px;
}
.book-band--home .book-info .val { font-size: 15.5px; color: #e7e1d4; }
.book-band--home .book-info .val a { color: inherit; }

@media (max-width: 900px) {
  .book-band { grid-template-columns: 1fr; }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .footer-top { grid-template-columns: 1fr; }
  .nav { height: 64px; }
  .nav-actions .btn { display: none; }
}

/* ============================================================
   Phase 3 — Home
   ============================================================ */

/* ---------- home hero (type-forward, centred) ---------- */
.hero { text-align: center; padding: clamp(48px, 8vw, 104px) 0 clamp(40px, 6vw, 72px); }
.hero .display  { margin: 22px auto 0; max-width: 16ch; }
.hero .lede     { margin: 28px auto 0; text-align: center; }
.hero-actions   { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.hero-meta      { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin-top: 40px; color: var(--ink-faint); font-size: 13px; letter-spacing: 0.04em; }
.hero-meta span { display: inline-flex; gap: 10px; align-items: center; }

/* ---------- hero strip (full-bleed 3-up) ---------- */
.hero-strip {
  display: grid; grid-template-columns: 1fr 1.3fr 1fr;
  gap: 3px;
  height: clamp(280px, 42vw, 520px);
  margin-top: clamp(20px, 4vw, 44px);
}
.hero-strip .ph { height: 100%; }

/* ---------- services strip ---------- */
.svc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.svc-cell {
  background: var(--paper); padding: 36px 28px 32px;
  display: flex; flex-direction: column;
  min-height: 230px;
  transition: background .3s;
}
.svc-cell:hover { background: var(--paper-2); }
.svc-cell .num { font-family: var(--mono); font-size: 12px; color: var(--sage-deep); letter-spacing: 0.1em; }
.svc-cell h3   { margin-top: 18px; }
.svc-cell p    { font-size: 14.5px; color: var(--ink-soft); margin: 12px 0 0; }
.svc-cell .from { margin-top: auto; font-size: 13px; color: var(--ink-faint); font-family: var(--mono); letter-spacing: 0.04em; padding-top: 18px; }

/* ---------- stylists strip (home) ---------- */
.styl-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: clamp(32px, 4vw, 52px); }
.styl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); }
.styl-card { text-decoration: none; color: inherit; display: block; }
.styl-card .ph { margin-bottom: 16px; transition: filter .4s; }
.styl-card:hover .ph { filter: brightness(0.94); }
.styl-card .nm { font-family: var(--serif); font-size: 22px; }
.styl-card .spec { font-size: 13.5px; color: var(--ink-soft); margin-top: 4px; }

/* ---------- portfolio gallery ---------- */
.gallery {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: clamp(10px, 1.4vw, 18px);
}
.g-span-4  { grid-column: span 4;  }
.g-span-5  { grid-column: span 5;  }
.g-span-6  { grid-column: span 6;  }
.g-span-7  { grid-column: span 7;  }
.g-span-8  { grid-column: span 8;  }
.g-span-12 { grid-column: span 12; }

/* ---------- statement ---------- */
.statement { max-width: 22ch; }
.statement-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 6vw, 90px); align-items: start; }
.statement-body p { font-size: clamp(18px, 1.7vw, 22px); line-height: 1.55; color: var(--ink-soft); }
.statement-body p + p { margin-top: 1.1em; }
.statement-body .sign { margin-top: 28px; font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--ink); }

/* ---------- home responsive ---------- */
@media (max-width: 900px) {
  .svc-grid       { grid-template-columns: repeat(2, 1fr); }
  .styl-grid      { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .styl-head      { flex-direction: column; align-items: flex-start; }
  .statement-wrap { grid-template-columns: 1fr; gap: 24px; }
  .gallery .g-span-5, .gallery .g-span-7 { grid-column: span 12; }
  .gallery .g-span-4, .gallery .g-span-6, .gallery .g-span-8 { grid-column: span 4; }
  .hero-strip { grid-template-columns: 1fr 1fr; }
  .hero-strip .ph:nth-child(3) { display: none; }
}
@media (max-width: 560px) {
  .svc-grid  { grid-template-columns: 1fr; }
  .styl-grid { grid-template-columns: 1fr 1fr; }
  .gallery .g-span-4, .gallery .g-span-6, .gallery .g-span-8 { grid-column: span 12; }
  .hero-strip { grid-template-columns: 1fr; height: auto; }
  .hero-strip .ph { aspect-ratio: 3/2; height: auto; }
  .hero-strip .ph:nth-child(3) { display: flex; }
}

/* ============================================================
   Phase 4 — Services
   ============================================================ */

/* ---------- price categories (sticky head) ---------- */
.price-cat {
  display: grid; grid-template-columns: 0.85fr 1.4fr;
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(36px, 5vw, 64px) 0;
  border-top: 1px solid var(--line);
}
.price-cat:last-of-type { border-bottom: 1px solid var(--line); }
.price-cat .cat-head { position: sticky; top: 100px; align-self: start; }
.price-cat .cat-head .idx { font-family: var(--mono); font-size: 12px; color: var(--sage-deep); letter-spacing: 0.1em; }
.price-cat .cat-head h2  { margin: 12px 0 14px; }
.price-cat .cat-head p   { font-size: 14.5px; color: var(--ink-soft); margin: 0; max-width: 30ch; }

.price-list { display: flex; flex-direction: column; }
.price-row  {
  display: grid; grid-template-columns: 1fr auto;
  gap: 20px; align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}
.price-row:last-child { border-bottom: 0; }
.price-row .pname { font-size: 17.5px; font-weight: 600; }
.price-row .pdesc { font-size: 14px; color: var(--ink-soft); margin-top: 3px; }
.price-row .pprice { font-family: var(--serif); font-size: 22px; white-space: nowrap; }
.price-row .pprice small {
  font-family: var(--sans); font-size: 12px; color: var(--ink-faint);
  font-weight: 500; letter-spacing: 0.04em; margin-right: 4px; text-transform: uppercase;
}

.note-line { font-size: 14.5px; color: var(--ink-faint); max-width: 60ch; }

/* ---------- first-time colour expectations panel ---------- */
.expect { background: var(--panel); color: var(--ink); }
.expect .eyebrow { color: var(--sage-bright); }
.expect h2 { color: var(--ink); }
.expect-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 44px);
  margin-top: clamp(36px, 5vw, 56px);
}
.expect-step .step-n { font-family: var(--serif); font-size: 40px; color: var(--sage-bright); line-height: 1; }
.expect-step h3 { color: var(--ink); margin: 16px 0 10px; }
.expect-step p  { color: #c8c2b5; font-size: 15px; margin: 0; }

@media (max-width: 820px) {
  .price-cat { grid-template-columns: 1fr; gap: 18px; }
  .price-cat .cat-head { position: static; }
  .expect-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   Phase 5 — Stylists
   ============================================================ */

/* ---------- stylist alternating layout ---------- */
.stylist {
  padding: clamp(48px, 7vw, 100px) 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 90px;
}
.stylist-main {
  display: grid; grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.stylist-portrait .ph { box-shadow: 0 1px 0 var(--line); }

.stylist-content .idx {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em;
  color: var(--sage-deep);
}
.stylist-content h2 {
  font-size: clamp(40px, 5vw, 68px); margin: 14px 0 0; line-height: 0.98;
}
.stylist-meta {
  display: flex; flex-wrap: wrap; gap: 10px 14px;
  align-items: center; margin: 20px 0 0;
}
.stylist-meta .yrs {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink);
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: 999px; padding: 6px 13px;
}
.stylist-meta .known { font-size: 15px; color: var(--ink-soft); }
.stylist-quote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(20px, 2.1vw, 27px); line-height: 1.4;
  color: var(--ink); margin: 26px 0 0;
  max-width: 32ch; text-wrap: pretty;
}
.stylist-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center; margin-top: 30px;
}

/* ---------- work strip (3-up under each stylist) ---------- */
.work-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.4vw, 18px);
  margin-top: clamp(28px, 4vw, 44px);
}
.work-strip .wlabel {
  grid-column: 1 / -1;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-faint);
  margin-bottom: 2px;
}

/* ---------- closer (bottom band on stylists page) ---------- */
.closer { background: var(--panel); color: var(--ink); text-align: center; }
.closer .eyebrow { color: var(--sage-bright); }
.closer .display { color: var(--ink); margin: 14px auto 0; max-width: 16ch; }
.closer .lede    { color: #c8c2b5; margin: 22px auto 0; text-align: center; }
.closer-actions  { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

@media (max-width: 820px) {
  .stylist-main { grid-template-columns: 1fr; gap: 22px; }
  .stylist-portrait { max-width: 420px; }
  .work-strip { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   Phase 6 — Book
   ============================================================ */

.book-hero { padding: clamp(48px, 7vw, 96px) 0 0; }
.book-hero h1 { max-width: 13ch; }

.book-primary {
  display: grid; grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(20px, 2.4vw, 28px);
  margin-top: clamp(36px, 5vw, 56px);
}
.book-card {
  border-radius: 4px;
  padding: clamp(28px, 3.4vw, 44px);
  display: flex; flex-direction: column;
}
.book-card.dark    { background: var(--panel);   color: var(--ink); }
.book-card.outline { background: var(--paper-2); border: 1px solid var(--line); }
.book-card .k {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--sage);
}
.book-card.outline .k { color: var(--sage-deep); }
.book-card h2          { margin: 14px 0 0; }
.book-card.dark h2     { color: var(--ink); }
.book-card p           { font-size: 15.5px; margin: 12px 0 0; }
.book-card.dark p      { color: #c8c2b5; }
.book-card.outline p   { color: var(--ink-soft); }
.book-card .spacer     { flex: 1; min-height: 22px; }
.phone-big {
  font-family: var(--serif);
  font-size: clamp(34px, 4.2vw, 52px);
  text-decoration: none;
  color: var(--ink);
  display: inline-block; margin-top: 6px; line-height: 1;
}
.phone-big:hover { color: var(--sage-deep); }

/* ---------- consultation note callout ---------- */
.consult-note {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--sage-tint);
  border: 1px solid color-mix(in srgb, var(--sage) 35%, var(--line));
  border-radius: 4px;
  padding: 24px 28px;
  margin-top: clamp(20px, 2.4vw, 28px);
}
.consult-note .mark {
  font-family: var(--serif); font-size: 30px; line-height: 1;
  color: var(--sage-deep); flex: 0 0 auto;
}
.consult-note p { margin: 0; font-size: 16px; color: var(--ink-soft); max-width: 70ch; }
.consult-note strong { color: var(--ink); }

/* ---------- hours table ---------- */
.info-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.hours-table {
  width: 100%; border-collapse: collapse; margin-top: 20px;
}
.hours-table tr        { border-bottom: 1px solid var(--line-soft); }
.hours-table tr.today  { background: var(--paper-2); }
.hours-table td        { padding: 15px 4px; font-size: 16px; }
.hours-table td:first-child { font-weight: 600; }
.hours-table td:last-child  { text-align: right; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hours-table td .pill {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--sage-deep); margin-left: 8px;
}
.hours-table td.closed { color: var(--ink-faint); }

/* ---------- map ---------- */
.map-wrap { border-radius: 4px; overflow: hidden; border: 1px solid var(--line); }
.map {
  position: relative; aspect-ratio: 16 / 11;
  background-color: var(--paper-2);
  /* stylised street grid fallback */
  background-image:
    linear-gradient(rgba(211,163,149,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(211,163,149,0.12) 1px, transparent 1px),
    linear-gradient(rgba(211,163,149,0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(211,163,149,0.24) 1px, transparent 1px);
  background-size: 26px 26px, 26px 26px, 130px 130px, 130px 130px;
}
.map .road { position: absolute; background: var(--paper); }
.map .road.h { left: 0; right: 0; height: 16px; top: 54%; box-shadow: 0 0 0 1px var(--line); }
.map .road.v { top: 0; bottom: 0; width: 22px; left: 38%; box-shadow: 0 0 0 1px var(--line); }
.map .pin {
  position: absolute; left: 38%; top: 54%;
  transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center;
  z-index: 2;
}
.map .pin .dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--sage-deep);
  border: 3px solid var(--paper);
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
.map .pin .lbl {
  margin-top: 6px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--panel); color: var(--ink);
  padding: 4px 8px; border-radius: 3px; white-space: nowrap;
}
/* When a real map image is wired (Phase 7), the .map--image variant
   drops the CSS street-grid backdrop in favour of the photographic tile. */
.map--image { background-image: none; background-color: var(--paper-2); }
.map--image > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; z-index: 0; }

.map-foot {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 16px 18px;
  background: var(--paper); border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.map-foot .addr        { font-size: 14.5px; }
.map-foot .addr strong { font-weight: 600; }

.park { font-size: 13px; color: var(--ink-faint); }

/* ---------- cancellation policy ---------- */
.policy {
  display: flex; gap: 16px; align-items: baseline;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: clamp(40px, 6vw, 72px);
}
.policy .plabel {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-faint);
  flex: 0 0 auto; padding-top: 3px;
}
.policy p { margin: 0; font-size: 16px; color: var(--ink-soft); max-width: 60ch; }

@media (max-width: 820px) {
  .book-primary { grid-template-columns: 1fr; }
  .info-grid    { grid-template-columns: 1fr; }
}
