/* Mr. Hair Club — Stylesheet
   Type: Oswald (display, condensed), Inter (body), Caveat (script)
   Palette: electric cyan on deep navy, brushed silver accents
   No emojis except language flags; minimal iconography.
*/

/* ─────────────────────────────────────────────────────────────────────── */
/* TOKENS */

:root {
  --bg: #06090C;
  --bg-2: #0A1218;
  --bg-3: #111921;
  --surface: #141D26;
  --surface-2: #1A242E;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);

  --fg: #F2F4F6;
  --fg-2: #C7CCD2;
  --fg-3: #8A9098;
  --fg-4: #5A6068;

  --accent: #2BA5C7;
  --accent-bright: #56C7E3;
  --accent-deep: #0F4F60;
  --accent-glow: color-mix(in oklab, var(--accent) 50%, transparent);

  --silver: #C0C4C8;
  --wood: #B08A5A;

  --font-display: "Oswald", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-script: "Caveat", cursive;

  --radius: 4px;
  --radius-lg: 8px;

  --header-h: 72px;

  --pad-x: clamp(20px, 5vw, 96px);
  --pad-section: clamp(80px, 10vw, 160px);
}

:root[data-density="tight"] {
  --pad-section: clamp(56px, 7vw, 110px);
}

/* ─────────────────────────────────────────────────────────────────────── */
/* RESET / BASE */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; padding: 0; color: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.01em; }

::selection { background: var(--accent); color: #00161D; }

/* ─────────────────────────────────────────────────────────────────────── */
/* LOGO */

.logo {
  --logo-scale: 1;
  display: inline-flex;
  align-items: baseline;
  gap: calc(6px * var(--logo-scale));
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--silver);
  letter-spacing: 0.02em;
  position: relative;
  line-height: 1;
}
.logo-mr,
.logo-hair {
  font-size: calc(28px * var(--logo-scale));
  background: linear-gradient(180deg, #E8ECEE 0%, #9CA3AB 55%, #6C737B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
}
.logo-club {
  font-family: var(--font-script);
  font-size: calc(24px * var(--logo-scale));
  color: var(--silver);
  margin-left: calc(-12px * var(--logo-scale));
  margin-bottom: calc(-2px * var(--logo-scale));
  transform: rotate(-6deg);
  background: linear-gradient(180deg, #E8ECEE 0%, #9CA3AB 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ─────────────────────────────────────────────────────────────────────── */
/* HEADER */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--header-h);
  transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
  border-bottom: 1px solid transparent;
}
.header-scrolled {
  background: rgba(6, 9, 12, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.header-inner {
  height: 100%;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-logo { display: flex; align-items: center; }
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 32px;
}
.header-nav a {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-2);
  position: relative;
  padding: 8px 0;
  transition: color 160ms ease;
}
.header-nav a:hover { color: var(--fg); }
.header-nav a::after {
  content: "";
  position: absolute;
  bottom: 2px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 200ms ease;
}
.header-nav a:hover::after { width: 100%; }
.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hamburger { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--fg); }

@media (max-width: 900px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
}

.mobile-menu {
  position: absolute;
  top: var(--header-h);
  left: 0; right: 0;
  background: rgba(6, 9, 12, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 24px var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a {
  font-size: 18px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Language switcher */
.lang {
  display: inline-flex;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 2px;
  background: rgba(0, 0, 0, 0.3);
}
.lang-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--fg-3);
  transition: color 160ms ease, background 160ms ease;
}
.lang-btn:hover { color: var(--fg); }
.lang-btn.is-active {
  background: var(--accent);
  color: #00161D;
}

/* ─────────────────────────────────────────────────────────────────────── */
/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 200ms ease, color 200ms ease, transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  white-space: nowrap;
}
.btn-sm { padding: 9px 14px; font-size: 12px; gap: 8px; }
.btn-arrow {
  display: inline-block;
  transition: transform 240ms ease;
}
.btn:hover .btn-arrow { transform: translateX(3px); }

.btn-primary {
  background: var(--accent);
  color: #00161D;
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-bright);
  box-shadow: 0 8px 28px -8px var(--accent-glow);
  transform: translateY(-1px);
}
.btn-ghost {
  border: 1px solid var(--line-2);
  color: var(--fg);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-bright);
}

/* ─────────────────────────────────────────────────────────────────────── */
/* SECTION HEAD */

