/* ============================================================
   PLATINUM BLACK LADIES SALON — design system
   Quiet luxury, ivory-dominant, editorial.
   Tokens per CLAUDE-DESIGN.md §5.
   ============================================================ */

:root {
  /* Palette */
  --ink-black: #0E0E10;
  --charcoal: #1C1C1F;
  --graphite: #2A2A2E;
  --platinum: #C9CBCE;
  --silver-light: #E8E9EB;
  --silver-soft: #F0F0EE;
  --ivory: #F6F4EF;
  --ivory-warm: #EFEBE2;
  --champagne: #C8A86B;
  --champagne-deep: #A88848;
  --white: #FFFFFF;

  /* Semantic */
  --bg: var(--ivory);
  --bg-elev: var(--white);
  --bg-band: var(--ivory-warm);
  --ink: var(--ink-black);
  --ink-muted: #5A5A5E;
  --ink-faint: #8A8A8E;
  --hairline: rgba(14, 14, 16, 0.10);
  --hairline-strong: rgba(14, 14, 16, 0.22);
  --accent: var(--champagne);
  --accent-deep: var(--champagne-deep);
  --on-dark: var(--ivory);

  /* Rhythm */
  --gutter: clamp(20px, 4vw, 64px);
  --section-y: clamp(80px, 9vw, 160px);
  --page-max: 1440px;

  /* Type */
  --f-display: 'Playfair Display', 'Times New Roman', serif;
  --f-body: 'Inter', system-ui, -apple-system, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Dark mode (tweakable) */
[data-mode="black"] {
  --bg: var(--ink-black);
  --bg-elev: var(--charcoal);
  --bg-band: #15151a;
  --ink: var(--ivory);
  --ink-muted: #B8B6B0;
  --ink-faint: #7A7873;
  --hairline: rgba(246, 244, 239, 0.12);
  --hairline-strong: rgba(246, 244, 239, 0.28);
}

/* Density */
[data-density="dense"] {
  --section-y: clamp(56px, 6vw, 110px);
}

/* ============================================================
   Reset & base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color 400ms var(--ease-out), color 400ms var(--ease-out);
}
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 500; letter-spacing: -0.01em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ============================================================
   Layout primitives
   ============================================================ */
.shell {
  max-width: var(--page-max);
  margin: 0 inline;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.shell-wide {
  max-width: 1680px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section-tight { padding-block: clamp(48px, 5vw, 96px); }

.eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 10px;
  transform: translateY(-1px);
}

.display-1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(48px, 7.2vw, 124px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.display-1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-deep);
  [data-mode="black"] & { color: var(--accent); }
}
[data-mode="black"] .display-1 em { color: var(--accent); }

.display-2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.018em;
}
.display-2 em {
  font-style: italic;
}

.headline {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.015em;
}

.lede {
  font-family: var(--f-body);
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 56ch;
}

.small-caps {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 220ms var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
  border-radius: 0;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover { background: var(--accent-deep); color: var(--white); }
[data-mode="black"] .btn-primary { background: var(--accent); color: var(--ink-black); }
[data-mode="black"] .btn-primary:hover { background: var(--ivory); }

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

.btn-accent {
  background: var(--accent);
  color: var(--ink-black);
}
.btn-accent:hover { background: var(--accent-deep); color: var(--white); }

.btn-link {
  background: transparent;
  padding: 6px 0;
  border-bottom: 1px solid var(--hairline-strong);
  letter-spacing: 0.16em;
  font-size: 12px;
}
.btn-link:hover { border-color: var(--accent); color: var(--accent-deep); }
[data-mode="black"] .btn-link:hover { color: var(--accent); }

.btn-arrow::after {
  content: '→';
  font-family: var(--f-body);
  font-size: 14px;
  letter-spacing: 0;
  transition: transform 220ms var(--ease-out);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ============================================================
   Wordmark / brand
   ============================================================ */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.wordmark-mono {
  width: 36px; height: 36px;
  border: 1px solid currentColor;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: 19px;
  font-style: italic;
  letter-spacing: -0.02em;
}
.wordmark-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.wordmark-text .a {
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.wordmark-text .b {
  font-family: var(--f-body);
  font-size: 9px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 4px;
}

/* ============================================================
   Top Nav
   ============================================================ */
.topnav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.topnav-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-block: 18px;
}
.topnav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.topnav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 200ms;
}
.topnav-link:hover { color: var(--accent-deep); }
[data-mode="black"] .topnav-link:hover { color: var(--accent); }
.topnav-link.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1px;
  background: var(--accent);
}
.topnav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}
.topnav-cta .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--hairline-strong);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.topnav-cta .star { color: var(--accent); }

