/* Soft Gold Studio. Every color, font and shape comes from the tokens below.
   app.js rewrites them live from the "Make it yours" panel. */

@font-face { font-family: 'Anton'; src: url(../fonts/anton.woff2) format('woff2'); font-display: swap; }
@font-face { font-family: 'Archivo'; src: url(../fonts/archivo-400.woff2) format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Archivo'; src: url(../fonts/archivo-700.woff2) format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Bodoni Moda'; src: url(../fonts/bodoni-moda-500.woff2) format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Bodoni Moda'; src: url(../fonts/bodoni-moda-500-italic.woff2) format('woff2'); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: 'DM Serif Display'; src: url(../fonts/dm-serif-display.woff2) format('woff2'); font-display: swap; }
@font-face { font-family: 'Manrope'; src: url(../fonts/manrope-400.woff2) format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Manrope'; src: url(../fonts/manrope-700.woff2) format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Syne'; src: url(../fonts/syne-700.woff2) format('woff2'); font-weight: 700; font-display: swap; }

:root {
  --bg: #F8D2DB; --surface: #F2BFCB; --ink: #2B0C14; --ink-2: #65293A; --line: #DDA0B0;
  --accent: #B8102E; --on-accent: #FFF8F2; --accent-text: #B8102E;
  --f-display: 'Syne', 'Arial Black', sans-serif; --f-body: 'Archivo', system-ui, sans-serif;
  --d-case: uppercase; --d-lh: 0.95; --d-track: -0.02em; --d-weight: 700; --d-style: normal;
  --r-btn: 0px;
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s5: 24px; --s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px; --s10: 128px;
  --gutter: clamp(16px, 4.5vw, 72px);
  --top-h: 72px;
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--top-h) + 16px); -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 400 17px/1.6 var(--f-body); overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select { font: inherit; color: inherit; }
figure { margin: 0; }
h1, h2, h3, p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--accent-text); outline-offset: 3px; }

.skip { position: absolute; left: -9999px; top: 8px; z-index: 100; background: var(--ink); color: var(--bg); padding: 8px 12px; }
.skip:focus { left: 8px; }

