/* Maison Hair — layout and components. Mobile first. */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
p { margin: 0 0 1.1em; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: var(--track-tight);
  line-height: 1.08;
  margin: 0;
}
.skip { position: absolute; left: -999px; top: 0; }
.skip:focus { left: var(--gutter); top: 12px; z-index: 200; background: var(--white); padding: 10px 16px; }
:focus-visible { outline: 1px solid var(--brass); outline-offset: 4px; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section) 0; }
.desk { display: none; }
@media (min-width: 900px) { .desk { display: inline; } }

.label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--fs-label);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 22px;
}
.lead { font-size: var(--fs-lead); line-height: 1.7; color: var(--muted); max-width: var(--measure); }
.muted { color: var(--muted); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 50px; padding: 0 30px;
  font-family: var(--font-display); font-size: 0.76rem;
  letter-spacing: 0.24em; text-transform: uppercase; text-decoration: none;
  border: 1px solid var(--walnut); background: var(--walnut); color: var(--ivory);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  cursor: pointer;
}
.btn:hover { background: var(--brass); border-color: var(--brass); }
.btn--ghost { background: transparent; color: var(--walnut); }
.btn--ghost:hover { background: var(--walnut); color: var(--ivory); border-color: var(--walnut); }
.btn--light { background: var(--ivory); color: var(--walnut); border-color: var(--ivory); }
.btn--light:hover { background: var(--brass); color: var(--white); border-color: var(--brass); }
.link {
  font-family: var(--font-display); font-size: 0.74rem; letter-spacing: 0.24em;
  text-transform: uppercase; text-decoration: none; color: var(--walnut);
  border-bottom: 1px solid var(--brass); padding-bottom: 6px;
  display: inline-block; min-height: 24px;
}
.link:hover { color: var(--brass); }

/* Header */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 244, 238, 0.92);
  backdrop-filter: saturate(1.2) blur(10px);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.header.is-scrolled { border-bottom-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo {
  font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.34em;
  text-transform: uppercase; text-decoration: none; color: var(--walnut); white-space: nowrap;
}
.nav { display: none; }
.nav a {
  font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; text-decoration: none; color: var(--ink);
  padding: 10px 0; position: relative;
}
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 1px; background: var(--brass); transition: right .4s var(--ease); }
.nav a:hover::after, .nav a[aria-current="page"]::after { right: 0; }
.header__book { display: none; }
.menu-btn {
  width: 48px; height: 48px; margin-right: -12px; background: none; border: 0; cursor: pointer;
  display: grid; place-content: center; gap: 7px;
}
.menu-btn span { display: block; width: 26px; height: 1px; background: var(--walnut); }
@media (min-width: 1000px) {
  .header__inner { height: 88px; }
  .nav { display: flex; gap: 34px; }
  .header__book { display: inline-flex; min-height: 44px; padding: 0 24px; }
  .menu-btn { display: none; }
}

/* Overlay menu */
.overlay {
  position: fixed; inset: 0; z-index: 100; background: var(--espresso); color: var(--ivory);
  display: flex; flex-direction: column; padding: 0 var(--gutter) calc(32px + env(safe-area-inset-bottom));
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
}
.overlay.is-open { opacity: 1; visibility: visible; }
.overlay__top { display: flex; justify-content: space-between; align-items: center; height: 72px; }
.overlay .logo { color: var(--ivory); }
.close-btn {
  width: 48px; height: 48px; margin-right: -12px; background: none; border: 0; color: var(--ivory);
  font-size: 2rem; font-weight: 200; cursor: pointer; line-height: 1;
}
.overlay nav { display: flex; flex-direction: column; margin-top: 6vh; }
.overlay nav a {
  font-family: var(--font-display); font-size: clamp(2rem, 9vw, 3rem); text-decoration: none;
  line-height: 1.5; color: var(--ivory);
}
.overlay nav a[aria-current="page"] { color: var(--brass-soft); }
.overlay__foot { margin-top: auto; display: grid; gap: 18px; }
.overlay__foot .btn { width: 100%; }
.overlay__foot a:not(.btn) { color: var(--travertine); font-size: 0.95rem; text-decoration: none; }
body.menu-open { overflow: hidden; }