.section {
  padding: var(--pad-section) var(--pad-x);
  position: relative;
}
.sec-head {
  max-width: 880px;
  margin-bottom: clamp(48px, 5vw, 72px);
}
.sec-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 24px;
  font-weight: 500;
}
.kicker-bar {
  width: 28px; height: 1px; background: var(--accent);
}
.sec-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--fg);
  text-wrap: balance;
}
.sec-sub {
  margin-top: 20px;
  max-width: 640px;
  color: var(--fg-2);
  font-size: 17px;
  text-wrap: pretty;
}
.sec-head-center .sec-sub { margin-inline: auto; }

/* ─────────────────────────────────────────────────────────────────────── */
/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  padding: var(--header-h) var(--pad-x) 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg img,
.hero-bg image-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero-bg img {
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(0.85) brightness(0.55) contrast(1.05);
}
.hero-bg image-slot {
  /* image-slot renders its own <img> with cover; we tint via the veil layer above */
  filter: saturate(0.9) brightness(0.6) contrast(1.05);
}
.hero-bg-painted {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 30%, color-mix(in oklab, var(--accent) 35%, transparent), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, color-mix(in oklab, var(--accent-deep) 60%, transparent), transparent 60%),
    linear-gradient(180deg, #050810 0%, #0A1218 60%, #06090C 100%);
}
.hero-bg-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 9, 12, 0.55) 0%, rgba(6, 9, 12, 0.1) 25%, rgba(6, 9, 12, 0.7) 75%, var(--bg) 100%),
    linear-gradient(90deg, rgba(6, 9, 12, 0.75) 0%, rgba(6, 9, 12, 0.2) 55%, rgba(6, 9, 12, 0) 100%);
  pointer-events: none;
}
.hero-bg-glow {
  position: absolute;
  bottom: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-glow), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.7;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin-bottom: 28px;
  padding: 8px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.3);
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(56px, 11vw, 184px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
  text-wrap: balance;
}
.hero-line {
  display: block;
  color: var(--fg);
}
.hero-line-accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
  padding-left: 0.06em;
  position: relative;
}
.hero-line-accent::before {
  content: "";
  position: absolute;
  left: -0.06em; top: 50%;
  width: 0.04em; height: 0.7em;
  background: var(--accent);
  transform: translateY(-50%);
  display: none;
}

.hero-sub {
  max-width: 560px;
  font-size: 18px;
  color: var(--fg-2);
  margin: 0 0 36px;
  text-wrap: pretty;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: clamp(56px, 8vw, 96px);
}

.hero-corner-mark {
  position: absolute;
  top: calc(var(--header-h) + 32px);
  right: var(--pad-x);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fg-2);
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}
.hero-corner-since {
  font-family: var(--font-script);
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--silver);
  line-height: 1;
  margin-bottom: 2px;
}
.hero-corner-year {
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 6px 0;
}
@media (max-width: 760px) {
  .hero-corner-mark { display: none; }
}

/* Minimal hero variant: cleaner, photo-forward */
.hero-minimal .hero-title-minimal {
  font-size: clamp(48px, 9vw, 144px);
  line-height: 0.95;
  margin-bottom: 40px;
  max-width: 14ch;
}
.hero-minimal .hero-title-minimal .hero-line {
  display: block;
}
.hero-minimal .hero-bg-veil {
  background:
    linear-gradient(180deg, rgba(6, 9, 12, 0.5) 0%, rgba(6, 9, 12, 0.05) 35%, rgba(6, 9, 12, 0.55) 85%, var(--bg) 100%),
    linear-gradient(90deg, rgba(6, 9, 12, 0.65) 0%, rgba(6, 9, 12, 0.15) 60%, rgba(6, 9, 12, 0) 100%);
}