/* Announcement strip above nav */
.announce {
  background: #0E0E10;
  color: #F6F4EF;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 9px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.announce .sep { color: var(--accent); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding-top: clamp(40px, 4vw, 64px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 88px);
  align-items: end;
}
.hero-copy { padding-bottom: clamp(20px, 4vw, 64px); }
.hero-tag {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
}
.hero-tag .line { flex: 0 0 64px; height: 1px; background: var(--hairline-strong); }
.hero-h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(54px, 7.4vw, 124px);
  line-height: 0.92;
  letter-spacing: -0.022em;
}
.hero-h1 em {
  font-style: italic;
  color: var(--accent-deep);
}
[data-mode="black"] .hero-h1 em { color: var(--accent); }
.hero-sub {
  margin-top: 28px;
  max-width: 48ch;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 300;
  color: var(--ink-muted);
}
.hero-cta-row {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-meta {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
}
.hero-meta dt {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 8px;
}
.hero-meta dd {
  margin: 0;
  font-family: var(--f-display);
  font-size: 19px;
  line-height: 1.3;
}
.hero-meta dd small { display: block; font-family: var(--f-body); font-size: 11px; letter-spacing: 0.1em; color: var(--ink-muted); margin-top: 4px; }

.hero-art {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--silver-light);
  overflow: hidden;
}
.hero-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.92);
}
.hero-art-stamp {
  position: absolute;
  left: 24px; bottom: 24px;
  background: var(--bg);
  padding: 14px 20px;
  display: flex; flex-direction: column;
  gap: 4px;
  border: 1px solid var(--hairline);
}
.hero-art-stamp .x { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-faint); }
.hero-art-stamp .y { font-family: var(--f-display); font-size: 18px; }
.hero-art-rating {
  position: absolute;
  right: 24px; top: 24px;
  background: var(--bg);
  padding: 18px 22px;
  border: 1px solid var(--hairline);
  text-align: center;
  min-width: 152px;
}
.hero-art-rating .num {
  font-family: var(--f-display);
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-art-rating .stars { color: var(--accent); font-size: 13px; letter-spacing: 0.18em; margin-top: 6px; }
.hero-art-rating .src { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-faint); margin-top: 10px; }

/* Hero variant: full-bleed */
.hero-bleed {
  position: relative;
  height: calc(100vh - 80px);
  min-height: 640px;
  max-height: 880px;
  overflow: hidden;
}
.hero-bleed img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-bleed::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,14,16,0.15) 0%, rgba(14,14,16,0.65) 100%);
}
.hero-bleed-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--gutter);
  padding-bottom: clamp(48px, 6vw, 96px);
  color: var(--ivory);
  --ink: var(--ivory);
  --ink-muted: rgba(246, 244, 239, 0.78);
  --hairline-strong: rgba(246, 244, 239, 0.35);
}
.hero-bleed-inner .hero-h1 em { color: var(--accent); }
.hero-bleed-inner .btn-ghost { color: var(--ivory); border-color: rgba(246,244,239,0.5); }
.hero-bleed-inner .btn-ghost:hover { background: var(--ivory); color: var(--ink-black); border-color: var(--ivory); }
.hero-bleed-inner .btn-primary { background: var(--ivory); color: var(--ink-black); }

/* ============================================================
   Trust strip
   ============================================================ */
.trust {
  border-block: 1px solid var(--hairline);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-block: 36px;
}
.trust-item { display: flex; align-items: center; gap: 16px; }
.trust-item .ic {
  width: 40px; height: 40px;
  border: 1px solid var(--hairline-strong);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: 16px;
  color: var(--accent-deep);
  flex-shrink: 0;
}
[data-mode="black"] .trust-item .ic { color: var(--accent); }
.trust-item .lbl { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 4px; }
.trust-item .val { font-family: var(--f-display); font-size: 19px; line-height: 1.2; }