/* ---------- Type ---------- */
.display {
  font-family: var(--f-display); font-weight: var(--d-weight); font-style: var(--d-style);
  text-transform: var(--d-case); line-height: var(--d-lh); letter-spacing: var(--d-track);
  text-wrap: balance;
}
.display em { font-style: inherit; color: var(--accent-text); }
[data-type="couture"] .display em, [data-type="soft"] .display em { font-style: italic; }
.eyebrow { font-size: 14px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2); }
.lede { font-size: clamp(17px, 1.4vw, 20px); color: var(--ink-2); max-width: 52ch; }
.textlink { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; font-weight: 700; }
.textlink:hover { text-decoration-thickness: 3px; }
.linkish { background: none; border: 0; padding: 0; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; font-weight: 700; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 10px 20px; border: 1px solid var(--ink); background: transparent;
  border-radius: var(--r-btn); font-weight: 700; font-size: 15px; letter-spacing: 0.02em; cursor: pointer; text-decoration: none;
  transition: background-color .15s, color .15s, border-color .15s;
}
.btn:hover { background: var(--ink); color: var(--bg); }
.btn-accent { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.btn-accent:hover { background: var(--ink); border-color: var(--ink); color: var(--bg); }
.btn-lg { min-height: 56px; padding: 14px 28px; font-size: 17px; }
.btn[disabled] { opacity: .45; cursor: not-allowed; }
.btn[disabled]:hover { background: transparent; color: inherit; }
.btn-accent[disabled]:hover { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
[data-corners="soft"] { --r-btn: 10px; }

/* ---------- Frames: the photo shape is a site-wide choice ---------- */
.frame, .ph { overflow: hidden; background: var(--surface); }
.frame img, .ph img { width: 100%; height: 100%; object-fit: cover; }
[data-frame="arch"] .frame, [data-frame="arch"] .ph { border-radius: 9999px 9999px 0 0; }
[data-frame="oval"] .frame, [data-frame="oval"] .ph { border-radius: 50%; }
[data-frame="soft"] .frame, [data-frame="soft"] .ph { border-radius: 20px; }

/* ---------- Concept strip + header ---------- */
.concept-bar { background: var(--surface); border-bottom: 1px solid var(--line); padding: 8px var(--gutter); font-size: 14px; color: var(--ink-2); }
.concept-bar a, .concept-bar .linkish { color: var(--ink); }
.top {
  position: sticky; top: 0; z-index: 40; height: var(--top-h);
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: var(--s5);
  padding: 0 var(--gutter); background: var(--bg); border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: baseline; gap: 12px; text-decoration: none; min-width: 0; }
.brand-name { font-family: var(--f-display); font-weight: var(--d-weight); font-style: var(--d-style); text-transform: var(--d-case); letter-spacing: var(--d-track); font-size: 30px; line-height: 1; white-space: nowrap; }
.brand-tag { font-size: 14px; color: var(--ink-2); white-space: nowrap; }
.top nav ul { display: flex; gap: var(--s5); justify-content: center; }
.top nav a { text-decoration: none; font-weight: 700; font-size: 15px; padding: 8px 0; border-bottom: 2px solid transparent; }
.top nav a:hover { border-bottom-color: var(--accent); }

/* ---------- Hero ---------- */
.hero { position: relative; display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--s6); padding: var(--s8) var(--gutter) var(--s9); align-items: end; }
.hero-text { grid-column: 1 / span 7; display: grid; gap: var(--s5); align-content: end; position: relative; z-index: 2; }
.hero h1 { font-size: clamp(56px, 8.6vw, 148px); }
[data-type="couture"] .hero h1, [data-type="soft"] .hero h1 { font-size: clamp(52px, 7.4vw, 128px); }
/* Syne is a wide face: same presence at a smaller size. */
[data-type="street"] .hero h1 { font-size: clamp(44px, 6.2vw, 104px); }
[data-type="street"] .section-head h2 { font-size: clamp(36px, 4.6vw, 76px); }
[data-type="street"] .visit-text h2 { font-size: clamp(36px, 4.2vw, 68px); }
[data-type="street"] .menu-tabs button { font-size: clamp(18px, 1.6vw, 24px); }
[data-type="street"] .brand-name { font-size: 24px; }
[data-type="street"] .stylist h3 { font-size: 26px; }
[data-type="street"] .foot-name { font-size: clamp(48px, 12vw, 220px); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s5); }
.hero-media { grid-column: 8 / span 5; position: relative; height: clamp(420px, 44vw, 700px); }
.ph { position: absolute; }
.ph-a { inset: 0 18% 0 0; }
.ph-b { width: 38%; height: 44%; right: 0; top: 4%; }
.ph-c { width: 38%; height: 44%; right: 0; bottom: 0; }

.chairboard { border-top: 1px solid var(--line); padding-top: var(--s4); max-width: 560px; }
.chairboard-h { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15px; }
.dot-open { width: 10px; height: 10px; background: var(--accent); flex: none; }
.dot-open.closed { background: transparent; border: 2px solid var(--ink-2); }
.chairboard ol { margin-top: var(--s2); display: grid; gap: 2px; font-size: 15px; color: var(--ink-2); }
.chairboard li { display: flex; justify-content: space-between; gap: var(--s4); border-bottom: 1px dashed var(--line); padding: 4px 0; }
.chairboard li b { color: var(--ink); font-weight: 700; }

/* Opening layout: full bleed */
[data-hero="full"] .hero { min-height: min(88vh, 860px); grid-template-columns: 1fr; padding-top: var(--s10); }
[data-hero="full"] .hero-media { position: absolute; inset: 0; height: auto; grid-column: auto; }
[data-hero="full"] .ph-a { inset: 0; border-radius: 0 !important; }
[data-hero="full"] .ph-a img { object-position: center 30%; }
[data-hero="full"] .ph-b, [data-hero="full"] .ph-c { display: none; }
[data-hero="full"] .hero-text { grid-column: 1; max-width: 760px; background: var(--bg); padding: var(--s6); border: 1px solid var(--line); }
[data-hero="full"] .hero h1 { font-size: clamp(48px, 6.4vw, 104px); }

