/* ============================================================
   ILYAN'S BARBER SHOP — STATION
   Live ops terminal aesthetic. Asymmetric, dense, signal-led.
   No editorial. No section numbers. No serifs. No centered hero.
   ============================================================ */

:root {
  --bg:        #0a0a0c;
  --bg-raised: #111116;
  --bg-card:   #15151b;
  --bg-soft:   #1c1c23;

  --line:      #23232b;
  --line-soft: #1a1a20;
  --line-loud: #f3f3f5;

  --ink:       #f3f3f5;
  --ink-dim:   #b8b8c0;
  --ink-mute:  #6f6f78;
  --ink-faint: #43434c;

  --red:       #e11d23;
  --red-hot:   #ff2730;
  --red-dim:   rgba(225, 29, 35, 0.18);
  --blue:      #1e40af;
  --ice:       #4f80b0;

  --t-xxs:  clamp(0.62rem,  0.58rem + 0.2vw,  0.72rem);
  --t-xs:   clamp(0.72rem,  0.68rem + 0.2vw,  0.82rem);
  --t-sm:   clamp(0.82rem,  0.76rem + 0.3vw,  0.95rem);
  --t-base: clamp(0.95rem,  0.88rem + 0.3vw,  1.05rem);
  --t-lg:   clamp(1.1rem,   1rem    + 0.5vw,  1.45rem);
  --t-xl:   clamp(1.5rem,   1.1rem  + 1.8vw,  2.8rem);
  --t-2xl:  clamp(2.4rem,   1.6rem  + 3.5vw,  5rem);
  --t-mega: clamp(4.5rem,   2rem    + 10vw,   12rem);

  --rail: clamp(1.25rem, 4vw, 3.5rem);
  --max:  1440px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  font-family: 'Geist', system-ui, sans-serif;
  font-size: var(--t-base);
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  min-height: 100dvh;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img    { max-width: 100%; height: auto; display: block; }
a      { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
figure { margin: 0; }

::selection { background: var(--red); color: var(--ink); }

.mono {
  font-family: 'Geist Mono', ui-monospace, 'SF Mono', monospace;
  font-feature-settings: 'ss02';
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--rail);
}

.skip {
  position: absolute;
  left: -9999px; top: 0;
  padding: 0.5rem 1rem;
  background: var(--red);
  color: var(--ink);
  z-index: 10000;
  font-size: var(--t-xs);
}
.skip:focus { left: 1rem; top: 1rem; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 12, 0.75);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: background 240ms var(--ease), border-color 240ms var(--ease);
}
.nav.scrolled {
  background: rgba(10, 10, 12, 0.94);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  /* Horizontal breathing room so logo + right element don't hug the edges */
  padding: 1rem clamp(1.75rem, 3vw, 2.75rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}
.brand-mark {
  width: 48px; height: 48px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}
.brand-text {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.brand span { color: var(--ink-dim); }
.brand b { color: var(--ink); font-weight: 700; }

.nav-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.nav-links a {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  transition: color 160ms var(--ease);
}
.nav-links a:hover { color: var(--ink); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--red);
  color: var(--ink);
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 160ms var(--ease), box-shadow 200ms var(--ease), transform 160ms var(--ease);
  transform: translate(var(--mx, 0), var(--my, 0));
  position: relative;
}
.nav-cta:hover { background: var(--red-hot); }

/* "Ringing" pulse triggered when a service card is clicked */
.nav-cta.ringing,
.btn-primary.ringing {
  animation: cta-ring 1.4s ease-out 2;
}
@keyframes cta-ring {
  0%   { box-shadow: 0 0 0 0 rgba(225, 29, 35, 0.7); transform: translate(var(--mx, 0), var(--my, 0)) scale(1); }
  40%  { box-shadow: 0 0 0 14px rgba(225, 29, 35, 0); transform: translate(var(--mx, 0), var(--my, 0)) scale(1.06); }
  100% { box-shadow: 0 0 0 0 rgba(225, 29, 35, 0); transform: translate(var(--mx, 0), var(--my, 0)) scale(1); }
}

/* Hamburger — always visible, pinned far right regardless of which siblings are display:none */
.nav-burger {
  display: flex;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  position: relative;
  margin-left: 0.5rem;
  grid-column: -1;
  justify-self: end;
  transition: border-color 160ms var(--ease), background 160ms var(--ease);
}
.nav-burger:hover { border-color: var(--line-loud); }
.nav-burger .bar {
  position: absolute;
  left: 12px; right: 12px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 240ms var(--ease), opacity 200ms var(--ease), top 240ms var(--ease);
}
.nav-burger .bar.b1 { top: 16px; }
.nav-burger .bar.b2 { top: 21.5px; }
.nav-burger .bar.b3 { top: 27px; }
.nav-burger[aria-expanded="true"] .bar.b1 { top: 21.5px; transform: rotate(45deg); }
.nav-burger[aria-expanded="true"] .bar.b2 { opacity: 0; }
.nav-burger[aria-expanded="true"] .bar.b3 { top: 21.5px; transform: rotate(-45deg); }

/* Grid: brand | links (centre) | CTA | burger */
.nav-inner {
  grid-template-columns: auto 1fr auto auto;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-inner { grid-template-columns: auto 1fr auto; }
}
@media (max-width: 560px) {
  /* More breathing room so the logo and burger don't hug the screen edge */
  .nav-inner { padding-left: 1.75rem; padding-right: 1.75rem; }
}

/* Mobile menu overlay */
#menu {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: clamp(5rem, 14vw, 7rem) var(--rail) 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 320ms var(--ease), visibility 320ms var(--ease), transform 380ms var(--ease);
  overflow: hidden;
  isolation: isolate;
}
#menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.menu-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.06;
  filter: grayscale(1) brightness(1.5);
}
.menu-bg img {
  width: clamp(380px, 90vw, 720px);
  height: auto;
  object-fit: contain;
  mask-image: radial-gradient(circle at center, #000 55%, transparent 82%);
  -webkit-mask-image: radial-gradient(circle at center, #000 55%, transparent 82%);
}
.menu-tag {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.menu-tag::before {
  content: '';
  width: 1.6rem; height: 2px; background: var(--red);
}
.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.menu-list li { border-bottom: 1px solid var(--line); }
.menu-list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 1.1rem 0;
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 8vw, 3rem);
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
  transition: color 160ms var(--ease), padding 200ms var(--ease);
}
.menu-list a::after {
  content: attr(data-num);
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.18em;
  color: var(--ink-faint);
  font-weight: 500;
  text-transform: uppercase;
}
.menu-list a:hover { color: var(--red); padding-left: 0.5rem; }

.menu-foot {
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--line);
}
.menu-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--red);
  color: var(--ink);
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.menu-meta {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.7;
}
.menu-meta b { color: var(--ink); font-weight: 600; }
body.menu-open { overflow: hidden; }