/* Authority strip — when minimal hero pushes the numbers out */
.authority-strip {
  padding: 0 var(--pad-x);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.authority-strip .authority {
  border-top: 0;
  border-bottom: 0;
  padding: 28px 0;
}

/* ===== Hero treatments ===== */

/* Cinematic grade — very light hand; the new chiaroscuro photo already has mood baked in */
.hero-tone-duotone .hero-bg image-slot,
.hero-tone-duotone .hero-bg img {
  filter: saturate(0.95) contrast(1.05) brightness(0.82);
}
.hero-duotone-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 95% 85% at 50% 45%, transparent 0%, transparent 55%, rgba(6, 9, 12, 0.5) 100%),
    linear-gradient(180deg, rgba(6, 9, 12, 0.12) 0%, rgba(6, 9, 12, 0.0) 35%, rgba(6, 9, 12, 0.25) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Subtle film grain — premium texture, dialled way back */
.hero-bg-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.14 0'/></filter><rect width='220' height='220' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
  opacity: 0.35;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

/* Split composition — photo on right half, text on left */
.hero-comp-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
  padding: var(--header-h) 0 0;
  min-height: 100vh;
  background: var(--bg);
}
.hero-comp-split .hero-bg {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  inset: auto;
  overflow: hidden;
  align-self: stretch;
  z-index: 0;
}
.hero-comp-split .hero-bg-veil {
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(6, 9, 12, 0.0) 30%, rgba(6, 9, 12, 0) 100%),
    linear-gradient(180deg, rgba(6, 9, 12, 0.25) 0%, rgba(6, 9, 12, 0.05) 30%, rgba(6, 9, 12, 0.45) 100%);
}
.hero-comp-split .hero-bg-glow {
  bottom: -150px; right: -150px;
  opacity: 0.5;
}
.hero-comp-split .hero-inner {
  grid-column: 1;
  grid-row: 1;
  padding: 64px var(--pad-x);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-comp-split .hero-corner-mark {
  top: 24px;
  right: var(--pad-x);
}
@media (max-width: 900px) {
  .hero-comp-split {
    grid-template-columns: 1fr;
    grid-template-rows: 40vh 1fr;
  }
  .hero-comp-split .hero-bg { grid-column: 1; grid-row: 1; }
  .hero-comp-split .hero-inner { grid-column: 1; grid-row: 2; padding-top: 32px; }
}

/* Authority bar */
.authority {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 24px 0;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  position: relative;
}
.authority-cell {
  padding: 12px 24px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.authority-cell:last-child { border-right: 0; }
.authority-cell:first-child { padding-left: 0; }
.authority-big {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.authority-small {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
}
@media (max-width: 720px) {
  .authority { grid-template-columns: repeat(2, 1fr); }
  .authority-cell:nth-child(2) { border-right: 0; }
  .authority-cell:nth-child(3) { padding-left: 0; border-top: 1px solid var(--line); margin-top: 16px; padding-top: 16px; }
  .authority-cell:nth-child(4) { border-top: 1px solid var(--line); margin-top: 16px; padding-top: 16px; }
}

/* ─────────────────────────────────────────────────────────────────────── */
/* WHY */

.why { background: var(--bg-2); border-block: 1px solid var(--line); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
}
.why-card {
  padding: 40px 32px 36px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 200ms ease;
}
.why-card:last-child { border-right: 0; }
.why-card:hover { background: rgba(43, 165, 199, 0.04); }
.why-num {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 40px;
}
.why-t {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 12px;
  color: var(--fg);
  font-weight: 500;
}
.why-d {
  color: var(--fg-2);
  font-size: 15px;
  margin: 0;
  text-wrap: pretty;
}
@media (max-width: 920px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-card:nth-child(2) { border-right: 0; }
  .why-card:nth-child(1), .why-card:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .why-card:last-child { border-bottom: 0; }
}

/* ─────────────────────────────────────────────────────────────────────── */
/* SERVICES */

.services-table { display: flex; flex-direction: column; gap: 56px; }
.svc-group {}
.svc-group-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.svc-group-n {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.2em;
}
.svc-group-name {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  font-weight: 500;
}
.svc-group-rule { flex: 1; }

.svc-rows { display: flex; flex-direction: column; }
.svc-row {
  display: grid;
  grid-template-columns: 1fr 100px 180px 110px;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 200ms ease;
}
.svc-row:hover {
  padding-left: 8px;
}
.svc-row:hover .svc-name { color: var(--accent-bright); }
.svc-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.005em;
  color: var(--fg);
  font-weight: 400;
  transition: color 200ms ease;
}
.svc-dur {
  font-size: 13px;
  color: var(--fg-3);
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}
.svc-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-variant-numeric: tabular-nums;
}
.svc-brl {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--fg);
}
.svc-usd {
  font-size: 12px;
  color: var(--fg-4);
  letter-spacing: 0.05em;
}