/* ============================================================
   Signature services grid
   ============================================================ */
.sig-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 80px);
}
.sig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.sig-card {
  background: var(--bg-elev);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background-color 240ms var(--ease-out);
  position: relative;
}
.sig-card:hover { background: var(--bg-band); }
.sig-card .img {
  aspect-ratio: 4 / 3;
  background: var(--silver-light);
  overflow: hidden;
  margin: -28px -28px 0;
}
.sig-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-out); }
.sig-card:hover .img img { transform: scale(1.04); }
.sig-card .num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.1em;
}
.sig-card .name { font-family: var(--f-display); font-size: 28px; line-height: 1.1; letter-spacing: -0.01em; }
.sig-card .desc { color: var(--ink-muted); font-size: 14px; line-height: 1.55; }
.sig-card .meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  font-size: 12px;
  letter-spacing: 0.1em;
}
.sig-card .meta .price { font-family: var(--f-display); font-size: 20px; color: var(--accent-deep); letter-spacing: 0; }
[data-mode="black"] .sig-card .meta .price { color: var(--accent); }

/* ============================================================
   Pillars
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.pillar {
  padding: 56px 40px;
  border-right: 1px solid var(--hairline);
}
.pillar:last-child { border-right: 0; }
.pillar .num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 64px;
  color: var(--accent);
  line-height: 1;
}
.pillar .title { font-family: var(--f-display); font-size: 24px; margin-top: 20px; }
.pillar .body { margin-top: 14px; color: var(--ink-muted); font-size: 14px; line-height: 1.6; }

/* ============================================================
   Team strip
   ============================================================ */
.team-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 2px; background: var(--hairline); }
.team-card {
  background: var(--bg-elev);
  padding: 0;
  display: flex;
  flex-direction: column;
}
.team-card .photo { aspect-ratio: 3 / 4; background: var(--silver-light); overflow: hidden; }
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.02) grayscale(0.05); }
.team-card .info { padding: 20px; }
.team-card .info .nm { font-family: var(--f-display); font-size: 19px; }
.team-card .info .rl { font-size: 11px; color: var(--ink-muted); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px; }
.team-card .info .rt { margin-top: 12px; font-size: 12px; color: var(--accent-deep); letter-spacing: 0.06em; }
[data-mode="black"] .team-card .info .rt { color: var(--accent); }

/* ============================================================
   Offer card
   ============================================================ */
.offer {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0;
  background: #0E0E10;
  color: #F6F4EF;
  --ink: #F6F4EF;
  --ink-muted: rgba(246,244,239, 0.72);
  --hairline: rgba(246,244,239,0.18);
}
.offer .copy { padding: clamp(40px, 5vw, 72px); }
.offer .copy .stamp {
  display: inline-block;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px;
  margin-bottom: 24px;
}
.offer .copy .h { font-family: var(--f-display); font-size: clamp(36px, 4vw, 64px); line-height: 1; letter-spacing: -0.02em; }
.offer .copy .h em { font-style: italic; color: var(--accent); }
.offer .copy .body { margin-top: 24px; color: rgba(246,244,239,0.72); max-width: 50ch; font-size: 15px; line-height: 1.6; }
.offer .copy .terms { margin-top: 28px; font-family: var(--f-mono); font-size: 11px; color: rgba(246,244,239,0.6); letter-spacing: 0.04em; line-height: 1.6; }
.offer .art {
  position: relative;
  min-height: 360px;
  background: #15151a;
  overflow: hidden;
}
.offer .art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.offer .art .badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.offer .art .badge .pct {
  font-family: var(--f-display);
  font-size: clamp(120px, 18vw, 220px);
  line-height: 0.9;
  color: var(--accent);
  font-style: italic;
}
.offer .art .badge .lbl { color: var(--ivory); letter-spacing: 0.22em; text-transform: uppercase; font-size: 12px; margin-top: 4px; }

