/* ============================================================
   ORBIIT — Stylesheet v2
   Revised for proper £10k visual weight & typography scale
   ============================================================ */

/* Google Fonts loaded via <link> in HTML for performance — no @import */

/* ── Custom Properties ── */
:root {
  --ink:        #0A0A0A;
  --paper:      #FAFAF9;
  --red:        #E8001D;
  --grey:       #6B7280;
  --grey-light: rgba(10,10,10,0.07);
  --grey-mid:   rgba(10,10,10,0.5);

  --font-sans: 'Hanken Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snappy: cubic-bezier(0.85, 0, 0.15, 1);

  --nav-h: 80px;
}

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

html {
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: auto;
}

body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}

body.no-scroll { overflow: hidden; }

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: none; font-family: var(--font-sans); border: none; background: none; }
ul, ol { list-style: none; }
::selection { background: var(--red); color: #fff; }

/* ── Custom Cursor — two element system ── */
/* Dot: precise, always red, always visible */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.15s var(--ease-out),
              height 0.15s var(--ease-out),
              opacity 0.2s;
  will-change: transform;
}
.cursor-dot.hovering { width: 5px; height: 5px; opacity: 0.6; }

/* Ring: lags behind, adapts to background */
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-out),
              height 0.35s var(--ease-out),
              border-color 0.25s,
              background-color 0.25s;
  will-change: transform;
}
/* On dark backgrounds — ring becomes white */
.cursor-ring.on-dark {
  border-color: rgba(250,250,249,0.75);
}
/* On hover over interactive elements */
.cursor-ring.hovering {
  width: 56px; height: 56px;
  border-color: var(--red);
  background: rgba(232,0,29,0.06);
}
.cursor-ring.on-dark.hovering {
  border-color: var(--red);
  background: rgba(232,0,29,0.08);
}

/* ── Loader ── */
.loader {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
}
.loader__logo  { opacity: 0; }
.loader__bar   {
  width: 1px; height: 0;
  background: rgba(250,250,249,0.3);
  transition: height 0.7s var(--ease-out);
}
.loader__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
  opacity: 0;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  z-index: 100;
  transition: background 0.5s var(--ease-out), border-color 0.5s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: var(--paper);
  border-color: var(--grey-light);
}
.nav.scrolled .nav__link  { color: var(--ink); }
.nav.scrolled .nav__cta   { border-color: var(--ink); color: var(--ink); }
.nav.scrolled .nav__hamburger span { background: var(--ink); }
/* Logo SVG uses currentColor — switch to dark on white nav */
.nav.scrolled .nav__logo  { color: var(--ink); }

.nav--dark .nav__link   { color: var(--paper); }
.nav--dark .nav__cta    { border-color: rgba(250,250,249,0.35); color: var(--paper); }
.nav--dark .nav__hamburger span { background: var(--paper); }
/* Logo SVG uses currentColor — white on dark nav */
.nav--dark .nav__logo   { color: var(--paper); }

.nav__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 101;
  flex-shrink: 0;
  color: var(--paper); /* default white; overridden by .scrolled and .nav--dark */
  transition: color 0.5s var(--ease-out);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__link {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.2s, opacity 0.2s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width 0.3s var(--ease-out);
}
.nav__link:hover::after { width: 100%; }

.nav__cta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid rgba(250,250,249,0.35);
  padding: 12px 24px;
  transition: background 0.25s var(--ease-out), color 0.25s, border-color 0.4s;
}
.nav__cta:hover { background: var(--red); border-color: var(--red); color: #fff !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: none;
  z-index: 101;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 28px; height: 1.5px;
  background: var(--paper);
  transition: transform 0.4s var(--ease-out), opacity 0.3s, background 0.3s;
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Mobile Overlay ── */
.nav-overlay {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.nav-overlay.active { pointer-events: all; opacity: 1; }

.nav-overlay__links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 56px; }

.nav-overlay__link {
  font-size: clamp(40px, 9vw, 80px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--paper);
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), color 0.2s;
  display: inline-block;
}
.nav-overlay.active .nav-overlay__link { opacity: 1; transform: translateY(0); }
.nav-overlay.active .nav-overlay__link:nth-child(1) { transition-delay: 0.05s; }
.nav-overlay.active .nav-overlay__link:nth-child(2) { transition-delay: 0.10s; }
.nav-overlay.active .nav-overlay__link:nth-child(3) { transition-delay: 0.15s; }
.nav-overlay.active .nav-overlay__link:nth-child(4) { transition-delay: 0.20s; }
.nav-overlay.active .nav-overlay__link:nth-child(5) { transition-delay: 0.25s; }
.nav-overlay__link:hover { color: var(--red); }