@media (max-width: 760px) {
  .svc-row {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 6px 16px;
    padding: 18px 0;
  }
  .svc-name { grid-column: 1 / 2; grid-row: 1; font-size: 18px; }
  .svc-dur { grid-column: 1 / 2; grid-row: 2; }
  .svc-price { grid-column: 2 / 3; grid-row: 1; }
  .svc-row .btn { grid-column: 2 / 3; grid-row: 2; justify-self: end; }
}

/* ─────────────────────────────────────────────────────────────────────── */
/* TEAM */

.team { background: var(--bg-2); border-block: 1px solid var(--line); }
.team-banner {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
  background: linear-gradient(90deg, rgba(43, 165, 199, 0.06), transparent 60%);
  position: relative;
  overflow: hidden;
}
.team-banner::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--accent);
}
.team-banner-big {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 84px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.team-banner-small {
  color: var(--fg-2);
  font-size: 16px;
  flex: 1;
  text-wrap: balance;
}
@media (max-width: 640px) {
  .team-banner { flex-direction: column; gap: 8px; align-items: flex-start; }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .team-grid { grid-template-columns: 1fr; } }

.barber {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 240ms ease, transform 240ms ease;
}
.barber:hover {
  border-color: rgba(43, 165, 199, 0.4);
  transform: translateY(-2px);
}
.barber-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #000;
}
.barber-radial {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, color-mix(in oklab, var(--accent) 55%, transparent), transparent 70%),
    #000;
}
.barber-photo img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 117%;
  object-fit: cover;
  object-position: center top;
  mix-blend-mode: normal;
}
.barber-photo-empty {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-4);
  background: radial-gradient(ellipse at center, rgba(43, 165, 199, 0.1), transparent 60%), #0A0F14;
}
.barber-photo-empty svg { width: 40%; height: 40%; }

.barber-rating {
  position: absolute;
  top: 16px; right: 16px;
  display: flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line-2);
}
.barber-star { color: var(--accent-bright); font-size: 14px; }
.barber-rating-n {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}

.barber-body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.barber-head { display: flex; align-items: baseline; gap: 12px; justify-content: space-between; }
.barber-name {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.barber-role {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-4);
}
.barber-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.barber-stat-n {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.barber-stat-l {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.barber-bio {
  color: var(--fg-2);
  font-size: 14px;
  margin: 0;
  flex: 1;
  text-wrap: pretty;
}
.barber-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.barber-tag {
  font-size: 11px;
  padding: 4px 10px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--fg-2);
  letter-spacing: 0.04em;
}
.barber-cta { margin-top: 4px; align-self: flex-start; }

/* ─────────────────────────────────────────────────────────────────────── */
/* WORK / GALLERY */

.work {}
.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 32px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  width: max-content;
  max-width: 100%;
  background: var(--bg-3);
}
.work-tag {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
  font-family: var(--font-display);
  transition: background 200ms ease, color 200ms ease;
}
.work-tag:hover { color: var(--fg); }
.work-tag.is-active {
  background: var(--accent);
  color: #00161D;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
@media (max-width: 920px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .work-grid .work-cell { grid-column: span 1 !important; grid-row: span 1 !important; }
  .work-grid .work-cell:nth-child(1) { grid-column: span 2 !important; }
}
@media (max-width: 560px) {
  .work-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .work-grid .work-cell { grid-column: span 1 !important; }
}

.work-cell {
  position: relative;
  transition: opacity 240ms ease, transform 240ms ease;
}
.work-cell.is-hidden { opacity: 0.15; filter: grayscale(1); pointer-events: none; }
.work-cell image-slot {
  display: block;
  width: 100%;
  height: 100%;
  --slot-bg:
    repeating-linear-gradient(135deg, rgba(43, 165, 199, 0.06) 0 14px, rgba(43, 165, 199, 0.015) 14px 28px),
    #0E1620;
  background:
    repeating-linear-gradient(135deg, rgba(43, 165, 199, 0.06) 0 14px, rgba(43, 165, 199, 0.015) 14px 28px),
    #0E1620;
  border-radius: 6px;
}
.work-cell-tag {
  position: absolute;
  bottom: 10px; left: 10px;
  padding: 4px 8px;
  background: rgba(6, 9, 12, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--line-2);
  border-radius: 4px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-2);
  pointer-events: none;
  z-index: 2;
}

.work-foot {
  margin-top: 32px;
  display: flex;
  justify-content: flex-end;
}