/* ============================================================
   FAQ — terminal-style accordion. Native <details>/<summary>.
   ============================================================ */
#faq { padding: clamp(4rem, 8vw, 7rem) 0; }

.faq-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line-loud);
  margin-bottom: 0;
}
.faq-head .tag {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.faq-head h2 {
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: var(--t-2xl);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.faq-head .meta {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  text-align: right;
  max-width: 32ch;
}

.faq-list { list-style: none; }
.faq {
  border-bottom: 1px solid var(--line);
  position: relative;
}
.faq summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
  transition: padding 200ms var(--ease), color 200ms var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover .faq-q { color: var(--red); }
.faq summary:hover { padding-left: 0.5rem; }

.faq-num {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.22em;
  color: var(--ink-faint);
  text-transform: uppercase;
}
.faq-q {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: clamp(1.05rem, 0.9rem + 0.7vw, 1.45rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: color 200ms var(--ease);
  line-height: 1.25;
}
.faq-toggle {
  width: 28px;
  height: 28px;
  position: relative;
  flex-shrink: 0;
}
.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--ink);
  transition: transform 240ms var(--ease), background 200ms var(--ease);
}
.faq-toggle::before { /* horizontal */
  left: 4px; right: 4px;
  top: 50%; height: 1.5px;
  transform: translateY(-50%);
}
.faq-toggle::after { /* vertical */
  top: 4px; bottom: 4px;
  left: 50%; width: 1.5px;
  transform: translateX(-50%);
}
.faq[open] .faq-toggle::after { transform: translateX(-50%) scaleY(0); }
.faq[open] .faq-toggle::before { background: var(--red); }
.faq[open] summary .faq-q { color: var(--red); }

.faq-a {
  padding: 0 0 1.75rem calc(2rem + 2.4ch);
  font-size: var(--t-base);
  line-height: 1.65;
  color: var(--ink-dim);
  max-width: 60ch;
}
.faq-a strong { color: var(--ink); font-weight: 600; }
.faq-a a {
  color: var(--ink);
  border-bottom: 1px solid var(--red);
  padding-bottom: 0.05em;
  transition: color 160ms;
}
.faq-a a:hover { color: var(--red); }

@media (max-width: 540px) {
  .faq summary { grid-template-columns: auto 1fr auto; gap: 0.75rem; }
  .faq-num { display: none; }
  .faq-a { padding-left: 0; }
}

/* ============================================================
   JOURNAL TEASER — blog framework placeholder, homepage-side
   ============================================================ */
#journal { padding: clamp(4rem, 8vw, 6rem) 0; }

.journal-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line-loud);
  margin-bottom: 0;
}
.journal-head .tag {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.journal-head h2 {
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: var(--t-2xl);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.journal-head a.all {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  transition: color 160ms;
}
.journal-head a.all:hover { color: var(--ink); }
.journal-empty {
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  background: var(--bg-raised);
}
@media (max-width: 700px) {
  .journal-empty { grid-template-columns: 1fr; }
}
.journal-empty .je-left h3 {
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: var(--t-xl);
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.journal-empty .je-left p {
  font-size: var(--t-sm);
  color: var(--ink-dim);
  max-width: 44ch;
  line-height: 1.6;
}
.journal-empty .je-right {
  display: flex; flex-direction: column; gap: 0.75rem;
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.journal-empty .je-right b { color: var(--ink); font-weight: 600; }
.journal-empty .je-right .pulse {
  width: 8px; height: 8px; background: var(--red); border-radius: 50%;
  box-shadow: 0 0 0 4px var(--red-dim);
  display: inline-block; margin-right: 0.5rem;
  animation: blink 2.8s ease-in-out infinite;
}

/* ============================================================
   HERO — left-aligned split. No centered anything.
   ============================================================ */
.hero {
  padding-top: clamp(7rem, 12vw, 11rem);
  padding-bottom: clamp(3rem, 6vw, 6rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-watermark {
  position: absolute;
  z-index: -1;
  top: 16%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(420px, 58vw, 840px);
  height: clamp(420px, 58vw, 840px);
  padding: clamp(1rem, 3vw, 3rem);
  opacity: 0.09;
  pointer-events: none;
  filter: grayscale(1) contrast(1.25) brightness(1.5);
  mask-image: radial-gradient(circle at center, #000 50%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at center, #000 50%, transparent 78%);
}
.hero-watermark img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 860px) {
  .hero-watermark {
    top: 10%;
    opacity: 0.075;
    width: clamp(340px, 88vw, 580px);
    height: clamp(340px, 88vw, 580px);
  }
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero-eyeline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1.5rem;
}
.hero-eyeline .pulse {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--red-dim);
  animation: blink 2.8s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}
.hero-eyeline b { color: var(--ink); font-weight: 600; }

.hero-h1 {
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: var(--t-mega);
  line-height: 0.88;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: var(--ink);
}
.hero-h1 span { display: block; }
.hero-h1 .red  { color: var(--red); }
.hero-h1 .ice  { color: var(--ice); }

.hero-sub {
  margin-top: 2rem;
  font-size: var(--t-lg);
  line-height: 1.45;
  color: var(--ink-dim);
  max-width: 40ch;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Shared button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease);
  transform: translate(var(--mx, 0), var(--my, 0));
}
.btn-solid {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn-solid:hover { background: var(--red); border-color: var(--red); color: var(--ink); }
.btn-outline {
  background: transparent;
  border-color: var(--line-loud);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--bg); }
.btn .arr { transition: transform 180ms var(--ease); }
.btn:hover .arr { transform: translateX(3px); }

/* Status panel */
.status-panel {
  border: 1px solid var(--line);
  background: var(--bg-raised);
  padding: 1.75rem;
  position: relative;
}
.status-panel::before {
  content: 'LIVE / STATION 01';
  position: absolute;
  top: -0.62rem; left: 1.25rem;
  background: var(--bg);
  padding: 0 0.6rem;
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.status-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--line);
}
.status-row:last-child { border-bottom: 0; }
.status-label {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.status-val {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--ink);
  text-align: right;
}
.status-val .go,
.status-val .shut {
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.status-val .go::before {
  content: '';
  width: 8px; height: 8px;
  background: #44d36a;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(68, 211, 106, 0.2);
}
.status-val .shut::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--red-dim);
}
.status-val .shut { color: var(--ink); }
.status-val .ice { color: var(--ice); }
.status-val .red { color: var(--red); }

/* Stat strip inside hero */
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.hero-stat {
  flex: 1;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1rem;
  display: flex; flex-direction: column; gap: 0.2rem;
}
.hero-stat .n {
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: var(--t-xl);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}
.hero-stat .l {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============================================================
   TICKER STRIP
   ============================================================ */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-raised);
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 0;
  width: fit-content;
  animation: scroll-x 44s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem 2rem;
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  white-space: nowrap;
}
.ticker-item .sep { color: var(--red); font-weight: 700; }

/* Trust banner above the map, modelled on the top ticker but with more presence */
.trust-banner {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-raised);
  overflow: hidden;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.trust-track {
  display: flex;
  gap: 0;
  width: fit-content;
  animation: scroll-x 52s linear infinite;
}
.trust-banner:hover .trust-track { animation-play-state: paused; }
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.15rem 1.5rem;
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.trust-item .sep { color: var(--red); font-weight: 700; }

/* ============================================================
   SERVICES WALL — dense grid, not list rows
   ============================================================ */
#services { padding: clamp(4rem, 8vw, 7rem) 0; }

.wall-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding-bottom: 1.5rem;
  margin-bottom: 0;
  border-bottom: 1px solid var(--line-loud);
}
.wall-header .tag {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.wall-header h2 {
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: var(--t-2xl);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.wall-header .note {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  text-align: right;
  max-width: 28ch;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 1100px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .svc-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) {
  /* Tighter cards on phone: less dead space, code nearer the icon, smaller price.
     Scoped with .svc-grid so these win over the later base rules at equal specificity. */
  .svc-grid .svc { min-height: 0; gap: 0.55rem; padding: 1.4rem 1.5rem; }
  .svc-grid .svc-glyph { margin-top: 0.2rem; }
  .svc-grid .svc-price { font-size: var(--t-lg); }
  .svc-grid .svc-price small { display: inline; margin: 0 0.3em 0 0; }  /* 'from £14' on one line shrinks the top row */
  .svc-grid .svc-desc { margin-top: 0.4rem; }
}

.svc {
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 0;
  border-left: 0;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--bg);
  position: relative;
  min-height: 260px;
  overflow: hidden;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
  width: 100%;
  transition: background 240ms var(--ease);
}
.svc:focus-visible { outline: 2px solid var(--red); outline-offset: -2px; }
.svc::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 280ms var(--ease);
  z-index: 0;
}
.svc:hover::after { transform: scaleY(1); }
.svc > * { position: relative; z-index: 1; }

