/* ===========================================================
   Master Color Beauty Salon
   Tokens locked in brand/design-tokens.json.

   Direction: the page is built on the colorist's own vocabulary.
   Levels 1-10, and the underlying pigment you expose when you
   lift. The swatch rail is the signature and it recurs as the
   page's structural motif instead of generic dividers.
   =========================================================== */

:root {
  /* Warm ivory + brown, taken from STUDIO/81. No saturated accent:
     the warmth comes from the photography and the browns, not from
     a bright colour sitting on top. */
  --bone: #F6F2EA;
  --bone-2: #EFE9DE;
  --bone-3: #E3D9C9;
  --surface: #FCFAF6;
  --ink: #241C1A;
  --ink-soft: #6B5F58;
  --ink-faint: #786D65;
  --copper: #7A6555;
  --copper-dark: #5E4C3F;
  --border: #DDD3C4;
  --hair: #DDD3C4;

  /* Dark panels sit inside the ivory page rather than replacing it. */
  --dark: #2B2320;
  --dark-2: #372D28;
  --on-dark: #F2EDE4;
  --on-dark-soft: #B7ABA1;

  /* Level scale, 1 (black) to 10 (lightest blonde) */
  --lv1:  #100B0A;
  --lv2:  #1F1512;
  --lv3:  #2F1F18;
  --lv4:  #4A3122;
  --lv5:  #6B472C;
  --lv6:  #8A6137;
  --lv7:  #A87F4A;
  --lv8:  #C4A068;
  --lv9:  #DCC191;
  --lv10: #ECDCB8;

  /* Underlying pigment exposed on the way up */
  --u-red:    #7A2718;
  --u-orange: #B4581F;
  --u-amber:  #D08A2A;
  --u-yellow: #E3BC4E;
  --u-pale:   #F0DD93;

  --serif: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --sans: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --max-w: 1240px;
  --gutter: 26px;

  /* Surfaces that themes need to override. Kept as tokens so a
     theme file never has to re-declare a whole rule. */
  --nav-bg: rgba(246,242,234,0.93);
  --chip-bg: rgba(246,242,234,0.9);
  --chip-border: rgba(36,28,26,0.12);
  --ph-a: var(--bone-2);
  --ph-b: var(--bone-3);
  --line-art: rgba(122,101,85,0.26);
  --btn-fg: var(--bone);

  /* Radius scale. The Flourish references are soft where this build
     started hard-edged; --r-xl is the big single-corner sweep that
     shows up on the gallery tiles, the review card and the team panel. */
  --r-sm: 10px;
  --r-md: 20px;
  --r-lg: 40px;
  --r-xl: 120px;
  --r-pill: 999px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0;
  margin: 0 0 0.4em;
}

h1 { font-size: clamp(3.3rem, 7.4vw, 6.6rem); }
h2 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); }
h3 { font-size: 1.42rem; font-weight: 600; letter-spacing: 0; line-height: 1.2; }

p { margin: 0 0 1.05em; }

a { color: var(--copper); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--copper-dark); }

:focus-visible { outline: 2px solid var(--copper); outline-offset: 3px; }

.wrap { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.wrap--narrow { max-width: 880px; }

.skip { position: absolute; left: -9999px; background: var(--ink); color: var(--bone); padding: 12px 20px; z-index: 300; }
.skip:focus { left: 0; top: 0; }

/* ---------- micro type ---------- */

.eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 1.4em;
}

.lede { font-size: 1.12rem; color: var(--ink-soft); }

/* ---------- swatch rail: the signature motif ---------- */

.rail {
  display: flex;
  height: 4px;
  width: 100%;
  overflow: hidden;
}
.rail i { flex: 1; display: block; }
.rail--levels i:nth-child(1) { background: var(--lv1); }
.rail--levels i:nth-child(2) { background: var(--lv2); }
.rail--levels i:nth-child(3) { background: var(--lv3); }
.rail--levels i:nth-child(4) { background: var(--lv4); }
.rail--levels i:nth-child(5) { background: var(--lv5); }
.rail--levels i:nth-child(6) { background: var(--lv6); }
.rail--levels i:nth-child(7) { background: var(--lv7); }
.rail--levels i:nth-child(8) { background: var(--lv8); }
.rail--levels i:nth-child(9) { background: var(--lv9); }
.rail--levels i:nth-child(10) { background: var(--lv10); }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 14px 30px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bone);
  text-decoration: none;
  border-radius: var(--r-pill);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.btn:hover { background: var(--copper); border-color: var(--copper); color: var(--bone); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn--ghost:hover { background: transparent; color: var(--copper); border-color: var(--copper); }

.btn--sm { padding: 9px 18px; font-size: 0.8rem; }

/* ---------- nav: quiet, Yello-style restraint ---------- */

.nav {
  position: sticky; top: 0; z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.28s ease, border-color 0.28s ease;
}
.nav.is-stuck,
.nav.is-open {
  background: var(--nav-bg);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom-color: var(--border);
}

/* Over the hero photo the bar is light-on-dark; after it, normal. */
.nav:not(.is-stuck):not(.is-open) .nav__logo,
.nav:not(.is-stuck):not(.is-open) .nav__logo-fallback { color: var(--on-dark); }
.nav:not(.is-stuck):not(.is-open) .nav__links a { color: rgba(242,237,228,0.82); }
.nav:not(.is-stuck):not(.is-open) .nav__links a:hover { color: var(--on-dark); }
.nav:not(.is-stuck):not(.is-open) .langtoggle { color: rgba(242,237,228,0.62); }
.nav:not(.is-stuck):not(.is-open) .langtoggle b { color: var(--on-dark); }
.nav:not(.is-stuck):not(.is-open) .nav__toggle { color: var(--on-dark); border-color: rgba(242,237,228,0.4); }
.nav:not(.is-stuck):not(.is-open) .btn { background: var(--on-dark); border-color: var(--on-dark); color: var(--dark); }
.nav:not(.is-stuck):not(.is-open) .btn:hover { background: transparent; color: var(--on-dark); }

.nav .wrap {
  max-width: none;
  padding-left: clamp(20px, 2.6vw, 46px);
  padding-right: clamp(20px, 2.6vw, 46px);
}

.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 76px;
}
.nav__logo { justify-self: start; }
.nav__links { justify-self: center; }
.nav__actions { justify-self: end; }

