/* ============================================
   INDIANA STUDIO — V5
   Main Stylesheet
   Last updated: 2026
   ============================================ */

:root[data-theme="light"] {
  --ink: #0A0A0A;
  --paper: #EFEBE2;
  --paper-dark: #E5E0D4;
  --paper-soft: #F5F2EA;
  --steel: #2A2A28;
  --rule: rgba(10, 10, 10, 0.15);
  --rule-strong: rgba(10, 10, 10, 0.4);
  --accent: #C43A1C;
  --accent-dark: #8F2A14;
  --muted: rgba(10, 10, 10, 0.55);
}

:root[data-theme="dark"] {
  --ink: #EFEBE2;
  --paper: #0E0E0D;
  --paper-dark: #161614;
  --paper-soft: #1C1C1A;
  --steel: #D5D2C7;
  --rule: rgba(239, 235, 226, 0.18);
  --rule-strong: rgba(239, 235, 226, 0.4);
  --accent: #E85E3F;
  --accent-dark: #B8442A;
  --muted: rgba(239, 235, 226, 0.55);
}

:root {
  --font-display: 'Archivo', 'Helvetica Neue', sans-serif;
  --font-serif: 'Fraunces', 'Times New Roman', serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --pad: clamp(20px, 3vw, 48px);
  --nav-h: 68px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 32px);
}

body {
  font-family: var(--font-display);
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, currentColor 1px, transparent 0);
  background-size: 3px 3px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.03;
  color: var(--ink);
}

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

.mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

/* ============================================
   LOGO
   ============================================ */
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
  transition: opacity 0.2s;
}

.logo:hover { opacity: 0.7; }

.logo-name {
  display: inline-flex;
  align-items: center;
  gap: 1px;
}

.logo-name .i { letter-spacing: -0.05em; }

.logo-name .slash {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: currentColor;
  margin: 0 6px;
  transform: skewX(-18deg);
}

.logo-mark-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--accent);
  text-transform: none;
}

.logo-tm {
  font-family: var(--font-mono);
  font-size: 8px;
  opacity: 0.5;
  letter-spacing: 0;
  align-self: flex-start;
  margin-left: 1px;
}

.logo-large {
  font-size: 56px;
  letter-spacing: -0.055em;
  line-height: 0.92;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-large .logo-name .slash {
  width: 2px;
  height: 44px;
  margin: 0 14px;
}

.logo-large .logo-mark-serif { font-size: 48px; }
.logo-large .logo-tm { font-size: 12px; margin-top: 4px; }

/* ============================================
   AVAILABILITY BANNER
   ============================================ */
.availability-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  background: var(--accent);
  color: #EFEBE2;
  padding: 8px var(--pad);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.availability-banner .pulse-dot {
  width: 7px;
  height: 7px;
  background: #EFEBE2;
  border-radius: 50%;
  animation: banner-pulse 1.5s infinite;
}

@keyframes banner-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--pad);
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
  transition: padding 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  padding: 10px var(--pad);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 13px;
  font-weight: 500;
  position: relative;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.3s var(--ease-in-out);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--accent); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
}

.theme-toggle {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  transition: background 0.25s, color 0.25s;
  cursor: pointer;
}

.theme-toggle:hover {
  background: var(--ink);
  color: var(--paper);
}

.theme-toggle svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

[data-theme="light"] .theme-toggle .icon-moon { display: block; }
[data-theme="light"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }

.lang-toggle {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

.lang-toggle .active { font-weight: 700; opacity: 1; }

/* Mobile menu button */
.nav-mobile-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  padding: 4px;
}

.nav-mobile-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-mobile-toggle.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-mobile-toggle.open span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile-menu {
  position: fixed;
  top: calc(var(--nav-h) + 32px);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--paper);
  border-top: 1px solid var(--ink);
  z-index: 99;
  padding: 40px var(--pad);
  display: flex;
  flex-direction: column;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  overflow-y: auto;
}

.nav-mobile-menu.open { transform: translateX(0); }

.nav-mobile-menu a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  display: block;
}

.nav-mobile-menu a em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

.nav-mobile-menu .mobile-cta {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  padding: 10px 18px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.25s var(--ease-in-out);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ink);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateY(100%);
  transition: transform 0.3s var(--ease-in-out);
  z-index: 0;
}

.btn-primary:hover::before { transform: translateY(0); }
.btn-primary:hover {
  border-color: var(--accent);
  color: #EFEBE2;
}

.btn-primary > * { position: relative; z-index: 1; }

.btn-secondary {
  padding: 10px 18px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
}

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

.btn-large {
  padding: 16px 24px;
  font-size: 13px;
}

/* ============================================
   SVG ILLUSTRATIONS BASE
   ============================================ */
