/* Mr. Hair Club — Mobile Stylesheet
   Mobile-first. Designed for 360–430px viewport widths.
   Hit targets ≥ 44px. No hover-dependent behavior.
   Vocabulary inherited from desktop: Oswald display, Inter body, Caveat script.
   Dark navy + electric cyan.
*/

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

  --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;

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

  --radius: 6px;
  --radius-lg: 12px;
  --radius-xl: 18px;

  --pad-x: 20px;
  --pad-section: 64px;

  --header-h: 56px;
  --tabbar-h: 64px;

  /* safe-area additions for real iPhones */
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bot: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* sticky tabbar sits at end-of-flow, no body padding needed */
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(5px * var(--logo-scale));
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--silver);
  letter-spacing: 0.02em;
  line-height: 1;
}
.logo-mr,
.logo-hair {
  font-size: calc(22px * var(--logo-scale));
  background: linear-gradient(180deg, #E8ECEE 0%, #9CA3AB 55%, #6C737B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo-club {
  font-family: var(--font-script);
  font-size: calc(18px * var(--logo-scale));
  margin-left: calc(-4px * var(--logo-scale));
  margin-bottom: calc(-1px * var(--logo-scale));
  transform: rotate(-6deg);
  background: linear-gradient(180deg, #E8ECEE 0%, #9CA3AB 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ─────────────────────────────────────────────────────────────
   HEADER
   ───────────────────────────────────────────────────────────── */
.m-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  background: rgba(6, 9, 12, 0.0);
  transition: background 200ms ease, border-color 200ms ease, backdrop-filter 200ms ease;
  border-bottom: 1px solid transparent;
}
.m-header.is-scrolled {
  background: rgba(6, 9, 12, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
/* Scroll progress — thin bar pinned just below header */
.scroll-progress {
  position: sticky;
  top: var(--header-h);
  z-index: 39;
  height: 2px;
  background: var(--accent);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 80ms linear;
  pointer-events: none;
  box-shadow: 0 0 12px var(--accent-glow);
}
.m-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Language pill — compact */
.lang-pill {
  display: inline-flex;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 2px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lang-pill button {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 9px;
  min-height: 28px;
  border-radius: 999px;
  color: var(--fg-3);
}
.lang-pill button.is-active {
  background: var(--accent);
  color: #00161D;
}

/* Hamburger */
.hamburger {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line-2);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
}
.hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--fg);
  transition: transform 200ms ease, opacity 200ms ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Drawer menu — absolute fill within phone-screen so it works in desktop preview */
.m-drawer {
  position: absolute;
  inset: 0;
  z-index: 60;
  background: rgba(6, 9, 12, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 20px) var(--pad-x) 32px;
  gap: 0;
  animation: drawer-in 240ms ease;
  overflow-y: auto;
}
.m-drawer-close {
  position: absolute;
  top: 10px;
  right: var(--pad-x);
  z-index: 1;
}
@keyframes drawer-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.m-drawer a {
  font-family: var(--font-display);
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--fg);
}
.m-drawer a::after {
  content: "→";
  font-family: var(--font-body);
  color: var(--accent);
  font-size: 22px;
  font-weight: 400;
}
.m-drawer-foot {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.m-drawer-foot .btn { justify-content: center; }
.m-drawer-meta {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--fg-3);
  text-transform: uppercase;
  margin-top: 8px;
  text-align: center;
}

/* ─────────────────────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: transform 120ms ease, background 200ms ease, border-color 200ms ease;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--accent);
  color: #00161D;
}
.btn-primary:active { background: var(--accent-bright); }
.btn-ghost {
  border: 1px solid var(--line-2);
  color: var(--fg);
}
.btn-ghost:active { border-color: var(--accent); color: var(--accent-bright); }
.btn-block { width: 100%; }
.btn-sm { min-height: 38px; padding: 8px 14px; font-size: 12px; }
.btn-arrow { display: inline-block; }

/* ─────────────────────────────────────────────────────────────
   SECTION
   ───────────────────────────────────────────────────────────── */
.m-section {
  padding: var(--pad-section) var(--pad-x);
  position: relative;
}
.m-section-tight { padding: 40px var(--pad-x); }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 16px;
  font-weight: 500;
}
.kicker-bar {
  width: 20px;
  height: 1px;
  background: var(--accent);
}
.sec-title {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--fg);
  text-wrap: balance;
  font-weight: 600;
}
.sec-sub {
  margin-top: 14px;
  color: var(--fg-2);
  font-size: 15px;
  line-height: 1.55;
  text-wrap: pretty;
}
.sec-head { margin-bottom: 32px; }