.nav__logo {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.nav__links { display: flex; gap: 30px; list-style: none; padding: 0; margin: 0; }
.nav__links a {
  font-size: 0.83rem;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 7px 0;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
  transition: color 0.18s, border-color 0.18s;
}
.nav__links a:hover { color: var(--ink); border-bottom-color: var(--copper); }

.nav__actions { display: flex; align-items: center; gap: 12px; }

.langtoggle {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  background: none;
  border: none;
  color: var(--ink-faint);
  padding: 8px 2px;
  cursor: pointer;
  white-space: nowrap;
}
.langtoggle:hover { color: var(--copper); }
.langtoggle b { color: var(--ink); }

.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 8px 14px;
  cursor: pointer;
  font-size: 0.78rem;
  color: var(--ink);
  font-family: var(--sans);
}

/* ---------- sections ---------- */

.section { padding: clamp(72px, 10vw, 140px) 0; }
.section--tight { padding: clamp(30px, 4vw, 52px) 0; }
.section--alt { background: var(--bone-2); }
.section--rule { border-top: 1px solid var(--border); }

.section__head { max-width: 700px; margin-bottom: clamp(44px, 5vw, 72px); }
.section__head .lede { margin-bottom: 0; }

/* ---------- hero: full bleed, text over the image · STUDIO/81 ---------- */

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(92vh, 860px);
  margin-top: -76px;
  padding: 76px 0 clamp(46px, 6vw, 92px);
  display: flex;
  align-items: flex-end;
  background: var(--dark) url('../images/hero.jpg') center 22% / cover no-repeat;
  color: var(--on-dark);
  overflow: hidden;
}

/* Legibility scrim. Heavier at the bottom-left where the type sits. */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(24,19,16,0.9) 0%, rgba(24,19,16,0.74) 34%, rgba(24,19,16,0.3) 62%, rgba(24,19,16,0.66) 100%),
    linear-gradient(to right, rgba(24,19,16,0.62) 0%, rgba(24,19,16,0.16) 56%, rgba(24,19,16,0) 100%);
}

.hero__type { max-width: min(720px, 64%); }
.hero .eyebrow { color: rgba(242,237,228,0.72); }
.hero h1 { margin-bottom: 0.5em; color: var(--on-dark); }
.hero .lockup__ital { color: var(--on-dark); }
.hero__lede { max-width: min(46ch, 100%); margin-bottom: 1.8em; color: rgba(242,237,228,0.84); font-size: 1.04rem; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.hero .btn { background: var(--on-dark); border-color: var(--on-dark); color: var(--dark); }
.hero .btn:hover { background: transparent; color: var(--on-dark); border-color: var(--on-dark); }
.hero .btn--ghost { background: transparent; color: var(--on-dark); border-color: rgba(242,237,228,0.42); }
.hero .btn--ghost:hover { background: rgba(242,237,228,0.12); color: var(--on-dark); border-color: var(--on-dark); }

.hero__note {
  margin: 24px 0 0;
  font-size: 0.83rem;
  color: rgba(242,237,228,0.7);
  max-width: min(46ch, 100%);
}
.hero__note b { color: var(--on-dark); font-weight: 500; }

/* Vertical social rail on the right edge, as on STUDIO/81 */
.hero__social {
  position: absolute;
  right: clamp(14px, 2.4vw, 30px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
}
.hero__social a {
  padding: 4px 6px;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,237,228,0.72);
  text-decoration: none;
  writing-mode: vertical-rl;
}
.hero__social a:hover { color: var(--on-dark); }

@media (max-width: 920px) {
  .hero { min-height: 78vh; background-position: 27% 26%; }
  .hero__type { max-width: 100%; }
  .hero__social { display: none; }
}

/* ---------- stat strip ---------- */

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0 clamp(28px, 5vw, 68px);
  align-items: baseline;
  padding: 22px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--border);
}
.stats__item { display: flex; align-items: baseline; gap: 9px; font-size: 0.85rem; color: var(--ink-soft); padding: 6px 0; }
.stats__item b {
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.stats a { color: var(--ink-soft); }
.stats a:hover { color: var(--copper); }

/* ---------- the lift scale: signature section ---------- */

.lift__intro { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 70px); align-items: end; margin-bottom: 54px; }
.lift__intro .lede { margin-bottom: 0; }

.scale { margin: 0 0 12px; }

.scale__bars { display: flex; gap: 3px; align-items: flex-end; }
.scale__step { flex: 1; text-align: center; }

.scale__chip {
  height: 96px;
  border: 1px solid var(--chip-border);
}

.scale__step:nth-child(1) .scale__chip { background: var(--lv1); }
.scale__step:nth-child(2) .scale__chip { background: var(--lv2); }
.scale__step:nth-child(3) .scale__chip { background: var(--lv3); }
.scale__step:nth-child(4) .scale__chip { background: var(--lv4); }
.scale__step:nth-child(5) .scale__chip { background: var(--lv5); }
.scale__step:nth-child(6) .scale__chip { background: var(--lv6); }
.scale__step:nth-child(7) .scale__chip { background: var(--lv7); }
.scale__step:nth-child(8) .scale__chip { background: var(--lv8); }
.scale__step:nth-child(9) .scale__chip { background: var(--lv9); }
.scale__step:nth-child(10) .scale__chip { background: var(--lv10); transition-delay: 0.38s; }

.scale__num {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  padding-top: 10px;
}
.scale__ends {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-top: 4px;
}