/* Opening layout: split */
[data-hero="split"] .hero { grid-template-columns: 1fr 1fr; padding: 0; gap: 0; align-items: stretch; min-height: min(86vh, 820px); }
[data-hero="split"] .hero-media { grid-column: 1; grid-row: 1; height: auto; min-height: 420px; }
[data-hero="split"] .ph-a { inset: 0; }
[data-hero="split"] .ph-b, [data-hero="split"] .ph-c { display: none; }
[data-hero="split"] .hero-text { grid-column: 2; grid-row: 1; padding: var(--s8) var(--gutter); align-content: center; }
[data-hero="split"] .hero h1 { font-size: clamp(52px, 6.2vw, 112px); }
[data-hero="split"][data-frame="arch"] .ph-a { inset: var(--s6) var(--s6) 0; }
[data-hero="split"][data-frame="oval"] .ph-a { inset: var(--s6); }
[data-hero="split"][data-frame="soft"] .ph-a { inset: var(--s6); }

/* ---------- Ticker ---------- */
.ticker { overflow: hidden; border-block: 1px solid var(--line); background: var(--accent); color: var(--on-accent); }
.ticker-track { display: flex; width: max-content; animation: tick 60s linear infinite; }
.ticker-track span { font-family: var(--f-display); font-style: var(--d-style); font-weight: var(--d-weight); text-transform: var(--d-case); font-size: clamp(28px, 3.2vw, 44px); line-height: 1; padding: 14px 0; white-space: nowrap; }
.ticker-track span::after { content: "✦"; padding: 0 0.7em; font-size: .6em; vertical-align: .25em; }
@keyframes tick { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } html { scroll-behavior: auto; } }

/* ---------- Sections ---------- */
.section { padding: var(--s10) var(--gutter); border-bottom: 1px solid var(--line); }
.section-head { display: grid; gap: var(--s4); margin-bottom: var(--s7); max-width: 1100px; }
.section-head h2 { font-size: clamp(44px, 6vw, 96px); }