/* ─────────────────────────────────────────────────────────────
   HERO — text-forward + horizontal photo strip
   The hero leads with the strongest asset: typographic confidence
   + social proof (rating, real-customer photos). No empty wall.
   ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  margin-top: calc(var(--header-h) * -1);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  isolation: isolate;
  overflow: hidden;
}

/* subtle accent atmosphere — replaces the giant photo backdrop */
.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -30%;
  width: 90%;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle, color-mix(in oklab, var(--accent) 22%, transparent) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(20px);
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 30%;
  left: -40%;
  width: 80%;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle, color-mix(in oklab, var(--accent-deep) 35%, transparent) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(30px);
}

/* TEXT BLOCK */
.hero-text {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 24px) var(--pad-x) 24px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
  padding: 7px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px 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: 40px;
  line-height: 1.14;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 18px;
}
@media (min-width: 420px) and (max-width: 700px) {
  .hero-title { font-size: 44px; }
}
.hero-title .hero-line {
  display: block;
  padding: 1px 0;
}
.hero-title .hero-line-accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.hero-sub {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0 0 22px;
  text-wrap: pretty;
  max-width: 38ch;
}

/* Inline trust line — replaces the stat grid */
.hero-trust {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--fg-2);
  font-variant-numeric: tabular-nums;
}
.hero-trust-star {
  color: var(--accent-bright);
  font-size: 14px;
  position: relative;
  top: 1px;
}
.hero-trust-rating {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--fg);
  letter-spacing: 0.01em;
}
.hero-trust-sep { color: var(--fg-4); }
.hero-trust-count { color: var(--fg-2); }
.hero-trust-source { color: var(--fg-3); font-weight: 500; }

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-ctas .btn { width: 100%; }

/* PHOTO STRIP */
.hero-strip {
  position: relative;
  z-index: 1;
  padding: 8px 0 36px;
}
.hero-strip-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 var(--pad-x);
  padding: 4px var(--pad-x);
  scrollbar-width: none;
}
.hero-strip-scroll::-webkit-scrollbar { display: none; }

.hero-strip-card {
  flex: 0 0 64%;
  scroll-snap-align: start;
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--line);
}
.hero-strip-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero-strip-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6, 9, 12, 0.85) 100%);
  pointer-events: none;
}
.hero-strip-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  font-family: var(--font-display);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--fg);
  text-transform: uppercase;
  z-index: 1;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* The third card (storefront) has wider aspect content — keep top */
.hero-strip-card:nth-child(3) img { object-position: center 50%; }

/* ─────────────────────────────────────────────────────────────
   STATUS CARD — replaces quick actions, shows operational state
   ───────────────────────────────────────────────────────────── */
.status-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 20px var(--pad-x) 0;
  padding: 14px 16px 14px 14px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.status-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex: 0 0 auto;
  margin-top: 7px;
  align-self: flex-start;
  position: relative;
}
.status-dot.is-open {
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.18), 0 0 14px rgba(74, 222, 128, 0.6);
  animation: status-pulse 2.4s ease-in-out infinite;
}
.status-dot.is-closed {
  background: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.18);
}
@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.18), 0 0 14px rgba(74, 222, 128, 0.6); }
  50%      { box-shadow: 0 0 0 7px rgba(74, 222, 128, 0.06), 0 0 18px rgba(74, 222, 128, 0.8); }
}
.status-label {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.01em;
  color: var(--fg);
  line-height: 1.1;
  text-transform: uppercase;
}
.status-sub {
  font-size: 12px;
  color: var(--fg-3);
  margin-top: 2px;
  letter-spacing: 0.01em;
}
.status-call {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #00161D;
  transition: transform 120ms ease, background 200ms ease;
}
.status-call:active { transform: scale(0.94); background: var(--accent-bright); }
.status-call svg { width: 20px; height: 20px; }

/* ─────────────────────────────────────────────────────────────
   WHY
   ───────────────────────────────────────────────────────────── */