.brut-svg {
  color: var(--ink);
  fill: none;
  stroke: currentColor;
  width: 100%;
  height: 100%;
  display: block;
}

.brut-svg .fill { fill: currentColor; stroke: none; }
.brut-svg .accent { color: var(--accent); }
.brut-svg .hairline { stroke-width: 1; opacity: 0.5; }
.brut-svg .thick { stroke-width: 2; }
.brut-svg .dashed { stroke-dasharray: 3 3; opacity: 0.4; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 80px) var(--pad) 40px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  gap: 40px;
  z-index: 2;
}

.hero-top {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-top-item { grid-column: span 3; }
.hero-top-item span { display: block; }
.hero-top-item span:first-child { opacity: 0.5; }
.hero-top-item span:last-child {
  color: var(--ink);
  opacity: 1;
  margin-top: 4px;
  font-weight: 500;
}

.hero-left {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right {
  grid-column: 2;
  width: 320px;
  max-width: 40vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: stretch;
}

.hero-statement {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-statement::before {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--ink);
}

.hero-title h1 {
  font-size: clamp(44px, 8.5vw, 148px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.045em;
}

.hero-title h1 .italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.hero-title h1 .accent { color: var(--accent); }

.hero-title h1 .line {
  display: block;
  overflow: hidden;
}

.hero-title h1 .line span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: hero-reveal 0.9s var(--ease-out) forwards;
}

.hero-title h1 .line:nth-child(1) span { animation-delay: 0.1s; }
.hero-title h1 .line:nth-child(2) span { animation-delay: 0.25s; }
.hero-title h1 .line:nth-child(3) span { animation-delay: 0.4s; }

@keyframes hero-reveal {
  to { transform: translateY(0); opacity: 1; }
}

.hero-illus {
  aspect-ratio: 3/4;
  border: 1px solid var(--ink);
  background: var(--paper-soft);
  position: relative;
  overflow: hidden;
}

.hero-illus-caption {
  padding: 10px 14px;
  border-top: 1px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  opacity: 0.6;
}

/* V5 — SVG trait par trait animation */
.draw-svg path,
.draw-svg line,
.draw-svg rect,
.draw-svg circle,
.draw-svg polygon {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 2s var(--ease-out);
}

.draw-svg.drawn path,
.draw-svg.drawn line,
.draw-svg.drawn rect,
.draw-svg.drawn circle,
.draw-svg.drawn polygon {
  stroke-dashoffset: 0;
}

.hero-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  align-items: end;
  padding-top: 32px;
  border-top: 1px solid var(--ink);
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out) 0.8s both;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-intro {
  grid-column: 1 / span 7;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.4;
  font-weight: 400;
}

.hero-intro strong {
  font-weight: 600;
  background: var(--ink);
  color: var(--paper);
  padding: 1px 6px;
}

.hero-intro em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

.hero-cta {
  grid-column: 9 / span 4;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  text-align: right;
}

.hero-cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero-cta-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ============================================
   PROOF BAR
   ============================================ */
.proof-bar {
  padding: 40px var(--pad);
  border-bottom: 1px solid var(--ink);
  border-top: 1px solid var(--ink);
  background: var(--paper);
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
}

.proof-bar-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  max-width: 160px;
  line-height: 1.5;
}