.nav-overlay__footer {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ── Layout ── */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  padding: 18px 32px;
  border: 1px solid currentColor;
  transition: background 0.25s var(--ease-out), color 0.25s, border-color 0.25s, transform 0.2s var(--ease-out);
  cursor: none;
}
.btn:hover { transform: translateY(-2px); }
.btn__arrow { transition: transform 0.25s var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(5px); }

.btn--light { color: var(--paper); border-color: rgba(250,250,249,0.35); }
.btn--light:hover { background: var(--red); border-color: var(--red); color: #fff; }

.btn--dark { color: var(--ink); border-color: var(--ink); }
.btn--dark:hover { background: var(--ink); color: var(--paper); }

.btn--red { color: #fff; background: var(--red); border-color: var(--red); }
.btn--red:hover { background: #c80019; border-color: #c80019; }

/* ── Section Label ── */
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 48px;
}

/* ── Reveal animations ── */
.reveal { overflow: hidden; }
.reveal__inner { transform: translateY(105%); display: block; }
.fade-up { opacity: 0; transform: translateY(48px); }
.char { display: inline-block; transform: translateY(110%); }
.word { display: inline-block; white-space: nowrap; overflow: hidden; vertical-align: bottom; }

/* ──────────────────────────────────────────
   HERO
────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  grid-template-rows: 1fr auto;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.hero__main {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px 64px 0;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 32px;
  opacity: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--red);
}

/* THE BIG HEADLINE */
.hero__headline {
  font-size: clamp(96px, 14vw, 220px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.88;
  color: var(--paper);
  margin-bottom: 0;
}

/* Bottom strip */
.hero__strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid rgba(250,250,249,0.1);
  margin-top: 80px;
}

.hero__strip-cell {
  padding: 32px 64px;
  border-right: 1px solid rgba(250,250,249,0.1);
  display: flex;
  align-items: center;
}
.hero__strip-cell:last-child { border-right: none; justify-content: flex-end; }

.hero__sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(250,250,249,0.45);
  max-width: 340px;
  opacity: 0;
}

.hero__location {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,250,249,0.3);
}

.hero__cta { opacity: 0; }

/* Star field */
.hero__stars { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.star {
  position: absolute;
  width: 1px; height: 1px;
  background: var(--paper);
  border-radius: 50%;
  animation: star-twinkle var(--duration, 3s) ease-in-out infinite var(--delay, 0s);
}
@keyframes star-twinkle {
  0%, 100% { opacity: 0.08; }
  50% { opacity: 0.5; }
}

/* Orbit rings */
.hero__orbit {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 28vw, 460px);
  height: clamp(280px, 28vw, 460px);
  pointer-events: none;
  opacity: 0.07;
}
.hero__orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--paper);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.hero__orbit-ring:nth-child(1) { width: 100%; height: 100%; animation: orbit-pulse 5s ease-in-out infinite; }
.hero__orbit-ring:nth-child(2) { width: 65%; height: 65%; animation: orbit-pulse 5s ease-in-out infinite 1s; }
.hero__orbit-ring:nth-child(3) { width: 30%; height: 30%; animation: orbit-pulse 5s ease-in-out infinite 2s; }
@keyframes orbit-pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%,-50%) scale(1.03); }
}

