/* Baldwin Beauty Schools — concept design system.
   Colors are sampled from Baldwin's own vector logo artwork: brown #634f26, olive #c0cb84.
   Everything else is derived from those two. Mobile-first. */

@font-face { font-family: "Bricolage Grotesque"; src: url("../fonts/bricolage-grotesque-latin-standard-normal.woff2") format("woff2"); font-weight: 200 800; font-stretch: 75% 100%; font-display: swap; }
@font-face { font-family: "Figtree"; src: url("../fonts/figtree-latin-wght-normal.woff2") format("woff2"); font-weight: 300 900; font-display: swap; }
@font-face { font-family: "Instrument Serif"; src: url("../fonts/instrument-serif-latin-400-italic.woff2") format("woff2"); font-style: italic; font-weight: 400; font-display: swap; }

:root {
  --brown: #634f26;
  --brown-deep: #3a2d14;
  --espresso: #22190b;
  --olive: #c0cb84;
  --olive-bright: #d6df9e;
  --olive-ink: #4f5a1e;
  --cream: #f6f1e6;
  --paper: #fffcf5;
  --white: #ffffff;
  --muted: #62563f;
  --muted-on-dark: #d9cfbb;
  --line: rgba(34, 25, 11, 0.14);
  --line-strong: rgba(34, 25, 11, 0.28);
  --line-on-dark: rgba(246, 241, 230, 0.2);
  --focus: #1a5fd0;

  --f-display: "Bricolage Grotesque", "Figtree", system-ui, sans-serif;
  --f-body: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-accent: "Instrument Serif", Georgia, "Times New Roman", serif;

  --gutter: clamp(16px, 4.2vw, 48px);
  --max: 1240px;
  --radius: 14px;
  --radius-lg: 22px;
  --header-h: 60px;
  --bar-h: 0px;
  --shadow: 0 1px 0 rgba(34, 25, 11, 0.04), 0 10px 30px -18px rgba(34, 25, 11, 0.35);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); scroll-padding-bottom: calc(var(--bar-h) + 16px); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--espresso);
  font: 400 1.0625rem/1.55 var(--f-body);
  font-feature-settings: "ss01" 0;
  overflow-x: hidden;
  padding-bottom: var(--bar-h);
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 { margin: 0; font-family: var(--f-display); font-weight: 700; line-height: 1; letter-spacing: -0.02em; font-variation-settings: "opsz" 96; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: 4px; }
.sr-only { position: absolute !important; 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: -80px; z-index: 100; background: var(--espresso); color: var(--paper); padding: 12px 16px; border-radius: 10px; font-weight: 700; }
.skip:focus { top: 12px; }