.svc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;          /* force full width so the price has room to sit right (iOS Safari was shrink-wrapping this row) */
  align-self: stretch;
}

/* Custom inline glyph — subtle idle tilt, stronger lift on card hover */
.svc-glyph {
  width: 38px;
  height: 38px;
  display: block;
  color: var(--ink-dim);
  margin-top: 0.25rem;
  transform-origin: 50% 70%;
  animation: glyph-idle 5.6s ease-in-out infinite;
  transition: color 220ms var(--ease), transform 320ms var(--ease);
}
.svc:nth-child(2n) .svc-glyph { animation-delay: -1.4s; }
.svc:nth-child(3n) .svc-glyph { animation-delay: -2.8s; }
.svc:nth-child(4n) .svc-glyph { animation-delay: -4.2s; }

@keyframes glyph-idle {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50%      { transform: rotate(2deg) translateY(-1px); }
}
.svc:hover .svc-glyph {
  color: var(--ink);
  transform: rotate(-6deg) scale(1.08);
  animation-play-state: paused;
}

/* Per-glyph signature flourishes */
.glyph-steam .puff {
  transform-origin: 16px 28px;
  animation: puff-rise 3.6s ease-in-out infinite;
}
.glyph-steam .puff-2 { animation-delay: -1.2s; }
.glyph-steam .puff-3 { animation-delay: -2.4s; }
@keyframes puff-rise {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50%      { transform: translateY(-2px); opacity: 1; }
}