.why { background: var(--bg-2); border-block: 1px solid var(--line); }
.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-3);
}
.why-item {
  padding: 22px 20px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 16px;
  row-gap: 6px;
}
.why-item:last-child { border-bottom: 0; }
.why-n {
  grid-row: 1 / span 2;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent);
  align-self: start;
  padding-top: 4px;
}
.why-t {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--fg);
}
.why-d {
  font-size: 14px;
  color: var(--fg-2);
  text-wrap: pretty;
  margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   SERVICES — accordion (collapsible groups)
   ───────────────────────────────────────────────────────────── */
.svc-chips {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  margin: 0 calc(var(--pad-x) * -1) 18px;
  padding: 0 var(--pad-x) 4px;
  scrollbar-width: none;
}
.svc-chips::-webkit-scrollbar { display: none; }
.svc-chip {
  flex: 0 0 auto;
  padding: 9px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: var(--bg-3);
  color: var(--fg-2);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.svc-acc {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-group {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.svc-group.is-open { border-color: var(--line-2); }
.svc-group-head {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 16px 16px;
  width: 100%;
  text-align: left;
  background: transparent;
  color: var(--fg);
  min-height: 60px;
}
.svc-group-n {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.2em;
}
.svc-group-name {
  font-family: var(--font-display);
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  font-weight: 500;
  color: var(--fg);
}
.svc-group-count {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-4);
  font-variant-numeric: tabular-nums;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 8px;
  min-width: 26px;
  text-align: center;
}
.svc-group-chevron {
  width: 20px;
  height: 20px;
  color: var(--fg-3);
  transition: transform 240ms ease;
}
.svc-group-chevron svg { width: 100%; height: 100%; display: block; }
.svc-group.is-open .svc-group-chevron { transform: rotate(180deg); color: var(--accent); }
.svc-rows {
  display: flex;
  flex-direction: column;
  padding: 0 16px 8px;
  border-top: 1px solid var(--line);
  animation: svc-rows-in 200ms ease;
}
@keyframes svc-rows-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.svc-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 2px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--fg);
  transition: transform 120ms ease;
}
.svc-row:last-child { border-bottom: 0; }
.svc-row:active { transform: scale(0.99); }
.svc-name {
  grid-column: 1;
  grid-row: 1;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.005em;
  color: var(--fg);
  font-weight: 400;
}
.svc-dur {
  grid-column: 1;
  grid-row: 2;
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.04em;
}
.svc-price {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  font-variant-numeric: tabular-nums;
}
.svc-brl {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--fg);
  line-height: 1;
}
.svc-usd {
  font-size: 10px;
  color: var(--fg-4);
  letter-spacing: 0.04em;
  margin-top: 3px;
}
.svc-row-arrow {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--fg-4);
  font-size: 16px;
  padding-left: 4px;
}

/* ─────────────────────────────────────────────────────────────
   TEAM — horizontal scroll snap
   ───────────────────────────────────────────────────────────── */
.team { background: var(--bg-2); border-block: 1px solid var(--line); }
.team-banner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 0 calc(var(--pad-x) * -1) 28px var(--pad-x);
  background: linear-gradient(90deg, rgba(43, 165, 199, 0.08), transparent 70%);
  position: relative;
}
.team-banner::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
}
.team-banner-big {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.team-banner-small {
  color: var(--fg-2);
  font-size: 13px;
  text-wrap: pretty;
}

.team-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 var(--pad-x);
  margin: 0 calc(var(--pad-x) * -1);
  padding: 0 var(--pad-x) 8px;
  scrollbar-width: none;
}
.team-scroll::-webkit-scrollbar { display: none; }

.barber {
  flex: 0 0 78%;
  scroll-snap-align: start;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.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;
}
.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: 36%; height: 36%; }
.barber-rating {
  position: absolute;
  top: 12px; right: 12px;
  display: flex; align-items: center; gap: 4px;
  padding: 5px 9px;
  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: 12px; }
.barber-rating-n {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}

.barber-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.barber-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.barber-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.barber-role {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-4);
}
.barber-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.barber-stat-n {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.barber-stat-l {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.barber-bio {
  color: var(--fg-2);
  font-size: 13px;
  margin: 0;
  text-wrap: pretty;
  line-height: 1.5;
}
.barber-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.barber-tag {
  font-size: 10px;
  padding: 4px 8px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--fg-2);
  letter-spacing: 0.04em;
}
.barber-cta { margin-top: 4px; width: 100%; }

/* Pagination dots for carousel */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line-3);
  transition: background 200ms ease, transform 200ms ease;
}
.carousel-dot.is-active {
  background: var(--accent);
  transform: scaleX(2.5);
  border-radius: 4px;
}