/* ---------- Menu ---------- */
.menu-tabs { display: flex; flex-wrap: wrap; gap: var(--s2) var(--s6); border-bottom: 1px solid var(--line); margin-bottom: var(--s5); }
.menu-tabs button {
  background: none; border: 0; padding: var(--s3) 0; cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -1px;
  font-family: var(--f-display); font-style: var(--d-style); font-weight: var(--d-weight); text-transform: var(--d-case); letter-spacing: var(--d-track);
  font-size: clamp(22px, 2.2vw, 32px); line-height: 1.1; color: var(--ink-2);
}
.menu-tabs button sup { font-family: var(--f-body); font-style: normal; font-size: 14px; font-weight: 700; margin-left: 4px; }
.menu-tabs button[aria-selected="true"] { color: var(--ink); border-bottom-color: var(--accent); }
.menu-body { display: grid; grid-template-columns: minmax(0, 1fr) clamp(240px, 26vw, 380px); gap: var(--s8); align-items: start; }
.svc-list { border-top: 1px solid var(--line); }
.svc {
  display: grid; grid-template-columns: minmax(0, 1fr) auto 88px 96px auto; gap: var(--s4) var(--s5); align-items: center;
  padding: var(--s5) 0; border-bottom: 1px solid var(--line);
}
.svc h3 { font-size: 21px; font-weight: 700; line-height: 1.25; }
.svc p { font-size: 15px; color: var(--ink-2); }
.svc .time { font-size: 15px; color: var(--ink-2); text-align: right; font-variant-numeric: tabular-nums; }
.svc .price { font-family: var(--f-display); font-style: var(--d-style); font-weight: var(--d-weight); font-size: 30px; line-height: 1; text-align: right; font-variant-numeric: tabular-nums; }
.svc .price small { display: block; font-family: var(--f-body); font-style: normal; font-size: 14px; color: var(--ink-2); font-weight: 400; margin-bottom: 2px; }
.len { display: inline-flex; border: 1px solid var(--line); border-radius: var(--r-btn); overflow: hidden; }
.len button { background: none; border: 0; border-right: 1px solid var(--line); padding: 8px 10px; font-size: 14px; font-weight: 700; cursor: pointer; color: var(--ink-2); min-height: 40px; }
.len button:last-child { border-right: 0; }
.len button[aria-pressed="true"] { background: var(--ink); color: var(--bg); }
.len-none { font-size: 14px; color: var(--ink-2); }
.add { min-width: 104px; }
.add[aria-pressed="true"] { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.menu-peek { position: sticky; top: calc(var(--top-h) + 32px); aspect-ratio: 3 / 4; }
.menu-peek img { transition: opacity .2s; }

/* ---------- Team ---------- */
.team-list { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(220px, 1fr); gap: var(--s5); overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: var(--s4); }
.stylist { scroll-snap-align: start; display: grid; gap: var(--s3); align-content: start; border-top: 1px solid var(--ink); padding-top: var(--s4); }
.stylist .chairno { font-family: var(--f-display); font-style: var(--d-style); font-weight: var(--d-weight); font-size: 56px; line-height: .9; color: var(--accent-text); }
.stylist .frame { aspect-ratio: 4 / 5; }
.stylist h3 { font-family: var(--f-display); font-style: var(--d-style); font-weight: var(--d-weight); text-transform: var(--d-case); letter-spacing: var(--d-track); font-size: 32px; line-height: 1; }
.stylist .role { font-weight: 700; font-size: 15px; }
.stylist .line { font-size: 15px; color: var(--ink-2); }
.stylist .next { font-size: 15px; border-top: 1px dashed var(--line); padding-top: var(--s2); }
.stylist .next b { color: var(--ink); }
.stylist.is-off { display: none; }

/* ---------- Lookbook ---------- */
.chips { display: flex; flex-wrap: wrap; gap: var(--s2); margin-bottom: var(--s6); }
.chips button { border: 1px solid var(--line); background: none; padding: 8px 16px; min-height: 40px; border-radius: var(--r-btn); font-size: 15px; font-weight: 700; cursor: pointer; }
.chips button[aria-pressed="true"] { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.look-grid { columns: 4 240px; column-gap: var(--s5); }
.look { break-inside: avoid; margin-bottom: var(--s6); }
.look button.open { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; text-align: left; }
.look .frame img { transition: transform .5s; }
.look button.open:hover img { transform: scale(1.04); }
.look .cap { display: flex; justify-content: space-between; align-items: baseline; gap: var(--s3); margin-top: var(--s2); }
.look .cap b { font-size: 16px; }
.look .cap .linkish { font-size: 14px; color: var(--ink-2); }

/* ---------- Policies ---------- */
.policies { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: var(--s8); }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: var(--s5) 40px var(--s5) 0; font-weight: 700; font-size: 20px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 28px; font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding-bottom: var(--s5); color: var(--ink-2); max-width: 60ch; }

/* ---------- Visit ---------- */
.visit { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: var(--s8); align-items: center; }
.visit-photo { aspect-ratio: 4 / 5; }
[data-frame="arch"] .visit-photo, [data-frame="oval"] .visit-photo { overflow: hidden; }
.visit-photo img { width: 100%; height: 100%; object-fit: cover; }
.visit-text { display: grid; gap: var(--s5); }
.visit-text h2 { font-size: clamp(44px, 5.4vw, 88px); }
address { font-style: normal; font-size: 22px; font-weight: 700; line-height: 1.35; }
.hours { border-collapse: collapse; width: 100%; max-width: 440px; font-variant-numeric: tabular-nums; }
.hours td { padding: 8px 0; border-bottom: 1px solid var(--line); }
.hours td:last-child { text-align: right; }
.hours tr.today td { font-weight: 700; color: var(--ink); }
.hours tr.today td:first-child::before { content: ""; display: inline-block; width: 8px; height: 8px; background: var(--accent); margin-right: 8px; vertical-align: .15em; }
.hours td { color: var(--ink-2); }

/* ---------- Footer ---------- */
.foot { padding: var(--s8) var(--gutter) calc(var(--s8) + 64px); display: grid; gap: var(--s5); font-size: 15px; color: var(--ink-2); }
.foot-name { font-size: clamp(64px, 17vw, 300px); color: var(--ink); overflow-wrap: anywhere; }

/* ---------- Bag bar ---------- */
.bag-bar {
  position: fixed; z-index: 45; right: var(--gutter); bottom: 20px; display: flex; align-items: center; gap: var(--s5);
  background: var(--ink); color: var(--bg); padding: 12px 12px 12px 20px; border: 1px solid var(--ink); border-radius: var(--r-btn);
}
.bag-bar p { font-size: 15px; }
.bag-bar .btn-accent:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }

/* ---------- Dialogs ---------- */
dialog { color: var(--ink); background: var(--bg); border: 1px solid var(--line); padding: 0; }
dialog::backdrop { background: rgba(14, 8, 6, 0.72); }
.book { width: min(620px, 100vw); max-width: 100vw; height: 100dvh; max-height: 100dvh; margin: 0 0 0 auto; border-width: 0 0 0 1px; }
.book-inner { display: grid; grid-template-rows: auto 1fr auto; height: 100%; }
.book-top { display: grid; grid-template-columns: 1fr auto; gap: var(--s3) var(--s4); padding: var(--s5) var(--s6) var(--s4); border-bottom: 1px solid var(--line); }
.book-title { font-family: var(--f-display); font-style: var(--d-style); font-weight: var(--d-weight); text-transform: var(--d-case); letter-spacing: var(--d-track); font-size: 36px; line-height: 1; }
.x { background: none; border: 1px solid var(--line); border-radius: var(--r-btn); padding: 6px 12px; min-height: 40px; cursor: pointer; font-weight: 700; font-size: 14px; }
.x:hover { border-color: var(--ink); }
.book-top > .x { grid-row: 1; grid-column: 2; align-self: start; }
.steps { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; counter-reset: st; }
.steps li { counter-increment: st; font-size: 14px; font-weight: 700; color: var(--ink-2); border-top: 3px solid var(--line); padding-top: 6px; }
.steps li::before { content: counter(st) ". "; }
.steps li.done { border-top-color: var(--ink-2); }
.steps li.on { color: var(--ink); border-top-color: var(--accent); }
.book-body { overflow-y: auto; padding: var(--s5) var(--s6); display: grid; gap: var(--s5); align-content: start; }
.book-body h3 { font-size: 15px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); }
.book-foot { border-top: 1px solid var(--line); padding: var(--s4) var(--s6); display: grid; gap: var(--s3); background: var(--surface); }
.book-sum { font-size: 15px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 4px var(--s4); }
.book-sum b { font-size: 17px; }
.book-nav { display: flex; justify-content: space-between; gap: var(--s3); }
.book-nav .btn { flex: 1; }