.glyph-clippers .teeth {
  transform-origin: 16px 26px;
  animation: teeth-buzz 0.18s steps(2) infinite;
}
@keyframes teeth-buzz {
  0%   { transform: translateX(0); }
  100% { transform: translateX(0.6px); }
}

.glyph-drop .drip {
  transform-origin: 16px 8px;
  animation: drip-fall 3.2s ease-in-out infinite;
}
@keyframes drip-fall {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  60%      { transform: translateY(3px); opacity: 1; }
}

.svc-code {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  transition: color 200ms var(--ease);
}
.svc:hover .svc-code { color: rgba(243,243,245,0.55); }

.svc-price {
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: var(--t-xl);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  text-align: right;
  margin-left: auto;            /* belt-and-braces: pin to the right even if space-between is overridden */
  transform-origin: top right;
  transition: color 200ms var(--ease), transform 280ms var(--ease);
}
/* Tap/hover (red-glow state) punches the price slightly larger.
   .tapped is toggled by JS so this works on touch where :hover/:focus-visible don't. */
.svc:hover .svc-price,
.svc:focus-visible .svc-price,
.svc.tapped .svc-price { transform: scale(1.16); color: var(--ink); }
.svc.tapped::after { transform: scaleY(1); }
.svc-price small {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: block;
  margin-bottom: 0.15rem;
  text-align: right;
  transition: color 200ms var(--ease);
}
.svc:hover .svc-price small { color: rgba(243,243,245,0.7); }

.svc-name {
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: var(--t-lg);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 200ms var(--ease);
}
.svc-desc {
  font-size: var(--t-sm);
  line-height: 1.55;
  color: var(--ink-dim);
  margin-top: auto;
  transition: color 200ms var(--ease);
}
.svc:hover .svc-desc { color: rgba(243,243,245,0.78); }