/* ─────────────────────────────────────────────────────────────
   WORK / GALLERY
   ───────────────────────────────────────────────────────────── */
.work-tags-wrap {
  margin: 0 calc(var(--pad-x) * -1) 18px;
  overflow-x: auto;
  scrollbar-width: none;
}
.work-tags-wrap::-webkit-scrollbar { display: none; }
.work-tags {
  display: inline-flex;
  gap: 6px;
  padding: 4px var(--pad-x);
}
.work-tag {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
  font-family: var(--font-display);
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.work-tag.is-active {
  background: var(--accent);
  color: #00161D;
  border-color: var(--accent);
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 140px;
  gap: 8px;
}
.work-cell {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.work-cell.span-2-col { grid-column: span 2; }
.work-cell.span-2-row { grid-row: span 2; }
.work-cell.is-hidden { opacity: 0.18; filter: grayscale(1); pointer-events: none; }
.work-cell image-slot {
  display: block;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(135deg, rgba(43, 165, 199, 0.06) 0 12px, rgba(43, 165, 199, 0.015) 12px 24px),
    #0E1620;
  border-radius: 8px;
}
.work-cell-tag {
  position: absolute;
  bottom: 8px; left: 8px;
  padding: 3px 7px;
  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: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.work-foot {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.link-arrow {
  color: var(--accent-bright);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 4px;
  min-height: 44px;
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─────────────────────────────────────────────────────────────
   CLUB
   ───────────────────────────────────────────────────────────── */
.club { background: var(--bg); position: relative; overflow: hidden; }
.club-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 30% at 95% 5%, color-mix(in oklab, var(--accent) 18%, transparent), transparent 70%),
    radial-gradient(ellipse 70% 40% at 5% 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;
  margin-bottom: 20px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.club-tab {
  padding: 14px 14px;
  text-align: left;
  background: var(--bg-3);
  color: var(--fg-2);
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-right: 1px solid var(--line);
  position: relative;
  min-height: 64px;
}
.club-tab:last-child { border-right: 0; }
.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: 14px;
  letter-spacing: 0.06em;
}
.club-tab-price {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--accent);
  position: absolute;
  top: 50%; right: 14px;
  transform: translateY(-50%);
}

/* Horizontal scroll plan cards */
.plan-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin: 0 calc(var(--pad-x) * -1);
  padding: 8px var(--pad-x);
  scrollbar-width: none;
}
.plan-scroll::-webkit-scrollbar { display: none; }

.plan {
  flex: 0 0 82%;
  scroll-snap-align: start;
  position: relative;
  padding: 22px 20px 22px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.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: -9px; left: 20px;
  padding: 3px 9px;
  background: var(--accent);
  color: #00161D;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
  color: var(--fg);
  font-weight: 500;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-family: var(--font-display);
}
.plan-price-currency { font-size: 14px; color: var(--fg-3); }
.plan-price-amount {
  font-size: 48px;
  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: 12px; color: var(--fg-3); margin-left: 4px; }
.plan-section { display: flex; flex-direction: column; gap: 3px; }
.plan-section-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-4);
}
.plan-section-val { font-size: 14px; color: var(--fg); }
.plan-list { list-style: none; padding: 0; margin: 2px 0 0; display: flex; flex-direction: column; gap: 5px; }
.plan-list li {
  font-size: 13px;
  color: var(--fg);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.plan-check {
  color: var(--accent);
  font-size: 11px;
  flex: 0 0 auto;
  padding-top: 3px;
}
.plan-save {
  font-size: 12px;
  color: var(--accent-bright);
  padding: 8px 10px;
  background: rgba(43, 165, 199, 0.08);
  border-radius: 4px;
  border: 1px dashed rgba(43, 165, 199, 0.25);
}
.plan-cta { margin-top: auto; width: 100%; }

.club-compare {
  margin: 24px 0 0;
  font-size: 13px;
  color: var(--fg-2);
  padding: 12px 14px;
  border-left: 2px solid var(--accent);
  background: rgba(43, 165, 199, 0.04);
  border-radius: 0 4px 4px 0;
}
.club-note { margin-top: 10px; font-size: 11px; color: var(--fg-4); }

/* ─────────────────────────────────────────────────────────────
   REVIEWS — horizontal scroll
   ───────────────────────────────────────────────────────────── */
.reviews { background: var(--bg-2); border-block: 1px solid var(--line); }
.review-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 var(--pad-x);
  margin: 0 calc(var(--pad-x) * -1);
  padding: 8px var(--pad-x);
  scrollbar-width: none;
}
.review-scroll::-webkit-scrollbar { display: none; }