/* Scroll indicator — vertical, left-edge, above the strip */
.hero__scroll {
  position: absolute;
  left: 32px;
  bottom: 160px;    /* clear of the strip */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  z-index: 2;
}
.hero__scroll-line {
  width: 1px; height: 72px;
  background: rgba(250,250,249,0.1);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--red);
  animation: scroll-slide 2.2s ease-in-out infinite 1.5s;
}
@keyframes scroll-slide { 0% { top: -100%; } 100% { top: 100%; } }
.hero__scroll-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,250,249,0.25);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ── Marquee ── */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  background: var(--red);
  padding: 18px 0;
  border-top: none;
}
.marquee__track {
  display: inline-flex;
  animation: marquee-scroll 22s linear infinite;
}
.marquee__item {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  padding: 0 40px;
}
.marquee__dot { color: rgba(255,255,255,0.4); padding: 0 4px; }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ──────────────────────────────────────────
   SECTIONS
────────────────────────────────────────── */
.section { padding: 160px 0; }

.section--dark {
  background: var(--ink);
  color: var(--paper);
}
.section--dark .t-body     { color: rgba(250,250,249,0.45); }
.section--dark .section-label { color: var(--red); }
.section--dark .divider__bar  { background: rgba(250,250,249,0.1); }

.section--border-top { border-top: 1px solid var(--grey-light); }

/* ── Big section headings ── */
.section__headline {
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.section__sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--grey-mid);
  max-width: 520px;
}

/* ── Services Section ── */
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--grey-light);
  border: 1px solid var(--grey-light);
}

.service-card {
  background: var(--paper);
  padding: 56px 48px 64px;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  transition: background 0.25s;
}
.service-card:hover { background: #f5f4f1; }

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--red);
  transition: width 0.5s var(--ease-out);
}
.service-card:hover::after { width: 100%; }

.service-card__number {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 40px;
}

.service-card__title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.service-card__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--grey-mid);
  flex: 1;
}

.service-card__link {
  margin-top: 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s var(--ease-out), color 0.2s;
}
.service-card:hover .service-card__link { gap: 14px; color: var(--red); }

/* ── Manifesto / Dark statement ── */
.manifesto {
  padding: 160px 0;
}

.manifesto__big {
  font-size: clamp(64px, 8.5vw, 136px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--paper);
  max-width: 1000px;
}
.manifesto__big em { font-style: normal; color: var(--red); }

.manifesto__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid rgba(250,250,249,0.08);
}

.manifesto__body {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(250,250,249,0.5);
}

/* ── Process ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--grey-light);
  border: 1px solid var(--grey-light);
  margin-top: 80px;
}

.process-step {
  background: var(--paper);
  padding: 56px 44px 64px;
  position: relative;
  overflow: hidden;
}

.process-step__bg-num {
  position: absolute;
  top: -10px; right: 20px;
  font-size: 140px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: rgba(10,10,10,0.04);
  pointer-events: none;
  user-select: none;
}

.process-step__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 32px;
  display: block;
}

.process-step__title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.process-step__body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--grey-mid);
}

/* ── Work Grid ── */
.work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 2px;
}

/* First two cards span more height */
.work-card {
  aspect-ratio: 4/3;
  background: #111;
  position: relative;
  overflow: hidden;
}
.work-card:nth-child(1),
.work-card:nth-child(2) { aspect-ratio: 16/10; }

.work-card::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.015) 2px,
    rgba(255,255,255,0.015) 4px
  );
  z-index: 1;
}

.work-card__coming {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.work-card__coming span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,250,249,0.18);
  border: 1px solid rgba(250,250,249,0.08);
  padding: 10px 20px;
}

.work-card__inner {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  z-index: 3;
}
.work-card__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,250,249,0.3);
}

/* ──────────────────────────────────────────
   DIFFERENTIATORS GRID
────────────────────────────────────────── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--grey-light);
  border: 1px solid var(--grey-light);
  margin-top: 80px;
}

.diff-card {
  background: var(--paper);
  padding: 56px 48px 64px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}
.diff-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--red);
  transition: width 0.4s var(--ease-out);
}
.diff-card:hover::before { width: 100%; }
.diff-card:hover { background: #f7f6f4; }

.diff-card__icon {
  font-size: 32px;
  margin-bottom: 28px;
  display: block;
  line-height: 1;
}

.diff-card__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.diff-card__body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--grey-mid);
}

/* ──────────────────────────────────────────
   PRICING / VALUE SECTION
────────────────────────────────────────── */
.value-section {
  background: var(--ink);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}

.value-section__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.value-section__eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--red); }