.svc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--line);
  transition: border-color 200ms var(--ease);
}
.svc:hover .svc-foot { border-color: rgba(243,243,245,0.2); }

.svc-cta {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex; align-items: center; gap: 0.4rem;
  transition: color 200ms var(--ease), transform 200ms var(--ease);
}
.svc:hover .svc-cta { color: var(--ink); transform: translateX(3px); }

/* ============================================================
   CRAFT — two-column. Description left, scrollable photos right.
   ============================================================ */
#craft { padding: clamp(4rem, 8vw, 7rem) 0; }

.craft-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 2.4fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 860px) { .craft-wrap { grid-template-columns: 1fr; } }

.craft-left {
  background: var(--bg-raised);
  padding: clamp(1.75rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: space-between;
}
.craft-left .tag {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
}
.craft-left h2 {
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: var(--t-xl);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.craft-left p {
  font-size: var(--t-sm);
  color: var(--ink-dim);
  line-height: 1.6;
}
.craft-stats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.craft-stat .n {
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: var(--t-2xl);
  letter-spacing: -0.04em;
  line-height: 1;
}
.craft-stat .n .red { color: var(--red); }
.craft-stat .l {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 0.2rem;
}

.craft-photos {
  background: var(--bg);
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  scroll-behavior: auto;
  cursor: grab;
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.craft-photos::-webkit-scrollbar { display: none; height: 0; }
.craft-photos.dragging { cursor: grabbing; }
.craft-photos.dragging * { pointer-events: none; }

.craft-gallery-col { background: var(--bg); min-width: 0; display: flex; flex-direction: column; }
.craft-caption {
  margin: 0.9rem 0;
  text-align: center;
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.craft-caption .sep { color: var(--red); font-weight: 700; }

.craft-track {
  display: flex;
  gap: 1px;
  width: max-content;
  will-change: scroll-position;
}

.craft-tile {
  position: relative;
  flex-shrink: 0;
  width: clamp(220px, 28vw, 360px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-card);
  isolation: isolate;
  user-select: none;
  -webkit-user-drag: none;
}
.craft-tile img {
  --gs: 1;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(var(--gs)) contrast(calc(1.05 + (1 - var(--gs)) * 0.12)) saturate(calc(1 + (1 - var(--gs)) * 0.15));
  transition: filter 240ms ease-out;
  -webkit-user-drag: none;
  pointer-events: none;
}
.craft-tile picture {
  display: block;
  width: 100%;
  height: 100%;
}
.story-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}
.craft-tile figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.7rem 0.85rem;
  background: linear-gradient(180deg, transparent, rgba(10,10,12,0.92));
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex; flex-direction: column; gap: 0.2rem;
}
.craft-tile figcaption .num {
  color: var(--red);
  font-weight: 600;
}
.craft-tile figcaption .lbl { color: var(--ink); }


/* Gallery lightbox. Expand a tile to full colour */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(8, 8, 10, 0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 280ms var(--ease);
}
.lightbox.open { opacity: 1; }
.lightbox[hidden] { display: none; }
body.lb-open { overflow: hidden; }
.lightbox-fig {
  position: relative;
  margin: 0;
  max-width: min(92vw, 720px);
  max-height: 86vh;
  transform: scale(0.94);
  transition: transform 320ms var(--ease);
}
.lightbox.open .lightbox-fig { transform: scale(1); }
.lightbox-fig img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 86vh;
  object-fit: contain;
  border: 1px solid var(--line-loud);
}
.lightbox-fig figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.8rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(10, 10, 12, 0.92));
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.lightbox-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-raised);
  border: 1px solid var(--line-loud);
  color: var(--ink);
  font: 400 1.6rem/1 'Geist', sans-serif;
  cursor: pointer;
  z-index: 1;
  transition: background 160ms var(--ease), color 160ms var(--ease);
}
.lightbox-close:hover,
.lightbox-close:focus-visible { background: var(--red); color: #fff; }

/* Logo watermark — top-right, screen blend so it reads on light or dark areas */
.craft-tile::before {
  content: '';
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 38px;
  height: 38px;
  z-index: 2;
  background-image: url('images/logo.png?v=4');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.55;
  mix-blend-mode: screen;
  filter: grayscale(1) brightness(1.6) contrast(1.1);
  pointer-events: none;
  transition: opacity 320ms var(--ease);
}
.craft-tile:hover::before { opacity: 0.85; }
.craft-tile figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.7rem 0.85rem;
  background: linear-gradient(180deg, transparent, rgba(10,10,12,0.92));
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex; flex-direction: column; gap: 0.2rem;
}
.craft-tile figcaption .num {
  color: var(--red);
  font-weight: 600;
}
.craft-tile figcaption .lbl { color: var(--ink); }

/* ============================================================
   HERO REEL — cinematic video band between hero and ticker
   ============================================================ */
