/* Maha Beauty Salon: site styles */

/* Archivo, self-hosted (variable width and weight) */
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 400 900; font-stretch: 100% 125%; font-display: swap; src: url(/assets/fonts/archivo-latin.woff2) format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 400 900; font-stretch: 100% 125%; font-display: swap; src: url(/assets/fonts/archivo-latin-ext.woff2) format("woff2"); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

:root {
  --l1: #0d0a09;
  --l2: #120D0B;
  --ink: #1A1411;
  --ink-2: #2A1F1A;
  --muted: #6B5B50;
  --muted-2: #4e4037;
  --ivory: #F3EEE6;
  --paper: #FAF7F2;
  --sand: #EADFD1;
  --stone: #DFCFC6;
  --honey: #C9A26F;
  --gold: #D2AE7C;
  --rule: rgba(26, 20, 17, .14);
  --rule-d: rgba(243, 238, 230, .16);
  --edge: #15100a;
  --fg: #F3EEE6;
  --wide: "wdth" 125;
  --nav-h: 72px;
  --grad: linear-gradient(90deg, #45311f, #6B4A33 20%, #A8784C 42%, #D2AE7C 66%, #F3EEE6 90%);
  --levels: linear-gradient(90deg, #0d0a09 0 10%, #1f1612 10% 20%, #33241b 20% 30%, #4a3424 30% 40%, #6b4a33 40% 50%, #8c6442 50% 60%, #a8804f 60% 70%, #c3a896 70% 80%, #e0c9a2 80% 90%, #f1e9dc 90%);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--nav-h) + 12px); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 1.0625rem/1.6 "Archivo", system-ui, sans-serif;
  font-variation-settings: "wdth" 100;
  overflow-x: clip;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--gold); color: var(--ink); }

.wrap { width: min(100% - 40px, 1240px); margin-inline: auto; }
h1, h2, h3 { margin: 0; font-weight: 800; font-stretch: 125%; font-variation-settings: var(--wide); letter-spacing: -0.02em; line-height: .98; text-wrap: balance; }
h2 { font-size: clamp(2.2rem, 5.6vw, 4.6rem); }
h3 { font-size: 1.25rem; line-height: 1.15; letter-spacing: -0.01em; }
p { margin: 0 0 14px; }
.lede { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--muted); max-width: 46ch; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--ink); color: var(--ivory); padding: 10px 16px; border-radius: 999px; text-decoration: none; font-weight: 600; transition: top .2s; }
.skip:focus { top: 12px; }