.value-section__headline {
  font-size: clamp(48px, 6.5vw, 108px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--paper);
  margin-bottom: 0;
  max-width: 960px;
}
.value-section__headline em { font-style: normal; color: var(--red); }

.value-section__sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(250,250,249,0.5);
  max-width: 680px;
  margin-top: 40px;
}

.value-section__cta {
  margin-top: 72px;
}

.value-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(250,250,249,0.07);
  border-bottom: 1px solid rgba(250,250,249,0.07);
  margin-top: 80px;
}

.value-point {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 48px 48px 56px;
  border-right: 1px solid rgba(250,250,249,0.07);
}
.value-point:last-child { border-right: none; }

.value-point__icon {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 4px;
}

.value-point__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 20px;
  display: block;
}

.value-point__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 12px;
  line-height: 1.1;
}

.value-point__body {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(250,250,249,0.4);
}

/* ──────────────────────────────────────────
   INDUSTRIES
────────────────────────────────────────── */
.industries-section {
  padding: 160px 0;
  border-top: 1px solid var(--grey-light);
}

.industries-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}

.industries-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--grey);
  max-width: 440px;
  align-self: end;
}

.industries-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}

.industries-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--grey-light);
}

.industry-item {
  background: var(--paper);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: background 0.3s;
  cursor: none;
  outline: none;
}
.industry-item:hover  { background: #f5f4f2; }
.industry-item.active { background: #f0eeeb; }

.industry-item__icon {
  font-size: 13px;
  line-height: 1;
  color: var(--grey);
  flex-shrink: 0;
  margin-top: 3px;  /* align with first line of text */
  transition: color 0.25s, transform 0.35s var(--ease-out);
}
.industry-item:hover .industry-item__icon  { color: var(--ink); transform: translateX(3px); }
.industry-item.active .industry-item__icon { color: var(--red); transform: rotate(90deg); }

.industry-item__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.industry-item__name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  transition: color 0.2s;
}
.industry-item.active .industry-item__name { color: var(--ink); }

.industry-item__desc {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--grey);
  transition: max-height 0.5s var(--ease-out), opacity 0.35s, margin-top 0.35s var(--ease-out);
  margin-top: 0;
  margin: 0;
}
.industry-item.active .industry-item__desc {
  max-height: 200px;
  opacity: 1;
  margin-top: 10px;
}

.industry-item__sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ──────────────────────────────────────────
   FAQ
────────────────────────────────────────── */
.faq-section {
  padding: 160px 0;
  background: var(--ink);
  color: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 120px;
  align-items: start;
  margin-top: 80px;
}

.faq-list,
.faq-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-top: 1px solid rgba(250,250,249,0.07);
}
.faq-item:last-child { border-bottom: 1px solid rgba(250,250,249,0.07); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--paper);
  line-height: 1.2;
  transition: color 0.2s;
  font-family: var(--font-sans);
  background: none;
  border: none;
}
.faq-question:hover { color: rgba(250,250,249,0.65); cursor: none; }

.faq-question__icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-out);
  line-height: 1;
}
.faq-item.open .faq-question__icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}
.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer__inner,
.faq-answer p {
  padding-bottom: 28px;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(250,250,249,0.45);
  margin: 0;
}

.faq-aside {
  position: sticky;
  top: 120px;
}

.faq-aside__headline {
  font-size: clamp(40px, 4.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--paper);
  margin-bottom: 32px;
}
.faq-aside__headline em { font-style: normal; color: var(--red); }

.faq-aside__sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(250,250,249,0.4);
  margin-bottom: 40px;
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--ink);
  padding: 160px 64px;
  position: relative;
  overflow: hidden;
}

.cta-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

.cta-banner__headline {
  font-size: clamp(56px, 7vw, 112px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--paper);
}
.cta-banner__headline em { font-style: normal; color: var(--red); }

/* ── Stats Row ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--grey-light);
  border-bottom: 1px solid var(--grey-light);
}
.stat-item {
  padding: 56px 64px;
  border-right: 1px solid var(--grey-light);
}
.stat-item:last-child { border-right: none; }

.stat-item__num {
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--ink);
}
.stat-item__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ── Footer ── */
.footer {
  background: var(--ink);
  padding: 100px 64px 56px;
  border-top: 1px solid rgba(250,250,249,0.05);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(250,250,249,0.06);
}

