/* ============================================================
   [INSRT] SOCIALS — STYLESHEET
   Aesthetic: Industrial Elegance / Queer Brutalism
   Palette:   #F4F2EE (warm white) / #0C0C0C (near black)
              #FF4D00 (hazard orange) / #B8B8B8 (silver)
   Type:      Bebas Neue / Space Mono / VT323
   Rules:     0px border-radius everywhere. 1px lines for
              structure. 0ms transitions. No soft shadows.
              No glassmorphism. No default gray palettes.
   ============================================================ */


/* ── CUSTOM PROPERTIES ────────────────────────────────────── */
:root {
  --white:   #F4F2EE;
  --black:   #0C0C0C;
  --orange:  #FF4D00;
  --silver:  #B8B8B8;

  --font-display: 'Bebas Neue', sans-serif;
  --font-mono:    'Space Mono', monospace;
  --font-pixel:   'VT323', monospace;

  --line:       1px solid #0C0C0C;
  --line-dim:   1px solid rgba(12, 12, 12, 0.18);
  --line-white: 1px solid rgba(244, 242, 238, 0.12);
  --line-orange:1px solid #FF4D00;

  --nav-h: 52px;
}


/* ── RESET ────────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none;
  border-radius: 0;        /* 90-degree sharpness everywhere */
  transition: none;        /* 0ms — no smooth fades */
  outline: none;
}

html {
  scroll-behavior: auto;   /* No smooth scroll — instant jumps */
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--white);
  color: var(--black);
  font-family: var(--font-mono);
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }


/* ── GRAIN OVERLAY ────────────────────────────────────────── */
/* Subtle film grain via SVG turbulence — not glassmorphism   */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}


/* ── CUSTOM CURSOR ────────────────────────────────────────── */
/* mix-blend-mode: difference auto-inverts on any background:
   white cursor → appears black on white, white on black      */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.cursor-line {
  position: absolute;
  background: #ffffff;
}

.cursor-h {
  width: 20px;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.cursor-v {
  width: 1px;
  height: 20px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.cursor-dot {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #ffffff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Hover: crosshair grows — blend mode handles color automatically */
#cursor.is-hover .cursor-h { width: 30px; }
#cursor.is-hover .cursor-v { height: 30px; }


/* ── VT323 PIXEL TEXT ─────────────────────────────────────── */
.vt {
  font-family: var(--font-pixel);
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: var(--black);
  opacity: 0.65;
}
.vt--dim   { opacity: 0.35; }
.vt.orange { color: var(--orange); opacity: 1; }


/* ── CHROME TEXT EFFECTS ─────────────────────────────────── */
/* Two variants — dark chrome for white backgrounds,
   light chrome (silver) for dark/black backgrounds           */

/* DARK CHROME — hero title, use on light backgrounds */
.chrome-text {
  background: linear-gradient(
    180deg,
    #282828 0%,
    #0c0c0c 12%,
    #747474 24%,
    #1a1a1a 36%,
    #4a4a4a 50%,
    #0c0c0c 62%,
    #5e5e5e 76%,
    #0c0c0c 88%,
    #1e1e1e 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 0 rgba(0,0,0,0.3));
}


/* LIGHT CHROME (SILVER) — for use on dark/black backgrounds */
.chrome-text--light {
  background: linear-gradient(
    180deg,
    #f4f4f4 0%,
    #ffffff 14%,
    #909090 28%,
    #e8e8e8 42%,
    #c0c0c0 56%,
    #f8f8f8 70%,
    #808080 84%,
    #e4e4e4 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 0 rgba(0,0,0,0.9));
}


/* ── DIVIDER LINE ─────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--black);
}


/* ── ANTI-BUTTON ──────────────────────────────────────────── */
/* Oversized underlined text — used sparingly for impact       */
.anti-btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  letter-spacing: 0.12em;
  color: var(--black);
  border-bottom: 2px solid var(--black);
  padding-bottom: 2px;
  line-height: 1;
}
.anti-btn:hover         { color: var(--orange); border-bottom-color: var(--orange); }
.anti-btn--orange       { color: var(--orange); border-bottom-color: var(--orange); }
.anti-btn--orange:hover { color: var(--black);  border-bottom-color: var(--black); }
.anti-btn--white        { color: var(--white);  border-bottom-color: var(--white); }
.anti-btn--white:hover  { color: var(--orange); border-bottom-color: var(--orange); }


/* ── IMAGE PLACEHOLDERS ───────────────────────────────────── */
.img-placeholder {
  background: var(--black);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

/* Hatching pattern over placeholder — makes intent clear */
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 12px,
    rgba(255, 77, 0, 0.06) 12px,
    rgba(255, 77, 0, 0.06) 13px
  );
  pointer-events: none;
}

.img-placeholder-label {
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
  z-index: 1;
}


/* ── NAVIGATION ───────────────────────────────────────────── */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: var(--line);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 24px;
  gap: 0;
  z-index: 1000;
}

.nav-bar.nav--dark {
  background: var(--black);
  border-bottom-color: rgba(244,242,238,0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  padding-right: 24px;
}

.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
  transition: opacity 0.18s;
}

.nav-logo-img--dark          { display: none; }
.nav--dark .nav-logo-img--light { display: none; }
.nav--dark .nav-logo-img--dark  { display: block; }

.nav-logo:hover .nav-logo-img { opacity: 0.7; }

.nav-links {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: var(--nav-h);
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--black);
  padding: 0 22px;
  display: flex;
  align-items: center;
  border-left: var(--line);
}
.nav-link:last-child        { border-right: var(--line); }
.nav-link:hover             { background: var(--black); color: var(--white); }
.nav-link--cta:hover        { background: var(--orange); color: var(--white); }
.nav-link.is-active         { background: var(--black); color: var(--white); }

.nav--dark .nav-link        { color: var(--white); border-left-color: rgba(244,242,238,0.12); }
.nav--dark .nav-link:last-child { border-right-color: rgba(244,242,238,0.12); }
.nav--dark .nav-link:hover  { background: var(--orange); color: var(--white); }

.nav-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  padding-left: 24px;
}