/* ============================================================
   Reviews
   ============================================================ */
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.review-card {
  background: var(--bg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.review-card .stars { color: var(--accent); letter-spacing: 0.3em; font-size: 13px; }
.review-card .body {
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.review-card .footer { display: flex; gap: 14px; align-items: center; margin-top: auto; }
.review-card .avatar {
  width: 38px; height: 38px;
  border: 1px solid var(--hairline-strong);
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-size: 15px;
  color: var(--accent-deep);
}
[data-mode="black"] .review-card .avatar { color: var(--accent); }
.review-card .who { font-size: 13px; }
.review-card .who .nm { font-weight: 500; }
.review-card .who .dt { font-size: 11px; color: var(--ink-faint); letter-spacing: 0.08em; margin-top: 2px; }

/* ============================================================
   Gallery strip
   ============================================================ */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 240px;
  gap: 2px;
}
.gallery-strip > * { background: var(--silver-light); overflow: hidden; }
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-out); }
.gallery-strip > *:hover img { transform: scale(1.05); }
.gallery-strip > *:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-strip > *:nth-child(2) { grid-column: span 2; }
.gallery-strip > *:nth-child(3) { grid-column: span 2; }
.gallery-strip > *:nth-child(4) { grid-column: span 2; }
.gallery-strip > *:nth-child(5) { grid-column: span 2; }

/* ============================================================
   Final CTA
   ============================================================ */
.finalcta {
  text-align: center;
  padding-block: clamp(80px, 9vw, 160px);
  border-top: 1px solid var(--hairline);
}
.finalcta .eyebrow { margin-bottom: 24px; }
.finalcta h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 96px);
  line-height: 1;
  letter-spacing: -0.022em;
  max-width: 16ch;
  margin: 0 auto;
}
.finalcta h2 em { font-style: italic; color: var(--accent-deep); }
[data-mode="black"] .finalcta h2 em { color: var(--accent); }
.finalcta .row { margin-top: 40px; display: inline-flex; gap: 12px; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: #0E0E10;
  color: #F6F4EF;
  --ink: #F6F4EF;
  --ink-muted: rgba(246,244,239,0.65);
  --hairline: rgba(246,244,239,0.14);
  --hairline-strong: rgba(246,244,239,0.28);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 48px;
  padding-block: 88px;
  border-bottom: 1px solid rgba(246,244,239,0.14);
}
.footer-grid .col h4 {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(246,244,239,0.5);
  margin-bottom: 22px;
  font-weight: 500;
}
.footer-grid .col ul { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.footer-grid .col a:hover { color: var(--accent); }
.footer-grid .brand .word { font-family: var(--f-display); font-size: 32px; letter-spacing: -0.01em; line-height: 1; }
.footer-grid .brand .word em { font-style: italic; color: var(--accent); }
.footer-grid .brand .addr { margin-top: 24px; color: rgba(246,244,239,0.72); font-size: 14px; line-height: 1.7; }
.footer-base {
  display: flex;
  justify-content: space-between;
  padding-block: 28px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246,244,239,0.4);
}

/* ============================================================
   Floating WhatsApp / Book bar
   ============================================================ */
.float-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.fab {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink-black);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 36px rgba(14,14,16,0.18);
  font-size: 22px;
  transition: transform 180ms var(--ease-out), background 180ms;
}
.fab:hover { transform: translateY(-2px) scale(1.04); background: var(--accent-deep); color: var(--ivory); }
.fab.wa { background: #25D366; color: white; }
.fab.wa:hover { background: #1eb555; }

/* ============================================================
   Pages — generic
   ============================================================ */
.page-head {
  padding-block: clamp(64px, 7vw, 128px) clamp(40px, 4vw, 72px);
  border-bottom: 1px solid var(--hairline);
}
.page-head .crumbs { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 28px; }
.page-head .crumbs a { color: var(--ink); }
.page-head .crumbs .sep { margin: 0 12px; color: var(--ink-faint); }
.page-head h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(56px, 8vw, 128px);
  line-height: 0.92;
  letter-spacing: -0.022em;
  max-width: 14ch;
}
.page-head h1 em { font-style: italic; color: var(--accent-deep); }
[data-mode="black"] .page-head h1 em { color: var(--accent); }
.page-head .sub { margin-top: 32px; max-width: 56ch; color: var(--ink-muted); font-size: 17px; line-height: 1.55; font-weight: 300; }

/* ============================================================
   Services page
   ============================================================ */
.svc-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  padding-block: clamp(56px, 6vw, 96px);
  align-items: start;
}
.svc-nav {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--hairline);
}
.svc-nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 200ms;
}
.svc-nav a:hover, .svc-nav a.is-active { color: var(--ink); }
.svc-nav a .ct { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0; color: var(--ink-faint); }
.svc-nav a.is-active::before {
  content: '—';
  margin-right: 8px;
  color: var(--accent);
}