.footer__brand-tagline {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-top: 24px;
  line-height: 1.2;
}
.footer__brand-sub {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
}

.footer__col-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 28px;
  display: block;
}
.footer__links { display: flex; flex-direction: column; gap: 16px; }
.footer__link {
  font-size: 16px;
  font-weight: 500;
  color: rgba(250,250,249,0.6);
  transition: color 0.2s;
}
.footer__link:hover { color: var(--paper); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
}
.footer__copy {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(250,250,249,0.25);
}
.footer__legal { display: flex; gap: 28px; }
.footer__legal-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(250,250,249,0.25);
  transition: color 0.2s;
}
.footer__legal-link:hover { color: var(--paper); }

/* ──────────────────────────────────────────
   PAGE HERO (inner pages)
────────────────────────────────────────── */
.page-hero {
  min-height: 60vh;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 80px) 64px 100px;
  position: relative;
  overflow: hidden;
}
.page-hero__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
}
.page-hero__label::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--red);
}
.page-hero__headline {
  font-size: clamp(56px, 8vw, 128px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--paper);
  max-width: 900px;
}
.page-hero__sub {
  margin-top: 40px;
  font-size: 19px;
  line-height: 1.65;
  color: rgba(250,250,249,0.4);
  max-width: 520px;
  opacity: 0;
}

/* ──────────────────────────────────────────
   SERVICES PAGE
────────────────────────────────────────── */
.service-block {
  padding: 100px 0;
  border-bottom: 1px solid var(--grey-light);
}
.service-block:first-child { padding-top: 0; }

.service-block__header {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}

.service-block__title {
  font-size: clamp(48px, 5.5vw, 88px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.service-block__desc {
  font-size: 18px;
  line-height: 1.75;
  color: var(--grey-mid);
  padding-top: 16px;
}

.service-block__deliverables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--grey-light);
}

.deliverable-item {
  background: var(--paper);
  padding: 22px 28px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background 0.2s;
  line-height: 1.4;
}
.deliverable-item::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.deliverable-item:hover { background: #f2f1ee; }

/* ──────────────────────────────────────────
   ABOUT PAGE
────────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: start;
}
.about-story__body {
  font-size: 19px;
  line-height: 1.8;
  color: rgba(10,10,10,0.55);
}
.about-story__body p + p { margin-top: 24px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--grey-light);
  border: 1px solid var(--grey-light);
  margin-top: 80px;
}
.value-card {
  background: var(--paper);
  padding: 56px 48px 64px;
}
.value-card__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 24px;
  display: block;
}
.value-card__title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
}
.value-card__body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--grey-mid);
}

.location-callout {
  background: var(--ink);
  padding: 160px 64px;
  position: relative;
  overflow: hidden;
}
.location-callout__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.location-callout__label::before { content: ''; width: 28px; height: 1px; background: var(--red); }
.location-callout__headline {
  font-size: clamp(56px, 7.5vw, 120px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--paper);
  margin-bottom: 40px;
}
.location-callout__body {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(250,250,249,0.4);
  max-width: 520px;
}

/* ──────────────────────────────────────────
   BLOG PAGE
────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--grey-light);
  margin-top: 80px;
}
.blog-card {
  background: var(--paper);
  padding: 56px 48px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.2s;
  min-height: 360px;
}
.blog-card:hover { background: #f2f1ee; }

.blog-card__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}
.blog-card__title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.blog-card__excerpt {
  font-size: 16px;
  line-height: 1.7;
  color: var(--grey-mid);
  flex: 1;
}
.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--grey-light);
  margin-top: auto;
}
.blog-card__date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--grey);
}
.blog-card__read {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s var(--ease-out), color 0.2s;
}
.blog-card:hover .blog-card__read { gap: 14px; color: var(--red); }

/* Category filter buttons */
.filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 0;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--grey-light);
  background: none;
  color: var(--grey);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.filter-btn.active,
.filter-btn:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ──────────────────────────────────────────
   CONTACT PAGE