.proof-bar-clients {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.proof-client {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
  opacity: 0.45;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.proof-client:hover { opacity: 1; }

.proof-client em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

/* ============================================
   V5 — SOBER MARQUEE
   ============================================ */
.marquee-sober {
  padding: 20px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.marquee-sober-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: scroll 45s linear infinite;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 32px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.marquee-sober-track span {
  display: inline-flex;
  align-items: center;
  gap: 48px;
}

.marquee-sober-track .dot {
  color: var(--accent);
  font-weight: 400;
  opacity: 0.6;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   METRICS (V5 — avec parallaxe)
   ============================================ */
.metrics {
  padding: 80px var(--pad);
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid var(--ink);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.metric {
  padding: 0 32px;
  border-right: 1px solid rgba(239, 235, 226, 0.15);
}

[data-theme="dark"] .metric {
  border-right-color: rgba(10, 10, 10, 0.15);
}

.metric:first-child { padding-left: 0; }
.metric:last-child { border-right: none; padding-right: 0; }

.metric-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 4px;
  transform: translateY(0);
  will-change: transform;
}

.metric-num .suffix {
  font-size: 0.4em;
  color: var(--accent);
  font-weight: 400;
  font-family: var(--font-serif);
  font-style: italic;
}

.metric-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  line-height: 1.5;
  max-width: 22ch;
}

/* ============================================
   HISTORY
   ============================================ */
.history {
  padding: 120px var(--pad);
  border-bottom: 1px solid var(--ink);
  position: relative;
  z-index: 2;
  background: var(--paper);
}

.history-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
}

.history-visual {
  grid-column: 1 / span 5;
  aspect-ratio: 4/5;
  background: var(--paper-soft);
  border: 1px solid var(--ink);
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
}

.history-visual-img {
  flex: 1;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.history-visual-footer {
  border-top: 1px solid var(--ink);
  padding: 14px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.history-visual-footer span:first-child { font-weight: 600; }
.history-visual-footer span:last-child { opacity: 0.5; }

.history-text { grid-column: 7 / span 6; }

.history-text-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.history-text-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--ink);
}

.history-text h2 {
  font-size: clamp(36px, 5vw, 80px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 48px;
}

.history-text h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

.history-text h2 .accent { color: var(--accent); }

.history-para {
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 24px;
  max-width: 58ch;
  opacity: 0.85;
}

.history-para:first-of-type {
  font-size: 18px;
  font-weight: 500;
  opacity: 1;
}

.history-para em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

.history-para strong { font-weight: 600; }

.history-pillars {
  margin-top: 64px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--ink);
}

.history-pillar {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
  transition: padding 0.3s;
}

.history-pillar:hover {
  padding-left: 12px;
  padding-right: 12px;
  background: var(--paper-soft);
}

.history-pillar-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  opacity: 0.5;
  padding-top: 4px;
  font-weight: 700;
}

.history-pillar-content h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.history-pillar-content h4 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

.history-pillar-content p {
  font-size: 13px;
  line-height: 1.55;
  opacity: 0.7;
  max-width: 54ch;
}

.history-pillar-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--ink);
  padding: 8px;
  flex-shrink: 0;
}

/* ============================================
   FOR WHO
   ============================================ */
.for-who {
  padding: 100px var(--pad);
  border-bottom: 1px solid var(--ink);
  background: var(--paper-dark);
  position: relative;
  z-index: 2;
}

.for-who-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.for-who-label {
  grid-column: 1 / span 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
}

.for-who-title {
  grid-column: 3 / span 9;
  font-size: clamp(28px, 4vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 64px;
}

.for-who-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

.for-who-title .strike {
  position: relative;
  opacity: 0.35;
}

.for-who-title .strike::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 55%;
  height: 3px;
  background: var(--accent);
}

.for-who-list {
  grid-column: 3 / span 9;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-strong);
}

.for-who-item {
  padding: 28px 24px 28px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: start;
  transition: background 0.3s;
}

.for-who-item:nth-child(odd) {
  border-right: 1px solid var(--rule);
  padding-right: 40px;
}

.for-who-item:nth-child(even) { padding-left: 40px; }

.for-who-item:hover { background: rgba(128, 128, 128, 0.05); }

.for-who-item-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--ink);
  padding: 8px;
}

.for-who-item-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.for-who-item-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

.for-who-item-desc {
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.7;
}

/* ============================================
   MATTERS
   ============================================ */
.matters {
  padding: 80px var(--pad);
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
  position: relative;
  z-index: 2;
}

.matters-intro {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-bottom: 60px;
  align-items: end;
}

.matters-label {
  grid-column: 1 / span 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.matters-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  vertical-align: middle;
  margin-right: 12px;
}

.matters-title {
  grid-column: 3 / span 10;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.035em;
}

.matters-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

.matters-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.matter {
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.3s;
  cursor: pointer;
}

.matter:hover { background: rgba(128, 128, 128, 0.05); }

.matter-visual {
  flex: 1;
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.matter-footer {
  padding: 10px 14px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

.matter-footer .name { font-weight: 700; }

/* ============================================
   SECTIONS
   ============================================ */
.section {
  position: relative;
  z-index: 2;
  padding: 100px var(--pad);
  border-bottom: 1px solid var(--ink);
}

.section-header {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-bottom: 80px;
  align-items: end;
}

.section-label {
  grid-column: 1 / span 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  vertical-align: middle;
  margin-right: 12px;
}

.section-title {
  grid-column: 3 / span 9;
  font-size: clamp(32px, 4.5vw, 72px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.035em;
}

.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.02em;
}

/* ============================================
   DISCIPLINES
   ============================================ */
.disciplines {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink);
}

.discipline {
  padding: 60px 48px 60px 0;
  border-right: 1px solid var(--ink);
  position: relative;
}

.discipline:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 48px;
}

.discipline-visual {
  aspect-ratio: 5/3;
  background: var(--paper-soft);
  border: 1px solid var(--ink);
  margin-bottom: 40px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.discipline-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  opacity: 0.7;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}

.discipline-num .tag {
  padding: 5px 10px;
  background: var(--ink);
  color: var(--paper);
  font-size: 10px;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.discipline-title {
  font-size: clamp(32px, 3.6vw, 56px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}

.discipline-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

.discipline-title .accent { color: var(--accent); }

.discipline-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  padding: 20px 0 20px 24px;
  border-left: 3px solid var(--accent);
  margin-bottom: 28px;
}

.discipline-desc {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.75;
  margin-bottom: 32px;
}

.discipline-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  margin-bottom: 28px;
}