/* ── SECTIONS — SHARED ────────────────────────────────────── */
.section {
  padding-top: var(--nav-h);
}

.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: var(--line);
  padding: 38px 24px 40px;
  gap: 40px;
  align-items: end;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 7.5vw, 9rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--black);
  margin-top: 6px;
}

.section-title--white { color: var(--white); }

.section-desc {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  line-height: 1.8;
}

.section-desc--content {
  font-size: 0.8rem;
}

.pricing-points {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.5vw, 1.34rem);
  line-height: 1.08;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.pricing-points li {
  position: relative;
  padding-left: 1.1em;
  margin-bottom: 0.22em;
}

.pricing-points li:last-child {
  margin-bottom: 0;
}

.pricing-points li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--orange);
}

.section-desc--light { color: rgba(244,242,238,0.75); font-size: 0.8rem; margin-bottom: 12px; }
.section-desc--dim   { color: rgba(244,242,238,0.4);  font-size: 0.68rem; }

.section-header--dark { border-bottom-color: rgba(244,242,238,0.1); }


/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  border-bottom: var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Meta strips — span full width outside the split */
.meta-strip {
  display: flex;
  gap: 40px;
  padding: 8px 24px;
  overflow: hidden;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.meta-strip--top    { border-bottom: var(--line); }
.meta-strip--bottom { border-top: var(--line); justify-content: space-between; }

/* ─── LEFT / RIGHT SPLIT ────────────────────────────────── */
.hero-body-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1;
}

/* LEFT column */
.hero-left {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transform: scale(0.9);
}

/* Y2K sigil — inside left column */
.hero-sigil {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(220px, 28vw, 400px);
  height: clamp(220px, 28vw, 400px);
  opacity: 0.06;
  pointer-events: none;
}

/* Logo block (text fallback until logo.png is placed) */
.hero-logo-block {
  padding: 20px 24px 0;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.hero-logo-img {
  max-width: min(100%, 620px);
  width: 100%;
  height: auto;
  display: block;
}

/* Subtle ghost-line cut below logo */
.hero-logo-divider {
  margin: 12px 24px 0;
  border-bottom: 1px solid rgba(12,12,12,0.08);
  flex-shrink: 0;
}

/* Title text (shown when logo.png is absent) */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 13vw, 13rem);
  line-height: 0.82;
  letter-spacing: -0.01em;
  display: block;
}
.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.5vw, 6.5rem);
  line-height: 0.88;
  letter-spacing: 0.22em;
  color: var(--black);
  padding-left: 4px;
}

/* Statement block — grows to fill remaining left space */
.hero-statement-block {
  padding: 20px 24px 28px;
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: flex-end;
}
.hero-statement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  width: 100%;
}
.hero-statement-large {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0.06em;
}
.hero-statement-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-body {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  line-height: 1.85;
  max-width: 380px;
}