.svc-cat { margin-bottom: 80px; }
.svc-cat-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ink);
}
.svc-cat-head h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 3.4vw, 52px);
  letter-spacing: -0.015em;
}
.svc-cat-head .num {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
}

.svc-row {
  display: grid;
  grid-template-columns: 0.4fr 1.4fr 0.6fr 0.4fr;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: baseline;
}
.svc-row .name {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: -0.005em;
}
.svc-row .desc {
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.55;
}
.svc-row .dur {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
}
.svc-row .price {
  font-family: var(--f-display);
  font-size: 22px;
  text-align: right;
  letter-spacing: -0.005em;
}
.svc-row .price .from { font-family: var(--f-body); font-size: 11px; color: var(--ink-faint); letter-spacing: 0.16em; text-transform: uppercase; display: block; }
.svc-row .price .consult { font-family: var(--f-body); font-size: 13px; color: var(--ink-muted); font-style: italic; }
.svc-row.is-signature { background: linear-gradient(90deg, transparent 0%, var(--bg-band) 50%, transparent 100%); }
.svc-row.is-signature .name::after {
  content: '★';
  color: var(--accent);
  margin-left: 12px;
  font-size: 14px;
  vertical-align: middle;
}

/* ============================================================
   Booking flow
   ============================================================ */
.book-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.book-flow {
  padding: clamp(40px, 5vw, 72px);
  border-right: 1px solid var(--hairline);
}
.book-summary {
  padding: clamp(40px, 5vw, 72px);
  background: var(--bg-band);
  position: sticky;
  top: 80px;
  align-self: start;
}

.steps {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 18px;
}
.step {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.step .ix {
  font-family: var(--f-mono);
  width: 22px; height: 22px;
  border: 1px solid var(--hairline-strong);
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 11px;
}
.step.is-done .ix { background: var(--accent); border-color: var(--accent); color: var(--ink-black); }
.step.is-active { color: var(--ink); }
.step.is-active .ix { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.book-q { font-family: var(--f-display); font-size: clamp(28px, 3vw, 44px); letter-spacing: -0.015em; margin-bottom: 32px; }

.svc-pick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.svc-pick {
  border: 1px solid var(--hairline-strong);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  transition: all 180ms var(--ease-out);
  cursor: pointer;
  position: relative;
}
.svc-pick:hover { border-color: var(--ink); }
.svc-pick.is-active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.svc-pick .nm { font-family: var(--f-display); font-size: 20px; }
.svc-pick .dur { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); }
.svc-pick.is-active .dur { color: rgba(246,244,239,0.6); }
.svc-pick .pr { font-family: var(--f-mono); font-size: 13px; margin-top: 8px; color: var(--accent-deep); }
.svc-pick.is-active .pr { color: var(--accent); }

.stylist-pick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.stylist-opt {
  border: 1px solid var(--hairline-strong);
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 180ms;
}
.stylist-opt:hover { border-color: var(--ink); }
.stylist-opt.is-active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.stylist-opt .av {
  width: 64px; height: 64px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--silver-light);
}
.stylist-opt .av img { width: 100%; height: 100%; object-fit: cover; }
.stylist-opt .nm { font-family: var(--f-display); font-size: 17px; }
.stylist-opt .rl { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin-top: 4px; }
.stylist-opt.is-active .rl { color: rgba(246,244,239,0.6); }
.stylist-opt .rt { font-size: 11px; color: var(--accent-deep); margin-top: 8px; letter-spacing: 0.05em; }
.stylist-opt.is-active .rt { color: var(--accent); }

.cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 24px;
}
.cal-day {
  border: 1px solid var(--hairline);
  padding: 14px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 180ms;
}
.cal-day .dow { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); }
.cal-day .dt { font-family: var(--f-display); font-size: 22px; margin-top: 4px; }
.cal-day:hover { border-color: var(--ink); }
.cal-day.is-active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.cal-day.is-active .dow { color: rgba(246,244,239,0.6); }
.cal-day.is-disabled { opacity: 0.35; cursor: not-allowed; }