/* Sticky booking bar (phones) */
.bookbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: grid; grid-template-columns: 1fr auto; gap: 10px;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: rgba(248, 244, 238, 0.96); border-top: 1px solid var(--line);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transform: translateY(0); transition: transform .4s var(--ease);
}
.bookbar .btn { min-height: 48px; padding: 0 18px; white-space: nowrap; }
.bookbar .btn--ghost { padding: 0 20px; }
body { padding-bottom: calc(var(--bar-h) + env(safe-area-inset-bottom)); }
@media (min-width: 768px) {
  .bookbar { display: none; }
  body { padding-bottom: 0; }
}

/* HERO — typographic opener over an arched panorama */
.hero { padding: clamp(36px, 7vw, 84px) 0 0; overflow: hidden; }
.hero__eyebrow { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; }
.hero h1 {
  font-size: var(--fs-mega); font-weight: 400; line-height: 0.98; letter-spacing: -0.02em;
  color: var(--walnut); margin: 6px 0 0;
}
.hero h1 em { font-style: normal; color: var(--brass); }
.hero__row { display: grid; gap: 28px; margin: 28px 0 40px; }
.hero__row p { margin: 0; max-width: 44ch; color: var(--muted); font-size: var(--fs-lead); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center; }
.hero__frame {
  position: relative; border-radius: var(--arch); overflow: hidden;
  aspect-ratio: 4 / 5; background: var(--travertine);
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.hero__caption {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  font-family: var(--font-display); font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--white); text-shadow: 0 1px 12px rgba(0,0,0,.35); white-space: nowrap;
}
@media (min-width: 900px) {
  .hero__row { grid-template-columns: 1fr auto; align-items: end; margin: 36px 0 56px; }
  .hero__frame { aspect-ratio: 16 / 8; border-radius: 48vw 48vw 0 0 / 40vw 40vw 0 0; }
  .hero__frame img { object-position: 50% 55%; }
}

/* Marquee */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; background: var(--linen); }
.marquee__track { display: flex; width: max-content; }
.marquee__track span {
  font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--walnut); padding: 20px 0; white-space: nowrap;
}
.marquee__track span::after { content: "✦"; color: var(--brass); margin: 0 2.2em; font-size: 0.6rem; vertical-align: 2px; }
@media (prefers-reduced-motion: no-preference) {
  .marquee__track { animation: marquee 48s linear infinite; }
  @keyframes marquee { to { transform: translateX(-50%); } }
}

/* Split intro */
.split { display: grid; gap: 44px; align-items: center; }
.arch { border-radius: var(--arch); overflow: hidden; background: var(--travertine); }
.arch img { width: 100%; height: 100%; object-fit: cover; }
.split__img { aspect-ratio: 4 / 5; max-width: 520px; }
.split h2 { font-size: var(--fs-h2); color: var(--walnut); margin-bottom: 26px; }
.sig { font-family: var(--font-display); letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.74rem; color: var(--walnut); margin-top: 28px; }
.sig small { display: block; color: var(--muted); letter-spacing: 0.14em; margin-top: 4px; font-size: 0.7rem; }
@media (min-width: 900px) {
  .split { grid-template-columns: 5fr 6fr; gap: clamp(48px, 8vw, 128px); }
  .split--flip { grid-template-columns: 6fr 5fr; }
  .split--flip .split__img { order: 2; justify-self: end; }
}