/* ─── RIGHT column — triangulated media panels ──────────── */
.hero-right {
  position: relative;
  border-left: var(--line);
  overflow: hidden;
  min-height: 540px;
  background: var(--white-warm);
}

/* All 3 panels overlay the full right column, clipped into thirds */
.media-panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Zone 1: left vertical rectangle */
.media-panel--01 {
  position: absolute;
  top: 0; left: 0;
  width: 50%; height: 100%;
  clip-path: none;
  overflow: hidden;
}
/* Zone 2: right vertical rectangle */
.media-panel--02 {
  position: absolute;
  top: 0; left: 50%;
  width: 50%; height: 100%;
  clip-path: none;
  overflow: hidden;
}
/* Zone 3: small centered triangle — apex at seam, base 1/3 into each panel */
.media-panel--03 {
  clip-path: polygon(50% 70%, 33.33% 100%, 66.67% 100%);
  background: rgba(244,242,238,0.55);
  z-index: 2;
}

/* Image / video asset inside a panel */
.media-asset {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  outline: 4px solid var(--orange);
}

.media-asset--contain {
  object-fit: contain;
  object-position: center 60%;
  background: var(--black);
}

.media-asset--icon {
  position: absolute;
  width: 64px;
  height: 64px;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  filter: brightness(0);
}

/* Centered placeholder label */
.media-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.media-label-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0.35;
}

/* SVG /\ orange divider lines */
.hero-triangle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
}


/* ── TICKER ───────────────────────────────────────────────── */
.ticker-wrap {
  background: var(--black);
  overflow: hidden;
  border-top: var(--line);
  border-bottom: var(--line);
  padding: 10px 0;
  white-space: nowrap;
}

.ticker {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: ticker-run 36s linear infinite;
  will-change: transform;
}

.ticker-item {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  color: var(--white);
  padding: 0 20px;
}
.ticker-item--accent { color: var(--orange); }

.ticker-sep {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: rgba(244,242,238,0.25);
}

@keyframes ticker-run {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ── EDITORIAL ────────────────────────────────────────────── */
.editorial {
  border-bottom: var(--line);
}

.editorial-label-bar {
  display: flex;
  justify-content: space-between;
  padding: 10px 24px;
  border-bottom: var(--line);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 78vh;
}

.editorial-img-col {
  border-right: var(--line);
  display: flex;
  flex-direction: column;
}

.editorial-img {
  flex: 1;
  min-height: 480px;
  overflow: hidden;
  position: relative;
}

.editorial-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.editorial-img-caption {
  padding: 10px 16px;
  border-top: var(--line);
}

.editorial-text-col {
  padding: 44px 52px 44px 48px;
}

.editorial-interview {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.interview-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.interview-q {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.q-dash {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
}

.q-text {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-style: italic;
  opacity: 0.55;
}

/* Editorial quote highlight — deliberate typographic device,
   not a card/list-item state indicator */
.interview-a {
  padding-left: 22px;
  border-left: 2px solid var(--orange);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.a-large {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2.6rem);
  line-height: 1.08;
  color: var(--black);
}

.a-body {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  line-height: 1.85;
}


/* ── ABOUT BLOCK ──────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
}

.about-label-col {
  border-right: var(--line);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-ref { margin-top: 8px; }

.about-main-col {
  padding: 28px 36px;
}

/* Keyword blocks — flat bordered text, not pill badges */
.keyword-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.keyword {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  border: var(--line);
  padding: 6px 14px;
  margin-right: -1px;
  margin-bottom: -1px;
  white-space: nowrap;
}

.about-statement-block {
  border-top: var(--line);
  border-bottom: var(--line);
  padding: 30px 0;
  margin-bottom: 36px;
}

.about-large {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
}

.about-bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 36px;
}

.about-img-col { }

.about-img {
  min-height: 340px;
  overflow: hidden;
  position: relative;
}

.about-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about-text-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bio-body {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  line-height: 1.85;
}

.about-stats {
  display: flex;
  margin-top: 24px;
  border-top: var(--line);
  padding-top: 22px;
}

.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat + .stat {
  border-left: var(--line);
  padding-left: 20px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  opacity: 0.5;
}


/* ── ARCHIVE ──────────────────────────────────────────────── */
/* ── SERVICES SECTION ────────────────────────────────────── */
.section--services {
  position: relative;
  background: var(--black);
  color: var(--white);
  border-bottom: 1px solid rgba(244,242,238,0.1);
  padding-bottom: 42px;
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  border-bottom: 1px solid rgba(244,242,238,0.1);
}

.services-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 40px 40px 56px 24px;
  justify-content: flex-start;
}

.services-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 8vw, 11rem);
  line-height: 0.85;
  letter-spacing: 0.02em;
  color: var(--white);
}