────────────────────────────────────────── */
.contact-page {
  background: var(--ink);
  min-height: 100vh;
  padding: calc(var(--nav-h) + 100px) 64px 140px;
  color: var(--paper);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 120px;
  align-items: start;
  margin-top: 80px;
}

.contact-info__headline {
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--paper);
  margin-bottom: 32px;
}
.contact-info__sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(250,250,249,0.4);
  margin-bottom: 64px;
}
.contact-detail { display: flex; flex-direction: column; gap: 0; }
.contact-detail__item {
  border-top: 1px solid rgba(250,250,249,0.07);
  padding: 24px 0;
}
.contact-detail__item:last-child { border-bottom: 1px solid rgba(250,250,249,0.07); }
.contact-detail__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}
.contact-detail__value {
  font-size: 17px;
  font-weight: 500;
  color: var(--paper);
  transition: color 0.2s;
}
a.contact-detail__value:hover { color: var(--red); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 2px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 18px 24px 0;
  background: rgba(250,250,249,0.03);
  border: 1px solid rgba(250,250,249,0.06);
  border-bottom: none;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(250,250,249,0.03);
  border: 1px solid rgba(250,250,249,0.06);
  border-top: none;
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 24px 20px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(250,250,249,0.18);
  background: rgba(250,250,249,0.06);
}
.form-field select option { background: #111; color: #fff; }
.form-field textarea { resize: none; height: 180px; line-height: 1.65; }
.form-submit { margin-top: 4px; }
.form-submit .btn { width: 100%; justify-content: space-between; font-size: 16px; padding: 22px 32px; }
.form-note {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,250,249,0.2);
}
.form-note a { color: rgba(250,250,249,0.35); text-decoration: underline; }