/* Numbered menu */
.menu-sec { background: var(--linen); }
.menu-head { display: grid; gap: 20px; margin-bottom: 48px; }
.menu-head h2 { font-size: var(--fs-h2); color: var(--walnut); }
.menu-grid { display: grid; gap: 56px; }
.menu-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.menu-item {
  display: grid; grid-template-columns: 52px 1fr auto; gap: 4px 16px; align-items: baseline;
  padding: 26px 0; border-bottom: 1px solid var(--line);
}
.menu-item__num { font-family: var(--font-display); font-size: 1.6rem; color: var(--brass); line-height: 1; }
.menu-item h3 { font-size: var(--fs-h3); color: var(--walnut); }
.menu-item p { grid-column: 2 / 4; margin: 6px 0 0; color: var(--muted); font-size: 0.98rem; max-width: 48ch; }
.menu-item__price { font-family: var(--font-display); letter-spacing: 0.08em; font-size: 1rem; color: var(--walnut); white-space: nowrap; }
.menu-item__price small { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-right: 6px; }
.menu-feature { aspect-ratio: 4 / 5; position: relative; }
.menu-feature .arch { height: 100%; }
.menu-feature__tag {
  position: absolute; right: -8px; bottom: 36px; background: var(--walnut); color: var(--ivory);
  padding: 18px 22px; max-width: 230px; font-size: 0.9rem; line-height: 1.5;
}
.menu-feature__tag .label { display: block; color: var(--brass-soft); margin-bottom: 8px; }
.menu-foot { margin-top: 40px; display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
@media (min-width: 900px) {
  .menu-head { grid-template-columns: 1fr 1fr; align-items: end; margin-bottom: 64px; }
  .menu-grid { grid-template-columns: 7fr 4fr; gap: clamp(48px, 7vw, 112px); align-items: start; }
  .menu-item { grid-template-columns: 84px 1fr auto; padding: 32px 0; }
  .menu-item__num { font-size: 2.4rem; }
  .menu-feature { position: sticky; top: 120px; }
  .menu-feature__tag { right: -28px; }
}
@media (max-width: 899px) { .menu-feature { max-width: 440px; } .menu-feature__tag { right: 16px; } }

/* Lookbook */
.look-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 44px; }
.look-head h2 { font-size: var(--fs-h2); color: var(--walnut); }
.reel {
  display: grid; grid-auto-flow: column; grid-auto-columns: 76%; gap: 14px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding: 0 var(--gutter);
  padding: 0 var(--gutter) 12px; margin: 0 calc(var(--gutter) * -1);
  scrollbar-width: none;
}
.reel::-webkit-scrollbar { display: none; }
.reel figure { margin: 0; scroll-snap-align: start; }
.reel .ph { aspect-ratio: 4 / 5; overflow: hidden; background: var(--travertine); }
.reel .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.reel figure:hover img { transform: scale(1.03); }
.reel figcaption { display: flex; justify-content: space-between; gap: 12px; padding-top: 14px; font-size: 0.9rem; }
.reel figcaption b { font-family: var(--font-display); font-weight: 400; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--walnut); }
.reel figcaption span { color: var(--muted); font-size: 0.85rem; }
.reel figure:nth-child(odd) .ph { border-radius: var(--arch); }
@media (min-width: 900px) {
  .reel { grid-auto-flow: row; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.4vw, 36px); overflow: visible; margin: 0; padding: 0; }
  .reel figure:nth-child(2) { margin-top: 96px; }
  .reel figure:nth-child(3) { margin-top: 40px; }
  .reel figure:nth-child(4) { margin-top: 136px; }
}

/* Ritual: floating card over full-bleed */
.ritual { position: relative; background: var(--espresso); }
.ritual__img { aspect-ratio: 4 / 5; overflow: hidden; }
.ritual__img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.ritual__card { background: var(--ivory); padding: 40px var(--gutter) 48px; }
.ritual__card h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); color: var(--walnut); margin-bottom: 18px; }
.steps { list-style: none; margin: 26px 0 30px; padding: 0; counter-reset: s; }
.steps li { counter-increment: s; display: grid; grid-template-columns: 40px 1fr; padding: 12px 0; border-top: 1px solid var(--line); font-size: 0.98rem; }
.steps li::before { content: "0" counter(s); font-family: var(--font-display); color: var(--brass); font-size: 0.85rem; padding-top: 3px; }
@media (min-width: 900px) {
  .ritual { min-height: min(88vh, 860px); display: flex; align-items: flex-end; }
  .ritual__img { position: absolute; inset: 0; aspect-ratio: auto; }
  .ritual__img img { object-position: 50% 40%; }
  .ritual__card { position: relative; max-width: 460px; margin: 0 0 clamp(40px, 6vw, 88px) calc(max(var(--gutter), (100vw - var(--max)) / 2 + var(--gutter))); padding: 48px 44px; }
}