.services-body {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.72;
  color: rgba(244,242,238,0.65);
  max-width: 58ch;
}

.services-right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 32px 48px;
  justify-content: flex-start;
  align-items: center;
}

.services-grid-label {
  display: block;
  margin-bottom: 8px;
  align-self: center;
}

.services-brickwall-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 10px;
  align-self: center;
  text-align: center;
}

.services-brickwall {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
}

.brickwall-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.brickwall-row--offset {
  padding-left: 0;
  margin-left: 20px;
}

.service-tag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: clamp(1.22rem, 1.85vw, 1.64rem);
  letter-spacing: 0.08em;
  color: rgba(244,242,238,0.5);
  padding: 14px 24px;
  border: 1px solid rgba(244,242,238,0.12);
  margin: 5px;
  line-height: 1;
  white-space: nowrap;
  overflow: visible;
  transition: border-color 220ms cubic-bezier(0.22, 1, 0.36, 1),
              color 220ms cubic-bezier(0.22, 1, 0.36, 1),
              background-color 220ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-tag:hover,
.service-tag.is-expanded {
  color: var(--orange);
  border-color: var(--orange);
}

.service-tag-label {
  white-space: nowrap;
  line-height: 1;
}

.service-tag-desc {
  position: absolute;
  left: -1px;
  top: calc(100% - 1px);
  width: 260px;
  white-space: normal;
  word-break: break-word;
  z-index: 50;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  line-height: 1.65;
  color: rgba(244,242,238,0.88);
  border: 1px solid rgba(244,242,238,0.22);
  border-top: 2px solid var(--orange);
  background: #0c0c0c;
  padding: 12px 14px;
  text-align: center;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
              visibility 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-tag.is-expanded {
  background: rgba(244, 242, 238, 0.04);
  transform: translateY(-1px);
  z-index: 20;
}

.service-tag.is-expanded .service-tag-desc {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.services-scroll-cue-wrap {
  position: relative;
  z-index: 36;
  width: calc(100% / 2.4);
  display: flex;
  justify-content: center;
  margin-top: calc(-22px - 1cm);
  margin-bottom: -18px;
}

.services-scroll-cue {
  position: relative;
  z-index: 35;
  display: flex;
  width: fit-content;
  margin: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  min-height: 86px;
  padding: 16px 32px;
  overflow: hidden;
  border: 1px solid rgba(244,242,238,0.24);
  border-bottom: 1px solid rgba(12,12,12,0.4);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 12px 100%, 0 50%);
  background: radial-gradient(
    140% 180% at 50% 50%,
    rgba(236,233,226,0.96) 0%,
    rgba(220,216,208,0.9) 30%,
    rgba(177,173,165,0.88) 54%,
    rgba(101,99,94,0.92) 76%,
    rgba(20,20,19,0.98) 100%
  );
  color: var(--white);
  box-shadow:
    0 1px 0 rgba(244,242,238,0.14),
    0 8px 14px rgba(12,12,12,0.16),
    0 18px 24px rgba(12,12,12,0.18),
    0 28px 36px rgba(12,12,12,0.12);
  animation: services-flow-cue-bob 3.5s cubic-bezier(0.22, 1, 0.36, 1) infinite, services-flow-cue-breathe 6.4s ease-in-out infinite;
}

.services-scroll-cue::before {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  top: 10px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,77,0,0.58) 16%, rgba(255,77,0,0.85) 50%, rgba(255,77,0,0.58) 84%, transparent 100%);
  animation: services-flow-cue-line 4.6s ease-in-out infinite;
}

.services-scroll-cue::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 10px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,77,0,0.58) 16%, rgba(255,77,0,0.85) 50%, rgba(255,77,0,0.58) 84%, transparent 100%);
  animation: services-flow-cue-line 4.6s ease-in-out infinite;
  animation-delay: 320ms;
}

.services-scroll-cue .vt {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.95vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 0.9;
  display: block;
  color: var(--orange);
  opacity: 1;
  text-shadow: none;
}