.under { margin-top: 56px; }
.under__bars { display: flex; gap: 3px; }
.under__seg { flex: 1; padding: 16px 14px 18px; color: var(--bone); }
.under__seg:nth-child(1) { background: var(--u-red); color: #FFFFFF; }
.under__seg:nth-child(2) { background: var(--u-orange); color: #FFFFFF; }
.under__seg:nth-child(3) { background: var(--u-amber); }
.under__seg:nth-child(3) { background: var(--u-amber); color: #241C1A; }
.under__seg:nth-child(4) { background: var(--u-yellow); color: #241C1A; }
.under__seg:nth-child(5) { background: var(--u-pale); color: #241C1A; }
.under__seg b { display: block; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.9; margin-bottom: 4px; font-weight: 600; }
.under__seg span { font-family: var(--serif); font-size: 1.02rem; letter-spacing: -0.01em; }

.under__note {
  margin-top: 22px;
  max-width: 62ch;
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.under__note strong { color: var(--ink); font-weight: 600; }

/* ---------- specialties: editorial list, not equal cards ---------- */

.spec { border-top: 1px solid var(--ink); }
.spec__row {
  display: grid;
  grid-template-columns: 64px 1fr minmax(190px, 260px) auto;
  gap: clamp(16px, 3vw, 44px);
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
}
.spec__idx {
  font-family: var(--serif);
  font-size: 0.92rem;
  color: var(--copper);
  padding-top: 6px;
  letter-spacing: 0.04em;
}
.spec__row h3 { margin-bottom: 0; padding-top: 2px; }
.spec__row p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }
.spec__fig {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-align: right;
}
.spec__fig small { display: block; font-family: var(--sans); font-size: 0.76rem; color: var(--ink-soft); letter-spacing: 0.04em; margin-top: 3px; }

/* ---------- image placeholder system ---------- */

.shot {
  position: relative;
  margin: 0;
  background: linear-gradient(155deg, var(--ph-a), var(--ph-b));
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.shot.is-empty::after {
  content: attr(data-label);
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 8px 11px;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  background: var(--chip-bg);
  pointer-events: none;
}
.shot img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; font-size: 0.72rem; color: var(--ink-faint); }
.shot--tall { aspect-ratio: 3 / 4; }
.shot--wide { aspect-ratio: 5 / 4; }
.shot--sq { aspect-ratio: 1 / 1; }

/* ---------- gallery: varied editorial rhythm ---------- */

.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(12px, 1.6vw, 22px); }
.gallery figure { grid-column: span 4; }
.gallery .g--lg { grid-column: span 6; }
.gallery .g--sm { grid-column: span 3; }

.work { position: relative; }
.work__tag {
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding-top: 12px;
  padding-bottom: 4px;
  line-height: 1.7;
  font-size: 0.76rem;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
}
.work__tag b {
  font-weight: 600;
  color: var(--copper);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.66rem;
}

/* ---------- about ---------- */

.about__grid { display: grid; grid-template-columns: 300px 1fr; gap: clamp(30px, 5vw, 76px); align-items: start; }
.about__body { font-size: 1.06rem; max-width: 62ch; }
.about__body p:last-child { margin-bottom: 0; }
.about__pull {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-style: italic;
  line-height: 1.28;
  letter-spacing: -0.025em;
  color: var(--copper);
  margin: 34px 0;
}

/* ---------- team ---------- */

.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 30px); }
.team__card h3 { margin: 16px 0 1px; }
.team__role { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--copper); font-weight: 600; margin-bottom: 0.9em; }
.team__card p { color: var(--ink-soft); font-size: 0.93rem; margin: 0; }
.team__card--tbd .shot { background: repeating-linear-gradient(135deg, var(--bone-2) 0 14px, var(--bone-3) 14px 28px); }
.team__card--tbd h3 { color: var(--ink-faint); }

/* ---------- pricing ---------- */

.price-hero { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-bottom: 60px; }
.price-hero__card { background: var(--bone); padding: 30px 26px 26px; display: flex; flex-direction: column; }
.price-hero__card h3 { font-size: 1.14rem; margin-bottom: 10px; }
.price-hero__card p { font-size: 0.88rem; color: var(--ink-soft); margin: 0 0 18px; flex: 1; }
.price-hero__fig { font-family: var(--serif); font-size: 2.5rem; font-weight: 600; letter-spacing: -0.03em; color: var(--copper); line-height: 1; }
.price-hero__fig small { display: block; font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-top: 7px; }

.pricing__groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(26px, 3.4vw, 52px); }
.pricing__group h3 {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  padding-bottom: 11px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 0;
}
/* Set like a printed salon menu: name, dotted leader, figure. The
   leader is what stops a price list reading as a generic table. */
.price { display: flex; align-items: baseline; gap: 10px; padding: 13px 0; border-bottom: 1px solid var(--border); }
.price__name { font-size: 0.93rem; line-height: 1.4; flex: 0 1 auto; }
.price__name small { display: block; font-size: 0.74rem; color: var(--ink-faint); margin-top: 1px; letter-spacing: 0.04em; }
.price__lead {
  flex: 1 1 auto;
  min-width: 20px;
  align-self: center;
  border-bottom: 1px dotted var(--border);
  transform: translateY(-2px);
}
.price__fig {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  white-space: nowrap;
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: -0.01em;
}
.price__fig sup { font-size: 0.56em; top: -0.62em; margin-right: 1px; font-weight: 400; }

.menu__fig sup, .price-hero__fig sup { font-size: 0.5em; top: -0.66em; margin-right: 2px; font-weight: 400; }

/* Long-service note, set on a photographic panel rather than a boxed
   line. Salon texture behind editorial type. */
.callout {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: clamp(52px, 6vw, 84px);
  padding: clamp(40px, 5vw, 68px) clamp(28px, 5vw, 64px);
  border-radius: var(--r-md) var(--r-md) var(--r-md) var(--r-xl);
  background: var(--dark) url('../images/panel.jpg') center 40% / cover no-repeat;
  color: var(--on-dark);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
}
.callout::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(24,19,16,0.9) 0%, rgba(24,19,16,0.74) 52%, rgba(24,19,16,0.5) 100%);
}
.callout h3 {
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  color: var(--on-dark);
  margin: 0 0 0.45em;
  max-width: 18ch;
}
.callout p { margin: 0; color: rgba(242,237,228,0.82); font-size: 0.97rem; max-width: 52ch; }
.callout .btn { background: var(--on-dark); border-color: var(--on-dark); color: var(--dark); white-space: nowrap; }
.callout .btn:hover { background: transparent; color: var(--on-dark); }

@media (max-width: 760px) {
  .callout { grid-template-columns: 1fr; border-radius: var(--r-md) var(--r-md) var(--r-md) var(--r-lg); }
}

/* ---------- reviews: one lead quote, rest quiet ---------- */