/* Team */
.team-grid { display: grid; gap: 48px; }
.team-feature { aspect-ratio: 4 / 5; }
.team-feature img { width: 100%; height: 100%; object-fit: cover; object-position: 35% 30%; }
.team-list { list-style: none; margin: 32px 0 0; padding: 0; border-top: 1px solid var(--line); }
.team-list li { padding: 22px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto; gap: 4px 16px; align-items: center; }
.team-list h3 { font-size: 1.35rem; color: var(--walnut); }
.team-list .role { grid-column: 1; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); font-family: var(--font-display); }
.team-list .spec { grid-column: 1; color: var(--muted); font-size: 0.95rem; margin: 0; }
.team-list .link { grid-column: 2; grid-row: 1 / 4; align-self: center; white-space: nowrap; }
@media (min-width: 900px) {
  .team-grid { grid-template-columns: 5fr 6fr; gap: clamp(48px, 8vw, 128px); align-items: center; }
}
@media (max-width: 480px) {
  .team-list li { grid-template-columns: 1fr; }
  .team-list .link { grid-column: 1; grid-row: auto; justify-self: start; margin-top: 10px; }
}

/* Reviews — single large quote with crossfade */
.quote-sec { background: var(--walnut); color: var(--ivory); text-align: center; }
.quote-sec .label { color: var(--brass-soft); }
.quotes { position: relative; display: grid; max-width: 980px; margin: 0 auto; }
.quote { grid-area: 1 / 1; margin: 0; opacity: 0; visibility: hidden; transition: opacity 1s var(--ease), visibility 1s; }
.quote.is-active { opacity: 1; visibility: visible; }
.quote p { font-family: var(--font-display); font-size: clamp(1.5rem, 3.1vw, 2.6rem); line-height: 1.35; margin: 0 0 30px; }
.quote cite { font-style: normal; font-size: 0.74rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--travertine); font-family: var(--font-display); }
.dots { display: flex; justify-content: center; gap: 4px; margin-top: 36px; }
.dots button { width: 44px; height: 44px; background: none; border: 0; cursor: pointer; display: grid; place-items: center; }
.dots button::before { content: ""; width: 28px; height: 1px; background: rgba(248,244,238,.35); transition: background .3s; }
.dots button[aria-current="true"]::before { background: var(--brass-soft); height: 2px; }
.rating { margin: 0 0 26px; font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--travertine); font-family: var(--font-display); }
.rating b { color: var(--brass-soft); font-weight: 400; letter-spacing: 0.3em; }

/* Visit band */
.visit { display: grid; }
.visit__img { aspect-ratio: 4 / 5; overflow: hidden; }
.visit__img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.visit__body { padding: var(--section) var(--gutter); background: var(--linen); }
.visit__body h2 { font-size: var(--fs-h2); color: var(--walnut); margin-bottom: 24px; }
.hours { display: grid; grid-template-columns: auto 1fr; gap: 10px 28px; margin: 28px 0 34px; font-size: 0.98rem; }
.hours dt { font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--walnut); padding-top: 4px; }
.hours dd { margin: 0; color: var(--muted); }
.addr { font-style: normal; font-size: 1.05rem; line-height: 1.7; }
.addr a { text-decoration: none; border-bottom: 1px solid var(--line); }
@media (min-width: 900px) {
  .visit { grid-template-columns: 1fr 1fr; }
  .visit__img { aspect-ratio: auto; min-height: 100%; }
  .visit__body { padding: var(--section) clamp(40px, 7vw, 112px); }
}

/* Final CTA + jumbo wordmark footer */
.cta { text-align: center; }
.cta h2 { font-size: var(--fs-h1); color: var(--walnut); margin-bottom: 26px; }
.cta p { margin: 0 auto 34px; }
.cta .btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