.services-scroll-label {
  display: inline-block;
  text-align: center;
  margin: 0;
}

.services-scroll-cue:hover {
  color: var(--orange);
  border-color: rgba(255,77,0,0.85);
}

.services-scroll-arrow {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--orange);
  line-height: 1;
  text-shadow: none;
  animation: none;
}

@keyframes services-flow-cue-bob {
  0%, 100% { transform: translateY(0); }
  42% { transform: translateY(-3px); }
  70% { transform: translateY(-1px); }
}

@keyframes services-flow-cue-breathe {
  0%, 100% {
    box-shadow:
      0 1px 0 rgba(244,242,238,0.14),
      0 8px 14px rgba(12,12,12,0.16),
      0 18px 24px rgba(12,12,12,0.18),
      0 28px 36px rgba(12,12,12,0.12);
  }
  50% {
    box-shadow:
      0 1px 0 rgba(244,242,238,0.18),
      0 10px 16px rgba(12,12,12,0.18),
      0 22px 30px rgba(12,12,12,0.2),
      0 34px 44px rgba(12,12,12,0.14);
  }
}

@keyframes services-flow-cue-line {
  0%, 100% { opacity: 0.48; }
  50% { opacity: 0.9; }
}

.section--archive {
  background: var(--white);
}

.archive-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 65vh;
  border-bottom: var(--line);
}

.archive-index {
  border-right: var(--line);
}

.archive-item {
  display: grid;
  grid-template-columns: 54px 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: var(--line);
}

.archive-item:hover,
.archive-item:focus {
  background: var(--black);
  color: var(--white);
}

.archive-item:hover .vt,
.archive-item:focus .vt {
  color: var(--orange);
  opacity: 1;
}

.archive-outro-box {
  display: flex;
  min-height: 170px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 24px;
  border-bottom: var(--line);
}

.archive-outro-kicker {
  color: var(--black);
  background-color: var(--orange);
  display: inline-block;
  opacity: 1;
  font-weight: 700;
}

.archive-outro-btn {
  align-self: flex-start;
}

.item-num { display: block; }

.item-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.item-client {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
}

.item-meta { font-size: 11px; }

.item-tag {
  font-size: 11px;
  white-space: nowrap;
  opacity: 0.5;
}

.item-year {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  opacity: 0.35;
  white-space: nowrap;
}

/* Preview column */
.archive-preview-col {
  position: relative;
  overflow: hidden;
}

.archive-preview-default {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.archive-preview-panel {
  display: none;           /* Snaps in at 0ms — no fade */
  position: absolute;
  inset: 0;
  flex-direction: column;
}

.archive-preview-panel.is-visible {
  display: flex;
}

.preview-img {
  flex: 1;
  min-height: 300px;
}

.preview-caption {
  padding: 10px 16px;
  border-top: var(--line);
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ── PREVIEW CAROUSEL (001) ──────────────────────────────── */
.preview-carousel {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translateX(0);
  transition: transform 0ms; /* snap — no slide */
}

.carousel-slide {
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  background: rgba(244,242,238,0.3);
  border: 1px solid rgba(244,242,238,0.55);
}

.carousel-dot.is-active {
  background: var(--orange);
  border-color: var(--orange);
}

/* ── PREVIEW VIDEO (002) ─────────────────────────────────── */
.preview-video-wrap {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.preview-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ── ROSTER ───────────────────────────────────────────────── */
.section--roster { background: var(--white); }


/* ── HOW IT WORKS ────────────────────────────────────────── */
.how-it-works {
  background: var(--white);
  padding: 48px 28px 30px;
}

.how-it-works__heading {
  display: block;
  padding: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  letter-spacing: 0.06em;
  line-height: 0.9;
  color: var(--black);
}

.how-it-works__steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 24px;
}

.how-it-works__steps::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background:
    linear-gradient(var(--orange), var(--orange)),
    repeating-linear-gradient(
      90deg,
      rgba(244,242,238,0.15) 0 10px,
      rgba(244,242,238,0.95) 10px 22px,
      rgba(244,242,238,0.15) 22px 34px
    ),
    linear-gradient(90deg, transparent 0%, rgba(244,242,238,0.9) 14%, rgba(244,242,238,0.9) 86%, transparent 100%);
  background-size: 100% 100%, 170px 2px, 100% 1px;
  background-position: 0 0, 0 50%, 0 50%;
  background-repeat: no-repeat, repeat-x, no-repeat;
}

.hiw-step {
  position: relative;
  color: var(--white);
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
  cursor: default;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,0.2));
  animation: hiw-flow 5.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.hiw-step::before {
  position: absolute;
  font-family: var(--font-pixel);
  font-size: 0.84rem;
  letter-spacing: 0.13em;
  color: var(--orange);
  white-space: nowrap;
  z-index: 25;
  pointer-events: none;
  top: -14px;
  left: 8px;
}