/* ─────────────────────────────────────────────────────────────────────── */
/* CLUB */

.club { background: var(--bg); position: relative; overflow: hidden; }
.club-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 90% 10%, color-mix(in oklab, var(--accent) 18%, transparent), transparent 70%),
    radial-gradient(ellipse 60% 50% at 10% 100%, color-mix(in oklab, var(--accent-deep) 30%, transparent), transparent 70%);
  pointer-events: none;
}
.club > * { position: relative; }

.club-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 32px;
  max-width: 640px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.club-tab {
  padding: 20px 24px;
  text-align: left;
  background: var(--bg-3);
  color: var(--fg-2);
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  transition: background 200ms ease, color 200ms ease;
  border-right: 1px solid var(--line);
}
.club-tab:last-child { border-right: 0; }
.club-tab:hover { background: var(--surface); }
.club-tab.is-active {
  background: linear-gradient(180deg, color-mix(in oklab, var(--accent) 25%, var(--bg-3)), var(--bg-3));
  color: var(--fg);
}
.club-tab.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--accent);
}
.club-tab-pre {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.06em;
}
.club-tab-sub {
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.05em;
}
.club-tab.is-active .club-tab-sub { color: var(--fg-2); }
.club-tab-price {
  position: absolute;
  top: 50%; right: 24px;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--accent);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 920px) { .plan-grid { grid-template-columns: 1fr; max-width: 480px; } }

.plan {
  position: relative;
  padding: 32px 28px 28px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.plan-hot {
  background: linear-gradient(180deg, color-mix(in oklab, var(--accent) 8%, var(--bg-3)), var(--bg-3));
  border-color: var(--accent);
  box-shadow: 0 20px 60px -30px var(--accent-glow);
}
.plan-badge {
  position: absolute;
  top: -10px; left: 24px;
  padding: 4px 10px;
  background: var(--accent);
  color: #00161D;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--fg);
  font-weight: 500;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-display);
}
.plan-price-currency { font-size: 18px; color: var(--fg-3); margin-right: 2px; }
.plan-price-amount {
  font-size: 64px;
  line-height: 1;
  color: var(--fg);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.plan-hot .plan-price-amount { color: var(--accent); }
.plan-price-period { font-size: 14px; color: var(--fg-3); margin-left: 4px; }

.plan-section { display: flex; flex-direction: column; gap: 4px; }
.plan-section-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-4);
}
.plan-section-val { font-size: 15px; color: var(--fg); }
.plan-list { list-style: none; padding: 0; margin: 4px 0 0; display: flex; flex-direction: column; gap: 6px; }
.plan-list li {
  font-size: 14px;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 10px;
}
.plan-check {
  width: 16px; height: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 12px;
}
.plan-save {
  font-size: 13px;
  color: var(--accent-bright);
  padding: 10px 12px;
  background: rgba(43, 165, 199, 0.08);
  border-radius: 4px;
  border: 1px dashed rgba(43, 165, 199, 0.25);
}
.plan-cta { margin-top: auto; justify-content: center; }

.club-compare {
  margin: 28px 0 0;
  font-size: 14px;
  color: var(--fg-2);
  padding: 14px 18px;
  border-left: 2px solid var(--accent);
  background: rgba(43, 165, 199, 0.04);
}
.club-note { margin-top: 12px; font-size: 12px; color: var(--fg-4); letter-spacing: 0.02em; }

/* ─────────────────────────────────────────────────────────────────────── */
/* REVIEWS */

.reviews { background: var(--bg-2); border-block: 1px solid var(--line); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1000px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .reviews-grid { grid-template-columns: 1fr; } }