/* ──────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 1200px) {
  .container  { padding: 0 48px; }
  .nav        { padding: 0 48px; }
  .hero__main { padding: 60px 48px 0; }
  .hero__strip-cell { padding: 28px 48px; }
  .hero__scroll { left: 48px; }
  .cta-banner { padding: 120px 48px; }
  .footer     { padding: 80px 48px 48px; }
  .location-callout { padding: 120px 48px; }
  .contact-page { padding: calc(var(--nav-h) + 80px) 48px 120px; }
  .page-hero  { padding: calc(var(--nav-h) + 60px) 48px 80px; }

  .services-intro { grid-template-columns: 1fr; gap: 32px; }
  .service-block__header { grid-template-columns: 1fr; gap: 28px; }
  .process-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer__top   { grid-template-columns: 1fr 1fr; gap: 56px; }
}

@media (max-width: 900px) {
  .services-grid      { grid-template-columns: 1fr; }
  .manifesto__row     { grid-template-columns: 1fr; gap: 48px; }
  .about-story        { grid-template-columns: 1fr; gap: 64px; }
  .values-grid        { grid-template-columns: 1fr; }
  .contact-grid       { grid-template-columns: 1fr; gap: 64px; }
  .cta-banner__inner  { grid-template-columns: 1fr; gap: 48px; }
  .service-block__deliverables { grid-template-columns: repeat(2, 1fr); }
  .stats-row          { grid-template-columns: 1fr; }
  .stat-item          { border-right: none; border-bottom: 1px solid var(--grey-light); padding: 48px 64px; }
  .stat-item:last-child { border-bottom: none; }
  .blog-grid          { grid-template-columns: 1fr; }
  .diff-grid          { grid-template-columns: 1fr; }
  .value-section__grid { grid-template-columns: 1fr; }
  .value-point        { border-right: none; border-bottom: 1px solid rgba(250,250,249,0.07); }
  .value-point:last-child { border-bottom: none; }
  .industries-intro   { grid-template-columns: 1fr; gap: 32px; }
  .industries-header  { grid-template-columns: 1fr; gap: 32px; }
  .industries-list    { grid-template-columns: repeat(2, 1fr); }
  .faq-grid           { grid-template-columns: 1fr; gap: 64px; }
  .faq-aside          { position: static; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  .container  { padding: 0 24px; }
  .nav        { padding: 0 24px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav-overlay    { padding: 24px; justify-content: center; }

  .hero__main   { padding: 48px 24px 0; }
  .hero__headline { font-size: clamp(64px, 14vw, 96px); }
  .hero__strip  {
    grid-template-columns: 1fr;
    border-top: 1px solid rgba(250,250,249,0.1);
  }
  .hero__strip-cell {
    padding: 24px;
    border-right: none;
    border-bottom: 1px solid rgba(250,250,249,0.07);
  }
  .hero__strip-cell:last-child { border-bottom: none; }
  .hero__orbit  { display: none; }
  .hero__scroll { left: 24px; }
  .hero__sub    { max-width: 100%; }

  .section { padding: 100px 0; }

  .page-hero { padding: calc(var(--nav-h) + 48px) 24px 64px; min-height: 50vh; }
  .page-hero__headline { font-size: clamp(44px, 11vw, 72px); }

  .section-label { margin-bottom: 32px; }

  .services-grid  { grid-template-columns: 1fr; gap: 2px; }
  .service-card   { padding: 44px 32px 52px; min-height: auto; }
  .service-card__title { font-size: 22px; }

  .manifesto__big { font-size: clamp(48px, 11vw, 72px); }
  .manifesto__body { font-size: 17px; }

  .process-grid { grid-template-columns: 1fr; }
  .process-step { padding: 44px 32px 52px; }
  .process-step__bg-num { font-size: 100px; }
  .process-step__title { font-size: 22px; }

  .work-grid { grid-template-columns: 1fr; }

  .cta-banner { padding: 80px 24px; }
  .cta-banner__headline { font-size: clamp(40px, 10vw, 64px); }

  .footer { padding: 64px 24px 40px; }
  .footer__top { grid-template-columns: 1fr; gap: 48px; }
  .footer__bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
  .footer__brand-tagline { font-size: 22px; }

  .stat-item { padding: 40px 24px; }
  .stat-item__num { font-size: clamp(48px, 12vw, 72px); }

  .contact-page { padding: calc(var(--nav-h) + 48px) 24px 80px; }
  .contact-info__headline { font-size: clamp(40px, 10vw, 64px); }
  .contact-grid { gap: 48px; margin-top: 48px; }
  .form-row { grid-template-columns: 1fr; }

  .location-callout { padding: 80px 24px; }
  .location-callout__headline { font-size: clamp(44px, 11vw, 72px); }

  .values-grid  { grid-template-columns: 1fr; }
  .value-card   { padding: 44px 32px 52px; }

  .blog-card    { padding: 40px 28px 36px; min-height: auto; }
  .blog-card__title { font-size: 22px; }

  .service-block { padding: 72px 0; }
  .service-block__title { font-size: clamp(36px, 9vw, 56px); }
  .service-block__desc { font-size: 16px; }
  .service-block__deliverables { grid-template-columns: 1fr; }

  .about-story__body { font-size: 17px; }

  body { cursor: auto; }
  button, a { cursor: pointer; }
  .cursor-dot, .cursor-ring { display: none; }
  .hero__scroll { display: none; }

  .industries-list    { grid-template-columns: 1fr 1fr; }
  .diff-card          { padding: 44px 32px 52px; }
  .value-section      { padding: 100px 0; }
  .value-point        { padding: 40px 32px 48px; flex-direction: row; }
  .industries-section { padding: 100px 0; }
  .faq-section        { padding: 100px 0; }
  .faq-question       { font-size: 16px; padding: 22px 0; }
  .faq-aside__headline { font-size: clamp(36px, 9vw, 56px); }
  .diff-grid          { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: clamp(52px, 14vw, 80px); }
  .manifesto__big { font-size: clamp(40px, 12vw, 60px); }
  .page-hero__headline { font-size: clamp(36px, 12vw, 56px); }
  .nav-overlay { padding: 24px 24px; }
  /* Industries 1-col on very small screens */
  .industries-list { grid-template-columns: 1fr; }
  /* Hero strip last cell left-aligned */
  .hero__strip-cell:last-child { justify-content: flex-start; }
  /* Hero eyebrow wraps cleanly */
  .hero__eyebrow { white-space: normal; flex-wrap: wrap; }
}