.slots {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.slot {
  border: 1px solid var(--hairline-strong);
  padding: 12px 0;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 13px;
  cursor: pointer;
  transition: all 180ms;
  letter-spacing: 0.04em;
}
.slot:hover { border-color: var(--ink); }
.slot.is-active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.slot.is-disabled { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }

.book-form { display: flex; flex-direction: column; gap: 16px; max-width: 480px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-muted); }
.field input, .field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline-strong);
  padding: 10px 0;
  font: inherit;
  color: inherit;
  outline: 0;
  transition: border-color 180ms;
}
.field input:focus, .field textarea:focus { border-color: var(--accent); }

.step-actions {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}

.summary-row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--hairline); font-size: 14px; }
.summary-row .k { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-muted); }
.summary-row .v { font-family: var(--f-display); font-size: 17px; text-align: right; }
.summary-row .v .empty { color: var(--ink-faint); font-style: italic; font-size: 14px; font-family: var(--f-body); }
.summary-total { display: flex; justify-content: space-between; padding-top: 20px; margin-top: 12px; border-top: 1px solid var(--ink); }
.summary-total .k { font-family: var(--f-display); font-size: 24px; }
.summary-total .v { font-family: var(--f-display); font-size: 32px; color: var(--accent-deep); }
[data-mode="black"] .summary-total .v { color: var(--accent); }

.book-confirm {
  text-align: center;
  padding-block: 80px;
}
.book-confirm .chk {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink-black);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: 36px;
  margin: 0 auto 32px;
}
.book-confirm h2 { font-family: var(--f-display); font-size: clamp(36px, 4vw, 56px); letter-spacing: -0.015em; }
.book-confirm p { margin-top: 16px; color: var(--ink-muted); max-width: 44ch; margin-inline: auto; }

/* ============================================================
   Memberships page
   ============================================================ */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.tier {
  background: var(--bg-elev);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
}
.tier.is-feature { background: #0E0E10; color: #F6F4EF; --ink-muted: rgba(246,244,239,0.7); --hairline: rgba(246,244,239,0.18); }
.tier .nm { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); }
.tier .pr { font-family: var(--f-display); font-size: clamp(48px, 5vw, 72px); line-height: 1; margin-top: 18px; letter-spacing: -0.02em; }
.tier .pr small { font-family: var(--f-body); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); display: block; margin-top: 8px; font-weight: 400; }
.tier .desc { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--hairline); font-size: 14px; color: var(--ink-muted); line-height: 1.55; }
.tier ul { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.tier ul li { display: flex; gap: 12px; padding-block: 4px; }
.tier ul li::before { content: '✓'; color: var(--accent); flex-shrink: 0; }
.tier .cta { margin-top: auto; padding-top: 36px; }

/* ============================================================
   About page
   ============================================================ */
.about-philo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding-block: clamp(64px, 7vw, 128px);
}
.about-philo .img-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-philo .img-stack .a { aspect-ratio: 3/4; }
.about-philo .img-stack .b { aspect-ratio: 3/4; margin-top: 40px; }
.about-philo .img-stack img { width: 100%; height: 100%; object-fit: cover; }
.about-philo .copy h2 { font-family: var(--f-display); font-size: clamp(36px, 4.4vw, 64px); line-height: 1; letter-spacing: -0.018em; }
.about-philo .copy h2 em { font-style: italic; color: var(--accent-deep); }
[data-mode="black"] .about-philo .copy h2 em { color: var(--accent); }
.about-philo .copy p { margin-top: 28px; color: var(--ink-muted); font-size: 16px; line-height: 1.7; }

.team-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

/* ============================================================
   Reviews page
   ============================================================ */
.review-hero {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: end;
  padding-block: clamp(64px, 6vw, 96px);
  border-bottom: 1px solid var(--hairline);
}
.review-hero .stat .big {
  font-family: var(--f-display);
  font-size: clamp(120px, 18vw, 260px);
  line-height: 0.85;
  letter-spacing: -0.04em;
}
.review-hero .stat .of { color: var(--ink-faint); font-size: 22px; margin-top: 4px; }
.review-hero .stat .stars { color: var(--accent); font-size: 24px; letter-spacing: 0.2em; margin-top: 16px; }
.review-hero .stat .src { margin-top: 18px; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-muted); }
.review-hero .lede { font-size: 22px; line-height: 1.4; color: var(--ink); font-weight: 300; max-width: 36ch; font-family: var(--f-display); }
.review-hero .lede em { color: var(--accent-deep); }
[data-mode="black"] .review-hero .lede em { color: var(--accent); }