/* Buttons and links */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 12px 24px; border-radius: 999px; font: 600 1rem/1 "Archivo", sans-serif; text-decoration: none; border: 1.5px solid currentColor; background: transparent; cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.btn:hover { background: rgba(26, 20, 17, .06); }
.btn.solid { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.btn.solid:hover { background: #3B2A20; border-color: #3B2A20; }
.btn.light { color: var(--ivory); }
.btn.light:hover { background: rgba(243, 238, 230, .1); }
.btn.solid-light { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.btn.solid-light:hover { background: #fff; border-color: #fff; }
.text-link { font-weight: 600; text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 5px; text-decoration-color: var(--honey); }
.text-link:hover { text-decoration-color: currentColor; }
.row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Nav ---------- */
.nav { position: fixed; inset: 0 0 auto; z-index: 50; color: var(--fg); transition: color .4s, background .3s, box-shadow .3s; }
.nav-in { display: flex; align-items: center; gap: 28px; height: var(--nav-h); }
.brand { display: block; margin-right: auto; text-decoration: none; padding: 4px 0; }
.brand-mark { display: block; width: 118px; height: 58px; background: currentColor; -webkit-mask: url(/assets/brand/lockup.svg) left center / contain no-repeat; mask: url(/assets/brand/lockup.svg) left center / contain no-repeat; }
.links { display: flex; gap: 26px; font-size: .95rem; }
.links a { text-decoration: none; opacity: .88; padding: 6px 0; }
.links a:hover, .links a[aria-current="page"] { opacity: 1; text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 1.5px; }
.nav .book { border: 1.5px solid currentColor; border-radius: 999px; padding: 9px 20px; font-weight: 600; font-size: .95rem; text-decoration: none; }
.nav .book:hover { background: currentColor; }
.nav .book:hover span { color: var(--edge); }
.has-hero .nav:not(.solid) .brand, .has-hero .nav:not(.solid) .links, .has-hero .nav:not(.solid) .menu-btn, .rail .read { filter: drop-shadow(0 0 5px var(--edge)) drop-shadow(0 0 2px var(--edge)); }
.nav.solid { color: var(--ink); background: rgba(250, 247, 242, .88); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--rule); }
.nav.solid .book:hover span { color: var(--paper); }
.menu-btn { display: none; align-items: center; gap: 10px; min-height: 44px; padding: 0 2px; border: 0; background: none; cursor: pointer; font-weight: 600; font-size: .95rem; }
.menu-btn i { position: relative; display: block; width: 22px; height: 1.5px; background: currentColor; }
.menu-btn i::before, .menu-btn i::after { content: ""; position: absolute; left: 0; width: 22px; height: 1.5px; background: currentColor; transition: transform .3s; }
.menu-btn i::before { top: -6px; }
.menu-btn i::after { top: 6px; }
@media (max-width: 860px) {
  .links { display: none; }
  .menu-btn { display: inline-flex; }
  .nav-in { gap: 18px; }
  .brand-mark { width: 92px; height: 45px; }
}

/* Full-screen menu on phones */
.menu { position: fixed; inset: 0; z-index: 60; background: var(--l2); color: var(--ivory); display: flex; flex-direction: column; padding: 0 20px calc(28px + env(safe-area-inset-bottom)); overflow-y: auto; }
.menu[hidden] { display: none; }
.menu-top { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }
.menu-close { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; border: 0; background: none; cursor: pointer; font-weight: 600; }
.menu nav { display: grid; gap: 2px; margin: 28px 0 auto; }
.menu nav a { font-weight: 800; font-stretch: 125%; font-variation-settings: var(--wide); font-size: clamp(2.2rem, 11vw, 3.4rem); line-height: 1.12; letter-spacing: -0.03em; text-decoration: none; }
.menu nav a[aria-current="page"] { color: var(--gold); }
.menu-foot { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--rule-d); display: grid; gap: 18px; }
.menu-foot p { margin: 0; opacity: .8; line-height: 1.5; }
.menu-foot .btn { justify-self: start; }
.menu-strip { height: 6px; border-radius: 3px; background: var(--levels); margin-top: 26px; }

/* ---------- Page header (inner pages) ---------- */
.page-head { background: var(--l2); color: var(--ivory); padding: calc(var(--nav-h) + clamp(48px, 9vw, 120px)) 0 clamp(48px, 7vw, 88px); position: relative; }
.page-head::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 6px; background: var(--levels); }
.page-head h1 { font-size: min(clamp(3rem, 9vw, 7.4rem), 12vw); line-height: .9; letter-spacing: -0.035em; max-width: 12ch; }
.page-head .lede { color: rgba(243, 238, 230, .78); margin-top: 26px; font-size: clamp(1.1rem, 1.6vw, 1.35rem); max-width: 52ch; }
.page-head .row { margin-top: 30px; }

/* ---------- Hero scrub ---------- */
.scrub { position: relative; height: 480vh; background: var(--edge); }
.stage { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; background: var(--edge); color: var(--fg); transition: color .45s; }
.stage canvas, .stage .poster { position: absolute; inset: 0; width: 100%; height: 100%; }
.stage .poster { object-fit: cover; }
.stage::after { content: ""; position: absolute; inset: auto 0 0; height: 22%; background: linear-gradient(to bottom, transparent, var(--edge)); pointer-events: none; }
.copy { position: absolute; left: max(20px, calc((100vw - 1240px) / 2)); top: 50%; transform: translateY(-50%); width: min(42vw, 520px); z-index: 2; }
.cap { position: absolute; top: 0; left: 0; width: 100%; transform: translateY(-50%); opacity: 0; translate: 0 18px; transition: opacity .5s ease, translate .6s ease; pointer-events: none; }
.cap.on { opacity: 1; translate: 0 0; pointer-events: auto; }
.cap .lv { display: block; font-size: 1rem; font-weight: 600; opacity: .8; margin-bottom: 10px; font-variant-numeric: tabular-nums; }
.cap .nm { display: block; font-weight: 800; font-stretch: 125%; font-variation-settings: var(--wide); font-size: clamp(3rem, 7.4vw, 7rem); line-height: .92; letter-spacing: -0.03em; }
.cap p { margin-top: 18px; font-size: 1.12rem; max-width: 30ch; opacity: .9; }
.cap h1 { font-size: clamp(3.2rem, 7.8vw, 7.4rem); line-height: .9; letter-spacing: -0.035em; }
.cap .intro-p { font-size: 1.15rem; max-width: 30ch; margin-top: 22px; }
.cue { display: inline-flex; align-items: center; gap: 12px; margin-top: 26px; font-weight: 600; font-size: .95rem; }
.cue i { display: block; width: 1.5px; height: 38px; background: currentColor; transform-origin: top; animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 0% { transform: scaleY(0); } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
.cap .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.cap .note { font-size: .85rem; opacity: .7; margin-top: 18px; }
.cap.final .nm { font-size: clamp(2.6rem, 5.2vw, 4.8rem); line-height: .95; }
.rail { position: absolute; right: 28px; top: 50%; transform: translateY(-50%); z-index: 2; display: flex; flex-direction: column-reverse; gap: 6px; align-items: flex-end; }
.rail i { display: block; width: 26px; height: 8px; border-radius: 4px; box-shadow: 0 0 0 1px rgba(255, 255, 255, .18) inset, 0 0 0 1px rgba(0, 0, 0, .12); transition: width .35s ease; }
.rail i.on { width: 46px; }
.rail .read { position: absolute; right: 60px; top: var(--y, 50%); transform: translateY(-50%); font-size: .9rem; font-weight: 700; white-space: nowrap; transition: top .35s ease; font-variant-numeric: tabular-nums; }
.mbar { display: none; }
@media (max-aspect-ratio: 9/10) {
  .scrub { height: 420vh; }
  .copy { left: 20px; right: 20px; width: auto; top: auto; bottom: calc(40px + env(safe-area-inset-bottom)); transform: none; }
  .cap { top: auto; bottom: 0; transform: none; }
  .cap .nm { font-size: clamp(3rem, 15vw, 5rem); }
  .cap.final .nm { font-size: clamp(2.4rem, 11.5vw, 3.4rem); }
  /* The opening line sits up top on phones, leaving the butterfly on her shoulder in view */
  .cap[data-cap="intro"] { position: fixed; top: calc(var(--nav-h) + 30px + env(safe-area-inset-top)); bottom: calc(40px + env(safe-area-inset-bottom)); left: 20px; right: 20px; width: auto; display: flex; flex-direction: column; justify-content: space-between; }
  .cap[data-cap="intro"] .intro-p { margin: 0; }
  .cap[data-cap="intro"] .cue { display: none; }
  .cap h1 { font-size: clamp(3rem, 15.5vw, 5.4rem); }
  .cap p, .cap .intro-p { font-size: 1.02rem; }
  .stage::after { height: 60%; }
  .rail { display: none; }
  .mbar { display: flex; position: absolute; top: calc(var(--nav-h) + env(safe-area-inset-top)); left: 20px; right: 20px; z-index: 2; gap: 3px; }
  .mbar i { flex: 1; height: 4px; border-radius: 2px; opacity: .35; transition: opacity .3s; }
  .mbar i.on { opacity: 1; }
}
.scrub.static { height: auto; }
.scrub.static .stage { position: relative; }

/* ---------- Level scale ---------- */
.scale { background: var(--stone); padding: 96px 0 88px; }
.scale .top { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: end; margin-bottom: 48px; }
.scale .top p { color: var(--muted-2); margin: 0; }
.levels { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(10, 1fr); gap: 10px; }
.levels li { display: flex; flex-direction: column; gap: 10px; }
.levels .sw { height: 190px; border-radius: 14px; background: linear-gradient(170deg, rgba(255, 255, 255, .28), rgba(255, 255, 255, 0) 38%), var(--c); box-shadow: 0 1px 0 rgba(255, 255, 255, .4) inset, 0 12px 24px -16px rgba(26, 20, 17, .45); transition: transform .35s cubic-bezier(.2, .8, .2, 1); }
.levels li:hover .sw { transform: translateY(-8px); }
.levels b { font-weight: 800; font-stretch: 125%; font-variation-settings: var(--wide); font-size: 1.4rem; line-height: 1; }
.levels span { font-size: .85rem; color: var(--muted-2); line-height: 1.25; }
@media (max-width: 860px) {
  .scale { padding: 72px 0 64px; }
  .scale .top { grid-template-columns: 1fr; }
  .levels { grid-template-columns: repeat(5, 1fr); row-gap: 22px; }
  .levels .sw { height: 110px; }
}

/* ---------- Before and after (tap the small photo) ---------- */
.work { background: var(--ink); color: var(--ivory); padding: clamp(80px, 10vw, 140px) 0; }
.work-head { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: end; margin-bottom: clamp(40px, 5vw, 72px); }
.work-head p { color: rgba(243, 238, 230, .72); max-width: 40ch; justify-self: end; margin: 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 34px); }
.card { margin: 0; }
.card .shot { position: relative; border-radius: 18px; overflow: hidden; background: var(--ink-2); }
.card .after { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.card .before { position: absolute; left: 14px; bottom: 14px; width: 36%; padding: 0; border: 6px solid var(--ivory); border-radius: 10px; background: var(--ivory); cursor: zoom-in; overflow: hidden; transition: width .5s cubic-bezier(.2, .7, .2, 1), left .5s cubic-bezier(.2, .7, .2, 1), bottom .5s cubic-bezier(.2, .7, .2, 1), border-width .5s, border-radius .5s; }
.card .before img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 5px; transition: aspect-ratio .5s, border-radius .5s; }
.card .before span, .card .tag-after { position: absolute; top: 10px; font-size: .78rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.card .before span { left: 8px; top: 8px; background: var(--ivory); color: var(--ink); }
.card .tag-after { right: 12px; background: rgba(18, 13, 11, .72); color: var(--ivory); }
.card .before:focus-visible { outline: 3px solid var(--ink); outline-offset: -3px; }
.card .before.open { left: 0; bottom: 0; width: 100%; border-width: 0; border-radius: 0; cursor: zoom-out; }
.card .before.open img { aspect-ratio: 4 / 5; border-radius: 0; }
.card figcaption { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--rule-d); }
.card h3 { font-size: clamp(1.3rem, 1.9vw, 1.65rem); margin-bottom: 8px; }
.card figcaption p { color: rgba(243, 238, 230, .72); font-size: .98rem; margin: 0; }
.later { display: grid; grid-template-columns: minmax(0, 520px) minmax(0, 1fr); gap: clamp(40px, 6vw, 96px); align-items: center; margin-top: clamp(64px, 8vw, 110px); padding-top: clamp(48px, 6vw, 80px); border-top: 1px solid var(--rule-d); }
.print { margin: 0; padding: clamp(10px, 1.3vw, 16px) clamp(10px, 1.3vw, 16px) 0; background: var(--ivory); border-radius: 22px; box-shadow: 0 2px 0 rgba(255, 255, 255, .5) inset, 0 50px 80px -40px rgba(0, 0, 0, .85), 0 18px 30px -18px rgba(0, 0, 0, .6); transform: rotate(-1.6deg); transition: transform .6s cubic-bezier(.2, .8, .2, 1); }
.print:hover { transform: rotate(0deg) translateY(-6px); }
.print img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 12px; }
.print figcaption { padding: 14px 4px 16px; color: var(--muted); font-size: .9rem; font-weight: 600; text-align: center; }
.later h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 12px; }
.later p { color: rgba(243, 238, 230, .72); max-width: 48ch; margin: 0; }
@media (max-width: 980px) {
  .work-head { grid-template-columns: 1fr; }
  .work-head p { justify-self: start; }
  .cards { grid-auto-flow: column; grid-template-columns: none; grid-auto-columns: min(82%, 380px); overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; margin-inline: -20px; padding-inline: 20px; scroll-padding-inline: 20px; scrollbar-width: none; }
  .cards::-webkit-scrollbar { display: none; }
  .card { scroll-snap-align: start; }
  .later { grid-template-columns: 1fr; gap: 40px; }
  .print { max-width: 460px; width: 100%; justify-self: center; }
}