.pick-list { border-top: 1px solid var(--line); }
.pick { display: grid; grid-template-columns: 1fr auto auto; gap: var(--s3); align-items: center; padding: var(--s3) 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.pick b { font-size: 16px; }
.pick small { display: block; color: var(--ink-2); font-size: 14px; }
.pick .rm { background: none; border: 1px solid var(--line); border-radius: var(--r-btn); padding: 4px 10px; min-height: 36px; cursor: pointer; font-size: 14px; font-weight: 700; }
.pick .rm:hover { border-color: var(--ink); }
.empty { color: var(--ink-2); font-size: 15px; padding: var(--s4); border: 1px dashed var(--line); }
.quick { display: flex; flex-wrap: wrap; gap: var(--s2); }
.quick button { border: 1px solid var(--line); background: none; border-radius: var(--r-btn); padding: 8px 12px; font-size: 14px; font-weight: 700; cursor: pointer; min-height: 40px; }
.quick button:hover { border-color: var(--ink); }

.who { display: grid; gap: 0; border-top: 1px solid var(--line); }
.who label { display: grid; grid-template-columns: 56px 1fr auto; gap: var(--s4); align-items: center; padding: var(--s3) var(--s2); border-bottom: 1px solid var(--line); cursor: pointer; }
.who label:has(input:checked) { background: var(--surface); outline: 2px solid var(--accent); outline-offset: -2px; }
.who input { position: absolute; opacity: 0; pointer-events: none; }
.who label:has(input:focus-visible) { outline: 2px solid var(--accent-text); outline-offset: -2px; }
.who .frame { width: 56px; height: 56px; }
.who b { display: block; font-size: 17px; }
.who small { color: var(--ink-2); font-size: 14px; }
.who .soon { font-size: 14px; text-align: right; color: var(--ink-2); }
.who .anyone { width: 56px; height: 56px; display: grid; place-items: center; border: 1px dashed var(--ink-2); font-weight: 700; font-size: 14px; }
[data-frame="arch"] .who .anyone { border-radius: 9999px 9999px 0 0; }
[data-frame="oval"] .who .anyone { border-radius: 50%; }
[data-frame="soft"] .who .anyone { border-radius: 12px; }

.days { display: grid; grid-auto-flow: column; grid-auto-columns: 72px; gap: var(--s2); overflow-x: auto; padding-bottom: var(--s2); scroll-snap-type: x proximity; }
.days button { scroll-snap-align: start; border: 1px solid var(--line); background: none; border-radius: var(--r-btn); padding: 8px 4px; cursor: pointer; display: grid; gap: 2px; text-align: center; min-height: 72px; }
.days button span { font-size: 14px; color: var(--ink-2); }
.days button b { font-size: 22px; line-height: 1; }
.days button[aria-pressed="true"] { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.days button[aria-pressed="true"] span { color: var(--bg); }
.days button:disabled { opacity: .4; cursor: not-allowed; text-decoration: line-through; }
.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: var(--s2); }
.slots button { border: 1px solid var(--line); background: none; border-radius: var(--r-btn); padding: 10px 4px; cursor: pointer; font-weight: 700; font-size: 15px; font-variant-numeric: tabular-nums; min-height: 44px; }
.slots button:hover { border-color: var(--ink); }
.slots button[aria-pressed="true"] { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.slots button:disabled { opacity: .35; cursor: not-allowed; text-decoration: line-through; }
.slot-note { font-size: 15px; color: var(--ink-2); }

.form { display: grid; gap: var(--s4); }
.fld { display: grid; gap: 6px; border: 0; padding: 0; margin: 0; min-width: 0; }
.fld > span, .fld legend { font-size: 14px; font-weight: 700; letter-spacing: .04em; color: var(--ink-2); padding: 0; margin-bottom: 6px; }
.fld input[type="text"], .fld input[type="tel"], .fld textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line); border-bottom-color: var(--ink-2); border-radius: var(--r-btn); padding: 12px 14px; font-size: 16px;
}
.fld input:focus, .fld textarea:focus { outline: 2px solid var(--accent-text); outline-offset: 0; border-color: transparent; }
.fld textarea { min-height: 88px; resize: vertical; font: inherit; color: inherit; }
.fld .err { color: var(--ink); font-size: 14px; font-weight: 700; }
.fld .err::before { content: "! "; color: var(--accent-text); }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.check input { width: 20px; height: 20px; margin-top: 3px; accent-color: var(--accent); flex: none; }
.receipt { border: 1px solid var(--line); padding: var(--s5); display: grid; gap: var(--s3); }
.receipt .row { display: flex; justify-content: space-between; gap: var(--s4); font-size: 15px; }
.receipt .row.total { border-top: 1px solid var(--line); padding-top: var(--s3); font-weight: 700; font-size: 17px; }
.done-h { font-family: var(--f-display); font-style: var(--d-style); font-weight: var(--d-weight); text-transform: var(--d-case); letter-spacing: var(--d-track); font-size: clamp(40px, 7vw, 64px); line-height: var(--d-lh); }
.demo-note { font-size: 14px; color: var(--ink-2); border-left: 3px solid var(--accent); padding-left: var(--s3); }

.lightbox { max-width: min(1000px, 96vw); max-height: 96dvh; }
.lightbox figure { display: grid; }
.lightbox img { max-height: 78dvh; width: auto; margin: 0 auto; object-fit: contain; }
.lightbox figcaption { padding: var(--s3) var(--s5); display: flex; flex-wrap: wrap; gap: 4px var(--s4); justify-content: space-between; font-weight: 700; }
.credit { font-weight: 400; font-size: 14px; color: var(--ink-2); }
.lb-actions { display: flex; flex-wrap: wrap; gap: var(--s2); padding: 0 var(--s5) var(--s5); }