.review-lead { border-top: 1px solid var(--ink); padding-top: 34px; margin-bottom: 54px; }
.review-lead blockquote {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.4vw, 2.7rem);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.032em;
  max-width: 20ch;
}
.review-lead figcaption { font-size: 0.84rem; color: var(--ink-soft); }
.review-lead figcaption b { color: var(--ink); font-weight: 600; }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.6vw, 38px); }
.review { margin: 0; border-top: 1px solid var(--border); padding-top: 20px; }
.review blockquote { margin: 0 0 16px; font-size: 0.99rem; line-height: 1.55; color: var(--ink); }
.review figcaption { font-size: 0.79rem; color: var(--ink-faint); }
.review figcaption b { color: var(--ink-soft); font-weight: 600; }

.reviews__foot { margin-top: 40px; font-size: 0.9rem; }

/* ---------- visit ---------- */

.visit__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 70px); }
.visit dl { margin: 0; }
.visit dt { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--copper); font-weight: 600; margin-top: 30px; }
.visit dt:first-child { margin-top: 0; }
.visit dd { margin: 7px 0 0; font-size: 1rem; }

.hours { margin: 6px 0 0; padding: 0; list-style: none; max-width: 330px; }
.hours li { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.hours li span:last-child { color: var(--ink-soft); font-variant-numeric: tabular-nums; }

.map { border: 0; width: 100%; height: 100%; min-height: 420px; border-radius: var(--r-md); filter: grayscale(100%) contrast(0.96) sepia(6%); }

/* ---------- footer ---------- */

.footer { border-top: 1px solid var(--border); padding: 44px 0 54px; font-size: 0.84rem; color: var(--ink-soft); }
.footer__inner { display: flex; flex-wrap: wrap; gap: 16px 40px; align-items: baseline; }
.footer__inner p { margin: 0; }
.footer nav { margin-left: auto; display: flex; gap: 22px; flex-wrap: wrap; }
.footer a:not(.btn) { color: var(--ink-soft); text-decoration: none; }
.footer a:not(.btn):hover { color: var(--copper); text-decoration: underline; }

/* ===========================================================
   ELEMENTS PULLED FROM THE DRIBBBLE REFERENCES
   Each block notes which shot it came from so it can be cut
   cleanly if it does not earn its place.
   =========================================================== */

/* ---------- arch crop · Flourish + Hair Experience ----------
   Rounded dome top, square bottom. The single most identifiable
   move across the references, and it flatters back-of-head hair
   photography because the crown lands inside the curve. */

.arch { border-radius: 50vw 50vw 2px 2px; overflow: hidden; }
.arch--soft { border-radius: 42% 42% 2px 2px / 26% 26% 2px 2px; }

/* Overlapping arch row from Flourish's About band */
.archrow { display: flex; align-items: flex-end; }
.archrow .shot { flex: 1 1 0; min-width: 0; }
.archrow .shot + .shot { margin-left: -26px; }
.archrow .shot:nth-child(1) { transform: translateY(16px); }
.archrow .shot:nth-child(3) { transform: translateY(9px); }

/* ---------- mixed serif lockup · SandyShade ----------
   Caps roman stacked over italic lowercase. Bodoni's italic is
   the reason this works; it is a genuinely different voice, not
   a slanted roman. */

.lockup { display: block; }
.lockup__caps {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(1.5rem, 2.9vw, 2.7rem);
  line-height: 1.1;
  text-wrap: balance;
}
.lockup__ital {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 1.02;
  color: var(--copper);
  margin-top: 0.06em;
}

/* ---------- marquee ticker · KIVELLE ---------- */

.ticker {
  position: relative;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
  padding: 14px 0;
  background: var(--bone);
}

/* WCAG 2.2.2: moving content needs a real pause control, not hover */
.ticker__toggle {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  background: var(--bone);
  color: var(--ink-soft);
  font-size: 0.6rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s, border-color 0.2s, color 0.2s;
}
.ticker:hover .ticker__toggle,
.ticker__toggle:focus-visible { opacity: 1; }
.ticker__toggle:hover { border-color: var(--ink); color: var(--ink); }
.ticker.is-paused .ticker__track { animation-play-state: paused; }
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 42s linear infinite;
}
.ticker__track span {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  letter-spacing: 0.01em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 38px;              /* word -> star */
  padding-right: 38px;    /* star -> next word, matched */
}
.ticker__track span::after {
  content: '✳';
  color: var(--copper);
  font-size: 0.52em;
  line-height: 1;
  transform: translateY(-0.06em);
}


@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- service cards · STUDIO/81 "Our Premium Services" ----------
   Full-bleed photo, name and description over a bottom scrim. Prices
   deliberately live only in the pricing section; carrying them here too
   was saying the same thing twice. */

.svc { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(10px, 1.4vw, 18px); }
.svc__card {
  position: relative;
  isolation: isolate;
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--r-md);
  display: flex;
  align-items: flex-end;
  color: var(--on-dark);
}
.svc__card img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2,0.7,0.3,1);
}
.svc__card::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(24,19,16,0.9) 0%, rgba(24,19,16,0.52) 34%, rgba(24,19,16,0.06) 68%);
}
.svc__card:hover img { transform: scale(1.05); }
.svc__body { padding: clamp(20px, 2vw, 30px); }
.svc__card h3 { color: var(--on-dark); margin: 0 0 0.35em; font-size: clamp(1.15rem, 1.6vw, 1.5rem); }
.svc__card p { margin: 0; font-size: 0.87rem; line-height: 1.5; color: rgba(242,237,228,0.84); }

@media (max-width: 1080px) { .svc { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px)  { .svc { grid-template-columns: 1fr; } }

/* ---------- numbered service list · KIVELLE ---------- */

.menu { border-top: 1px solid var(--ink); }
.menu__row {
  display: grid;
  grid-template-columns: 58px 1fr minmax(180px, 250px) auto;
  gap: clamp(14px, 3vw, 40px);
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s, padding 0.2s;
}
.menu__row:hover { background: var(--bone-2); }
.menu__num {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--copper);
  font-variant-numeric: lining-nums tabular-nums;
}
.menu__row h3 { margin: 0; }
.menu__row p { margin: 0; font-size: 0.92rem; color: var(--ink-soft); }
.menu__fig {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}
.menu__fig small {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 3px;
}