.discipline-feature {
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.discipline-feature:nth-child(odd) { padding-right: 16px; }
.discipline-feature:nth-child(even) {
  padding-left: 16px;
  border-left: 1px solid var(--rule);
}

.discipline-feature .plus {
  color: var(--accent);
  font-weight: 700;
}

/* ============================================
   WORKFLOW
   ============================================ */
.workflow {
  padding: 100px var(--pad);
  background: var(--paper-dark);
  border-bottom: 1px solid var(--ink);
  position: relative;
  z-index: 2;
}

.workflow-intro {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.workflow-intro-text {
  grid-column: 3 / span 8;
  font-size: clamp(24px, 2.6vw, 42px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.workflow-intro-text em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

.workflow-intro-text .accent { color: var(--accent); }

.workflow-chain {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 2px solid var(--ink);
  position: relative;
}

.workflow-step {
  padding: 28px 20px 28px 0;
  border-right: 1px solid var(--rule-strong);
  position: relative;
  transition: background 0.3s;
}

.workflow-step:hover { background: rgba(128, 128, 128, 0.04); }
.workflow-step:last-child { border-right: none; }
.workflow-step:not(:first-child) { padding-left: 20px; }

.workflow-step-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  padding: 6px;
  border: 1px solid var(--ink);
}

.workflow-step-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 14px;
  opacity: 0.5;
}

.workflow-step-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.workflow-step-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

.workflow-step-desc {
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.7;
  margin-bottom: 20px;
}

.workflow-step-output {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  opacity: 0.6;
}

.workflow-arrow {
  position: absolute;
  top: 28px;
  right: -10px;
  color: var(--accent);
  font-size: 20px;
  font-weight: 700;
  z-index: 2;
}

.workflow-step:last-child .workflow-arrow { display: none; }

.workflow-cta {
  margin-top: 60px;
  text-align: center;
}

/* ============================================
   WORK
   ============================================ */
.work-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--ink);
}

.work-row {
  display: grid;
  grid-template-columns: 60px 1.4fr 1fr 0.8fr 60px;
  gap: 24px;
  padding: 32px 0;
  align-items: center;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  transition: padding 0.35s var(--ease-in-out),
              background 0.35s,
              color 0.35s;
  position: relative;
}

.work-row:hover {
  padding-left: 24px;
  padding-right: 24px;
  background: var(--ink);
  color: var(--paper);
}

.work-row:hover .work-arrow { transform: translateX(8px) rotate(-45deg); }

.work-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  opacity: 0.5;
}