.hiw-step:nth-child(1)::before {
  content: 'STEP.01';
}

.hiw-step:nth-child(2)::before {
  content: 'STEP.02';
  left: 12px;
}

.hiw-step:nth-child(3)::before {
  content: 'STEP.03';
  left: 16px;
}

.hiw-step__front,
.hiw-step__back {
  position: absolute;
  inset: 0 5%;
  padding: 22px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: opacity 200ms ease, transform 200ms ease;
  clip-path: polygon(0% 0%, 84% 0%, 100% 50%, 84% 100%, 0% 100%);
}

.hiw-step__front {
  background: var(--black);
  box-shadow:
    inset 0 0 0 1px rgba(12,12,12,0.6),
    0 12px 22px rgba(12,12,12,0.24),
    0 2px 0 rgba(244,242,238,0.06);
  opacity: 1;
  transform: translateY(0);
}

.hiw-step__back {
  background: var(--orange);
  box-shadow:
    inset 0 0 0 1px rgba(12,12,12,0.4),
    0 14px 24px rgba(12,12,12,0.28),
    0 2px 0 rgba(244,242,238,0.12);
  opacity: 0;
  transform: translateY(6px);
  justify-content: center;
}

.hiw-step:hover .hiw-step__front {
  opacity: 0;
  transform: translateY(-6px);
}
.hiw-step:hover .hiw-step__back {
  opacity: 1;
  transform: translateY(0);
}

.hiw-step__num {
  display: none;
}

.hiw-step__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.6vw, 4rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--white);
  max-width: 10ch;
  text-wrap: balance;
}

.hiw-step__back p {
  font-family: var(--font-display);
  font-size: clamp(0.98rem, 1.35vw, 1.24rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.028em;
  color: var(--black);
  width: min(88%, 18ch);
  min-height: 4.9em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: anywhere;
  margin: 0;
  text-align: center;
  transform: translateX(-0.6cm);
}

/* Micro-normalization per copy length so all three blocks sit on a similar rhythm. */
.hiw-step:nth-child(1) .hiw-step__back p { width: min(89%, 18.5ch); }
.hiw-step:nth-child(2) .hiw-step__back p { width: min(88%, 18ch); }
.hiw-step:nth-child(3) .hiw-step__back p { width: min(87%, 17.5ch); }

.hiw-step:nth-child(2) { animation-delay: 120ms; }
.hiw-step:nth-child(3) { animation-delay: 240ms; }

@keyframes hiw-flow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

/* ── TIER HERO STRIP ──────────────────────────────────────── */
/* Three visual headers — big number, name, CTA.
   Detail comparison lives in the table below.                */
.tier-hero-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: var(--line);
}

.tier-hero {
  padding: 36px 28px;
  border-right: var(--line);
  display: flex;
  flex-direction: column;
}
.tier-hero:last-child { border-right: none; }

/* ELEVATED — dark background */
.tier-hero--02 {
  background: var(--black);
  color: var(--white);
}
.tier-hero--02 .vt              { color: var(--silver); opacity: 0.45; }
.tier-hero--02 .tier-hero-hours { border-color: rgba(244,242,238,0.14); }
.tier-hero--02 .tier-hrs-label  { color: rgba(244,242,238,0.35); }
.tier-hero--02 .tier-hero-price { color: rgba(244,242,238,0.35); }
.tier-hero--02 .pkg-btn         { border-color: rgba(244,242,238,0.2); color: var(--white); }
.tier-hero--02 .pkg-btn:hover   { background: var(--orange); border-color: var(--orange); color: var(--white); }

.tier-hero-top { margin-bottom: 24px; }

.tier-hero-name {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.2vw, 5.5rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  margin-top: 6px;
}
.tier-hero-name--orange { color: var(--orange); }

.tier-hero-hours {
  display: flex;
  align-items: baseline;
  gap: 14px;
  border-top: var(--line);
  border-bottom: var(--line);
  padding: 20px 0;
  margin-bottom: 24px;
}