.wrap { width: 100%; max-width: calc(var(--max) + 2 * var(--gutter)); margin-inline: auto; padding-inline: var(--gutter); }
.accent { font-family: var(--f-accent); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
.eyebrow { display: inline-flex; align-items: center; gap: 0.6em; margin: 0 0 14px; font: 700 0.75rem/1.2 var(--f-body); letter-spacing: 0.14em; text-transform: uppercase; color: var(--olive-ink); }
.eyebrow::before { content: ""; width: 22px; height: 3px; border-radius: 2px; background: var(--olive); flex: none; }
.on-dark .eyebrow { color: var(--olive); }
.lede { font-size: clamp(1.08rem, 0.5vw + 1rem, 1.3rem); line-height: 1.5; color: var(--muted); max-width: 40em; }
.on-dark .lede { color: var(--muted-on-dark); }
.fine { font-size: 0.875rem; line-height: 1.5; color: var(--muted); }
.on-dark .fine { color: var(--muted-on-dark); }
.num { font-variant-numeric: tabular-nums lining-nums; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  min-height: 50px; padding: 0 22px; border-radius: 999px; border: 2px solid transparent;
  font: 700 1rem/1 var(--f-body); letter-spacing: 0.005em; text-decoration: none; white-space: nowrap;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn .arrow { transition: transform 0.2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }
.btn-primary { background: var(--brown); color: var(--paper); }
.btn-primary:hover { background: var(--brown-deep); }
.btn-olive { background: var(--olive); color: var(--espresso); }
.btn-olive:hover { background: var(--olive-bright); }
.btn-ghost { border-color: var(--line-strong); color: var(--espresso); background: transparent; }
.btn-ghost:hover { border-color: var(--espresso); }
.on-dark .btn-ghost { border-color: var(--line-on-dark); color: var(--paper); }
.on-dark .btn-ghost:hover { border-color: var(--paper); }
.btn-small { min-height: 44px; padding: 0 18px; font-size: 0.95rem; }
.textlink { display: inline-block; padding: 6px 0; font-weight: 700; text-decoration: underline; text-decoration-color: var(--olive); text-decoration-thickness: 3px; text-underline-offset: 0.3em; }
.textlink:hover { text-decoration-color: currentColor; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------- header ---------- */
.utility { display: none; background: var(--espresso); color: var(--muted-on-dark); font-size: 0.8125rem; }
.utility .wrap { display: flex; justify-content: space-between; align-items: center; min-height: 36px; gap: 24px; }
.utility a { color: var(--paper); text-decoration: none; font-weight: 600; }
.utility a:hover { text-decoration: underline; }
.utility .u-phones { display: flex; gap: 22px; }
.utility .u-phones span { color: var(--muted-on-dark); font-weight: 400; margin-right: 6px; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 252, 245, 0.94); backdrop-filter: saturate(1.4) blur(10px); -webkit-backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; gap: 16px; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; min-height: 44px; }
.brand img { width: 40px; height: 40px; border-radius: 3px; }
.brand-name { display: flex; flex-direction: column; font: 700 1.02rem/1.02 var(--f-body); letter-spacing: 0.005em; }
.brand-name small { font: 500 0.72rem/1.2 var(--f-body); letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.nav { display: none; }
.nav a { text-decoration: none; font-weight: 600; font-size: 0.97rem; padding: 10px 4px; border-bottom: 2px solid transparent; }
.nav a:hover, .nav a[aria-current="page"] { border-bottom-color: var(--olive); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-actions .apply-link { display: none; }
.header-actions .visit-btn { display: none; }
.icon-btn { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; min-width: 44px; padding: 0 14px; border-radius: 999px; border: 1.5px solid var(--line-strong); background: var(--paper); font-weight: 700; font-size: 0.95rem; }
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn[aria-expanded="true"] { background: var(--espresso); color: var(--paper); border-color: var(--espresso); }

.popover { position: absolute; right: var(--gutter); top: calc(var(--header-h) + 6px); width: min(360px, calc(100vw - 2 * var(--gutter))); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 24px 60px -24px rgba(34, 25, 11, 0.45); padding: 10px; }
.popover[hidden] { display: none; }
.call-option { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2px 12px; padding: 12px 12px; border-radius: 10px; text-decoration: none; min-height: 56px; }
.call-option:hover { background: var(--cream); }
.call-option b { font-size: 1rem; }
.call-option span { grid-column: 1; font-size: 0.85rem; color: var(--muted); }
.call-option .num { grid-row: 1 / span 2; grid-column: 2; font-weight: 700; color: var(--brown); }
.popover .fine { padding: 6px 12px 4px; margin: 0; }

.menu-panel { border-top: 1px solid var(--line); background: var(--paper); }
.menu-panel .wrap { display: block; }
.menu-panel[hidden] { display: none; }
.menu-panel nav { display: grid; padding: 8px 0 12px; }
.menu-panel nav a { display: flex; justify-content: space-between; align-items: center; min-height: 52px; padding: 0 2px; border-bottom: 1px solid var(--line); text-decoration: none; font: 700 1.2rem/1 var(--f-display); }
.menu-panel .menu-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 6px 0 18px; }

@media (min-width: 1000px) {
  :root { --header-h: 72px; }
  .utility { display: block; }
  .nav { display: flex; gap: clamp(14px, 1.6vw, 26px); margin-right: auto; }
  .brand { margin-right: 12px; }
  .brand img { width: 46px; height: 46px; }
  .header-actions .apply-link { display: inline-flex; }
  .header-actions .visit-btn { display: inline-flex; }
  .header-actions .call-btn, .header-actions .menu-btn { display: none; }
  .menu-panel { display: none !important; }
}

/* ---------- sticky mobile action bar ---------- */
.action-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; display: grid; grid-template-columns: 1fr 1.4fr; gap: 10px; padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom)); background: rgba(255, 252, 245, 0.96); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-top: 1px solid var(--line); transform: translateY(110%); transition: transform 0.3s var(--ease); }
.action-bar.is-on { transform: none; }
.action-bar .btn { min-height: 48px; width: 100%; padding: 0 12px; }
@media (min-width: 1000px) { .action-bar { display: none; } }
@media (prefers-reduced-motion: reduce) { .action-bar { transition: none; } }

/* ---------- sections ---------- */
.section { padding-block: clamp(64px, 9vw, 128px); }
.section-tight { padding-block: clamp(48px, 6vw, 88px); }
.on-dark { background: var(--brown-deep); color: var(--paper); }
.on-espresso { background: var(--espresso); color: var(--paper); }
.on-cream { background: var(--cream); }
.section-head { display: grid; gap: 16px; margin-bottom: clamp(28px, 4vw, 48px); max-width: 52rem; }
.section-head h2 { font-size: clamp(2.05rem, 3.6vw + 0.9rem, 3.9rem); }
.section-head p { margin: 0; }

/* ---------- hero ---------- */
.hero { position: relative; padding-top: clamp(28px, 5vw, 72px); padding-bottom: clamp(40px, 6vw, 96px); overflow: clip; }
.hero-grid { display: grid; gap: 30px; }
.hero h1 { font-size: clamp(2.6rem, 6.2vw + 1rem, 6.2rem); line-height: 0.94; letter-spacing: -0.035em; max-width: 12ch; }
.hero h1 .accent { display: inline; font-size: 1.04em; letter-spacing: -0.02em; color: var(--brown); }
.hero .lede { margin: 20px 0 26px; }
.hero .tertiary { margin-top: 16px; font-size: 0.97rem; color: var(--muted); }
.hero-media { position: relative; }
.hero-stack { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 10px; }
.photo { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--cream); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-stack .photo { aspect-ratio: 4 / 5; }
.hero-stack .photo:nth-child(2) { margin-top: 36px; }
.photo-tag { position: absolute; left: 10px; bottom: 10px; right: 10px; display: inline-flex; flex-wrap: wrap; gap: 6px; }
.photo-tag span { background: rgba(34, 25, 11, 0.78); color: var(--paper); font: 600 0.75rem/1.25 var(--f-body); padding: 6px 9px; border-radius: 6px; }
.est-stamp { position: absolute; z-index: 2; top: -14px; right: 8px; width: 92px; height: 92px; border-radius: 50%; background: var(--olive); color: var(--espresso); display: grid; place-items: center; text-align: center; font: 700 0.68rem/1.1 var(--f-body); letter-spacing: 0.14em; text-transform: uppercase; transform: rotate(-8deg); box-shadow: var(--shadow); }
.est-stamp b { display: block; font: 800 1.6rem/0.95 var(--f-display); letter-spacing: -0.02em; }

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: start; gap: clamp(32px, 5vw, 72px); }
  .hero-media { padding-top: 36px; }
  .hero-stack .photo:nth-child(2) { margin-top: 64px; }
  .est-stamp { width: 118px; height: 118px; top: -30px; right: -18px; font-size: 0.72rem; }
  .est-stamp b { font-size: 2.1rem; }
}