.review {
  flex: 0 0 82%;
  scroll-snap-align: start;
  padding: 0;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 360px;
}
.review-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #050810, var(--bg-2));
  overflow: hidden;
}
.review-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.review-photo-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: var(--bg-2);
}
.review-photo-empty svg { width: 42px; height: 42px; color: var(--fg-4); opacity: 0.5; }
.review-ba-label {
  position: absolute;
  top: 10px; left: 10px;
  padding: 3px 7px;
  background: rgba(6, 9, 12, 0.82);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line-2);
  border-radius: 3px;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
  font-family: var(--font-display);
}
.review-ba-bottom {
  top: auto;
  bottom: 10px;
  background: rgba(43, 165, 199, 0.85);
  border-color: var(--accent);
  color: #00161D;
}
.review-body {
  padding: 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.review-stars {
  color: var(--accent-bright);
  letter-spacing: 0.1em;
  font-size: 13px;
}
.review-text {
  margin: 0;
  color: var(--fg);
  font-size: 14px;
  line-height: 1.55;
  font-style: italic;
  text-wrap: pretty;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review.is-expanded .review-text {
  -webkit-line-clamp: unset;
  display: block;
  overflow: visible;
}
.review-more {
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-bright);
  padding: 6px 0;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.review-meta {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px;
  color: var(--fg-3);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.review-name { color: var(--fg-2); font-weight: 500; }

.reviews-foot {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  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: 3px; }
.reviews-big-n {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.reviews-big-star { font-size: 22px; color: var(--accent); }
.reviews-foot-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--fg-2);
  font-size: 13px;
}

/* ─────────────────────────────────────────────────────────────
   VISIT
   ───────────────────────────────────────────────────────────── */
.visit-map {
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-3);
  margin-bottom: 22px;
  display: block;
  transition: transform 120ms ease;
}
.visit-map.static:active { transform: scale(0.99); }
.visit-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.85);
}
.visit-map-static-bg {
  position: absolute;
  inset: 0;
  background: #0a1218;
}
.visit-map-static-bg svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.visit-map-pin {
  position: absolute;
  top: 49%;
  left: 65%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.visit-map-pin-dot {
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--accent), 0 0 12px var(--accent);
  position: relative;
  z-index: 2;
}
.visit-map-pin-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0.6;
  animation: pin-pulse 2s ease-out infinite;
}
@keyframes pin-pulse {
  0%   { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}
.visit-map-overlay {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  padding: 12px 14px;
  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: 4px;
}
.visit-map-addr {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--fg-2);
}
.visit-map-open {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.visit-block { display: flex; flex-direction: column; gap: 4px; margin-bottom: 22px; }
.visit-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-bright);
}
.visit-val {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--fg);
  letter-spacing: -0.005em;
}
.visit-val-dim { color: var(--fg-3); font-size: 16px; }
.visit-val-link { color: var(--fg); }