.work-title {
  font-size: clamp(22px, 2.8vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.work-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

.work-client { font-size: 13px; opacity: 0.65; }

.work-category {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
}

.work-year {
  font-family: var(--font-mono);
  font-size: 11px;
  text-align: right;
  opacity: 0.5;
}

.work-arrow {
  position: absolute;
  right: 24px;
  font-size: 18px;
  transition: transform 0.3s;
  display: inline-block;
}

/* ============================================
   CASE STUDY (V5 — with custom cursor)
   ============================================ */
.case {
  padding: 100px var(--pad);
  border-bottom: 1px solid var(--ink);
  background: #0A0A0A;
  color: #EFEBE2;
  position: relative;
  z-index: 2;
  cursor: none;
}

.case * { cursor: none; }

.case-cursor {
  position: fixed;
  width: 32px;
  height: 32px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.2s;
  mix-blend-mode: normal;
}

.case-cursor.visible { opacity: 1; }

.case-cursor svg {
  width: 100%;
  height: 100%;
  stroke: #E85E3F;
  fill: none;
  stroke-width: 1;
}

.case-cursor-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  background: #E85E3F;
  border-radius: 50%;
}

.case-header {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(239, 235, 226, 0.2);
}

.case-label {
  grid-column: 1 / span 3;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
}

.case-title {
  grid-column: 1 / span 9;
  font-size: clamp(40px, 7vw, 118px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.045em;
  margin-top: 32px;
}

.case-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

.case-title .accent { color: #E85E3F; }

.case-meta {
  grid-column: 10 / span 3;
  align-self: end;
  display: grid;
  gap: 16px;
}

.case-meta-item {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.case-meta-item span:first-child {
  display: block;
  opacity: 0.5;
  text-transform: uppercase;
}

.case-body {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.case-intro {
  grid-column: 1 / span 6;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.015em;
}

.case-intro em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

.case-scope {
  grid-column: 8 / span 5;
  padding-left: 32px;
  border-left: 1px solid rgba(239, 235, 226, 0.2);
}

.case-scope-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 16px;
}

.case-scope-list {
  list-style: none;
  font-size: 13px;
  line-height: 1.7;
}

.case-scope-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
}

.case-scope-list .check {
  color: #E85E3F;
  font-family: var(--font-mono);
  font-weight: 700;
}

.case-hero-visual {
  aspect-ratio: 21 / 9;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(239, 235, 226, 0.1);
  padding: 40px;
}

.case-hero-caption {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 80px;
}

.case-chapters {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.case-chapters-title {
  grid-column: 1 / span 12;
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(239, 235, 226, 0.15);
}

.case-chapters-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

.case-chapter {
  grid-column: span 4;
  padding-top: 24px;
  border-top: 1px solid rgba(239, 235, 226, 0.25);
}

.case-chapter-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid rgba(239, 235, 226, 0.3);
  margin-bottom: 24px;
}

.case-chapter-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.1;
}

.case-chapter-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

.case-chapter-text {
  font-size: 13px;
  line-height: 1.55;
  opacity: 0.7;
  margin-bottom: 20px;
}

.case-chapter-specs {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  opacity: 0.6;
  line-height: 1.7;
}

.case-chapter-specs div {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
  border-bottom: 1px dashed rgba(239, 235, 226, 0.1);
}

.case-chapter-specs span:last-child {
  color: #EFEBE2;
  opacity: 1;
  font-weight: 500;
}

.case-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  margin-bottom: 80px;
}

.case-gallery-item {
  background: #1a1a1a;
  border: 1px solid rgba(239, 235, 226, 0.08);
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.case-gallery-item:nth-child(1) {
  grid-column: span 8;
  aspect-ratio: 16/10;
}

.case-gallery-item:nth-child(2),
.case-gallery-item:nth-child(3),
.case-gallery-item:nth-child(4),
.case-gallery-item:nth-child(5) {
  grid-column: span 4;
  aspect-ratio: 4/5;
}

.case-gallery-caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
}

.case-quote {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  padding: 72px 0;
  border-top: 1px solid rgba(239, 235, 226, 0.2);
  border-bottom: 1px solid rgba(239, 235, 226, 0.2);
  margin-bottom: 72px;
}

.case-quote-mark {
  grid-column: 1 / span 1;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 120px;
  line-height: 1;
  color: #E85E3F;
  font-weight: 300;
}

.case-quote-text {
  grid-column: 3 / span 8;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.8vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.case-quote-attrib {
  grid-column: 3 / span 8;
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
}

.case-footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 48px;
  padding-bottom: 48px;
  border-top: 1px solid rgba(239, 235, 226, 0.2);
  border-bottom: 1px solid rgba(239, 235, 226, 0.2);
  margin-bottom: 64px;
}

.case-footer-item-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 10px;
}

.case-footer-item-value {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
}

.case-cta-wrap {
  text-align: center;
  padding-top: 16px;
}

.case-cta-wrap p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.btn-case {
  padding: 16px 24px;
  background: #EFEBE2;
  color: #0A0A0A;
  border: 1px solid #EFEBE2;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.btn-case:hover {
  background: #E85E3F;
  border-color: #E85E3F;
  color: #EFEBE2;
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  border-top: 1px solid var(--ink);
}

.service-card {
  grid-column: span 4;
  padding: 40px 28px;
  border-right: 1px solid var(--rule);
  position: relative;
  transition: background 0.3s, color 0.3s;
  display: flex;
  flex-direction: column;
}

.service-card:last-child { border-right: none; }

.service-card.featured {
  background: var(--ink);
  color: var(--paper);
}

.service-card.featured .service-tag {
  background: var(--paper);
  color: var(--ink);
}

.service-card:hover {
  background: var(--ink);
  color: var(--paper);
}

.service-card:hover .service-tag {
  background: var(--paper);
  color: var(--ink);
}

.service-card.featured:hover { background: var(--accent); }

.service-card.featured:hover .service-tag {
  background: var(--paper);
  color: var(--ink);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.service-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.service-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--accent);
  color: #EFEBE2;
  font-weight: 700;
}

.service-title {
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.service-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

.service-desc {
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.75;
  margin-bottom: 32px;
}

.service-inc {
  margin-bottom: 32px;
  flex: 1;
}

.service-inc-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 14px;
}

.service-inc-list {
  list-style: none;
  font-size: 13px;
  line-height: 1.7;
}

.service-inc-list li {
  display: flex;
  gap: 10px;
  padding: 3px 0;
}

.service-inc-list li::before {
  content: '+';
  color: var(--accent);
  font-weight: 700;
  font-family: var(--font-mono);
}

.service-card.featured .service-inc-list li::before {
  color: var(--paper);
}

.service-meta {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.service-meta-price { font-weight: 700; }

.service-cta {
  width: 100%;
  padding: 14px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--ink);
}