/* Two-tier review grid: photo cards (uniform 2x2) then text-only cards below */
.reviews-grid-photo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.reviews-grid-text {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1000px) {
  .reviews-grid-text { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .reviews-grid-photo, .reviews-grid-text { grid-template-columns: 1fr; }
}

.reviews-grid-photo .review {
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
  height: 460px;
}
.reviews-grid-photo .review-photo,
.reviews-grid-photo .review-photos-stack {
  flex: 0 0 42%;
  margin: 0;
  aspect-ratio: 3 / 4;
  min-height: 0;
}
.reviews-grid-photo .review-photo-single,
.reviews-grid-photo .review-photo-ba-combined,
.reviews-grid-photo .review-photos-stack {
  aspect-ratio: 3 / 4;
}
.reviews-grid-photo .review-photo img {
  object-fit: contain;
  background: #0a1218;
}
/* Stack children must NOT inherit aspect-ratio — they each take half height */
.reviews-grid-photo .review-photos-stack .review-photo {
  aspect-ratio: auto;
  min-height: 0;
}
.reviews-grid-photo .review-stars,
.reviews-grid-photo .review-text,
.reviews-grid-photo .review-meta {
  padding-left: 24px;
  padding-right: 24px;
}
.reviews-grid-photo .review-stars { padding-top: 28px; }
.reviews-grid-photo .review-meta { padding-bottom: 24px; }
.reviews-grid-photo .review-text {
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 720px) {
  .reviews-grid-photo .review { flex-direction: column; }
  .reviews-grid-photo .review-photo,
  .reviews-grid-photo .review-photos-stack { flex: 0 0 auto; aspect-ratio: 4 / 5; min-height: 0; }
  .reviews-grid-photo .review-stars { padding-top: 20px; }
}

.review {
  padding: 28px 24px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 240ms ease, transform 240ms ease;
  overflow: hidden;
}
.review-photo {
  margin: -28px -24px 4px;
  overflow: hidden;
  background: linear-gradient(135deg, #050810, var(--bg-2));
  position: relative;
  aspect-ratio: 1 / 1;
}
.review-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.review-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 75%, rgba(20, 29, 38, 0.55) 100%);
  pointer-events: none;
}

/* Single full-width review photo (not before/after split) */
.review-photo-single {
  aspect-ratio: 4 / 5;
}

/* Before / after — stacked vertically inside one cell for uniform aspect with others */
.review-photos-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  margin: 0;
  background: var(--bg-2);
  overflow: hidden;
  position: relative;
}
.review-photos-stack .review-photo {
  margin: 0;
  aspect-ratio: auto;
  min-height: 0;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.review-photos-stack .review-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.review-ba-label {
  position: absolute;
  top: 10px; left: 10px;
  padding: 3px 8px;
  background: rgba(6, 9, 12, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--line-2);
  border-radius: 3px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  font-family: var(--font-display);
  z-index: 2;
}
/* Combined before/after single image — labels overlaid top + bottom */
.review-photo-ba-combined .review-ba-top {
  top: 12px; left: 12px;
}
.review-photo-ba-combined .review-ba-bottom {
  top: auto; left: 12px;
  bottom: 12px;
  background: rgba(43, 165, 199, 0.85);
  border-color: var(--accent);
  color: #00161D;
}

.review-photos-stack .review-photo:last-child .review-ba-label {
  background: rgba(43, 165, 199, 0.85);
  border-color: var(--accent);
  color: #00161D;
}

.review-has-photo .review-text { font-size: 15px; }
.review:hover { border-color: rgba(43, 165, 199, 0.3); transform: translateY(-2px); }
.review-stars {
  color: var(--accent-bright);
  letter-spacing: 0.1em;
  font-size: 14px;
}
.review-text {
  margin: 0;
  color: var(--fg);
  font-size: 16px;
  line-height: 1.6;
  font-style: italic;
  text-wrap: pretty;
}
.review-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--fg-3);
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.review-name { color: var(--fg-2); font-weight: 500; }
.review-flag { font-size: 16px; }

.reviews-foot {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(90deg, rgba(43, 165, 199, 0.06), transparent 70%);
}
.reviews-big { display: flex; align-items: baseline; gap: 4px; }
.reviews-big-n {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.reviews-big-star { font-size: 32px; color: var(--accent); }
.reviews-foot-text { display: flex; flex-direction: column; gap: 6px; color: var(--fg-2); }
.link-arrow {
  color: var(--accent-bright);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 200ms ease;
}
.link-arrow:hover { gap: 12px; }

/* ─────────────────────────────────────────────────────────────────────── */
/* VISIT */

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 920px) { .visit-grid { grid-template-columns: 1fr; } }

.visit-info { display: flex; flex-direction: column; gap: 36px; }
.visit-block { display: flex; flex-direction: column; gap: 6px; }
.visit-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-bright);
}
.visit-val {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--fg);
  letter-spacing: -0.005em;
  font-weight: 400;
}
.visit-val-dim { color: var(--fg-3); font-size: 18px; }
.visit-val-link { color: var(--fg); transition: color 200ms ease; }
.visit-val-link:hover { color: var(--accent-bright); }