/* ---------- product brand strip · Hair Experience ---------- */

.brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 40px;
  padding: 30px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brands__label {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0;
  flex: 0 0 auto;
}
.brands__list { display: flex; flex-wrap: wrap; gap: 18px 44px; list-style: none; margin: 0; padding: 0; }
.brands__list li {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- logo ----------
   Her mark is a magenta-to-gold gradient wordmark. It is the only
   saturated thing on the page, which is exactly why the rest of the
   palette stays neutral warm: the logo does the colour, the site
   does the calm. The type fallback shows until the file is dropped in. */

.nav__logo { display: inline-flex; align-items: center; }
.nav__logo img { height: 46px; width: auto; display: none; }
.nav__logo.has-mark .nav__logo-dark { display: block; }
.nav__logo--footer.has-mark img { display: block; }

/* Over the hero photo the coloured mark loses its purple half, so the
   ivory knockout takes over until the bar goes solid. */
.nav:not(.is-stuck):not(.is-open) .nav__logo.has-mark .nav__logo-dark { display: none; }
.nav:not(.is-stuck):not(.is-open) .nav__logo.has-mark .nav__logo-lite { display: block; }
.nav__logo.has-mark .nav__logo-fallback { display: none; }
.nav__logo--footer img { height: 84px; }

@media (max-width: 640px) {
  .nav__logo img { height: 34px; }
  .nav__logo--footer img { height: 76px; }
}

/* ---------- roman + italic heading mix · STUDIO/81 ----------
   "Our Premium Services", "Meet Our Expert Stylist". The italic
   word inside a roman heading is the reference's signature text
   move, and Bodoni's italic is different enough to carry it. */

.it { font-style: italic; font-weight: 400; }

/* ---------- stat chips · Flourish ----------
   Dark rounded card, bordered icon square, big serif number. */

.chips { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.chip {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  background: var(--dark);
  color: var(--on-dark);
  border-radius: var(--r-sm);
}
.chip__icon {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  color: var(--on-dark);
  opacity: 0.9;
}
.chip__icon svg { width: 40px; height: 40px; stroke: currentColor; fill: none; stroke-width: 1.1; }
.chip b {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.05;
  color: var(--on-dark);
}
.chip span { display: block; font-size: 0.74rem; line-height: 1.3; color: var(--on-dark-soft); }
.chip a { color: inherit; text-decoration: none; }
.chip a:hover { color: var(--on-dark); text-decoration: underline; }

/* ---------- collage gallery · Flourish "Product Gallery" ----------
   Staggered tiles, each with ONE oversized rounded corner. The
   stagger is what keeps a wall of back-of-head shots from reading
   as a contact sheet. */

.collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: clamp(12px, 1.6vw, 20px);
  row-gap: 96px;
  align-items: start;
  padding-bottom: 60px;
}
.collage figure { margin: 0; }
.collage .shot::after { border-radius: inherit; }
.collage .shot img { object-position: center 38%; }

/* Stagger downward only. Negative offsets pulled tiles up over the
   caption of the tile above, which is what was clipping "Burgundy". */
.c1 { grid-column: span 3; transform: translateY(0); }
.c2 { grid-column: span 3; transform: translateY(46px); }
.c3 { grid-column: span 3; transform: translateY(14px); }
.c4 { grid-column: span 3; transform: translateY(56px); }
.c5 { grid-column: 2 / span 3; transform: translateY(22px); }
.c6 { grid-column: span 4; transform: translateY(0); }
.c7 { grid-column: span 3; transform: translateY(40px); }

.r-bl { border-radius: var(--r-md) var(--r-md) var(--r-md) var(--r-xl); overflow: hidden; }
.r-br { border-radius: var(--r-md) var(--r-md) var(--r-xl) var(--r-md); overflow: hidden; }
.r-tl { border-radius: var(--r-xl) var(--r-md) var(--r-md) var(--r-md); overflow: hidden; }
.r-tr { border-radius: var(--r-md) var(--r-xl) var(--r-md) var(--r-md); overflow: hidden; }
.r-md { border-radius: var(--r-md); overflow: hidden; }

/* ---------- section badge · Flourish ----------
   Small line-art mark in an arch frame, sitting beside the eyebrow. */

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 74px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill) var(--r-pill) 8px 8px;
  color: var(--copper);
  margin-bottom: 18px;
}
.badge svg { width: 30px; height: 38px; stroke: currentColor; fill: none; stroke-width: 1.2; }

/* ---------- team · Flourish "Meet Our Skilled Stylists" ----------
   Dark stadium panel on the left, arch-topped stylist cards right. */

.teamgrid { display: grid; grid-template-columns: minmax(280px, 400px) 1fr; gap: clamp(22px, 3vw, 44px); align-items: stretch; }

.teamlead {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: var(--on-dark);
  border-radius: var(--r-md) 260px 260px var(--r-md);
  padding: clamp(34px, 4vw, 56px) clamp(50px, 5vw, 74px) clamp(34px, 4vw, 56px) clamp(30px, 3.5vw, 46px);
  display: flex; flex-direction: column; justify-content: center;
  min-height: 330px;
}
.teamlead .eyebrow { color: var(--on-dark-soft); }
.teamlead h2 { color: var(--on-dark); font-size: clamp(1.7rem, 3vw, 2.5rem); margin-bottom: 0.7em; }
.teamlead .btn { align-self: flex-start; background: transparent; border-color: rgba(242,237,228,0.4); color: var(--on-dark); }
.teamlead .btn:hover { background: var(--on-dark); color: var(--dark); border-color: var(--on-dark); }

.teamrow { display: flex; flex-wrap: wrap; justify-content: center; align-content: center; gap: clamp(14px, 2vw, 24px); }
.teamcard { margin: 0; flex: 1 1 200px; max-width: 320px; }
.teamcard .shot { border-radius: var(--r-pill) var(--r-pill) var(--r-md) var(--r-md); overflow: hidden; aspect-ratio: 3/4; }
.teamcard .shot::after { border-radius: inherit; }
.teamcard figcaption { text-align: center; padding-top: 14px; }
.teamcard h3 { margin: 0 0 2px; font-size: 1.06rem; }
.teamcard p { margin: 0; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); }
.teamcard--tbd .shot { background: repeating-linear-gradient(135deg, var(--ph-a) 0 14px, var(--ph-b) 14px 28px); }
.teamcard--tbd h3 { color: var(--ink-faint); }