.reel {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: 70vh;
  overflow: hidden;
  background: var(--bg-card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 860px) {
  .reel { aspect-ratio: 16 / 10; }
}
.reel video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(1.05);
}
.reel::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,12,0.35) 0%, transparent 30%, transparent 60%, rgba(10,10,12,0.85) 100%),
    linear-gradient(90deg, rgba(10,10,12,0.55) 0%, transparent 28%, transparent 72%, rgba(10,10,12,0.55) 100%);
  pointer-events: none;
}
.reel-cap {
  position: absolute;
  z-index: 2;
  left: var(--rail);
  bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}
.reel-cap::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--red-dim);
  animation: blink 2.8s ease-in-out infinite;
}
.reel-cap .dim { color: var(--ink-mute); }

.reel-tag {
  position: absolute;
  z-index: 2;
  right: var(--rail);
  top: 1.5rem;
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--line);
  background: rgba(10,10,12,0.7);
  backdrop-filter: blur(8px);
}

/* ============================================================
   STORY — dossier on Honar. Three-column: photo, prose, data.
   ============================================================ */
#story { padding: clamp(4rem, 8vw, 7rem) 0; }

.story-wrap {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.4fr) minmax(0, 1fr);
  grid-template-areas: "photo prose dossier";
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: stretch;
}
.story-photo { grid-area: photo; }
.story-head  { grid-area: prose; }
.dossier     { grid-area: dossier; }

@media (max-width: 1100px) {
  .story-wrap {
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.4fr);
    grid-template-areas:
      "photo prose"
      "photo dossier";
  }
}
@media (max-width: 700px) {
  .story-wrap {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "prose"
      "dossier";
  }
  .story-photo { min-height: 420px; }
}