/* ---------- Swatch ring ---------- */
.ring-sec { background: var(--ivory); padding: clamp(80px, 9vw, 130px) 0 clamp(64px, 8vw, 110px); overflow: hidden; }
.ring-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 40px; align-items: center; }
.ring-copy h2 { margin-bottom: 22px; }
.ring-copy p { color: var(--muted-2); max-width: 38ch; font-size: 1.1rem; }
.ring-copy .row { margin-top: 26px; }
.ring-stage { perspective: 1400px; min-width: 0; }
.fan { position: relative; height: 500px; --w: 176px; --h: 380px; --py: 34px; --step: 13deg; --rx: 0deg; --ry: 0deg; --swing: 0deg; transform-style: preserve-3d; transform-origin: 50% var(--py); transform: rotateX(var(--rx)) rotateY(var(--ry)) rotate(var(--swing)); }
.fan:hover, .fan:focus-within { --step: 17deg; }
.ring { position: absolute; left: 50%; top: calc(var(--py) - 21px); width: 42px; height: 42px; margin-left: -21px; border-radius: 50%; border: 6px solid transparent; background: conic-gradient(from 200deg, #F4EBDD, #C8A472, #F1E3C6, #9C7A4B, #F4EBDD) border-box; -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #000 calc(100% - 5.5px)); mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #000 calc(100% - 5.5px)); transform: translateZ(40px); z-index: 30; pointer-events: none; filter: drop-shadow(0 2px 2px rgba(0, 0, 0, .25)); }
.swatch { position: absolute; left: 50%; top: calc(var(--py) - 18px); width: var(--w); height: var(--h); margin: 0 0 0 calc(var(--w) / -2); padding: 36px 10px 0; background: #fff; border: 1px solid #E8DED3; border-radius: 14px 14px 18px 18px; box-shadow: 0 1px 2px rgba(26, 20, 17, .06), 0 18px 32px -18px rgba(26, 20, 17, .45); transform-origin: 50% 18px; transform: rotate(calc((var(--i) - 2.5) * var(--step))) translateZ(calc(var(--i) * 5px)); transition: transform .55s cubic-bezier(.2, .75, .2, 1), box-shadow .3s; animation: fanOpen 1.1s cubic-bezier(.2, .75, .2, 1) calc(var(--i) * 70ms + 150ms) backwards; cursor: pointer; text-align: left; }
.ring-sec:not(.in) .swatch { animation-play-state: paused; }
.swatch::before { content: ""; position: absolute; left: 50%; top: 11px; width: 15px; height: 15px; margin-left: -7.5px; border-radius: 50%; background: #F4F1F1; box-shadow: inset 0 1px 3px rgba(0, 0, 0, .35); }
.swatch img { width: 100%; height: calc(var(--h) - 36px - 50px); object-fit: cover; border-radius: 10px; background: var(--sand); pointer-events: none; }
.swatch .cap2 { height: 50px; display: flex; align-items: center; gap: 8px; padding: 0 4px; font-size: .8125rem; font-weight: 600; line-height: 1.2; }
.swatch .cap2 i { width: 12px; height: 12px; border-radius: 50%; flex: none; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .12); }
.fan .swatch:hover, .fan .swatch:focus-visible { transform: rotate(calc((var(--i) - 2.5) * var(--step))) translateZ(calc(var(--i) * 5px + 30px)) translateY(18px); z-index: 20; box-shadow: 0 1px 2px rgba(26, 20, 17, .08), 0 30px 44px -20px rgba(26, 20, 17, .5); }
@keyframes fanOpen { from { transform: rotate(0deg) translateZ(0); } }
.fan-hint { text-align: center; font-size: .875rem; color: var(--muted); margin: 6px 0 0; }
@media (max-width: 1180px) {
  .fan { --w: 152px; --h: 334px; height: 440px; --step: 10deg; }
  .fan:hover, .fan:focus-within { --step: 13deg; }
}
@media (max-width: 900px) {
  .ring-grid { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .ring-stage { perspective: none; }
  .fan { height: auto; transform: none; display: flex; gap: 12px; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; padding: 26px 20px 20px; margin-inline: -20px; scrollbar-width: none; background: linear-gradient(#CDBFAE, #CDBFAE) 0 43px / 100% 3px no-repeat; }
  .fan::-webkit-scrollbar { display: none; }
  .fan.driven { scroll-snap-type: none; }
  .ring, .fan-hint { display: none; }
  .swatch { position: relative; left: auto; top: auto; margin: 0; flex: 0 0 158px; height: 330px; --h: 330px; transform: none; animation: none; scroll-snap-align: start; scroll-margin-left: 20px; }
  .fan .swatch:hover, .fan .swatch:focus-visible { transform: none; }
}

/* ---------- Try a shade ---------- */
.try { background: linear-gradient(var(--paper), var(--sand)); padding: clamp(80px, 9vw, 130px) 0; }
.try-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); grid-template-areas: "stage head" "stage controls"; column-gap: 64px; }
.try-stage { position: relative; grid-area: stage; }
.try-head { grid-area: head; align-self: end; }
.try-controls { grid-area: controls; align-self: start; }
.try-frame { position: relative; aspect-ratio: 1040 / 1291; border-radius: 24px; overflow: hidden; background: var(--sand); box-shadow: 0 40px 70px -40px rgba(26, 20, 17, .55); }
.try-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sheen { position: absolute; z-index: 3; left: 0; right: 0; height: 22%; bottom: -30%; pointer-events: none; opacity: 0; background: linear-gradient(to top, transparent, rgba(255, 255, 255, .28) 55%, transparent); mix-blend-mode: soft-light; }
.try-label { position: absolute; z-index: 4; left: 16px; bottom: 16px; background: rgba(250, 247, 242, .92); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); border-radius: 999px; padding: 6px 14px 6px 8px; font-size: .875rem; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.try-label i { width: 18px; height: 18px; border-radius: 50%; background: var(--chip, #ddd); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .12); transition: background .6s; }
.try-note { margin-top: 12px; font-size: .875rem; color: var(--muted); }
.try-head h2 { margin-bottom: 16px; }
.try-head p { font-size: 1.125rem; max-width: min(36ch, calc(100% - 110px)); margin: 0; color: var(--muted-2); }
.try-arrow { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; z-index: 3; }
.try-arrow path { fill: none; stroke: #8C6442; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: var(--len, 0); stroke-dashoffset: var(--len, 0); }
.try-arrow .shaft { transition: stroke-dashoffset 1.2s cubic-bezier(.55, .1, .35, 1); }
.try-arrow .tip { transition: stroke-dashoffset .3s ease-out 1.15s; }
.try-arrow.drawn path { stroke-dashoffset: 0; }
.tresses { position: relative; display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 10px; margin: 34px 0 26px; padding-top: 6px; max-width: 520px; }
.tresses::before { content: ""; position: absolute; left: -6px; right: -6px; top: 14px; height: 4px; border-radius: 4px; background: linear-gradient(#F1E3C6, #9C7A4B); box-shadow: 0 1px 2px rgba(0, 0, 0, .2); z-index: 2; }
.tress { position: relative; height: 158px; border: 0; background: none; padding: 0; cursor: pointer; transform-origin: 50% 16px; transition: transform .45s cubic-bezier(.2, .75, .2, 1); }
.tress .tab { position: absolute; left: 50%; top: 0; width: 26px; height: 30px; margin-left: -13px; border-radius: 7px 7px 4px 4px; background: linear-gradient(#FFFFFF, #E3DDDF); box-shadow: 0 1px 2px rgba(0, 0, 0, .18); z-index: 1; }
.tress .tab::before { content: ""; position: absolute; left: 50%; top: 7px; width: 10px; height: 10px; margin-left: -5px; border-radius: 50%; background: #CFC8CA; box-shadow: inset 0 1px 2px rgba(0, 0, 0, .4); }
.tress .hair { position: absolute; top: 26px; left: 3px; right: 3px; bottom: 0; border-radius: 3px 3px 0 0; background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .16) 0 1px, transparent 1px 3px, rgba(0, 0, 0, .10) 3px 4px, transparent 4px 6px), linear-gradient(170deg, rgba(255, 255, 255, .25), transparent 40%), linear-gradient(var(--a), var(--b)); clip-path: polygon(0 0, 100% 0, 100% 86%, 90% 95%, 80% 89%, 68% 100%, 56% 91%, 44% 98%, 32% 90%, 20% 97%, 9% 91%, 0 96%); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .05); }
.tress:hover { transform: rotate(-4deg); }
.tress[aria-checked="true"] { transform: translateY(14px); }
.tress[aria-checked="true"] .tab { background: linear-gradient(#F4EBDD, #D2AE7C); }
.readout { min-height: 92px; }
.readout h3 { font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: 8px; }
.readout p { color: var(--muted-2); max-width: 40ch; margin: 0; }
.try-actions { margin-top: 26px; }
@media (max-width: 900px) {
  .try-grid { grid-template-columns: minmax(0, 1fr); grid-template-areas: "head" "tresses" "stage" "readout" "actions"; row-gap: 26px; }
  .try-controls { display: contents; }
  .try-frame { max-width: 460px; }
  .readout { grid-area: readout; min-height: 0; }
  .tresses { grid-area: tresses; margin: 8px 0 0; }
  .try-actions { grid-area: actions; margin-top: 0; }
}
@media (max-width: 560px) {
  .tresses { gap: 6px; }
  .tress { height: 128px; }
  .tress .tab { width: 20px; height: 26px; margin-left: -10px; }
  .tress .tab::before { width: 8px; height: 8px; margin-left: -4px; }
  .try-frame { border-radius: 20px; }
}

/* ---------- Color menu ---------- */
.menu-sec { background: var(--paper); padding: clamp(80px, 10vw, 150px) 0; position: relative; }
.menu-grid { display: grid; grid-template-columns: 4fr 7fr; gap: clamp(32px, 6vw, 110px); }
.menu-grid .lead { position: sticky; top: calc(var(--nav-h) + 40px); align-self: start; }
.menu-grid .lead h2 { margin-bottom: 22px; max-width: 8ch; }
.menu-grid .lead p { color: var(--muted); max-width: 32ch; }
.menu-grid .lead .btn { margin-top: 10px; }
.menu-list { list-style: none; margin: 0; padding: 0; border-top: 1.5px solid var(--ink); }
.menu-list li { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 8px 28px; align-items: center; padding: 26px 0; border-bottom: 1px solid var(--rule); }
.menu-list h3 { font-size: clamp(1.35rem, 2.1vw, 1.85rem); transition: transform .35s cubic-bezier(.2, .8, .2, 1); }
.menu-list p { margin: 0; color: var(--muted); }
.menu-list li:hover h3 { transform: translateX(8px); }
.float { position: fixed; left: 0; top: 0; width: 240px; aspect-ratio: 4 / 5; pointer-events: none; z-index: 40; opacity: 0; border-radius: 16px; overflow: hidden; box-shadow: 0 30px 60px -30px rgba(26, 20, 17, .6); transition: opacity .25s; }
.float img { width: 100%; height: 100%; object-fit: cover; }
.float.on { opacity: 1; }
@media (max-width: 860px) {
  .menu-grid { grid-template-columns: 1fr; }
  .menu-grid .lead { position: static; }
  .menu-list li { grid-template-columns: 1fr; gap: 6px; }
}
@media (hover: none) { .float { display: none; } }
.menu-also { margin: 26px 0 0; color: var(--muted); max-width: 52ch; }
.menu-also a { margin-left: 4px; white-space: nowrap; color: var(--ink); }

/* ---------- Meet Maha ---------- */
.meet { background: var(--stone); color: var(--ink); padding: clamp(80px, 10vw, 140px) 0; }
.meet .grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.portrait { position: relative; margin: 0; }
.portrait img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 40% 25%; border-radius: 22px; box-shadow: 0 40px 70px -40px rgba(26, 20, 17, .55); }
.portrait .stamp { position: absolute; right: -18px; bottom: 34px; background: var(--ink); color: var(--ivory); border-radius: 18px; padding: 18px 22px; box-shadow: 0 20px 40px -20px rgba(0, 0, 0, .6); }
.portrait .stamp b { display: block; font-size: 2.6rem; font-weight: 800; font-stretch: 125%; font-variation-settings: var(--wide); line-height: 1; }
.portrait .stamp span { font-size: .85rem; color: rgba(243, 238, 230, .72); }
.fa-name { display: block; width: var(--w, 150px); aspect-ratio: 1155 / 904; background: linear-gradient(260deg, #6B4A33, #A8784C 30%, #D2AE7C 60%, #F3EEE6 95%); -webkit-mask: url(/assets/brand/fa-maha.svg) center / contain no-repeat; mask: url(/assets/brand/fa-maha.svg) center / contain no-repeat; }
.meet .fa-name { --w: 118px; margin-bottom: 18px; background: linear-gradient(260deg, #A8784C, #6B4A33 45%, #1A1411 90%); }
.meet h2 { margin-bottom: 24px; }
.meet .lede { color: var(--muted-2); max-width: 42ch; }
.facts { display: flex; gap: 10px; flex-wrap: wrap; margin: 24px 0 30px; padding: 0; list-style: none; }
.facts li { padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(26, 20, 17, .22); font-size: .92rem; font-weight: 500; }
@media (max-width: 700px) {
  .meet .grid { grid-template-columns: 1fr; }
  .portrait .stamp { right: 12px; bottom: 16px; }
}

/* ---------- Book your consultation ---------- */
.booking { background: var(--sand); display: grid; grid-template-columns: 1fr 1fr; min-height: 92vh; }
.booking .room { position: relative; overflow: hidden; min-height: 460px; margin: 0; background: var(--l2); }
.booking .room img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.booking .room figcaption { position: absolute; left: 18px; bottom: 16px; font-size: .82rem; font-weight: 600; color: var(--ivory); background: rgba(18, 13, 11, .55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); padding: 6px 12px; border-radius: 999px; }
.booking .panel { padding: clamp(56px, 8vw, 120px) clamp(20px, 5vw, 80px); display: flex; flex-direction: column; justify-content: center; }
.booking h2 { margin-bottom: 22px; max-width: 10ch; }
.booking .quote { margin: 0; font-size: 1.12rem; color: var(--muted-2); max-width: 44ch; }
.booking .quote cite { display: block; font-style: normal; font-weight: 600; margin-top: 8px; color: var(--ink); }
.booking .row { margin: 28px 0 8px; }
.booking .small-note { margin: 6px 0 0; font-size: .92rem; color: var(--muted); }
.visit { margin-top: 40px; padding-top: 24px; border-top: 1.5px solid var(--ink); display: grid; grid-template-columns: 1fr 1fr; gap: 22px clamp(20px, 3vw, 44px); }
.visit div:last-child { grid-column: 1 / -1; }
.visit div { font-size: .95rem; line-height: 1.5; min-width: 0; overflow-wrap: anywhere; }
.visit small { display: block; font-size: .8rem; font-weight: 600; color: var(--muted); margin-bottom: 6px; }
@media (max-width: 900px) {
  .booking { grid-template-columns: 1fr; min-height: 0; }
  .booking .room { aspect-ratio: 4 / 3.4; min-height: 0; }
  .booking .room img { object-position: 50% 55%; }
}

/* ---------- Footer ---------- */
.site-foot { background: var(--l2); color: var(--ivory); padding: clamp(64px, 8vw, 110px) 0 36px; overflow: hidden; }
.foot-grid { display: grid; grid-template-columns: 1.1fr 1fr 1.1fr 1fr; gap: 36px; align-items: start; }
.foot-logo img { width: clamp(150px, 16vw, 210px); }
.site-foot h2 { font-size: .8rem; font-stretch: 100%; font-variation-settings: "wdth" 100; font-weight: 700; letter-spacing: .02em; color: rgba(243, 238, 230, .55); margin: 0 0 14px; }
.site-foot address { font-style: normal; line-height: 1.55; margin-bottom: 12px; }
.site-foot a { text-underline-offset: 4px; }
.foot-links { display: grid; gap: 6px; }
.hours { border-collapse: collapse; font-size: .95rem; }
.hours th { text-align: left; font-weight: 500; padding: 3px 18px 3px 0; color: rgba(243, 238, 230, .7); white-space: nowrap; }
.hours td { padding: 3px 0; white-space: nowrap; }
.hours tr.today th, .hours tr.today td { color: var(--gold); font-weight: 700; }
.open-now { display: inline-flex; align-items: center; gap: 8px; margin: 14px 0 0; font-size: .9rem; font-weight: 600; }
.open-now:empty { display: none; }
.open-now::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #9BC59D; box-shadow: 0 0 0 4px rgba(155, 197, 157, .18); }
.open-now.closed::before { background: #C9A26F; box-shadow: 0 0 0 4px rgba(201, 162, 111, .18); }
.foot-fa { width: min(100%, 560px); aspect-ratio: 1155 / 904; margin: clamp(40px, 6vw, 80px) auto clamp(28px, 4vw, 48px); background: linear-gradient(260deg, #45311f, #6B4A33 18%, #A8784C 40%, #D2AE7C 64%, #F3EEE6 90%); -webkit-mask: url(/assets/brand/fa-maha.svg) center / contain no-repeat; mask: url(/assets/brand/fa-maha.svg) center / contain no-repeat; opacity: .92; }
.foot-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 22px; border-top: 1px solid var(--rule-d); font-size: .9rem; color: rgba(243, 238, 230, .7); }
.foot-bottom nav { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-bottom a { text-decoration: none; }
.foot-bottom a:hover { text-decoration: underline; }
@media (max-width: 960px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-logo { grid-column: 1 / -1; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } .foot-logo { justify-self: center; } .foot-logo img { width: min(64vw, 250px); } }

/* ---------- Services page ---------- */
.svc-list { padding: clamp(64px, 8vw, 120px) 0; }
.svc-intro { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(28px, 5vw, 80px); align-items: end; margin-bottom: clamp(40px, 5vw, 72px); }
.svc-intro p { margin: 0; font-size: 1.15rem; color: var(--muted-2); max-width: 44ch; }
.svc-intro span { display: block; margin-top: 8px; font-weight: 600; color: var(--ink); font-size: 1rem; }
@media (max-width: 860px) { .svc-intro { grid-template-columns: 1fr; } }
.svc { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(28px, 5vw, 80px); align-items: center; padding: clamp(36px, 5vw, 64px) 0; border-top: 1px solid var(--rule); }
.svc-intro + .svc { border-top: 0; padding-top: 0; }
.svc:nth-child(even) .svc-img { order: 2; }
.svc-img { margin: 0; border-radius: 20px; overflow: hidden; background: var(--sand); }
.svc-img img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
.svc h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); margin-bottom: 18px; }
.svc p { color: var(--muted-2); max-width: 46ch; font-size: 1.08rem; }
.svc .for { font-size: .95rem; color: var(--muted); margin-top: 12px; }
@media (max-width: 700px) {
  .svc { grid-template-columns: 1fr; }
  .svc:nth-child(even) .svc-img { order: 0; }
}
.more-svc { background: var(--ink); color: var(--ivory); padding: clamp(72px, 9vw, 130px) 0; }
.more-svc h2 { max-width: 16ch; margin-bottom: clamp(36px, 5vw, 60px); }
.more-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.more-card { border: 1px solid var(--rule-d); border-radius: 20px; padding: 26px 26px 22px; position: relative; overflow: hidden; }
.more-card::before { content: ""; position: absolute; left: 26px; right: 26px; top: 0; height: 3px; border-radius: 0 0 3px 3px; background: var(--levels); opacity: .9; }
.more-card h3 { font-size: 1.35rem; margin: 8px 0 10px; }
.more-card p { color: rgba(243, 238, 230, .7); font-size: .95rem; margin: 0 0 12px; }
.more-card ul { list-style: none; margin: 0; padding: 0; }
.more-card li { padding: 9px 0; border-top: 1px solid var(--rule-d); font-size: 1rem; }
.more-card li:first-child { border-top: 0; }
.more-cta { background: var(--ivory); color: var(--ink); border-color: var(--ivory); display: flex; flex-direction: column; align-items: flex-start; }
.more-cta p { color: var(--muted-2); margin-bottom: 20px; }
.more-cta::before { display: none; }
.more-cta .btn { margin-top: auto; background: var(--ink); color: var(--ivory); border-color: var(--ink); }
@media (max-width: 960px) { .more-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .more-grid { grid-template-columns: 1fr; } }
.process { background: var(--sand); padding: clamp(72px, 9vw, 130px) 0; }
.process .grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; }
.process .lede { color: var(--muted-2); margin-top: 20px; }
.track { position: relative; list-style: none; margin: 0; padding: 0 0 0 44px; counter-reset: s; }
.track::before { content: ""; position: absolute; left: 13px; top: 8px; bottom: 8px; width: 4px; border-radius: 4px; background: linear-gradient(#120D0B, #6B4A33 30%, #A8784C 55%, #D2AE7C 78%, #F3EEE6); }
.track li { position: relative; padding: 0 0 30px; counter-increment: s; }
.track li:last-child { padding-bottom: 0; }
.track li::before { content: counter(s); position: absolute; left: -44px; top: -2px; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-size: .85rem; font-weight: 800; background: var(--dot); color: var(--dotc, #fff); box-shadow: 0 0 0 4px var(--sand); }
.track h3 { margin-bottom: 6px; }
.track p { margin: 0; color: var(--muted-2); max-width: 52ch; }
@media (max-width: 860px) { .process .grid { grid-template-columns: 1fr; gap: 40px; } }
.faq { padding: clamp(72px, 9vw, 130px) 0; }
.faq .grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; }
.faq details { border-bottom: 1px solid var(--rule); }
.faq details:first-of-type { border-top: 1.5px solid var(--ink); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 22px 0; font-weight: 700; font-size: 1.12rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; flex: none; width: 14px; height: 14px; background: linear-gradient(currentColor, currentColor) center / 14px 2px no-repeat, linear-gradient(currentColor, currentColor) center / 2px 14px no-repeat; transition: transform .3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 22px; color: var(--muted-2); max-width: 60ch; }
@media (max-width: 860px) { .faq .grid { grid-template-columns: 1fr; gap: 28px; } }
.cta-band { background: var(--ink); color: var(--ivory); padding: clamp(56px, 7vw, 96px) 0; }
.cta-band .wrap { display: flex; justify-content: space-between; align-items: center; gap: 28px; flex-wrap: wrap; }
.cta-band h2 { font-size: min(clamp(2rem, 4.4vw, 3.6rem), 8.6vw); max-width: 16ch; }

/* ---------- Gallery page ---------- */
.gal-grid { columns: 3; column-gap: clamp(14px, 2vw, 26px); padding: clamp(56px, 7vw, 100px) 0; }
.gal-grid figure { break-inside: avoid; margin: 0 0 clamp(18px, 2.4vw, 32px); }
.gal-grid button { display: block; width: 100%; padding: 0; border: 0; background: var(--sand); border-radius: 16px; overflow: hidden; cursor: zoom-in; }
.gal-grid img { width: 100%; transition: transform .8s cubic-bezier(.2, .7, .2, 1); }
.gal-grid button:hover img { transform: scale(1.04); }
.gal-grid figcaption { display: flex; align-items: center; gap: 10px; padding-top: 12px; font-size: .95rem; font-weight: 600; }
.gal-grid figcaption i { width: 22px; height: 12px; border-radius: 6px; background: var(--c); box-shadow: 0 0 0 1px rgba(0, 0, 0, .08); }
.gal-grid figcaption small { font-weight: 400; color: var(--muted); margin-left: auto; font-variant-numeric: tabular-nums; }
@media (max-width: 760px) { .gal-grid { columns: 2; } }
.gal-ig { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding: 30px 0 clamp(64px, 8vw, 110px); border-top: 1px solid var(--rule); }
.gal-ig p { margin: 0; font-size: 1.15rem; font-weight: 600; }
.lightbox { border: 0; padding: 0; background: transparent; max-width: min(92vw, 900px); max-height: 92vh; overflow: visible; }
.lightbox::backdrop { background: rgba(12, 9, 8, .9); }
.lightbox img { max-height: 84vh; width: auto; margin: 0 auto; border-radius: 12px; }
.lightbox p { color: var(--ivory); text-align: center; margin: 12px 0 0; font-weight: 600; }
.lightbox .x { position: fixed; top: 14px; right: 16px; width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid rgba(243, 238, 230, .6); background: rgba(18, 13, 11, .6); color: var(--ivory); cursor: pointer; font-size: 1.4rem; line-height: 1; }

/* ---------- About page ---------- */
.about-head .fa-name { --w: clamp(120px, 16vw, 200px); margin-bottom: 26px; }
.story { padding: clamp(64px, 9vw, 130px) 0; }
.story .grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(36px, 6vw, 96px); align-items: start; }
.story-photos { position: sticky; top: calc(var(--nav-h) + 30px); display: grid; gap: 18px; }
.story-photos figure { margin: 0; }
.story-photos img { width: 100%; border-radius: 20px; aspect-ratio: 4 / 5; object-fit: cover; object-position: 40% 25%; }
.story-photos figcaption { font-size: .9rem; color: var(--muted); margin-top: 10px; }
.story-text p { font-size: clamp(1.08rem, 1.3vw, 1.2rem); line-height: 1.7; color: var(--muted-2); max-width: 58ch; margin-bottom: 22px; }
.story-text p.first::first-line { font-weight: 700; color: var(--ink); }
.story-text h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 44px 0 18px; }
.story-text blockquote { margin: 40px 0; padding: 28px 0; border-block: 1.5px solid var(--ink); font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 800; font-stretch: 112%; font-variation-settings: "wdth" 112; line-height: 1.15; letter-spacing: -0.015em; }
.story-text blockquote cite { display: block; margin-top: 12px; font-size: 1rem; font-weight: 500; font-style: normal; color: var(--muted); font-stretch: 100%; font-variation-settings: "wdth" 100; }
.stats { list-style: none; margin: 36px 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; border-top: 1.5px solid var(--ink); }
.stats li { padding-top: 16px; font-size: .92rem; color: var(--muted); line-height: 1.35; }
.stats b { display: block; font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; font-stretch: 125%; font-variation-settings: var(--wide); color: var(--ink); line-height: 1; margin-bottom: 8px; }
@media (max-width: 860px) {
  .story .grid { grid-template-columns: 1fr; }
  .story-photos { position: static; grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr; gap: 0; }
  .stats li { display: flex; gap: 14px; align-items: baseline; padding: 12px 0; border-bottom: 1px solid var(--rule); }
  .stats b { margin: 0; min-width: 3.4em; font-size: 1.6rem; }
}

/* ---------- Contact page ---------- */
.contact-head .open-now { margin-top: 22px; color: var(--ivory); }
.contact { padding: clamp(56px, 8vw, 110px) 0; }
.contact .grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.booking-card { border-radius: 22px; background: var(--ink); color: var(--ivory); padding: clamp(26px, 4vw, 44px); margin-bottom: 28px; }
.booking-card h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 14px; }
.booking-card p { color: rgba(243, 238, 230, .78); max-width: 46ch; }
.booking-card .big-phone { display: inline-block; font-size: clamp(1.8rem, 4.6vw, 3rem); font-weight: 800; font-stretch: 125%; font-variation-settings: var(--wide); letter-spacing: -0.02em; text-decoration: none; margin: 6px 0 18px; }
.booking-card .big-phone:hover { text-decoration: underline; text-underline-offset: 8px; text-decoration-thickness: 2px; }
.form { border-radius: 22px; background: #fff; box-shadow: 0 30px 60px -36px rgba(26, 20, 17, .35), 0 0 0 1px var(--rule); padding: clamp(24px, 4vw, 44px); }
.form h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 10px; }
.form > p { color: var(--muted); margin-bottom: 24px; }
.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 16px; }
.field { display: grid; gap: 7px; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label, .field legend { font-weight: 600; font-size: .95rem; padding: 0; }
.field label small { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea { width: 100%; font: inherit; font-size: 1rem; color: var(--ink); padding: 13px 14px; min-height: 50px; border: 1.5px solid #968577; border-radius: 12px; background: var(--paper); transition: border-color .2s, background .2s; }
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--ink); outline-offset: 2px; border-color: var(--ink); background: #fff; }
.field select { appearance: none; background: var(--paper) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M3 5l4 4 4-4' fill='none' stroke='%231A1411' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") right 14px center no-repeat; padding-right: 38px; }
fieldset.field { border: 0; margin: 0; padding: 0; }
.pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pills label { position: relative; }
.pills input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.pills span { display: inline-flex; align-items: center; min-height: 44px; padding: 0 18px; border: 1.5px solid #968577; border-radius: 999px; font-weight: 500; background: var(--paper); transition: all .2s; }
.pills input:checked + span { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.pills input:focus-visible + span { outline: 2px solid var(--ink); outline-offset: 2px; }
.form .btn { margin-top: 22px; }
.form .fine { font-size: .85rem; color: var(--muted); margin: 14px 0 0; }
.status { margin: 16px 0 0; font-weight: 600; }
.status:empty { display: none; }
.status.ok { color: #2E6B45; }
.status.err { color: #A3332B; }
.sent { text-align: left; }
.sent h2 { margin-bottom: 12px; }
@media (max-width: 640px) { .fields { grid-template-columns: 1fr; } }
.visit-card { border-radius: 22px; background: var(--sand); overflow: hidden; box-shadow: 0 30px 60px -36px rgba(26, 20, 17, .35), 0 0 0 1px var(--rule); }
.visit-card .map { display: block; width: 100%; aspect-ratio: 4 / 3; border: 0; background: var(--stone); }
.visit-card .in { padding: clamp(22px, 3vw, 32px); }
.visit-card h2 { font-size: 1.6rem; margin-bottom: 14px; }
.visit-card address { font-style: normal; line-height: 1.55; margin-bottom: 14px; font-size: 1.05rem; }
.visit-card .hours { margin-top: 18px; }
.visit-card .hours th { color: var(--muted-2); }
.visit-card .hours tr.today th, .visit-card .hours tr.today td { color: var(--ink); }
.visit-card .open-now { color: var(--ink); }
.visit-card .contact-links { display: grid; gap: 8px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--rule); }
@media (max-width: 900px) { .contact .grid { grid-template-columns: 1fr; } }

/* ---------- Simple pages (thanks, 404) ---------- */
.simple { min-height: 78vh; display: flex; align-items: center; background: var(--l2); color: var(--ivory); padding: calc(var(--nav-h) + 40px) 0 80px; }
.simple h1 { font-size: clamp(2.8rem, 8vw, 6rem); line-height: .92; letter-spacing: -0.035em; margin: 18px 0 20px; max-width: 12ch; }
.simple p { color: rgba(243, 238, 230, .78); max-width: 46ch; font-size: 1.15rem; }
.simple .fa-name { --w: 120px; }
.simple .row { margin-top: 26px; }

@media (forced-colors: active) {
  .brand-mark, .fa-name, .foot-fa, .menu-strip, .page-head::after, .levels .sw, .rail i, .mbar i, .tress .hair, .swatch .cap2 i, .gal-grid figcaption i, .try-label i { forced-color-adjust: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
  .fan { transform: none !important; }
}