/* ---------- reviews · Flourish "From Our Clients" ---------- */

.revgrid { display: grid; grid-template-columns: minmax(260px, 380px) 1fr; gap: clamp(26px, 4vw, 60px); align-items: start; }

.revnav { display: flex; gap: 10px; margin-top: 28px; }
.revnav button {
  width: 46px; height: 46px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: grid; place-items: center;
  transition: border-color 0.2s, color 0.2s;
}
.revnav button:hover { border-color: var(--copper); color: var(--copper); }
.revnav svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.4; }

.revtrack {
  --rev-gap: clamp(16px, 2vw, 26px);
  display: flex;
  gap: var(--rev-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.revtrack::-webkit-scrollbar { display: none; }

.revcard {
  flex: 0 0 calc((100% - var(--rev-gap)) / 2);
  scroll-snap-align: start;
  margin: 0;
}

/* Below the two-column split there is only room for one at a time */
@media (max-width: 920px) {
  .revcard { flex-basis: min(430px, 86%); }
}
.revcard { display: flex; flex-direction: column; }
.revcard blockquote {
  margin: 0;
  flex: 1;
  background: var(--bone-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md) var(--r-md) var(--r-md) var(--r-lg);
  padding: 30px 32px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
}
.revcard figcaption { padding: 16px 0 0 26px; }
.revcard b { display: block; font-family: var(--serif); font-size: 1.05rem; font-weight: 500; }
.revcard small { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); }

/* ---------- footer detailing · Flourish ---------- */

.footer ul li a { display: inline-flex; align-items: center; gap: 9px; }
.footer ul li a::before { content: '→'; color: #D2A984; font-size: 0.9em; }

.footer address a,
.footer address span { display: block; }

.iggrid .shot { border-radius: var(--r-sm); }

.footer__cta { border-radius: var(--r-pill); padding: 16px 16px 16px 34px; }
.footer__cta .btn { border-radius: var(--r-pill); background: var(--on-dark); border-color: var(--on-dark); color: var(--dark); }
.footer__cta .btn:hover { background: transparent; color: var(--on-dark); border-color: var(--on-dark); }
.footer__cta .btn--ghost { background: transparent; color: var(--on-dark); border-color: rgba(255,255,255,0.32); }
.footer__cta .btn--ghost:hover { background: rgba(255,255,255,0.1); color: var(--on-dark); border-color: var(--on-dark); }

.footer__by { font-size: 0.78rem; opacity: 0.6; }
.footer__by a { text-decoration: none; }
.footer__by a:hover { text-decoration: underline; }

.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.22);
  display: grid; place-items: center;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer__social a:hover { border-color: var(--copper); }

@media (max-width: 1080px) {
  .chips { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .teamgrid { grid-template-columns: 1fr; }
  .teamlead { border-radius: var(--r-md) var(--r-md) 200px 200px; min-height: 240px; padding: 40px 34px; }
  .revgrid { grid-template-columns: 1fr; }
  .collage { row-gap: 40px; padding-bottom: 0; }
  .collage .c1,.collage .c2,.collage .c3,.collage .c4,.collage .c5,.collage .c6,.collage .c7 {
    grid-column: span 6; transform: none;
  }
}
@media (max-width: 640px) {
  .chips { grid-template-columns: 1fr; }
  .teamcard { flex-basis: 100%; max-width: 100%; }
  .collage .c1,.collage .c2,.collage .c3,.collage .c4,.collage .c5,.collage .c6,.collage .c7 { grid-column: span 12; }
  .footer__cta { border-radius: var(--r-lg); padding: 22px; }
}

/* ---------- footer, rebuilt · Flourish ---------- */

.footer {
  background: var(--ink);
  color: var(--bone);
  border-top: 0;
  padding: 0;
  margin-top: 0;
}
.footer__pad { padding-top: clamp(48px, 6vw, 78px); padding-bottom: 34px; }

.footer__cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr 1.1fr;
  gap: clamp(26px, 4vw, 56px);
  padding-bottom: 44px;
}
.footer__brand .nav__logo { color: var(--bone); font-size: 1.05rem; }
.footer__brand p { font-size: 0.86rem; opacity: 0.7; margin: 16px 0 0; max-width: 34ch; }
.footer__avail { margin-top: 22px; }
.footer__avail b { display: block; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: #D2A984; margin-bottom: 5px; }
.footer__avail span { font-size: 0.86rem; opacity: 0.8; }

.footer__cols h3 {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D2A984;
  margin: 0 0 18px;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 10px; font-size: 0.88rem; }
.footer a:not(.btn) { color: var(--bone); opacity: 0.78; text-decoration: none; }
.footer a:not(.btn):hover { opacity: 1; color: var(--copper); }
.footer address { font-style: normal; font-size: 0.88rem; opacity: 0.78; line-height: 1.6; }

.iggrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.iggrid__link { display: block; overflow: hidden; border-radius: var(--r-sm); }
.iggrid .shot { aspect-ratio: 1/1; border-radius: 0; }
.iggrid .shot::after { display: none; }
.iggrid img { transition: transform 0.5s cubic-bezier(0.2,0.7,0.3,1), opacity 0.3s; }
.iggrid__link:hover img { transform: scale(1.07); opacity: 0.85; }
.iggrid__link:focus-visible { outline: 2px solid var(--copper); outline-offset: 2px; }

.footer__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  border: 1px solid rgba(255,255,255,0.16);
}
.footer__cta p { margin: 0; font-family: var(--serif); font-size: 1.25rem; flex: 1 1 240px; }
.footer__cta .btn { flex: 0 0 auto; }

.footer__base {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  align-items: center;
  padding-top: 28px;
  margin-top: 34px;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 0.8rem;
  opacity: 0.66;
}
.footer__base p { margin: 0; }
.footer__social { display: flex; gap: 20px; margin-left: auto; }

@media (max-width: 920px) {
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .menu__row { grid-template-columns: 40px 1fr auto; row-gap: 8px; }
  .menu__row p { grid-column: 2 / -1; }
  .archrow .shot + .shot { margin-left: -14px; }
}
@media (max-width: 640px) {
  .footer__cols { grid-template-columns: 1fr; }
  .footer__social { margin-left: 0; }
  .lockup__caps { letter-spacing: 0.04em; }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* ---------- flow: the line-art background canvas ----------
   Lifted in spirit from thp hair's single-line drawing. Here the
   line reads as strands of hair rather than a face, so it belongs
   to a color salon specifically. Purely decorative, sits behind
   content, never intercepts a click. */

.has-flow { position: relative; overflow: hidden; }
.has-flow > .wrap { position: relative; z-index: 2; }

.flow {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--line-art);
  width: 130%;
  height: auto;
}
.flow path { fill: none; stroke: currentColor; stroke-width: 1.1; vector-effect: non-scaling-stroke; }

.flow--hero  { top: -6%; right: -30%; width: 96%; }
.flow--lift  { bottom: -22%; left: -26%; width: 78%; transform: scaleY(-1); }
.flow--salon { top: -14%; right: -24%; width: 70%; }

@media (max-width: 920px) {
  .flow--hero { top: -2%; right: -55%; width: 130%; }
  .flow--lift, .flow--salon { display: none; }
}

/* ---------- theme switcher (build-time only, strip before launch) ---------- */

.themebar {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 500;
  display: flex;
  gap: 4px;
  padding: 5px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 6px 22px rgba(0,0,0,0.16);
}
.themebar button {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 12px;
  border: 1px solid transparent;
  background: none;
  color: var(--ink-soft);
  cursor: pointer;
}
.themebar button:hover { color: var(--ink); }
.themebar button[aria-pressed="true"] { background: var(--ink); color: var(--bone); }


/* ---------- responsive ---------- */

@media (max-width: 1080px) {
  .pricing__groups { grid-template-columns: repeat(2, 1fr); }
  .price-hero { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .nav__links { display: none; order: 4; flex-basis: 100%; flex-direction: column; gap: 0; margin-left: 0; border-top: 1px solid var(--border); padding-top: 6px; }
  .nav__links.is-open { display: flex; }
  .nav__links { max-height: calc(100vh - 120px); overflow-y: auto; }
  .nav__links a { padding: 11px 0; display: block; font-size: 0.95rem; }
  .nav__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 64px;
  }
  .nav__toggle { display: block; }
  .nav__actions { margin-left: auto; }

  .hero__grid { grid-template-columns: 1fr; align-items: start; }
  .lift__intro { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  /* Once the grid stacks, the 280px portrait was pinned left in a 331px
     column. Auto margins centre it over the text below. */
  .about__portrait { max-width: 280px; margin-left: auto; margin-right: auto; }
  .visit__grid { grid-template-columns: 1fr; }
  .team { grid-template-columns: repeat(2, 1fr); }
  .gallery figure, .gallery .g--lg, .gallery .g--sm { grid-column: span 6; }

  .spec__row { grid-template-columns: 40px 1fr auto; row-gap: 10px; }
  .spec__row p { grid-column: 2 / -1; }
  .under__bars { flex-wrap: wrap; }
  .under__seg { flex: 1 1 33%; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }

  /* Keep the sticky bar to one row: logo | lang | book | menu */
  .nav__inner { gap: 10px; min-height: 56px; }
  .nav__logo { font-size: 0.78rem; letter-spacing: 0.1em; }
  .nav__toggle { order: 4; padding: 7px 10px; }
  .nav__actions { order: 3; gap: 8px; margin-left: auto; }
  .langtoggle { font-size: 0.68rem; padding: 6px 0; }
  .btn--sm { padding: 8px 14px; font-size: 0.76rem; }
  .nav__links { order: 5; }

  .scale__chip { height: 62px; }
  .scale__num { font-size: 0.78rem; }
  .pricing__groups { grid-template-columns: 1fr; }
  .price-hero { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .team { grid-template-columns: 1fr; }
  .under__seg { flex: 1 1 50%; }
  .footer nav { margin-left: 0; flex-basis: 100%; }
  .stats { gap: 0 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}


/* ---------- parallax bands ----------
   background-attachment: fixed is the cheap, dependency-free version and
   it looks right on desktop. It is janky-to-broken on iOS Safari, so it is
   gated to pointer devices at desktop width and falls back to a normal
   scrolling background everywhere else. */

.parallax { background-attachment: scroll; }

@media (min-width: 921px) and (hover: hover) and (prefers-reduced-motion: no-preference) {
  .parallax { background-attachment: fixed; }
}

.band {
  position: relative;
  isolation: isolate;
  min-height: 460px;
  display: flex;
  align-items: center;
  background: var(--dark) url("../images/band.jpg") center / cover no-repeat;
  color: var(--on-dark);
  text-align: center;
}
.band::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(24,19,16,0.72), rgba(24,19,16,0.58));
}
.band__inner { max-width: 780px; margin: 0 auto; padding: clamp(56px,7vw,96px) var(--gutter); }
.band h2 { color: var(--on-dark); margin-bottom: 0.35em; }
.band p { color: rgba(242,237,228,0.82); margin: 0; font-size: 1.05rem; }


/* ---------- section grounds ----------
   Depth comes from alternating the ground, not from adding decoration.
   Both modifiers work by overriding tokens locally, so every child
   picks up the right colour without a single extra rule. */

.section--dark {
  background: var(--dark);
  --bone: #2B2320;
  --bone-2: #372D28;
  --bone-3: #43372F;
  --surface: #372D28;
  --ink: #F2EDE4;
  --ink-soft: #B7ABA1;
  --ink-faint: #A79A90;
  --border: rgba(242,237,228,0.18);
  --copper: #C79A76;
  --copper-dark: #DDB394;
  color: var(--ink);
}
.section--dark .btn { background: var(--ink); border-color: var(--ink); color: var(--dark); }
.section--dark .btn:hover { background: transparent; color: var(--ink); }

.section--photo {
  position: relative;
  isolation: isolate;
  background: var(--dark) url("../images/section-bg.jpg") center / cover no-repeat;
  --bone: transparent;
  --bone-2: rgba(255,255,255,0.06);
  --surface: rgba(255,255,255,0.06);
  --ink: #F4EFE7;
  --ink-soft: #C3B8AE;
  --ink-faint: #B0A399;
  --border: rgba(242,237,228,0.2);
  --copper: #D2A984;
  color: var(--ink);
}
.section--photo::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(24,19,16,0.9), rgba(24,19,16,0.82));
}
.section--photo .revcard blockquote { backdrop-filter: blur(2px); }