.story-photo {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
  min-height: 480px;
}
.story-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Desktop: pulled back to head and shoulders */
  object-position: 50% 28%;
  filter: grayscale(1) contrast(1.16) brightness(1.06);
  display: block;
}
/* Mobile: stay tighter on the face (placed after base img rule to win the cascade) */
@media (max-width: 700px) {
  .story-photo img { object-position: 50% 22%; }
}
.story-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,12,0.85) 100%);
  pointer-events: none;
}
.story-photo .photo-cap {
  position: absolute;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 1;
  display: flex; flex-direction: column; gap: 0.2rem;
}
.story-photo .photo-cap .who {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: var(--t-lg);
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}
.story-photo .photo-cap .where {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.story-photo .photo-cap .where b { color: var(--red); font-weight: 600; }

.story-head .tag {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.8rem;
}
.story-head h2 {
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: var(--t-2xl);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.story-head h2 .red { color: var(--red); }
.story-head h2 .ice { color: var(--ice); }

.story-body {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.story-body p {
  font-size: var(--t-lg);
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 52ch;
}
.story-body p strong { color: var(--ink); font-weight: 600; }
.story-body p .red { color: var(--red); font-weight: 600; }

.story-quote {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-left: 2px solid var(--red);
  background: var(--bg-raised);
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: var(--t-lg);
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.01em;
  max-width: 50ch;
}
.story-quote::before {
  content: '';
  display: block;
  width: 1.8rem;
  height: 2px;
  background: var(--red);
  margin-bottom: 0.75rem;
}

.dossier {
  border: 1px solid var(--line);
  background: var(--bg-raised);
  padding: 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dossier::before {
  content: 'DOSSIER / HONAR';
  position: absolute;
  top: -0.62rem; left: 1.25rem;
  background: var(--bg);
  padding: 0 0.6rem;
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.dossier-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px dashed var(--line);
}
.dossier-row:last-child { border-bottom: 0; }
.dossier-k {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.dossier-v {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--ink);
  text-align: right;
}
.dossier-v .red { color: var(--red); }
.dossier-v .ice { color: var(--ice); }
.dossier-v .small {
  font-family: 'Geist Mono', monospace;
  font-weight: 500;
  font-size: var(--t-xs);
  color: var(--ink-dim);
  display: block;
  margin-top: 0.15rem;
  line-height: 1.4;
  text-align: right;
}

.dossier-big {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 1.5rem;
  background: var(--line);
  border: 1px solid var(--line);
}
.dossier-big .cell {
  background: var(--bg);
  padding: 1rem;
  display: flex; flex-direction: column; gap: 0.2rem;
}
.dossier-big .n {
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: var(--t-xl);
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
}
.dossier-big .n .red { color: var(--red); }
.dossier-big .l {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============================================================
   REVIEWS — grid with a live bar up top. Not testimonial cards.
   ============================================================ */
#reviews { padding: clamp(4rem, 8vw, 7rem) 0; }

.rev-bar {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line-loud);
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
  flex-wrap: wrap;
}
.rev-bar-item { display: flex; flex-direction: column; gap: 0.2rem; }
.rev-bar-item .n {
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: var(--t-xl);
  letter-spacing: -0.03em;
  line-height: 1;
}
.rev-bar-item .l {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.stars { color: var(--red); letter-spacing: 0.05em; }
.rev-bar .cta-link {
  margin-left: auto;
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex; align-items: center; gap: 0.4rem;
  transition: color 160ms var(--ease);
}
.rev-bar .cta-link:hover { color: var(--ink); }

.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) { .rev-grid { grid-template-columns: 1fr; } }

.rev {
  position: relative;
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  background: var(--bg);
  min-height: 240px;
}
/* Red accent bar draws down the left edge as the card enters */
.rev::before {
  content: '';
  position: absolute;
  left: 0; top: 1.75rem; bottom: 1.75rem;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 520ms var(--ease);
}
.rev.shown::before {
  transform: scaleY(1);
  animation: rev-bar-pulse 2.8s ease-in-out infinite;
  animation-delay: 520ms;
}
@keyframes rev-bar-pulse {
  0%, 100% { opacity: 0.55; box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
  50%      { opacity: 1;    box-shadow: 0 0 12px 0 var(--red-dim); }
}
.rev-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}
.rev-author {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.rev-date {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.14em;
  color: var(--ink-faint);
  text-align: right;
  white-space: nowrap;
}
.rev-quote {
  font-size: var(--t-sm);
  line-height: 1.6;
  color: var(--ink-dim);
  flex: 1;
  quotes: none;
}
/* Mobile: larger nav brand text + review text for readability */
@media (max-width: 700px) {
  .brand-text { font-size: 0.95rem; letter-spacing: 0.1em; }
  .rev-quote { font-size: 1.06rem; line-height: 1.55; }
}
/* Stars fill left-to-right on entry (red layer over a dim base) */
.rev-top .stars {
  position: relative;
  color: rgba(243, 243, 245, 0.16);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.rev-top .stars::before {
  content: '\2605\2605\2605\2605\2605';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  overflow: hidden;
  color: var(--red);
  letter-spacing: 0.05em;
  transition: width 900ms var(--ease) 220ms;
}
.rev.shown .rev-top .stars::before { width: 100%; }

/* Quote builds in word-by-word as the card enters view */
.rev-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 360ms var(--ease), transform 360ms var(--ease);
}
.rev.shown .rev-word { opacity: 1; transform: translateY(0); }

.rev-foot {
  padding-top: 0.75rem;
  border-top: 1px dashed var(--line);
  display: flex;
  justify-content: space-between;
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ============================================================
   VISIT — map left, data panel right
   ============================================================ */
#visit { padding: clamp(4rem, 8vw, 7rem) 0; }

.visit-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 860px) { .visit-wrap { grid-template-columns: 1fr; } }

.visit-map {
  position: relative;
  min-height: 460px;
  background: var(--bg-card);
  overflow: hidden;
}
.visit-map iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
  filter: invert(1) hue-rotate(180deg) saturate(0.55) contrast(0.88) brightness(0.92);
}

.map-badge {
  position: absolute;
  left: 1.5rem; top: 1.5rem;
  background: rgba(10,10,12,0.88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  padding: 1.25rem;
  max-width: 280px;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.map-badge .pin-label {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  display: flex; align-items: center; gap: 0.4rem;
}
.map-badge .pin-label::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--red-dim);
}
.map-badge address {
  font-style: normal;
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xs);
  color: var(--ink);
  line-height: 1.6;
}
.map-badge .dir-link {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border-bottom: 1px solid var(--ink-faint);
  align-self: flex-start;
  padding-bottom: 0.1em;
  transition: color 160ms;
}
.map-badge .dir-link:hover { color: var(--red); border-color: var(--red); }

.visit-panel {
  background: var(--bg-raised);
  padding: clamp(1.75rem, 4vw, 3rem);
  display: flex; flex-direction: column; gap: 2rem;
}

.visit-section-tag {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
}
.visit-h {
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: var(--t-xl);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1;
}

.hours {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.hours-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px dashed var(--line);
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hours-row .d { color: var(--ink-dim); }
.hours-row .t { color: var(--ink); font-weight: 600; }
.hours-row.today .d { color: var(--ink); }
.hours-row.today .t { color: var(--red); }
.hours-row.closed .t { color: var(--ink-faint); font-weight: 400; }

.visit-contact {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.visit-contact .phone {
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: var(--t-xl);
  letter-spacing: -0.025em;
  color: var(--ink);
  transition: color 160ms;
}
.visit-contact .phone:hover { color: var(--red); }
.visit-contact .phone-label {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.visit-social {
  display: flex; gap: 0.5rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

/* Brand icon links, used in Visit + footer Follow */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--ink-mute);
  transition: color 160ms, transform 160ms;
}
.social-icon svg { width: 24px; height: 24px; display: block; }
.social-icon:hover { color: var(--ink); transform: translateY(-1px); }
.social-icon.ig:hover { color: #e1306c; }
.social-icon.fb:hover { color: #1877f2; }
.social-icon.gg:hover { color: #ea4335; }

.foot-social { display: flex; gap: 0.5rem; margin-left: -0.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
}
.foot-top {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 800px) { .foot-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .foot-top { grid-template-columns: 1fr; } }

.foot-brand .f-name {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.foot-brand .f-name .f-mark {
  width: 28px; height: 28px;
  object-fit: contain;
  display: block;
}
.foot-brand p {
  font-size: var(--t-sm);
  color: var(--ink-mute);
  line-height: 1.6;
  max-width: 30ch;
}

.foot-col h4 {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1rem;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.foot-col li,
.foot-col li a {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xs);
  color: var(--ink-dim);
  letter-spacing: 0.06em;
}
.foot-col li a:hover { color: var(--red); }

.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.foot-bottom a { color: var(--ink-mute); border-bottom: 1px solid var(--ink-faint); }
.foot-bottom a:hover { color: var(--red); border-color: var(--red); }

/* ============================================================
   SPLASH — branded loading screen, min 1.5s hold
   ============================================================ */
#splash {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 540ms var(--ease), visibility 540ms var(--ease);
}
#splash.gone {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  padding: 1rem;
}
.splash-logo {
  width: clamp(230px, 44vw, 280px);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.86);
  animation:
    splash-in 720ms var(--ease) forwards,
    splash-breathe 3.4s ease-in-out 720ms infinite;
}
@keyframes splash-in {
  0%   { opacity: 0; transform: scale(0.86); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes splash-breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.025); }
}
.splash-bar {
  width: clamp(120px, 18vw, 160px);
  height: 2px;
  background: var(--line);
  overflow: hidden;
  position: relative;
  opacity: 0;
  animation: splash-fadein 420ms var(--ease) 220ms forwards;
}
.splash-bar span {
  position: absolute;
  inset: 0;
  background: var(--red);
  transform-origin: left center;
  transform: scaleX(0);
  animation: splash-fill 1380ms var(--ease) 320ms forwards;
}
@keyframes splash-fill {
  0%   { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}
@keyframes splash-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.splash-label {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  opacity: 0;
  animation: splash-fadein 540ms var(--ease) 320ms forwards;
}
.splash-label b { color: var(--ink); font-weight: 600; }
.splash-label .dot { color: var(--red); margin: 0 0.4em; }

body.splash-lock { overflow: hidden; }


/* ============================================================
   REVEALS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 680ms var(--ease), transform 680ms var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 680ms var(--ease), transform 680ms var(--ease);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 40ms; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 90ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 140ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 190ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 240ms; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 290ms; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 340ms; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 390ms; }


/* ============================================================
   AEO additions. Services subtitle, reviews question header,
   FAQ price table
   ============================================================ */
.svc-subtitle {
  margin-top: 0.85rem;
  max-width: 46ch;
  font-size: var(--t-sm);
  line-height: 1.5;
  color: var(--ink-mute);
}
.rev-head { margin-bottom: 2.5rem; max-width: 64ch; }
.rev-head .tag {
  font-family: 'Geist Mono', monospace;
  font-size: var(--t-xxs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.rev-h {
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: var(--t-xl);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 0.9rem;
}
.rev-lead {
  font-size: var(--t-base);
  line-height: 1.6;
  color: var(--ink-dim);
}
.faq-prices {
  margin: 1.1rem 0 0;
  border-collapse: collapse;
  width: 100%;
  max-width: 44ch;
  font-size: var(--t-sm);
}
.faq-prices td {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-dim);
}
.faq-prices td:last-child {
  text-align: right;
  font-family: 'Geist Mono', monospace;
  color: var(--ink);
  white-space: nowrap;
}
.faq-prices tr:last-child td { border-bottom: none; }

/* ============================================================
   STICKY MOBILE CALL BAR. Visible on small screens after hero
   ============================================================ */
.call-bar {
  display: none;
}
@media (max-width: 860px) {
  .call-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 56px;
    padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
    background: var(--red);
    color: #fff;
    font-family: 'Geist', sans-serif;
    font-weight: 700;
    font-size: var(--t-sm);
    letter-spacing: 0.01em;
    text-decoration: none;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
    transform: translateY(110%);
    transition: transform 320ms var(--ease);
    will-change: transform;
  }
  .call-bar.show { transform: translateY(0); }
  .call-bar svg { width: 18px; height: 18px; flex-shrink: 0; }
  body { --call-bar-pad: 76px; }
  .foot { padding-bottom: var(--call-bar-pad); }
}