/* hero program answer strip */
.quick { margin-top: 30px; border-top: 1px solid var(--line); padding-top: 18px; }
.quick-label { font: 700 0.75rem/1 var(--f-body); letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.quick-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.quick-list a { display: grid; grid-template-columns: 1fr auto; gap: 2px 14px; align-items: center; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; text-decoration: none; background: var(--paper); transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease); min-height: 56px; }
.quick-list a:hover { border-color: var(--brown); background: #fff; }
.quick-list b { font: 700 1.1rem/1.1 var(--f-display); }
.quick-list span { grid-column: 1; font-size: 0.86rem; color: var(--muted); }
.quick-list .go { grid-row: 1 / span 2; grid-column: 2; font-weight: 700; color: var(--brown); }

/* ---------- program compare ---------- */
.compare-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; padding: 5px; background: var(--cream); border-radius: 999px; margin-bottom: 18px; position: sticky; top: calc(var(--header-h) + 8px); z-index: 5; box-shadow: 0 8px 20px -16px rgba(34, 25, 11, 0.5); }
.compare-tabs button { min-height: 46px; border: 0; border-radius: 999px; background: transparent; font: 700 0.95rem/1 var(--f-body); color: var(--muted); padding: 0 6px; }
.compare-tabs button[aria-selected="true"] { background: var(--brown); color: var(--paper); }
.compare-tabs[hidden] { display: none; }
.programs { display: grid; gap: 18px; }
.program-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(20px, 3vw, 30px); display: flex; flex-direction: column; gap: 18px; box-shadow: var(--shadow); }
.program-card[hidden] { display: none; }
.program-card header { display: grid; gap: 8px; }
.program-card h3 { font-size: clamp(1.8rem, 2vw + 1rem, 2.4rem); }
.program-card .short { margin: 0; color: var(--muted); font-weight: 600; }
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; margin: 0; }
.facts div { background: var(--paper); padding: 12px 14px; display: flex; flex-direction: column-reverse; gap: 4px; }
.facts dt { font: 600 0.72rem/1.2 var(--f-body); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.facts dd { margin: 0; font: 700 1.35rem/1.05 var(--f-display); letter-spacing: -0.01em; }
.facts dd small { display: block; font: 500 0.82rem/1.3 var(--f-body); letter-spacing: 0; color: var(--muted); margin-top: 3px; }
.facts .next dd { color: var(--olive-ink); }
.learn-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.learn-list li { position: relative; padding-left: 20px; }
.learn-list li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 9px; height: 9px; border-radius: 2px; background: var(--olive); }
.program-card .card-foot { margin-top: auto; display: grid; gap: 10px; }
.program-card .card-foot .btn { width: 100%; }
.compare-note { margin-top: 22px; max-width: 60rem; }

@media (min-width: 1000px) {
  .compare-tabs { display: none; }
  .programs { grid-template-columns: repeat(3, 1fr); }
  .program-card[hidden] { display: flex; }
}

/* ---------- method / path ---------- */
.path { display: grid; gap: 16px; counter-reset: step; }
.step { display: grid; gap: 16px; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line-on-dark); border-radius: var(--radius-lg); padding: 18px; }
.step .photo { aspect-ratio: 4 / 3; }
.step-num { font: 800 0.8rem/1 var(--f-body); letter-spacing: 0.16em; color: var(--olive); }
.step h3 { font-size: clamp(1.5rem, 1.6vw + 1rem, 2.1rem); margin: 8px 0 10px; }
.step p { color: var(--muted-on-dark); margin: 0; }
.step .fine { margin-top: 10px; }
.price-list { list-style: none; padding: 0; margin: 14px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.price-list li { display: flex; justify-content: space-between; gap: 8px; padding: 8px 10px; background: rgba(0, 0, 0, 0.18); border-radius: 8px; font-size: 0.9rem; }
.price-list b { color: var(--olive); font-variant-numeric: tabular-nums; }
.ledger { border: 1px solid var(--line-on-dark); border-radius: 12px; padding: 14px; background: rgba(0, 0, 0, 0.16); display: grid; gap: 8px; font-size: 0.95rem; }
.ledger div { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px dashed var(--line-on-dark); padding-bottom: 8px; }
.ledger div:last-child { border-bottom: 0; padding-bottom: 0; }
.ledger span { color: var(--muted-on-dark); }
@media (min-width: 900px) {
  .step { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); align-items: center; padding: 22px; gap: 34px; }
  .step:nth-child(even) .photo, .step:nth-child(even) .ledger-wrap { order: 2; }
}

/* ---------- proof: outcomes ---------- */
.outcomes { display: grid; gap: 12px; }
.outcome { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 20px 22px; display: grid; gap: 6px; }
.outcome b { font: 800 clamp(2.6rem, 3.4vw + 1rem, 4.6rem)/0.9 var(--f-display); letter-spacing: -0.04em; color: var(--brown); font-variant-numeric: tabular-nums; }
.outcome span { font-weight: 700; font-size: 1.05rem; }
.outcome small { color: var(--muted); font-size: 0.9rem; }
.source-chip { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 0.9rem; color: var(--muted); }
.source-chip::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--olive); }
@media (min-width: 800px) { .outcomes { grid-template-columns: repeat(3, 1fr); } }
.outcomes.compact { grid-template-columns: repeat(3, 1fr); gap: 8px; }
.outcomes.compact .outcome { padding: 14px 12px; }
.outcomes.compact .outcome b { font-size: clamp(1.6rem, 2vw + 0.6rem, 2.4rem); }
.outcomes.compact .outcome span { font-size: 0.9rem; }
.outcomes.compact .outcome small { font-size: 0.78rem; }