.visit-walk {
  list-style: none; padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.visit-walk li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.visit-walk-place { font-family: var(--font-display); font-size: 17px; color: var(--fg); }
.visit-walk-time {
  font-size: 13px;
  color: var(--accent-bright);
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}
.visit-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.visit-map {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-3);
}
.visit-map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.85);
}
.visit-map-overlay {
  position: absolute;
  bottom: 20px; left: 20px;
  padding: 14px 18px;
  background: rgba(6, 9, 12, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 6px;
}
.visit-map-addr {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--fg-2);
}
@media (max-width: 920px) {
  .visit-map { aspect-ratio: 4 / 3; }
}

/* ─────────────────────────────────────────────────────────────────────── */
/* FINAL CTA */

.final-cta {
  position: relative;
  padding: clamp(80px, 12vw, 160px) var(--pad-x);
  overflow: hidden;
  isolation: isolate;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 100% at 50% 50%, color-mix(in oklab, var(--accent) 55%, transparent), transparent 70%),
    linear-gradient(135deg, var(--accent-deep), #000);
  z-index: -1;
}
.final-cta-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-weight: 500;
  text-wrap: balance;
}
.final-cta-sub {
  max-width: 560px;
  color: var(--fg-2);
  font-size: 18px;
  margin: 0;
  text-wrap: pretty;
}
.final-cta .btn {
  background: var(--fg);
  color: #00161D;
  padding: 18px 28px;
  font-size: 16px;
}
.final-cta .btn:hover { background: #fff; }

/* ─────────────────────────────────────────────────────────────────────── */
/* FOOTER */

.footer {
  padding: 80px var(--pad-x) 32px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 800px) { .footer-top { grid-template-columns: 1fr; gap: 40px; } }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-tag { color: var(--fg-3); max-width: 320px; font-size: 14px; margin: 0; }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 600px) { .footer-cols { grid-template-columns: repeat(2, 1fr); } }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-h {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 6px;
}
.footer-col a { color: var(--fg-2); font-size: 14px; transition: color 200ms ease; }
.footer-col a:hover { color: var(--fg); }
.footer-meta { color: var(--fg-3); font-size: 13px; }

.footer-bot {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--fg-4);
  font-size: 12px;
}

/* ─────────────────────────────────────────────────────────────────────── */
/* STICKY MOBILE BOOK */

.sticky-book {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 20px;
  background: var(--accent);
  color: #00161D;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--radius);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.sticky-book-arrow { transition: transform 200ms ease; }
.sticky-book:hover .sticky-book-arrow { transform: translateX(3px); }

@media (max-width: 900px) {
  .sticky-book { display: flex; }
  main, .footer { padding-bottom: 80px; }
  .footer { padding-bottom: 96px; }
}

/* ─────────────────────────────────────────────────────────────────────── */
/* PHOTO PLACEHOLDER */
.photo-ph {
  width: 100%;
  background:
    repeating-linear-gradient(45deg, rgba(43, 165, 199, 0.05) 0 12px, rgba(43, 165, 199, 0.02) 12px 24px),
    var(--bg-3);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-3);
  font-family: "Courier New", monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────────────
   STATUS + POSTER (desktop) — paired editorial section under hero
   ───────────────────────────────────────────────────────────── */
.d-status-poster {
  background: var(--bg);
  padding: clamp(40px, 5vw, 72px) var(--pad-x) 0;
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 40px);
}

/* STATUS CARD */
.d-status {
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 28px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.d-status-left {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}
.d-status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex: 0 0 auto;
  position: relative;
}
.d-status-dot.is-open {
  background: #4ade80;
  box-shadow: 0 0 0 5px rgba(74, 222, 128, 0.18), 0 0 16px rgba(74, 222, 128, 0.6);
  animation: d-status-pulse 2.4s ease-in-out infinite;
}
.d-status-dot.is-closed {
  background: #ef4444;
  box-shadow: 0 0 0 5px rgba(239, 68, 68, 0.18);
}
@keyframes d-status-pulse {
  0%,100% { box-shadow: 0 0 0 5px rgba(74,222,128,0.18), 0 0 16px rgba(74,222,128,0.6); }
  50%     { box-shadow: 0 0 0 9px rgba(74,222,128,0.06), 0 0 22px rgba(74,222,128,0.85); }
}
.d-status-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.d-status-label {
  font-family: var(--font-display);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--fg);
  line-height: 1.1;
}
.d-status-sub {
  font-size: 14px;
  color: var(--fg-3);
  letter-spacing: 0.01em;
}
.d-status-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--accent);
  color: #00161D;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 200ms ease, transform 200ms ease;
  white-space: nowrap;
}
.d-status-call:hover { background: var(--accent-bright); transform: translateY(-1px); }
.d-status-call svg { width: 18px; height: 18px; }
@media (max-width: 720px) {
  .d-status { flex-direction: column; align-items: flex-start; }
  .d-status-call { width: 100%; justify-content: center; }
}