/* ---------- Studio (customizer) ---------- */
.studio-tab {
  position: fixed; z-index: 46; left: 0; top: 50%; min-height: 44px; padding: 12px 16px;
  writing-mode: vertical-rl; transform: translateY(-50%) rotate(180deg); border-left: 0;
  background: var(--bg); color: var(--ink); border: 1px solid var(--ink); border-radius: var(--r-btn); font-weight: 700; font-size: 15px; cursor: pointer;
}
.studio-tab::before { content: ""; display: inline-block; width: 12px; height: 12px; background: var(--accent); margin-bottom: 10px; border: 1px solid var(--ink); }
.studio-tab:hover { background: var(--ink); color: var(--bg); }
.studio {
  position: fixed; z-index: 60; top: 0; left: 0; bottom: 0; width: min(380px, 100vw);
  display: grid; grid-template-rows: auto 1fr auto; background: var(--bg); border-right: 1px solid var(--ink);
}
.studio-top { display: flex; justify-content: space-between; align-items: start; gap: var(--s4); padding: var(--s5); border-bottom: 1px solid var(--line); }
.studio-kicker { font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); }
.studio-h { font-family: var(--f-display); font-style: var(--d-style); font-weight: var(--d-weight); text-transform: var(--d-case); letter-spacing: var(--d-track); font-size: 30px; line-height: 1; margin-top: 4px; }
.studio-body { overflow-y: auto; padding: var(--s5); display: grid; gap: var(--s6); align-content: start; }
.studio-foot { padding: var(--s4) var(--s5); border-top: 1px solid var(--line); display: grid; gap: var(--s2); }
.studio-note { font-size: 14px; color: var(--ink-2); min-height: 1.4em; }
.swatches { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--s2); }
.swatches button { aspect-ratio: 1; border: 1px solid var(--line); cursor: pointer; padding: 0; position: relative; border-radius: var(--r-btn); overflow: hidden; }
.swatches button i { position: absolute; right: 0; bottom: 0; width: 45%; height: 45%; }
.swatches button[aria-pressed="true"] { outline: 3px solid var(--ink); outline-offset: 2px; }
.inline { display: flex; align-items: center; flex-wrap: wrap; gap: var(--s3); font-size: 14px; margin-top: var(--s3); }
.inline input[type="color"] { width: 44px; height: 36px; border: 1px solid var(--line); background: none; padding: 2px; cursor: pointer; }
.opts { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s2); }
.opts button { border: 1px solid var(--line); background: none; padding: 10px 12px; text-align: left; cursor: pointer; font-size: 15px; font-weight: 700; border-radius: var(--r-btn); min-height: 44px; }
.opts button[aria-pressed="true"] { border-color: var(--ink); background: var(--ink); color: var(--bg); }
.opts-type button { font-size: 22px; line-height: 1.1; font-weight: 400; }
.opts button small { display: block; font-family: var(--f-body); font-size: 14px; font-weight: 400; font-style: normal; text-transform: none; letter-spacing: 0; opacity: .8; }
.checks { display: grid; gap: var(--s2); }
.checks label { display: flex; gap: 10px; align-items: center; font-size: 15px; font-weight: 700; }
.checks input { width: 20px; height: 20px; accent-color: var(--accent); }