.disclosure { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: 18px; }
.disclosure summary { display: flex; justify-content: space-between; align-items: center; gap: 12px; min-height: 52px; cursor: pointer; font-weight: 700; list-style: none; }
.disclosure summary::-webkit-details-marker { display: none; }
.disclosure summary::after { content: "+"; font: 400 1.6rem/1 var(--f-body); color: var(--brown); transition: transform 0.2s var(--ease); }
.disclosure[open] summary::after { transform: rotate(45deg); }
.disclosure .body { padding-bottom: 16px; color: var(--muted); }

/* trust row */
.trust { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: 28px; }
.trust div { background: var(--paper); padding: 16px 18px; }
.trust b { display: block; font: 700 1.05rem/1.2 var(--f-display); }
.trust span { font-size: 0.9rem; color: var(--muted); }
@media (min-width: 800px) { .trust { grid-template-columns: repeat(4, 1fr); } }

/* ---------- heritage ---------- */
.heritage-grid { display: grid; gap: 28px; }
.archive { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.archive figure { margin: 0; }
.archive .photo { aspect-ratio: 4 / 3; }
.archive figure.tall { grid-row: span 2; }
.archive .photo.tall { aspect-ratio: 3 / 4; height: 100%; }
.archive figcaption { font-size: 0.8rem; color: var(--muted); margin-top: 6px; line-height: 1.35; }
.archive .bw img { filter: grayscale(1) contrast(1.02); }
.timeline { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 0; border-left: 2px solid var(--olive); }
.timeline li { position: relative; padding: 0 0 18px 22px; }
.timeline li::before { content: ""; position: absolute; left: -7px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--paper); border: 2px solid var(--brown); }
.timeline b { display: block; font: 800 1.35rem/1.1 var(--f-display); color: var(--brown); }
.timeline p { margin: 2px 0 0; }
@media (max-width: 899px) { .archive figure.tall { grid-column: span 2; grid-row: auto; align-self: start; } .archive .photo.tall { aspect-ratio: 5 / 4; height: auto; } }
@media (min-width: 900px) { .heritage-grid { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); align-items: start; gap: clamp(32px, 5vw, 80px); } }

/* ---------- alumni ---------- */
.alumni-feature { display: grid; gap: 22px; }
.video-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: #000; aspect-ratio: 16 / 9; }
.video-card img, .video-card video { width: 100%; height: 100%; object-fit: cover; }
.play { position: absolute; inset: 0; display: grid; place-items: center; background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.55)); border: 0; color: var(--paper); }
.play-disc { width: 76px; height: 76px; border-radius: 50%; background: var(--olive); color: var(--espresso); display: grid; place-items: center; box-shadow: 0 10px 40px -10px rgba(0,0,0,0.6); transition: transform 0.2s var(--ease); }
.play:hover .play-disc { transform: scale(1.06); }
.play-label { position: absolute; left: 16px; bottom: 14px; right: 16px; text-align: left; font-weight: 700; font-size: 0.95rem; text-shadow: 0 1px 12px rgba(0,0,0,0.5); }
.quote-big { font: 400 clamp(1.7rem, 2.4vw + 1rem, 2.8rem)/1.15 var(--f-accent); font-style: italic; letter-spacing: -0.01em; margin: 0; }
.quote-by { margin-top: 16px; display: grid; gap: 2px; }
.quote-by b { font-size: 1.05rem; }
.quote-by span { color: var(--muted); font-size: 0.92rem; }
.on-dark .quote-by span { color: var(--muted-on-dark); }
.quotes { display: grid; gap: 12px; margin-top: 30px; }
.quote-card { border: 1px solid var(--line-on-dark); border-radius: var(--radius); padding: 18px; display: grid; gap: 12px; align-content: start; }
.quote-card blockquote { margin: 0; font-size: 1.02rem; line-height: 1.5; }
@media (min-width: 900px) {
  .alumni-feature { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); align-items: center; gap: 48px; }
  .quotes { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- campuses ---------- */
.campus-cards { display: grid; gap: 14px; }
.campus-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 20px; display: grid; gap: 14px; box-shadow: var(--shadow); }
.campus-card h3 { font-size: 1.8rem; }
.campus-card address { font-style: normal; line-height: 1.45; }
.campus-card .storefront { border-radius: 10px; overflow: hidden; background: var(--cream); aspect-ratio: 479 / 150; max-width: 479px; }
.campus-card .storefront img { width: 100%; height: 100%; object-fit: cover; }
.campus-card .role { font-weight: 600; color: var(--olive-ink); font-size: 0.95rem; }
.kv { display: grid; gap: 6px; margin: 0; }
.kv div { display: grid; grid-template-columns: 7.2em 1fr; gap: 10px; font-size: 0.95rem; }
.kv dt { color: var(--muted); }
.kv dd { margin: 0; }
@media (min-width: 800px) { .campus-cards { grid-template-columns: 1fr 1fr; } }