.footer { background: var(--espresso); color: var(--travertine); padding: clamp(64px, 8vw, 104px) 0 28px; overflow: hidden; }
.footer__grid { display: grid; gap: 40px; grid-template-columns: 1fr 1fr; }
.footer h4 { font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass-soft); margin-bottom: 18px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.footer a { text-decoration: none; color: var(--ivory); display: inline-block; padding: 6px 0; }
.footer a:hover { color: var(--brass-soft); }
.footer p { font-size: 0.95rem; margin: 0 0 6px; }
.footer__about { grid-column: 1 / -1; max-width: 36ch; }
.wordmark {
  font-family: var(--font-display); font-size: clamp(3rem, 15.4vw, 15rem); line-height: 0.9; text-transform: uppercase;
  color: var(--ivory); letter-spacing: 0.02em; white-space: nowrap; margin: clamp(56px, 8vw, 96px) 0 24px; text-align: center; opacity: 0.94;
}
.footer__legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px; font-size: 0.8rem; color: var(--stone); border-top: 1px solid rgba(227,214,196,.18); padding-top: 22px; }
.footer__legal a { color: var(--stone); padding: 0; }
@media (min-width: 900px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer__about { grid-column: auto; }
}

/* Inner page hero */
.page-hero { padding: clamp(48px, 8vw, 112px) 0 clamp(40px, 6vw, 80px); }
.page-hero h1 { font-size: var(--fs-h1); color: var(--walnut); margin-bottom: 24px; }
.page-hero--split .wrap { display: grid; gap: 40px; align-items: end; }
.page-hero__img { aspect-ratio: 4 / 5; max-width: 440px; }
@media (min-width: 900px) {
  .page-hero--split .wrap { grid-template-columns: 1.3fr 1fr; gap: clamp(48px, 8vw, 120px); }
  .page-hero__img { justify-self: end; width: 100%; }
}

/* Services page: tabs + price list */
.tabs { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; border-bottom: 1px solid var(--line); margin: 0 calc(var(--gutter) * -1) 48px; padding: 0 var(--gutter); }
.tabs::-webkit-scrollbar { display: none; }
.tab {
  flex: none; min-height: 52px; padding: 0 18px; background: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); border-bottom: 1px solid transparent; margin-bottom: -1px;
}
.tab[aria-selected="true"] { color: var(--walnut); border-bottom-color: var(--brass); }
@media (min-width: 900px) { .tabs { margin: 0 0 56px; padding: 0; gap: 20px; } .tab { padding: 0 6px; } }
.panel { display: grid; gap: 48px; }
.panel[hidden] { display: none; }
.panel__intro h2 { font-size: var(--fs-h2); color: var(--walnut); margin-bottom: 18px; }
.panel__img { aspect-ratio: 4 / 5; max-width: 380px; margin-top: 32px; }
@media (min-width: 900px) { .panel { grid-template-columns: 4fr 7fr; gap: clamp(48px, 8vw, 128px); } }
.prices { list-style: none; margin: 0; padding: 0; }
.prices li { padding: 22px 0; border-bottom: 1px solid var(--line); }
.prices li:first-child { border-top: 1px solid var(--line); }
.prices .row { display: flex; align-items: baseline; gap: 12px; }
.prices h3 { font-size: 1.2rem; color: var(--walnut); }
.prices .dots-leader { flex: 1; border-bottom: 1px dotted var(--stone); transform: translateY(-5px); min-width: 20px; }
.prices .price { font-family: var(--font-display); color: var(--walnut); white-space: nowrap; letter-spacing: 0.06em; }
.prices p { margin: 8px 0 0; color: var(--muted); font-size: 0.96rem; max-width: 56ch; }
.prices .meta { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass); font-family: var(--font-display); margin-top: 8px; display: block; }
.note { margin-top: 32px; padding: 22px 24px; background: var(--linen); font-size: 0.95rem; color: var(--muted); }