/* ──────────────────────────────────────────
   COOKIE BANNER
────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #111;
  border-top: 1px solid rgba(250,250,249,0.07);
  padding: 20px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 8000;
}
.cookie-banner__text {
  font-size: 14px;
  font-family: var(--font-sans);
  color: rgba(250,250,249,0.55);
  max-width: 600px;
  line-height: 1.55;
  margin: 0;
}
.cookie-banner__text a {
  color: var(--red);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner__btn-accept {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: opacity 0.2s;
}
.cookie-banner__btn-accept:hover { opacity: 0.85; }
.cookie-banner__btn-decline {
  background: none;
  color: rgba(250,250,249,0.45);
  border: 1px solid rgba(250,250,249,0.12);
  padding: 12px 24px;
  font-size: 13px;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-banner__btn-decline:hover {
  border-color: rgba(250,250,249,0.3);
  color: rgba(250,250,249,0.65);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 16px;
  }
  .cookie-banner__text {
    max-width: 100%;
    font-size: 13px;
  }
  .cookie-banner__actions {
    width: 100%;
  }
  .cookie-banner__btn-accept,
  .cookie-banner__btn-decline {
    flex: 1;
    text-align: center;
    min-height: 44px;
  }
}

/* ──────────────────────────────────────────
   ADDITIONAL MOBILE POLISH
────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Nav hamburger — larger tap target */
  .nav__hamburger {
    padding: 10px 6px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
  }
  /* Hero eyebrow wraps cleanly at dash */
  .hero__eyebrow {
    font-size: 10px;
    letter-spacing: 0.18em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100vw - 48px);
  }
  /* Hero strip — last cell (CTA) left-aligned on mobile */
  .hero__strip-cell:last-child {
    justify-content: flex-start;
  }
  /* Industries grid 2-col only if space allows */
  .industries-list { grid-template-columns: 1fr 1fr; }
  /* Value point icon sizing */
  .value-point__icon { font-size: 24px; }
  /* Section label smaller gap */
  .section-label { margin-bottom: 24px; }
  /* Diff card padding */
  .diff-card { padding: 36px 28px 44px; }
  /* Industry item padding */
  .industry-item { padding: 16px 0; }
  /* FAQ question tap target */
  .faq-question { min-height: 44px; }
  /* Form inputs taller tap target */
  input, select, textarea { min-height: 44px; }
  /* Contact detail items */
  .contact-detail__value { font-size: 16px; }
  /* Footer link spacing */
  .footer__links li + li { margin-top: 8px; }
}

/* ──────────────────────────────────────────
   ARTICLE PAGES
────────────────────────────────────────── */
.article-hero {
  background: var(--ink);
  padding: clamp(120px, 16vw, 200px) 0 clamp(60px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}
.article-hero__category {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.article-hero__category::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}
.article-hero__title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
  color: var(--paper);
  max-width: 820px;
  margin-bottom: 40px;
}
.article-hero__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.article-hero__meta-item {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,250,249,0.38);
}
.article-hero__meta-sep {
  color: rgba(250,250,249,0.2);
  font-size: 11px;
}
.article-body {
  background: var(--paper);
  padding: clamp(56px, 8vw, 96px) 0 clamp(80px, 10vw, 120px);
}
.article-content {
  max-width: 720px;
}
.article-content p {
  font-size: 18px;
  line-height: 1.78;
  color: rgba(10,10,10,0.72);
  margin-bottom: 1.5em;
}
.article-content h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 2.5em 0 0.7em;
  line-height: 1.12;
}
.article-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin: 2em 0 0.5em;
  line-height: 1.3;
}
.article-content ul,
.article-content ol {
  margin: 0 0 1.5em 1.6em;
}
.article-content li {
  font-size: 18px;
  line-height: 1.78;
  color: rgba(10,10,10,0.72);
  margin-bottom: 0.5em;
}
.article-content a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-content a:hover { opacity: 0.7; }
.article-content strong { color: var(--ink); font-weight: 700; }
.article-content blockquote {
  border-left: 3px solid var(--red);
  padding: 4px 0 4px 28px;
  margin: 2em 0;
}
.article-content blockquote p {
  font-size: 21px;
  font-weight: 600;
  color: var(--ink);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .article-content p,
  .article-content li { font-size: 17px; }
  .article-content blockquote p { font-size: 18px; }
}