.review-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.staff-rating {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.staff-rating .row {
  background: var(--bg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.staff-rating .row .nm { font-family: var(--f-display); font-size: 22px; }
.staff-rating .row .rl { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); }
.staff-rating .row .rt {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--f-display);
  font-size: 17px;
}
.staff-rating .row .rt .stars { color: var(--accent); font-size: 13px; letter-spacing: 0.2em; }

/* ============================================================
   Contact page
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.contact-info {
  padding: clamp(48px, 5vw, 88px);
  border-right: 1px solid var(--hairline);
}
.contact-block { padding-block: 28px; border-bottom: 1px solid var(--hairline); }
.contact-block:last-child { border-bottom: 0; }
.contact-block .k { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 8px; }
.contact-block .v { font-family: var(--f-display); font-size: 24px; line-height: 1.3; }
.contact-block .v a:hover { color: var(--accent-deep); }
[data-mode="black"] .contact-block .v a:hover { color: var(--accent); }
.contact-block .meta { font-size: 12px; color: var(--ink-faint); margin-top: 8px; letter-spacing: 0.04em; }

.map-card {
  background: var(--bg-band);
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}
.map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.18) contrast(1.04);
}
.map-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 35% 40%, transparent 0, transparent 6px, var(--hairline) 6px, var(--hairline) 7px, transparent 7px),
    linear-gradient(45deg, transparent 49.5%, var(--hairline) 49.5%, var(--hairline) 50.5%, transparent 50.5%),
    linear-gradient(135deg, transparent 49.5%, var(--hairline) 49.5%, var(--hairline) 50.5%, transparent 50.5%),
    linear-gradient(0deg, transparent 49.5%, var(--hairline) 49.5%, var(--hairline) 50.5%, transparent 50.5%),
    linear-gradient(90deg, transparent 49.5%, var(--hairline) 49.5%, var(--hairline) 50.5%, transparent 50.5%);
  background-size: 100% 100%, 80px 80px, 80px 80px, 40px 40px, 40px 40px;
}
.map-pin {
  position: absolute;
  left: 50%; top: 45%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: var(--ink);
  color: var(--accent);
  border-radius: 50% 50% 50% 0;
  rotate: -45deg;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: 22px;
}
.map-pin span { rotate: 45deg; }
.map-card .info {
  position: relative;
  z-index: 2;
  background: var(--bg);
  padding: 24px 28px;
  border: 1px solid var(--hairline);
}
.map-card .info h3 { font-family: var(--f-display); font-size: 22px; }
.map-card .info p { font-size: 13px; color: var(--ink-muted); margin-top: 4px; line-height: 1.5; }
.map-card .info .btn-link { margin-top: 14px; display: inline-block; }

/* ============================================================
   Utilities
   ============================================================ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.split-line {
  display: flex;
  align-items: center;
  gap: 16px;
}
.split-line::before, .split-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--hairline);
}

/* ============================================================
   Responsive (mobile fallback)
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .sig-grid { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .team-strip { grid-template-columns: repeat(3, 1fr); }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-strip { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .svc-layout { grid-template-columns: 1fr; gap: 32px; }
  .svc-nav { position: static; flex-direction: row; flex-wrap: wrap; gap: 4px 12px; }
  .svc-row { grid-template-columns: 1fr; gap: 6px; }
  .svc-row .price { text-align: left; }
  .book-layout { grid-template-columns: 1fr; }
  .book-summary { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .review-hero { grid-template-columns: 1fr; }
  .review-list { grid-template-columns: 1fr; }
  .staff-rating { grid-template-columns: 1fr 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .topnav-links { display: none; }
  .topnav-bar { grid-template-columns: 1fr 1fr; }
  .offer { grid-template-columns: 1fr; }
  .about-philo { grid-template-columns: 1fr; gap: 40px; }
  .team-full-grid { grid-template-columns: 1fr 1fr; }
  .stylist-pick { grid-template-columns: 1fr 1fr; }
}