/* Cards */
.cards { display: grid; gap: 20px; }
@media (min-width: 700px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }
.card { background: var(--white); padding: 36px 30px; border: 1px solid var(--line); }
.card h3 { font-size: 1.35rem; color: var(--walnut); margin: 0 0 12px; }
.card p { color: var(--muted); margin: 0; font-size: 0.98rem; }
.card .label { margin-bottom: 14px; }

/* About: stylists */
.stylists { display: grid; gap: 48px 24px; }
@media (min-width: 640px) { .stylists { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .stylists { grid-template-columns: repeat(3, 1fr); } }
.stylist .arch { aspect-ratio: 4 / 5; margin-bottom: 22px; }
.stylist .arch img { object-position: 50% 25%; }
.stylist h3 { font-size: 1.5rem; color: var(--walnut); }
.stylist .role { font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); margin: 6px 0 12px; display: block; }
.stylist p { color: var(--muted); font-size: 0.98rem; }
.stylist .work { font-size: 0.82rem; color: var(--muted); margin-top: -12px; margin-bottom: 16px; font-style: italic; }

/* Gallery page */
.masonry { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; grid-auto-flow: dense; }
.masonry figure { margin: 0; position: relative; overflow: hidden; background: var(--travertine); aspect-ratio: 4 / 5; }
.masonry figure.wide { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
.masonry img { width: 100%; height: 100%; object-fit: cover; }
.masonry figcaption { padding: 10px 2px 0; font-size: 0.8rem; color: var(--muted); }
.masonry figure { aspect-ratio: auto; background: none; }
.masonry figure .ph { aspect-ratio: 4 / 5; overflow: hidden; background: var(--travertine); }
.masonry figure.wide .ph { aspect-ratio: 16 / 9; }
@media (min-width: 900px) {
  .masonry { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .masonry figure.tall .ph { aspect-ratio: 4 / 5.8; }
  .masonry figure.wide { grid-column: span 2; }
  .masonry figure.wide .ph { aspect-ratio: 807 / 564; }
}

/* Reviews page */
.review-grid { display: grid; gap: 20px; }
@media (min-width: 800px) { .review-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
.review { background: var(--white); border: 1px solid var(--line); padding: 36px 32px; margin: 0; }
.review .stars { color: var(--brass); letter-spacing: 0.3em; font-size: 0.85rem; margin-bottom: 18px; }
.review p { font-size: 1.1rem; line-height: 1.65; color: var(--ink); }
.review cite { font-style: normal; font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.review--big { grid-column: 1 / -1; background: var(--walnut); color: var(--ivory); border: 0; }
.review--big p { color: var(--ivory); font-family: var(--font-display); font-size: clamp(1.35rem, 2.6vw, 2rem); line-height: 1.4; }
.review--big cite { color: var(--travertine); }

/* Contact */
.contact-grid { display: grid; gap: 56px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: clamp(48px, 8vw, 128px); } }
.book-box { background: var(--walnut); color: var(--ivory); padding: clamp(36px, 5vw, 56px); }
.book-box h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin-bottom: 16px; }
.book-box .label { color: var(--brass-soft); }
.book-box p { color: var(--travertine); }
.book-box .btns { display: grid; gap: 12px; margin-top: 28px; }
.book-box .btn--ghost { color: var(--ivory); border-color: rgba(248,244,238,.5); }
.book-box .btn--ghost:hover { background: var(--ivory); color: var(--walnut); }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 36px 22px 0; position: relative;
  font-family: var(--font-display); font-size: 1.1rem; color: var(--walnut); min-height: 44px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 18px; font-size: 1.4rem; color: var(--brass); transition: transform .3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding-right: 24px; }

/* 404 */
.nf { min-height: 60vh; display: grid; place-items: center; text-align: center; }
.nf h1 { font-size: var(--fs-h1); color: var(--walnut); margin-bottom: 18px; }

/* Motion */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
  .reveal.is-in { opacity: 1; transform: none; }
  .hero h1 { animation: rise 1.4s var(--ease) both; }
  .hero__frame img { animation: settle 2.4s var(--ease) both; }
  @keyframes rise { from { opacity: 0; transform: translateY(28px); } }
  @keyframes settle { from { transform: scale(1.08); } }
}