.service-card:hover .service-cta,
.service-card.featured .service-cta {
  background: var(--accent);
  color: #EFEBE2;
  border-color: var(--accent);
}

/* ============================================
   MANIFESTO
   ============================================ */
.manifesto {
  padding: 140px var(--pad);
  border-bottom: 1px solid var(--ink);
  position: relative;
  z-index: 2;
  background: var(--paper);
}

.manifesto-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 48px;
  display: block;
}

.manifesto-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  vertical-align: middle;
  margin-right: 12px;
}

.manifesto-text {
  font-size: clamp(32px, 5vw, 80px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
  max-width: 20ch;
}

.manifesto-text em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

.manifesto-text .accent {
  color: var(--accent);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

.manifesto-sig {
  margin-top: 60px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.5;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px var(--pad);
  background: var(--ink);
  color: var(--paper);
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
}

.contact-left { grid-column: 1 / span 5; }

.contact-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 32px;
  display: block;
}

.contact-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--paper);
  vertical-align: middle;
  margin-right: 12px;
}

.contact-title {
  font-size: clamp(40px, 6vw, 104px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.045em;
  margin-bottom: 48px;
}

.contact-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

.contact-title .accent { color: var(--accent); }

.contact-info {
  padding-top: 40px;
  border-top: 1px solid rgba(128, 128, 128, 0.3);
  display: grid;
  gap: 28px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: start;
}

.contact-info-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  padding-top: 2px;
}

.contact-info-value {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.contact-info-value a {
  position: relative;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(128, 128, 128, 0.4);
  transition: border-color 0.2s, color 0.2s;
}

.contact-info-value a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.contact-form {
  grid-column: 7 / span 6;
  background: rgba(128, 128, 128, 0.05);
  border: 1px solid rgba(128, 128, 128, 0.2);
  padding: 40px;
  display: grid;
  gap: 24px;
}

.form-header {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(128, 128, 128, 0.2);
  margin-bottom: 8px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.form-subtitle {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.full { grid-column: 1 / -1; }

.form-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  display: flex;
  justify-content: space-between;
}

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

.form-input,
.form-select,
.form-textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(128, 128, 128, 0.4);
  padding: 10px 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: -0.005em;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(128, 128, 128, 0.6);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 24px;
  cursor: pointer;
}

.form-select option {
  background: #161614;
  color: #EFEBE2;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
  font-family: var(--font-display);
}

/* Honeypot — invisible to users, visible to bots */
.form-hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--accent);
  color: #EFEBE2;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  border: none;
}

.form-submit:hover {
  background: var(--paper);
  color: var(--ink);
}

.form-submit:disabled {
  opacity: 0.5;
  cursor: wait;
}

.form-note {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.5;
  text-align: center;
  padding-top: 8px;
}

/* Form feedback messages */
.form-feedback {
  padding: 14px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  display: none;
}

.form-feedback.success {
  background: rgba(34, 139, 34, 0.15);
  border: 1px solid rgba(100, 200, 100, 0.4);
  color: #8EE88E;
  display: block;
}

.form-feedback.error {
  background: rgba(196, 58, 28, 0.15);
  border: 1px solid rgba(232, 94, 63, 0.4);
  color: var(--accent);
  display: block;
}

/* Turnstile container */
.cf-turnstile {
  min-height: 65px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 80px var(--pad) 40px;
  background: var(--paper);
  border-top: 1px solid var(--ink);
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}

.footer-brand { grid-column: 1 / span 5; }

.footer-tagline {
  font-size: 14px;
  line-height: 1.45;
  opacity: 0.7;
  max-width: 300px;
  margin-top: 24px;
}

.footer-col { grid-column: span 2; }

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  padding: 4px 0;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--accent); }

.footer-cta-col {
  grid-column: 10 / span 3;
  padding-left: 32px;
  border-left: 1px solid var(--rule);
}

.footer-cta-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.footer-cta-desc {
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.7;
  margin-bottom: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  opacity: 0.5;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out),
              transform 0.9s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out),
              transform 0.7s var(--ease-out);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0.0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.4s; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE — TABLET (1024px and below)
   ============================================ */
@media (max-width: 1100px) {
  :root { --pad: clamp(20px, 3vw, 36px); }

  .nav-links { gap: 18px; font-size: 12px; }

  .hero-right { width: 260px; }

  .metrics-grid { gap: 0; }
  .metric { padding: 0 20px; }
  .metric-num { font-size: clamp(40px, 5vw, 72px); }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { grid-column: span 1; }
  .service-card:last-child {
    grid-column: span 2;
    border-right: none;
    border-top: 1px solid var(--rule);
  }

  .workflow-chain { grid-template-columns: repeat(5, 1fr); }
  .workflow-step { padding: 24px 12px 24px 0; }
  .workflow-step:not(:first-child) { padding-left: 12px; }
  .workflow-step-title { font-size: 18px; }

  .contact-form { padding: 32px; }
}