.map-figure { margin: 0; border-radius: var(--radius-lg); background: var(--cream); border: 1px solid var(--line); overflow: hidden; }
.map-figure svg { width: 100%; height: auto; }
.map-figure figcaption { padding: 10px 16px 14px; font-size: 0.82rem; color: var(--muted); }
.map-pin { cursor: pointer; }
.map-pin circle.halo { transition: r 0.25s var(--ease), opacity 0.25s var(--ease); }
.map-pin[data-active="true"] circle.halo { opacity: 1; }

.selector { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 5px; background: var(--cream); border-radius: 999px; margin-bottom: 18px; }
.selector button { min-height: 48px; border: 0; border-radius: 999px; background: transparent; font: 700 1rem/1 var(--f-body); color: var(--muted); }
.selector button[aria-selected="true"] { background: var(--brown); color: var(--paper); }
.campus-detail { display: grid; gap: 22px; }
.campus-detail[hidden] { display: none; }
.detail-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(20px, 3vw, 32px); box-shadow: var(--shadow); display: grid; gap: 18px; }
.detail-card h2 { font-size: clamp(2.2rem, 3vw + 1rem, 3.4rem); }
.detail-card address { font-style: normal; font-size: 1.12rem; line-height: 1.45; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.chips li { font-size: 0.86rem; font-weight: 600; background: var(--cream); padding: 7px 11px; border-radius: 999px; }
.hours { display: grid; gap: 10px; }
.hours div { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--line); padding-bottom: 8px; font-size: 0.97rem; }
.hours div span:first-child { color: var(--muted); }
@media (min-width: 960px) {
  .campus-layout { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 40px; align-items: start; }
  .campus-layout .map-figure { position: sticky; top: calc(var(--header-h) + 24px); }
}

.compare-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); -webkit-overflow-scrolling: touch; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 560px; font-size: 0.95rem; }
.compare-table th, .compare-table td { text-align: left; vertical-align: top; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.compare-table thead th { font: 700 1.1rem/1.1 var(--f-display); background: var(--cream); }
.compare-table tbody th { font-weight: 600; color: var(--muted); width: 26%; }
.compare-table tr:last-child td, .compare-table tr:last-child th { border-bottom: 0; }

/* stacked cards instead of a table on narrow screens */
@media (max-width: 640px) {
  .compare-table-wrap { overflow: visible; border: 0; background: none; }
  .compare-table { min-width: 0; }
  .compare-table thead { display: none; }
  .compare-table, .compare-table tbody, .compare-table tr, .compare-table th, .compare-table td { display: block; width: auto; }
  .compare-table tr { background: var(--white); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 10px; padding: 6px 0; }
  .compare-table tbody th { width: auto; border: 0; padding: 10px 14px 2px; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; }
  .compare-table td { border: 0; padding: 4px 14px; }
  .compare-table td::before { content: attr(data-campus) " · "; font-weight: 700; color: var(--brown); }
}

/* ---------- aid ---------- */
.aid-grid { display: grid; gap: 14px; }
.aid-card { border: 1px solid var(--line); background: var(--white); border-radius: var(--radius-lg); padding: 22px; display: grid; gap: 12px; align-content: start; }
.aid-card h3 { font-size: 1.45rem; }
.code-box { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; border-radius: 12px; background: var(--espresso); color: var(--paper); }
.code-box b { font: 800 1.8rem/1 var(--f-display); letter-spacing: 0.06em; font-variant-numeric: tabular-nums; }
.code-box small { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-on-dark); margin-bottom: 4px; }
.copy-btn { min-height: 44px; padding: 0 14px; border-radius: 999px; border: 1.5px solid var(--line-on-dark); background: transparent; color: var(--paper); font-weight: 700; }
.copy-btn:hover { border-color: var(--paper); }
.link-list { list-style: none; margin: 0; padding: 0; display: grid; }
.link-list a { display: flex; justify-content: space-between; align-items: center; gap: 10px; min-height: 48px; border-bottom: 1px solid var(--line); text-decoration: none; font-weight: 600; }
.link-list a:hover { color: var(--brown); }
.link-list a::after { content: "↗"; color: var(--brown); font-weight: 400; }
@media (min-width: 900px) { .aid-grid { grid-template-columns: 1.1fr 1fr 1fr; } }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); max-width: 58rem; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 64px; padding: 14px 0; cursor: pointer; list-style: none; font: 700 clamp(1.08rem, 0.5vw + 1rem, 1.25rem)/1.3 var(--f-body); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--cream) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%23634f26' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E") center / 16px no-repeat; transition: transform 0.2s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding: 0 0 20px; color: var(--muted); max-width: 48rem; }
.faq .answer p:last-child { margin-bottom: 0; }