.tier-big-num {
  font-family: var(--font-display);
  font-size: clamp(5rem, 8.5vw, 10rem);
  line-height: 0.8;
  color: var(--black);
}
.tier-big-num--orange { color: var(--orange); }

.tier-hrs-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.1;
  letter-spacing: 0.12em;
  opacity: 0.38;
}

.tier-hero-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: auto;
}

.tier-hero-price {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  opacity: 0.45;
}

/* Package / tier buttons */
.pkg-btn {
  display: block;
  width: 100%;
  padding: 13px 20px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-align: center;
  border: var(--line);
  color: var(--black);
  background: transparent;
}
.pkg-btn:hover         { background: var(--black); color: var(--white); }
.pkg-btn--orange       { color: var(--orange); border-color: var(--orange); }
.pkg-btn--orange:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }


/* ── ROSTER COMPARISON TABLE ─────────────────────────────── */
/* Feature-first layout: full-width label + 3-col value row.
   rc-vals uses 1fr 1fr 1fr — mirrors tier-hero-strip exactly. */
.roster-comparison { border-bottom: var(--line); }

/* Breakdown bridge — orange top rule + column header strip */
.breakdown-bridge {
  border-top: 3px solid var(--orange);
  border-bottom: var(--line);
}

.bridge-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 13px 28px;
  border-bottom: var(--line);
}

.bridge-rule {
  flex: 1;
  height: 1px;
  background: var(--black);
  opacity: 0.12;
}

/* Column headers — 1fr 1fr 1fr matches tier-hero-strip exactly */
.rc-hdr-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.rc-hdr {
  padding: 10px 28px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  opacity: 0.28;
  border-right: var(--line-dim);
}
.rc-hdr:last-child { border-right: none; }

/* ELEVATED header — dark column continuation */
.rc-hdr--02 {
  background: var(--black);
  color: var(--orange);
  opacity: 1;
  border-right-color: rgba(244,242,238,0.08);
}

/* Feature group: full-width label + 3-col value row */
.rc-group { border-bottom: var(--line-dim); }
.rc-group:last-child { border-bottom: none; }

.rc-feat {
  padding: 10px 28px;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  letter-spacing: 0.14em;
  opacity: 0.42;
  border-bottom: var(--line-dim);
  background: rgba(12, 12, 12, 0.04);
  line-height: 1;
}

.rc-vals {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.rc-val {
  padding: 18px 28px;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 2rem);
  letter-spacing: 0.06em;
  line-height: 1;
  border-right: var(--line-dim);
  display: flex;
  align-items: center;
  color: var(--black);
}
.rc-val:last-child { border-right: none; }

/* ELEVATED column — dark to match tier hero */
.rc-val--02 {
  background: var(--black);
  color: var(--white);
  border-right-color: rgba(244,242,238,0.08);
}

.roster-disclaimer-bar {
  padding: 10px 24px;
  border-bottom: var(--line);
  text-align: center;
}


/* ── CONTACT ──────────────────────────────────────────────── */
.section--contact {
  background: var(--black);
  color: var(--white);
}

.contact-large {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 14vw, 16rem);
  line-height: 0.82;
  letter-spacing: 0.02em;
  color: var(--white);
}

.orange-text { color: var(--orange); }

.contact-form-wrapper {
  padding: 36px 24px;
  border-bottom: var(--line-white);
}

.form-label-bar {
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: var(--line-white);
}

/* ── INSRT FORM FIELDS ───────────────────────────────────── */
.form-honeypot {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 24px;
  border-bottom: var(--line-white);
  border-right: var(--line-white);
}

.form-group:nth-child(even) {
  border-right: none;
}

.form-group--full {
  grid-column: 1 / -1;
  border-right: none;
  border-bottom: none;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
}

.form-req {
  color: var(--orange);
}

.form-group input,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(244, 242, 238, 0.18);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  padding: 8px 0;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(244, 242, 238, 0.18);
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--orange);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.form-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 24px 28px;
  gap: 18px;
  flex-wrap: wrap;
}

.form-submit {
  background: transparent !important;
  color: var(--orange) !important;
  border: 1px solid var(--orange) !important;
  padding: 14px 36px !important;
  font-size: clamp(1.3rem, 2.2vw, 2rem) !important;
  letter-spacing: 0.14em;
  transition: background 0.15s, color 0.15s;
}

.form-submit:hover {
  background: var(--orange) !important;
  color: var(--black) !important;
}