/* ============================================
   RESPONSIVE — TABLET SMALL (900px and below)
   ============================================ */
@media (max-width: 900px) {
  .availability-banner { font-size: 9px; padding: 6px var(--pad); }

  /* Show mobile menu */
  .nav-links { display: none; }
  .nav-cta .lang-toggle,
  .nav-cta .btn-primary { display: none; }
  .nav-mobile-toggle { display: flex; }

  /* Hero restructured */
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-top-item {
    grid-column: span 6;
    margin-bottom: 16px;
  }

  .hero-right {
    grid-column: 1;
    width: 100%;
    max-width: none;
    margin-top: 24px;
  }

  .hero-illus { aspect-ratio: 16/9; }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-intro,
  .hero-cta {
    grid-column: 1 / -1;
    text-align: left;
    align-items: flex-start;
  }

  .hero-cta { margin-top: 0; }
  .hero-cta-row { justify-content: flex-start; }

  /* Proof bar */
  .proof-bar {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Metrics */
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }

  .metric {
    padding: 0 20px;
    border-right: none;
  }

  .metric:nth-child(odd) { border-right: 1px solid rgba(239, 235, 226, 0.15); }
  .metric:nth-child(1),
  .metric:nth-child(2) { padding-bottom: 24px; border-bottom: 1px solid rgba(239, 235, 226, 0.15); }
  .metric:nth-child(3),
  .metric:nth-child(4) { padding-top: 24px; }

  /* Section headers */
  .section-label,
  .section-title { grid-column: 1 / -1; }

  .section-header { gap: 16px; margin-bottom: 48px; }

  /* History */
  .history { padding: 80px var(--pad); }
  .history-grid { gap: 24px; }

  .history-visual,
  .history-text {
    grid-column: 1 / -1;
    position: static;
  }

  .history-visual {
    aspect-ratio: 16/10;
    margin-bottom: 32px;
  }

  .history-pillar {
    grid-template-columns: 40px 1fr;
  }

  .history-pillar-icon { display: none; }

  /* Disciplines */
  .disciplines { grid-template-columns: 1fr; }

  .discipline,
  .discipline:last-child {
    border-right: none;
    border-bottom: 1px solid var(--ink);
    padding: 40px 0 !important;
  }

  .discipline:last-child { border-bottom: none; }

  /* For Who */
  .for-who-title,
  .for-who-list,
  .for-who-label { grid-column: 1 / -1; }

  .for-who-list { grid-template-columns: 1fr; }

  .for-who-item {
    grid-column: 1 / -1;
    border-right: none !important;
    padding: 20px 0 !important;
  }

  /* Matters */
  .matters-grid { grid-template-columns: repeat(3, 1fr); }

  /* Workflow */
  .workflow-chain { grid-template-columns: 1fr; }

  .workflow-step {
    border-right: none;
    border-bottom: 1px solid var(--rule-strong);
    padding: 24px 0 !important;
  }

  .workflow-step:last-child { border-bottom: none; }
  .workflow-arrow { display: none !important; }

  .workflow-intro-text { grid-column: 1 / -1; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  .service-card {
    grid-column: 1 / -1 !important;
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }

  /* Work */
  .work-row {
    grid-template-columns: 30px 1fr 60px;
    gap: 12px;
    padding: 20px 0;
  }

  .work-client,
  .work-category { display: none; }

  /* Case study */
  .case { cursor: auto; padding: 80px var(--pad); }
  .case * { cursor: auto; }
  .case-cursor { display: none; }

  .case-title,
  .case-meta,
  .case-intro,
  .case-scope { grid-column: 1 / -1; }

  .case-scope {
    padding-left: 0;
    border-left: none;
    margin-top: 32px;
  }

  .case-chapter { grid-column: 1 / -1; }

  .case-gallery-item,
  .case-gallery-item:nth-child(1) {
    grid-column: 1 / -1 !important;
    aspect-ratio: 16/10 !important;
  }

  .case-quote-mark {
    grid-column: 1 / -1;
    font-size: 60px;
  }

  .case-quote-text,
  .case-quote-attrib { grid-column: 1 / -1; }

  .case-footer { grid-template-columns: repeat(2, 1fr); }

  /* Contact */
  .contact-grid { gap: 48px; }

  .contact-left,
  .contact-form { grid-column: 1 / -1; }

  /* Footer */
  .footer-brand,
  .footer-cta-col {
    grid-column: 1 / -1;
    padding-left: 0;
    border-left: none;
    margin-bottom: 40px;
  }

  .footer-col {
    grid-column: span 6;
    margin-bottom: 32px;
  }

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

/* ============================================
   RESPONSIVE — MOBILE (600px and below)
   ============================================ */
@media (max-width: 600px) {
  :root { --pad: 20px; }

  body { font-size: 14px; }

  .availability-banner { gap: 8px; }
  .availability-banner span:not(.pulse-dot):nth-of-type(2) {
    font-size: 8px;
  }

  .hero { padding: calc(var(--nav-h) + 60px) var(--pad) 32px; }

  .hero-top-item { grid-column: 1 / -1; margin-bottom: 12px; }

  .hero-title h1 { font-size: clamp(40px, 12vw, 68px); }

  .hero-illus { aspect-ratio: 4/5; }

  .hero-cta-row { flex-direction: column; width: 100%; }
  .hero-cta-row .btn-primary,
  .hero-cta-row .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-bottom { padding-top: 24px; }

  /* Section padding reduction */
  .section,
  .history,
  .for-who,
  .workflow,
  .contact,
  .case,
  .manifesto { padding: 64px var(--pad); }

  .metrics { padding: 56px var(--pad); }

  /* Metrics: 1 column on small mobile */
  .metrics-grid { grid-template-columns: 1fr; gap: 32px; }

  .metric {
    border-right: none !important;
    border-bottom: 1px solid rgba(239, 235, 226, 0.15);
    padding: 0 0 24px !important;
  }

  .metric:last-child {
    border-bottom: none;
    padding-bottom: 0 !important;
  }

  /* Matters: 2 columns */
  .matters-grid { grid-template-columns: repeat(2, 1fr); }

  /* Proof bar clients: wrap */
  .proof-bar-clients { gap: 24px; }
  .proof-client { font-size: 14px; }

  /* Disciplines */
  .discipline-title { font-size: 36px; }
  .discipline-visual { aspect-ratio: 4/3; }

  .discipline-features { grid-template-columns: 1fr; }
  .discipline-feature:nth-child(even) {
    border-left: none;
    padding-left: 0;
  }

  /* Work rows */
  .work-row {
    grid-template-columns: 24px 1fr 40px;
    gap: 10px;
    padding: 16px 0;
  }

  .work-title { font-size: 22px; }

  /* Case study */
  .case-header { margin-bottom: 40px; padding-bottom: 32px; }
  .case-title { font-size: clamp(40px, 10vw, 64px); margin-top: 24px; }
  .case-meta { gap: 12px; }
  .case-body { gap: 12px; }
  .case-chapters { gap: 32px; }
  .case-chapters-title { font-size: 28px; margin-bottom: 32px; }
  .case-gallery { gap: 8px; margin-bottom: 48px; }
  .case-hero-visual { padding: 16px; aspect-ratio: 4/3; }
  .case-footer { grid-template-columns: 1fr; gap: 16px; }
  .case-cta-wrap p { font-size: 22px; }

  /* Services */
  .service-card { padding: 32px 24px; }
  .service-header { margin-bottom: 32px; }
  .service-title { font-size: 30px; }

  /* Manifesto */
  .manifesto { padding: 80px var(--pad); }
  .manifesto-text { font-size: 32px; }

  /* Contact */
  .contact-form { padding: 24px; }
  .contact-info-item { grid-template-columns: 80px 1fr; gap: 12px; }

  /* Footer */
  .footer { padding: 60px var(--pad) 32px; }

  .footer-col { grid-column: 1 / -1; margin-bottom: 24px; }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .footer-bottom span {
    font-size: 9px;
  }

  .logo-large { font-size: 42px; }
  .logo-large .logo-mark-serif { font-size: 36px; }
  .logo-large .logo-name .slash { height: 34px; margin: 0 10px; }
}

/* ============================================
   RESPONSIVE — VERY SMALL MOBILE (380px)
   ============================================ */
@media (max-width: 380px) {
  .availability-banner span:not(.pulse-dot):nth-of-type(2) {
    font-size: 7px;
  }

  .hero-title h1 { font-size: 44px; }

  .section-title { font-size: 28px; }

  .metric-num { font-size: 56px; }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  .availability-banner,
  .nav,
  .nav-mobile-menu,
  .nav-mobile-toggle,
  .theme-toggle,
  .contact-form,
  .btn-primary,
  .btn-secondary,
  .service-cta { display: none !important; }

  body { background: white !important; color: black !important; }

  .case,
  .metrics,
  .contact { background: white !important; color: black !important; }

  .reveal,
  .stagger > * { opacity: 1 !important; transform: none !important; }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-title h1 .line span {
    transform: translateY(0);
    opacity: 1;
  }

  .draw-svg path,
  .draw-svg line,
  .draw-svg rect,
  .draw-svg circle,
  .draw-svg polygon {
    stroke-dashoffset: 0 !important;
  }
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