/* ---------- centred section heads + tightened pairs ---------- */

.section__head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 780px;
}
.section__head--center .lede { margin-left: auto; margin-right: auto; }

/* Services and the gallery read as one idea, so close the gap between them */
.section--pair-b { padding-bottom: clamp(26px, 3.2vw, 48px); }
.section--pair-t { padding-top: clamp(26px, 3.2vw, 48px); }


/* ---------- hiring / booth rental ---------- */

.hire__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.hire__lede { max-width: 46ch; }

.terms { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.terms__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 26px;
  background: var(--bone);
}
.terms__row span { font-size: 0.95rem; }
.terms__row b {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.terms__row--free b { color: var(--copper); }
.terms__cap {
  padding: 18px 26px;
  background: var(--bone-2);
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.terms__cap strong { color: var(--ink); font-weight: 600; }

.hire__cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }

@media (max-width: 860px) {
  .hire__grid { grid-template-columns: 1fr; }

  /* Stacked on a phone, the copy and both buttons read as one centred column */
  .hire__grid > div:first-child { text-align: center; }
  .hire__lede { max-width: none; margin-left: auto; margin-right: auto; }
  .hire__cta { justify-content: center; }
  .hire__grid h2 { margin-left: auto; margin-right: auto; }
}

@media (max-width: 520px) {
  /* Side by side the two buttons wrap awkwardly; full width is cleaner */
  .hire__cta { flex-direction: column; align-items: stretch; }
  .hire__cta .btn { width: 100%; text-align: center; }
}


/* ---------- mobile footer ----------
   Centre the stack and give it real breathing room at the edges. */

@media (max-width: 640px) {
  .wrap { padding-left: 22px; padding-right: 22px; }

  .footer__cols { text-align: center; gap: 36px; }
  .footer__brand { display: flex; flex-direction: column; align-items: center; }
  .footer__brand p { margin-left: auto; margin-right: auto; }
  /* Six links in one tall column looked lopsided on a phone.
     Two rows of three reads as a block instead. */
  .footer__cols ul {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-auto-flow: column;
    grid-template-rows: repeat(3, auto);
    justify-content: center;
    gap: 10px 34px;
    text-align: left;
  }
  .footer__cols li { margin-bottom: 0; }
  .footer address { text-align: center; }
  .iggrid { max-width: 320px; margin: 0 auto; }

  .footer__cta { flex-direction: column; align-items: stretch; text-align: center; gap: 14px; }
  .footer__cta p { flex: 0 0 auto; }
  .footer__cta .btn { width: 100%; }

  .footer__base { flex-direction: column; align-items: center; text-align: center; gap: 18px; }
  .footer__social { margin-left: 0; justify-content: center; }
}


/* ---------- prose pages (privacy, terms) ---------- */

/* Legal pages: sticky section index beside the text so the page reads as
   a document rather than one narrow column stranded on the left. */
.legal { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: clamp(36px, 5vw, 88px); align-items: start; }

/* Desktop: a plain sticky list, the disclosure behaviour switched off.
   Mobile: a real collapsed disclosure so it cannot crowd the text. */
.legal__toc { position: sticky; top: 104px; }
.legal__toc summary {
  font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-faint); margin: 0 0 14px;
  list-style: none; cursor: default;
}
.legal__toc summary::-webkit-details-marker { display: none; }
.legal__toc ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; }
.legal__toc li { counter-increment: toc; margin-bottom: 9px; }
.legal__toc a {
  display: flex; gap: 10px; font-size: 0.86rem; color: var(--ink-soft);
  text-decoration: none; line-height: 1.35;
}
.legal__toc a::before { content: counter(toc, decimal-leading-zero); color: var(--ink-faint); font-size: 0.76rem; }
.legal__toc a:hover { color: var(--copper); }