.toast { position: fixed; z-index: 70; left: 50%; bottom: 88px; transform: translate(-50%, 16px); background: var(--ink); color: var(--bg); padding: 10px 16px; font-weight: 700; font-size: 15px; opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; max-width: calc(100vw - 32px); border-radius: var(--r-btn); }
.toast.on { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Tablet ---------- */
@media (max-width: 1080px) {
  .top nav { display: none; }
  .top { grid-template-columns: 1fr auto; }
  .hero { grid-template-columns: 1fr; }
  .hero-text, .hero-media { grid-column: 1; }
  .hero-media { order: -1; height: clamp(360px, 70vw, 620px); }
  [data-hero="stack"] .ph-a { inset: 0 34% 0 0; }
  [data-hero="stack"] .ph-b, [data-hero="stack"] .ph-c { width: 31%; height: 47%; }
  [data-hero="split"] .hero { grid-template-columns: 1fr; }
  [data-hero="split"] .hero-media { grid-column: 1; grid-row: auto; height: 70vw; }
  [data-hero="split"] .hero-text { grid-column: 1; grid-row: auto; }
  .menu-body { grid-template-columns: 1fr; }
  .menu-peek { display: none; }
  .policies, .visit { grid-template-columns: 1fr; }
}

/* ---------- Phone ---------- */
@media (max-width: 720px) {
  :root { --top-h: 60px; }
  body { font-size: 16px; }
  .brand-tag { display: none; }
  .brand-name { font-size: 24px; }
  .top .btn { min-height: 40px; padding: 8px 14px; font-size: 14px; }
  .hero { padding: var(--s5) var(--gutter) var(--s8); gap: var(--s5); }
  .hero h1 { font-size: clamp(48px, 14vw, 76px); }
  [data-type="couture"] .hero h1, [data-type="soft"] .hero h1 { font-size: clamp(44px, 12.5vw, 68px); }
  [data-type="street"] .hero h1 { font-size: clamp(36px, 10.4vw, 54px); }
  [data-type="street"] .section-head h2 { font-size: clamp(30px, 8.6vw, 44px); }
  [data-type="street"] .menu-tabs { gap: var(--s1) var(--s5); }
  [data-type="street"] .menu-tabs button { font-size: 17px; }
  [data-type="street"] .brand-name { font-size: 20px; }
  .hero-media { height: 112vw; }
  [data-hero="full"] .hero { min-height: 0; padding: 0 0 var(--s7); display: flex; flex-direction: column; align-items: stretch; }
  [data-hero="full"] .hero-media { inset: auto; }
  [data-hero="full"] .hero-media { order: -1; }
  [data-hero="full"] .hero-media { position: relative; height: 96vw; }
  [data-hero="full"] .hero-text { margin: -64px var(--gutter) 0; padding: var(--s5); }
  [data-hero="full"] .hero h1 { font-size: clamp(42px, 12vw, 64px); }
  [data-hero="split"] .hero-media { height: 100vw; min-height: 0; }
  [data-hero="split"] .hero-text { padding: var(--s6) var(--gutter); }
  .section { padding: var(--s8) var(--gutter); }
  .section-head { margin-bottom: var(--s6); }
  .section-head h2 { font-size: clamp(40px, 11vw, 60px); }
  .svc { grid-template-columns: 1fr auto; grid-template-areas: "name price" "len time" "add add"; gap: var(--s2) var(--s4); }
  .svc > div:first-child { grid-area: name; }
  .svc .len, .svc .len-none { grid-area: len; justify-self: start; }
  .svc .time { grid-area: time; }
  .svc .price { grid-area: price; align-self: start; }
  .svc .add { grid-area: add; width: 100%; }
  .team-list { grid-auto-columns: 78vw; gap: var(--s5); }
  .look-grid { columns: 2 140px; column-gap: var(--s3); }
  .look { margin-bottom: var(--s5); }
  .look .cap { flex-direction: column; gap: 0; }
  .bag-bar { left: 12px; right: 12px; bottom: 12px; justify-content: space-between; }
  .bag-bar.with-tab { bottom: 72px; }
  .studio-tab { left: 12px; top: auto; bottom: 12px; writing-mode: horizontal-tb; transform: none; border-left: 1px solid var(--ink); padding: 12px 18px; min-height: 48px; transition: opacity .2s, transform .2s; }
  .studio-tab::before { margin: 0 10px 0 0; vertical-align: -1px; }
  .studio-tab.tucked { opacity: 0; transform: translateY(12px); pointer-events: none; visibility: hidden; }
  .studio { top: auto; width: 100vw; height: 82dvh; border-right: 0; border-top: 1px solid var(--ink); }
  .book-top, .book-body, .book-foot { padding-left: var(--s4); padding-right: var(--s4); }
  .steps li { font-size: 14px; }
  .toast { bottom: 140px; }
}