.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: 11px 0;
  border-bottom: 1px solid var(--line);
}
.visit-walk-place {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--fg);
}
.visit-walk-time {
  font-size: 12px;
  color: var(--accent-bright);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.visit-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

/* ─────────────────────────────────────────────────────────────
   FINAL CTA
   ───────────────────────────────────────────────────────────── */
.final-cta {
  position: relative;
  padding: 64px var(--pad-x) 72px;
  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 {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.final-cta-title {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-weight: 500;
  text-wrap: balance;
}
.final-cta-sub {
  color: var(--fg-2);
  font-size: 15px;
  margin: 0;
  text-wrap: pretty;
}
.final-cta .btn {
  background: var(--fg);
  color: #00161D;
  padding: 16px 24px;
  font-size: 14px;
  width: 100%;
  margin-top: 8px;
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────── */
.footer {
  padding: 48px var(--pad-x) 32px;
  background: var(--bg);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-tag { color: var(--fg-3); font-size: 13px; margin: 0; max-width: 280px; }

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
}
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col-h {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 2px;
}
.footer-col a, .footer-meta {
  color: var(--fg-2);
  font-size: 13px;
}
.footer-meta { color: var(--fg-3); }
.footer-bot {
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--fg-4);
  font-size: 11px;
  border-top: 1px solid var(--line);
}

/* ─────────────────────────────────────────────────────────────
   BOTTOM TAB BAR — sticky
   ───────────────────────────────────────────────────────────── */
.tabbar {
  position: sticky;
  bottom: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr 1fr;
  background: rgba(6, 9, 12, 0.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-top: 1px solid var(--line);
  padding: 8px 8px calc(8px + var(--safe-bot));
  gap: 4px;
}
.tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px 4px;
  min-height: 52px;
  border-radius: 10px;
  color: var(--fg-2);
  transition: background 200ms ease, color 200ms ease, transform 120ms ease;
}
.tab:active { transform: scale(0.96); background: var(--surface); color: var(--fg); }
.tab-icon {
  width: 20px;
  height: 20px;
}
.tab-icon svg { width: 100%; height: 100%; display: block; }
.tab-label {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
/* Center primary CTA — visually elevated capsule */
.tab-primary {
  padding: 4px;
  background: transparent;
}
.tab-primary-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--accent);
  color: #00161D;
  border-radius: 999px;
  padding: 10px 14px;
  width: 100%;
  height: 100%;
  box-shadow: 0 6px 20px -6px var(--accent-glow);
}
.tab-primary .tab-icon { width: 18px; height: 18px; color: #00161D; }
.tab-primary .tab-label-primary {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #00161D;
  font-weight: 600;
}
.tab-primary:active .tab-primary-inner { transform: scale(0.96); background: var(--accent-bright); }

/* ─────────────────────────────────────────────────────────────
   STAGE WRAPPER (desktop preview frame)
   On desktop: page becomes a dark backdrop with the phone centered.
   On mobile (≤600px): pass-through; the phone fills the viewport.
   ───────────────────────────────────────────────────────────── */
.stage {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 70% 45% at 50% 10%, #1a242e 0%, #0a1218 55%, #06090C 100%);
  padding: 40px 24px;
  gap: 48px;
}
.stage-meta {
  max-width: 260px;
  color: var(--fg-2);
  font-family: var(--font-body);
}
.stage-meta .logo { margin-bottom: 14px; }
.stage-meta-title {
  font-family: var(--font-display);
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--fg);
  margin: 0 0 12px;
  font-weight: 500;
  line-height: 1.1;
}
.stage-meta-sub {
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.55;
  margin: 0 0 20px;
}
.stage-meta ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: var(--fg-2);
}
.stage-meta ul li::before {
  content: "→ ";
  color: var(--accent);
  margin-right: 6px;
}

/* Phone shell (desktop preview) */
.phone {
  width: 390px;
  height: 820px;
  border-radius: 48px;
  background: #000;
  padding: 12px;
  box-shadow:
    0 50px 100px -20px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 0 0 2px rgba(255, 255, 255, 0.04);
  position: relative;
  flex: 0 0 auto;
}
.phone::before {
  /* dynamic island */
  content: "";
  position: absolute;
  top: 24px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 32px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  background: var(--bg);
}
/* Internal scroller — only this scrolls inside the phone */
.phone-scroll {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.phone-scroll::-webkit-scrollbar { width: 0; display: none; }

/* On real phones (or anything narrow): drop the chrome */
@media (max-width: 700px) {
  .stage {
    padding: 0;
    background: var(--bg);
    display: block;
    gap: 0;
  }
  .stage-meta { display: none; }
  .phone {
    width: 100%;
    height: auto;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
  }
  .phone::before { display: none; }
  .phone-screen { border-radius: 0; }
  .phone-scroll {
    position: static;
    inset: auto;
    overflow: visible;
  }
}

/* ─────────────────────────────────────────────────────────────
   REDUCED MOTION
   ───────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero-eyebrow .dot,
  .status-dot.is-open,
  .visit-map-pin-pulse {
    animation: none !important;
  }
}