.prose { max-width: 78ch; }
.prose > p:first-of-type { font-size: 1.1rem; color: var(--ink); }

@media (max-width: 920px) {
  .legal { display: block; }
  .prose { max-width: none; }

  .legal__toc {
    position: static;
    display: block;
    margin-bottom: 34px;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    background: var(--bone-2);
    padding: 0;
  }
  .legal__toc summary {
    margin: 0;
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--ink);
    font-weight: 600;
  }
  .legal__toc summary::after { content: '+'; font-size: 1.1rem; color: var(--copper); }
  .legal__toc[open] summary::after { content: '\2013'; }
  .legal__toc[open] summary { border-bottom: 1px solid var(--border); }
  .legal__toc ol { padding: 16px 20px 18px; }
  .legal__toc li { margin-bottom: 12px; }
  .legal__toc a { font-size: 0.92rem; }
}
.prose h3 { scroll-margin-top: 104px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 46px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.prose h3:first-of-type { margin-top: 0; }
.prose p { font-size: 1rem; color: var(--ink-soft); }
.prose p strong { color: var(--ink); font-weight: 600; }
.prose ul { margin: 0 0 1.2em; padding-left: 1.1em; color: var(--ink-soft); font-size: 1rem; }
.prose li { margin-bottom: 0.6em; }
.prose a { color: var(--copper); }
.prose__meta {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 34px;
}
.prose__note {
  margin-top: 46px;
  padding: 24px 28px;
  background: var(--bone-2);
  border-left: 2px solid var(--copper);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.prose__note p:last-child { margin-bottom: 0; }


/* ---------- mobile: centre the review + team blocks ---------- */

@media (max-width: 920px) {
  /* Heading, star line, arrows and the CTA all read as one centred stack */
  .revgrid > div:first-child { text-align: center; }
  .revgrid > div:first-child .lede { margin-left: auto; margin-right: auto; }
  .revnav { justify-content: center; }
  .reviews__foot { text-align: center; }

  /* Team panel: heading and button centred with the cards below */
  .teamlead { text-align: center; align-items: center; padding-left: 30px; padding-right: 30px; }
  .teamlead .btn { align-self: center; }
  .teamlead h2 { margin-left: auto; margin-right: auto; }
}