.form-notice {
  font-size: 0.58rem;
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group,
  .form-group:nth-child(even) {
    border-right: none;
  }
  .form-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact-alt {
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: var(--line-white);
}

.contact-alt-text {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  opacity: 0.5;
}


/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  color: var(--white);
  border-top: var(--line-orange);
  position: relative;
  overflow: hidden;
}

/* Large ghost text as decorative background — Y2K typographic texture */
.footer-bg-text {
  position: absolute;
  bottom: -0.1em;
  right: -0.02em;
  font-family: var(--font-display);
  font-size: clamp(10rem, 24vw, 28rem);
  line-height: 0.8;
  color: rgba(244,242,238,0.025);
  pointer-events: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 40px 24px;
  gap: 24px;
  border-bottom: var(--line-white);
  position: relative;
  z-index: 1;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: flex-start;
}

.footer-logo-img {
  width: 160px;
  height: auto;
  display: block;
  opacity: 0.92;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: rgba(244,242,238,0.5);
}
.footer-nav a:hover { color: var(--orange); }

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 14px 24px;
  position: relative;
  z-index: 1;
}


/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-bio-grid {
    grid-template-columns: 1fr;
  }
  .about-img { min-height: 280px; }
  /* Comparison table: tighter padding on tablet */
  .rc-feat { padding: 8px 18px; }
  .rc-val  { padding: 14px 18px; }
  .rc-hdr  { padding: 10px 18px; font-size: 0.78rem; }
}

@media (max-width: 860px) {
  /* Hero: stack left/right vertically */
  .hero-body-split { grid-template-columns: 1fr; }
  .hero-right { border-left: none; border-top: var(--line); min-height: 400px; }
  .hero-statement-grid { grid-template-columns: 1fr; gap: 20px; }
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-img-col { border-right: none; border-bottom: var(--line); }
  .editorial-img { min-height: 320px; }
  .editorial-text-col { padding: 32px 24px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-label-col { border-right: none; border-bottom: var(--line); padding: 20px 24px; flex-direction: row; gap: 24px; }
  .how-it-works { padding: 42px 24px 24px; }
  .how-it-works__steps {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .hiw-step { min-height: 190px; animation: none; }
  .hiw-step::before { top: -12px; left: 10px; }
  .hiw-step__back p {
    font-size: clamp(0.92rem, 2.1vw, 1.1rem);
    width: min(88%, 17ch);
    min-height: 4.8em;
    transform: translateX(-0.36cm);
  }
  .section-header { grid-template-columns: 1fr; gap: 20px; }
  .archive-container { grid-template-columns: 1fr; }
  .archive-preview-col { display: none; }
  /* Tier heroes stack vertically on tablet/mobile */
  .tier-hero-strip { grid-template-columns: 1fr; }
  .tier-hero { border-right: none; border-bottom: var(--line); }
  /* Comparison table: compress on mobile */
  .rc-feat { padding: 6px 14px; font-size: 0.9rem; }
  .rc-val  { padding: 10px 14px; font-size: clamp(1.1rem, 4vw, 1.5rem); }
  .rc-hdr  { padding: 8px 14px; font-size: 0.72rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-meta { grid-column: 1 / -1; align-items: flex-start; }
  .nav-meta { display: none; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-bar { grid-template-columns: 1fr; }
  .meta-strip { flex-direction: column; gap: 4px; }
  .hero-title { font-size: clamp(4rem, 18vw, 8rem); }
  .hero-subtitle { font-size: clamp(2rem, 9vw, 4.5rem); }
  .hero-right { min-height: 300px; }
  .how-it-works { padding: 36px 18px 20px; }
  .how-it-works__heading { font-size: clamp(2rem, 10vw, 3rem); }
  .hiw-step { min-height: 176px; }
  .hiw-step__front,
  .hiw-step__back { inset: 0 4%; padding: 20px 24px; }
  .hiw-step__title { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  .hiw-step__back p {
    font-size: clamp(0.88rem, 3.2vw, 1rem);
    width: min(89%, 16ch);
    min-height: 4.6em;
    transform: translateX(-0.2cm);
  }
  .archive-item { grid-template-columns: 44px 1fr; }
  .item-tag, .item-year { display: none; }
  .about-stats { flex-direction: column; }
  .stat { border-left: none; padding-left: 0; border-top: var(--line); padding-top: 16px; }
  .stat:first-child { border-top: none; padding-top: 0; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-meta { align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .contact-large { font-size: clamp(3.5rem, 14vw, 7rem); }
}