/* POSTER — full-bleed cinematic */
.d-poster {
  position: relative;
  margin: 0 calc(var(--pad-x) * -1);
  aspect-ratio: 21 / 9;
  min-height: 460px;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}
.d-poster-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 65% 60%;
  filter: saturate(1.05) brightness(0.78) contrast(1.05);
}
.d-poster-veil {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6,9,12,0.65) 0%, rgba(6,9,12,0.15) 40%, rgba(6,9,12,0.05) 60%, rgba(6,9,12,0.55) 100%),
    linear-gradient(180deg, rgba(6,9,12,0.30) 0%, rgba(6,9,12,0.05) 30%, rgba(6,9,12,0.55) 100%),
    linear-gradient(180deg, rgba(43,165,199,0.05), rgba(15,79,96,0.10));
  pointer-events: none;
}
.d-poster-grain {
  position: absolute; inset: 0;
  z-index: 2;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.14 0'/></filter><rect width='220' height='220' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
  opacity: 0.35;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Corner mark top-left */
.d-poster-corner {
  position: absolute;
  top: clamp(28px, 4vw, 56px);
  left: clamp(32px, 5vw, 72px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 0.9;
}
.d-poster-corner::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 6px;
  width: 4px;
  height: 84px;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent-glow);
}
.d-poster-since {
  font-family: var(--font-script);
  font-size: 30px;
  color: var(--silver);
  letter-spacing: 0.01em;
  transform: rotate(-4deg);
  margin-bottom: 4px;
}
.d-poster-year {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 92px);
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

/* Headline — bottom-left */
.d-poster-headline {
  position: absolute;
  left: clamp(32px, 5vw, 72px);
  right: clamp(32px, 5vw, 72px);
  bottom: clamp(96px, 13vw, 168px);
  z-index: 3;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  font-size: clamp(48px, 7vw, 96px);
  color: var(--fg);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
  text-wrap: balance;
  max-width: 18ch;
}

/* Meta dossier bottom-left */
.d-poster-meta {
  position: absolute;
  left: clamp(32px, 5vw, 72px);
  right: clamp(32px, 5vw, 72px);
  bottom: clamp(36px, 5vw, 56px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 18px;
}
.d-poster-meta-rule {
  flex: 0 0 48px;
  height: 1px;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}
.d-poster-meta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg);
}
.d-poster-meta-dim {
  color: var(--fg-3);
  letter-spacing: 0.18em;
}

@media (max-width: 760px) {
  .d-poster { aspect-ratio: 4 / 5; min-height: 540px; }
  .d-poster-headline { font-size: 48px; max-width: 14ch; }
}

/* ─────────────────────────────────────────────────────────────
   CASA — two-column prose on desktop
   ───────────────────────────────────────────────────────────── */
.casa { background: var(--bg-2); border-block: 1px solid var(--line); }
.casa-prose {
  columns: 2;
  column-gap: clamp(40px, 5vw, 72px);
  font-family: var(--font-body);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.7;
  color: var(--fg-2);
  text-wrap: pretty;
  max-width: 1120px;
}
.casa-prose p {
  margin: 0 0 16px;
  break-inside: avoid;
}
.casa-prose-kicker {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.3vw, 36px);
  line-height: 1.15;
  color: var(--fg);
  letter-spacing: -0.01em;
  font-weight: 500;
  text-transform: none;
  margin-top: 8px !important;
  column-span: all;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
@media (max-width: 800px) {
  .casa-prose { columns: 1; }
}

/* ─────────────────────────────────────────────────────────────
   PLAN — for-who line
   ───────────────────────────────────────────────────────────── */
.plan-for-who {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg-3);
  font-style: italic;
  line-height: 1.4;
  margin-top: -10px;
  text-wrap: pretty;
}