/* ---------- next steps ladder ---------- */
.ladder { display: grid; gap: 12px; }
.rung { border-radius: var(--radius-lg); padding: 22px; display: grid; gap: 10px; align-content: start; border: 1px solid var(--line-on-dark); }
.rung .level { font: 700 0.75rem/1 var(--f-body); letter-spacing: 0.14em; text-transform: uppercase; color: var(--olive); }
.rung h3 { font-size: 1.7rem; }
.rung p { color: var(--muted-on-dark); margin: 0 0 6px; }
.rung .btn { justify-self: start; }
.rung.primary { background: var(--olive); color: var(--espresso); border-color: var(--olive); }
.rung.primary .level { color: var(--olive-ink); }
.rung.primary p { color: #3d3a22; }
@media (min-width: 900px) { .ladder { grid-template-columns: repeat(3, 1fr); } }

/* request-info mini form */
.mini-form { display: grid; gap: 10px; margin-top: 6px; }
.field { display: grid; gap: 6px; }
.field label, .field legend { font-weight: 700; font-size: 0.95rem; }
.field .hint { font-size: 0.85rem; color: var(--muted); }
.input, select.input, textarea.input { width: 100%; min-height: 50px; padding: 12px 14px; border-radius: 12px; border: 1.5px solid var(--line-strong); background: var(--white); font-size: 1rem; }
.input:focus { border-color: var(--brown); outline: 3px solid rgba(26, 95, 208, 0.35); outline-offset: 1px; }
.on-dark .input { background: rgba(255, 255, 255, 0.96); color: var(--espresso); }

/* ---------- footer ---------- */
.site-footer { background: var(--espresso); color: var(--muted-on-dark); padding: 56px 0 calc(28px + var(--bar-h)); font-size: 0.95rem; }
.site-footer a { color: var(--paper); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.foot-grid { display: grid; gap: 30px; }
.foot-brand { display: flex; gap: 14px; align-items: flex-start; }
.foot-brand img { width: 88px; height: 88px; border-radius: 4px; flex: none; }
.foot-brand p { margin: 0; }
.foot-h { font: 700 0.75rem/1 var(--f-body); letter-spacing: 0.14em; text-transform: uppercase; color: var(--olive); margin: 0 0 12px; }
.foot-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.foot-list a { display: inline-block; padding: 5px 0; min-height: 28px; }
.site-footer p a { display: inline-block; padding: 4px 0; }
.foot-campus address { font-style: normal; line-height: 1.5; }
.foot-legal { border-top: 1px solid var(--line-on-dark); margin-top: 36px; padding-top: 20px; display: grid; gap: 10px; font-size: 0.85rem; }
@media (min-width: 900px) { .foot-grid { grid-template-columns: 1.3fr 1fr 1fr 1.2fr; } }

/* ---------- page heads (inner pages) ---------- */
.page-head { padding-top: clamp(24px, 4vw, 56px); padding-bottom: clamp(28px, 4vw, 56px); }
.crumbs { font-size: 0.88rem; color: var(--muted); margin-bottom: 16px; }
.crumbs a { color: var(--muted); }
.page-head h1 { font-size: clamp(2.7rem, 6vw + 1rem, 6rem); line-height: 0.94; letter-spacing: -0.035em; }
.page-head .lede { margin-top: 18px; }
.fact-bar { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; margin: 26px 0 22px; }
.fact-bar div { background: var(--white); padding: 14px 16px; display: flex; flex-direction: column-reverse; gap: 4px; }
.fact-bar dt { font: 600 0.72rem/1.2 var(--f-body); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.fact-bar dd { margin: 0; font: 800 clamp(1.4rem, 1.5vw + 1rem, 2.2rem)/1 var(--f-display); letter-spacing: -0.02em; }
.fact-bar dd small { display: block; font: 500 0.82rem/1.3 var(--f-body); letter-spacing: 0; color: var(--muted); margin-top: 4px; }
@media (min-width: 800px) { .fact-bar { grid-template-columns: repeat(4, 1fr); } }

.subnav { position: sticky; top: var(--header-h); z-index: 20; background: rgba(255, 252, 245, 0.96); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.subnav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.subnav ul::-webkit-scrollbar { display: none; }
.subnav a { display: inline-flex; align-items: center; min-height: 48px; padding: 0 12px; white-space: nowrap; text-decoration: none; font-weight: 600; font-size: 0.93rem; color: var(--muted); border-bottom: 2px solid transparent; }
.subnav a[aria-current="true"] { color: var(--espresso); border-bottom-color: var(--brown); }

.split { display: grid; gap: 28px; }
@media (min-width: 900px) { .split { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(32px, 5vw, 80px); align-items: start; } }
.prose h2 { font-size: clamp(2rem, 3vw + 1rem, 3.4rem); margin-bottom: 16px; }
.prose h3 { font-size: 1.4rem; margin: 26px 0 8px; }
.prose p, .prose li { color: var(--muted); }
.on-dark .prose p, .on-dark .prose li { color: var(--muted-on-dark); }

.hours-bar { display: flex; height: 58px; border-radius: 12px; overflow: hidden; margin: 18px 0 10px; }
.hours-bar span { display: flex; align-items: center; padding: 0 12px; font-weight: 700; font-size: 0.9rem; white-space: nowrap; overflow: hidden; }
.hours-bar .hair { background: var(--brown); color: var(--paper); flex: 800; }
.hours-bar .skin { background: var(--olive); color: var(--espresso); flex: 100; }
.hours-bar .nail { background: var(--espresso); color: var(--paper); flex: 100; }
.hours-legend { display: grid; gap: 4px; font-size: 0.9rem; color: var(--muted); }

.area-list { display: grid; gap: 12px; margin-top: 18px; }
.area { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.area summary { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; cursor: pointer; list-style: none; min-height: 60px; }
.area summary::-webkit-details-marker { display: none; }
.area summary b { font: 700 1.25rem/1.1 var(--f-display); }
.area summary span { font-weight: 700; color: var(--brown); font-variant-numeric: tabular-nums; }
.area .learn-list { padding: 0 18px 18px; }

.cost-table { width: 100%; border-collapse: collapse; font-size: 1rem; }
.cost-table td, .cost-table th { padding: 13px 0; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.cost-table td:last-child, .cost-table th:last-child { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; padding-left: 12px; }
.cost-table small { display: block; color: var(--muted); font-size: 0.85rem; margin-top: 2px; }
.cost-table tfoot th, .cost-table tfoot td { font: 800 1.5rem/1.1 var(--f-display); border-bottom: 0; padding-top: 16px; }
.not-included { margin-top: 16px; padding: 14px 16px; border-radius: 12px; background: var(--cream); font-size: 0.93rem; }
.not-included ul { margin: 6px 0 0; padding-left: 18px; }

.starts { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
.starts li { border: 1px solid var(--line-on-dark); border-radius: 12px; padding: 14px; display: grid; gap: 2px; }
.starts li b { font: 800 1.35rem/1 var(--f-display); }
.starts li span { font-size: 0.85rem; color: var(--muted-on-dark); }
.starts li.is-next { background: var(--olive); color: var(--espresso); border-color: var(--olive); }
.starts li.is-next span { color: #3d3a22; }
.starts li.is-past { display: none; }

.careers { columns: 2 12em; column-gap: 24px; padding-left: 18px; margin: 12px 0 0; }
.careers li { margin-bottom: 6px; break-inside: avoid; }

/* ---------- visit flow ---------- */
.visit-layout { display: grid; gap: 22px; }
@media (min-width: 1000px) { .visit-layout { grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr); gap: 40px; align-items: start; } .visit-aside { position: sticky; top: calc(var(--header-h) + 24px); } }
.flow { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.flow-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 20px; background: var(--espresso); color: var(--paper); font-size: 0.9rem; }
.flow-top b { font-weight: 700; letter-spacing: 0.04em; }
.progress { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; padding: 14px 20px 0; list-style: none; margin: 0; }
.progress li { height: 5px; border-radius: 3px; background: var(--cream); }
.progress li.done, .progress li.current { background: var(--brown); }
.progress li.current { background: var(--olive); }
.flow form { padding: 20px; }
.flow fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
.flow .step-title { font: 700 clamp(1.6rem, 1.6vw + 1rem, 2.2rem)/1.05 var(--f-display); margin: 0 0 6px; letter-spacing: -0.02em; }
.flow .step-sub { color: var(--muted); margin: 0 0 18px; }
.flow-step[hidden] { display: none; }
.choice-grid { display: grid; gap: 10px; }
@media (min-width: 640px) { .choice-grid.two { grid-template-columns: 1fr 1fr; } }
.choice { position: relative; display: block; }
.choice input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.choice .face { display: grid; gap: 4px; padding: 16px 18px 16px 52px; border: 1.5px solid var(--line-strong); border-radius: 14px; background: var(--paper); min-height: 64px; transition: border-color 0.15s var(--ease), background-color 0.15s var(--ease); }
.choice .face::before { content: ""; position: absolute; left: 18px; top: 18px; width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--line-strong); background: var(--white); }
.choice input:checked + .face { border-color: var(--brown); background: #fbf6e8; }
.choice input:checked + .face::before { border-color: var(--brown); background: radial-gradient(circle, var(--brown) 0 5px, var(--white) 6px); }
.choice input:focus-visible + .face { outline: 3px solid var(--focus); outline-offset: 2px; }
.choice .face b { font-size: 1.05rem; }
.choice .face span { font-size: 0.88rem; color: var(--muted); }
.flow-nav { display: flex; justify-content: space-between; gap: 10px; margin-top: 22px; }
.flow-nav .btn { min-width: 120px; }
.error { color: #9b1c1c; font-weight: 600; font-size: 0.92rem; min-height: 1.2em; margin: 10px 0 0; }
.field-row { display: grid; gap: 14px; }
@media (min-width: 640px) { .field-row.two { grid-template-columns: 1fr 1fr; } }
.review { margin: 0; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.review div { background: var(--paper); padding: 12px 14px; display: grid; grid-template-columns: 8.5em 1fr auto; gap: 10px; align-items: center; }
.review dt { color: var(--muted); font-size: 0.9rem; }
.review dd { margin: 0; font-weight: 700; }
.review button { border: 0; background: none; color: var(--brown); font-weight: 700; text-decoration: underline; min-height: 44px; padding: 0 4px; }
.confirm { padding: 26px 20px 24px; display: grid; gap: 16px; }
.confirm[hidden] { display: none; }
.confirm .tick { width: 56px; height: 56px; border-radius: 50%; background: var(--olive); display: grid; place-items: center; }
.confirm h2 { font-size: clamp(1.9rem, 2vw + 1rem, 2.6rem); }
.next-steps { list-style: none; counter-reset: n; padding: 0; margin: 0; display: grid; gap: 10px; }
.next-steps li { counter-increment: n; display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; }
.next-steps li::before { content: counter(n); width: 30px; height: 30px; border-radius: 50%; background: var(--cream); display: grid; place-items: center; font-weight: 800; color: var(--brown); }
.preview-note { border: 1.5px dashed var(--line-strong); border-radius: 12px; padding: 12px 14px; font-size: 0.9rem; color: var(--muted); background: var(--paper); }
.aside-card { background: var(--cream); border-radius: var(--radius-lg); padding: 22px; display: grid; gap: 14px; }
.aside-card h2 { font-size: 1.6rem; }
.aside-call { display: grid; gap: 8px; }
.aside-call a { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2px 10px; padding: 14px 16px; border-radius: 12px; background: var(--white); border: 1px solid var(--line); text-decoration: none; min-height: 60px; }
.aside-call a b { font-size: 1rem; }
.aside-call a span { grid-column: 1; font-size: 0.85rem; color: var(--muted); }
.aside-call a .num { grid-row: 1 / span 2; grid-column: 2; font-weight: 800; color: var(--brown); }
.expect { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.expect li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; }
.expect li::before { content: ""; width: 12px; height: 12px; margin-top: 6px; border-radius: 3px; background: var(--olive); }

/* ---------- motion ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); transition-delay: calc(var(--i, 0) * 90ms); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- print-ish safety ---------- */
@media (max-width: 440px) {
  .brand-name { font-size: 0.92rem; }
  .brand-name small { display: none; }
  .icon-btn { padding: 0 12px; }
}
@media (max-width: 380px) {
  .facts dd { font-size: 1.2rem; }
  .btn { padding: 0 16px; }
  .brand-name { font-size: 0.95rem; }
}

/* ---------- hero entrance (direction A): a load-time choreography, once ---------- */
.hero h1 .mask { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero h1 .line { display: block; }
.hero .accent { position: relative; }
.hero .accent::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0.02em; height: 0.12em; background: var(--olive); z-index: -1; border-radius: 2px; transform-origin: left; }
.js.motion-ok .hero-enter .h-in { opacity: 0; transform: translateY(16px); animation: h-in 0.9s var(--ease) forwards; animation-delay: calc(0.35s + var(--i, 0) * 0.11s); }
.js.motion-ok .hero-enter .h-line { transform: translateY(112%); animation: h-line 1.05s cubic-bezier(0.16, 0.8, 0.18, 1) forwards; animation-delay: calc(0.15s + var(--i, 0) * 0.14s); }
.js.motion-ok .hero-enter .accent::after { transform: scaleX(0); animation: h-rule 0.7s var(--ease) forwards; animation-delay: 1.25s; }
.js.motion-ok .hero-enter .h-photo { opacity: 0; transform: translate3d(var(--fx0, 0px), var(--fy0, 0px), 0) rotate(var(--fr0, 0deg)) scale(0.9); animation: h-photo 1.35s cubic-bezier(0.16, 0.8, 0.18, 1) forwards; animation-delay: calc(0.25s + var(--i, 0) * 0.18s); }
.js.motion-ok .hero-enter .h-stamp { opacity: 0; transform: rotate(-40deg) scale(0.3); animation: h-stamp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; animation-delay: 1.1s; }
.js.motion-ok .hero-enter .h-photo img { animation: h-img 6s var(--ease) forwards; transform: scale(1.08); animation-delay: 0.3s; }
@keyframes h-in { to { opacity: 1; transform: none; } }
@keyframes h-line { to { transform: none; } }
@keyframes h-rule { to { transform: none; } }
@keyframes h-photo { to { opacity: 1; transform: translate3d(0, 0, 0) rotate(var(--fr, 0deg)) scale(1); } }
@keyframes h-stamp { to { opacity: 1; transform: rotate(-8deg) scale(1); } }
@keyframes h-img { to { transform: scale(1); } }
.js.motion-ok .photo.parallax img { will-change: transform; }

/* the fan: three stills dealt from one stack, then a fine-pointer drift */
.hero-fan { position: relative; height: 100%; min-height: 300px; }
.hero-fan .photo { position: absolute; box-shadow: 0 30px 60px -30px rgba(34, 25, 11, 0.55); }
.hero-fan .f1 { left: 4%; top: 0; width: 56%; aspect-ratio: 4 / 5; --fr: -3deg; --fx0: 40%; --fy0: 6%; --fr0: 8deg; z-index: 2; }
.hero-fan .f2 { right: 0; top: 22%; width: 50%; aspect-ratio: 1 / 1; --fr: 4deg; --fx0: -30%; --fy0: -10%; --fr0: -9deg; z-index: 3; }
.hero-fan .f3 { left: 26%; bottom: 0; width: 54%; aspect-ratio: 4 / 3; --fr: -1deg; --fx0: 0%; --fy0: -30%; --fr0: 3deg; z-index: 1; }
.hero-fan .photo { transform: rotate(var(--fr, 0deg)); }
.js.motion-ok .hero-fan.is-settled .photo { transition: transform 0.6s var(--ease); transform: translate3d(calc(var(--mx, 0) * var(--depth, 10px)), calc(var(--my, 0) * var(--depth, 10px)), 0) rotate(var(--fr, 0deg)); }
.hero-fan .f1 { --depth: 14px; } .hero-fan .f2 { --depth: 22px; } .hero-fan .f3 { --depth: 8px; }
.hero-media { min-height: 360px; }
@media (min-width: 900px) { .hero-media { min-height: 560px; } .hero-fan { height: 560px; } }
/* Phones: a taller fan so all three stills read; the perm shot sits in front at the bottom and the stamp above everything. */
@media (max-width: 899px) { .hero-media { order: -1; min-height: 0; height: min(88vw, 400px); margin: 8px 0 14px; } .hero-fan .f1 { width: 54%; } .hero-fan .f2 { top: 8%; width: 46%; } .hero-fan .f3 { bottom: 0; width: 54%; left: 24%; z-index: 4; } .hero-fan .f1 .photo-tag { top: 10px; bottom: auto; } .hero-fan { height: 100%; } .est-stamp { z-index: 5; top: -6px; right: -2px; width: 80px; height: 80px; font-size: 0.62rem; } .est-stamp b { font-size: 1.4rem; } .hero { padding-top: 16px; } .hero-grid { gap: 22px; } }

/* ---------- recent work grid ---------- */
.work-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.work a { display: block; text-decoration: none; color: inherit; }
.work .photo { border-radius: var(--radius); }
.work .photo img { transition: transform 0.6s var(--ease); }
.work a:hover .photo img { transform: scale(1.04); }
.work-cap { display: grid; gap: 2px; padding: 10px 2px 0; }
.work-cap b { font-size: 0.95rem; }
.work-cap span { font-size: 0.82rem; color: var(--muted); }
@media (min-width: 800px) { .work-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
.photo.film { position: relative; }
.photo.film video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.6s var(--ease); }
.photo.film.is-playing video { opacity: 1; }
