/* ════════════════════════════════════════════════════════════
   joedeobald.com — Main stylesheet
   Palette: near-black #0a0a0a, cream #f5f0e8, orange #ff5a36
   ════════════════════════════════════════════════════════════ */

:root {
  --ink: #0a0a0a;
  --cream: #f5f0e8;
  --cream-08: rgba(245,240,232,0.08);
  --cream-10: rgba(245,240,232,0.1);
  --cream-25: rgba(245,240,232,0.25);
  --cream-40: rgba(245,240,232,0.4);
  --cream-50: rgba(245,240,232,0.5);
  --cream-65: rgba(245,240,232,0.65);
  --cream-70: rgba(245,240,232,0.7);
  --cream-75: rgba(245,240,232,0.75);
  --ink-10: rgba(10,10,10,0.1);
  --ink-15: rgba(10,10,10,0.15);
  --ink-30: rgba(10,10,10,0.3);
  --ink-40: rgba(10,10,10,0.4);
  --ink-50: rgba(10,10,10,0.5);
  --ink-75: rgba(10,10,10,0.75);
  --orange: #ff5a36;
  --cyan: #00d4ff;
  --gold: #ffd700;
  --green: #00ff88;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-mono: 'Inter', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Reset / base ─── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-sans);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a, button { cursor: none; font-family: inherit; color: inherit; }
::selection { background: var(--orange); color: var(--ink); }
img { max-width: 100%; display: block; }
button { background: none; border: none; }

.accent { color: var(--orange); }
.serif-italic { font-style: italic; font-family: var(--font-serif); font-weight: 400; }
em { font-style: italic; }

/* ─── Section label (monospace, uppercase) ─── */
.section-label {
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--cream-40);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.section-label.dark { color: var(--ink-40); }
.section-label.onorange { color: var(--ink-50); }
.abs-top-left {
  position: absolute;
  top: 80px;
  left: 48px;
  margin-bottom: 0;
}

/* ════════════════════════════════════════════════════════════
   CUSTOM CURSOR
   ════════════════════════════════════════════════════════════ */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: var(--orange);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 32px; height: 32px;
  margin: -16px 0 0 -16px;
  border-radius: 50%;
  border: 1px solid var(--cream-50);
  background: transparent;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: difference;
  transition: width 0.3s, height 0.3s, margin 0.3s, background 0.3s;
}
.cursor-ring.hover {
  width: 60px; height: 60px;
  margin: -30px 0 0 -30px;
  background: rgba(255,90,54,0.1);
}
@media (hover: none) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  a, button { cursor: pointer; }
}

/* ════════════════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 10, 0.72);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
  transition: padding 0.4s ease, background 0.3s ease;
}
.nav.scrolled {
  padding: 18px 48px;
  background: rgba(10, 10, 10, 0.88);
}
.nav-logo {
  text-decoration: none;
  color: var(--cream);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-link {
  color: var(--cream);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-available { display: flex; align-items: center; gap: 8px; }
.available-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(0,255,136,0.8);
  display: inline-block;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--orange);
  color: var(--ink) !important;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.3s var(--ease), background 0.3s ease;
}
.nav-cta::after {
  content: "→";
  font-size: 14px;
  font-weight: 700;
}
.nav-cta:hover {
  transform: translateY(-2px);
  background: #ff6e4c;
}
.nav-cta .available-dot {
  background: var(--ink);
  box-shadow: none;
  width: 6px; height: 6px;
}

/* ════════════════════════════════════════════════════════════
   REVEAL SYSTEM
   ════════════════════════════════════════════════════════════ */
.reveal > * { opacity: 0; }
.reveal.visible > * { opacity: 1; }

.reveal-delay-1 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease 0.5s;
}
.reveal-delay-2 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease 0.7s;
}
.reveal-delay-3 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease 0.8s;
}
.visible .reveal-delay-1,
.visible .reveal-delay-2,
.visible .reveal-delay-3 {
  opacity: 1;
  transform: translateY(0);
}

/* SplitText words — each chunk flows inline and wraps naturally.
   Playfair Display italic has extra-long descenders (g, y, ?) so the
   bottom padding has to be generous. Negative margins collapse the
   extra space back so line-height isn't affected. */
.split { display: inline; }
.split-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  line-height: inherit;
  padding: 0.2em 0.05em 0.6em;
  margin: -0.2em -0.05em -0.6em;
}
.serif-italic .split-word,
.about-hero-italic .split-word {
  padding-bottom: 0.75em;
  margin-bottom: -0.75em;
}
.split-word + .split-word { margin-left: 0.22em; }
.split-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition:
    transform 1s var(--ease),
    opacity 0.8s ease;
}
.split.visible .split-inner {
  transform: translateY(0);
  opacity: 1;
}

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  background: var(--ink);
  overflow: hidden;
  padding-top: 160px;
}
.hero-labels {
  position: absolute;
  top: 140px;
  left: 48px;
  right: 48px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--cream-40);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 1.2s ease 0.3s;
}
.hero.visible .hero-labels { opacity: 1; }

.hero-type {
  padding: 60px 48px 0;
  max-width: 100%;
}
.hero-h1 {
  font-size: clamp(56px, 11vw, 180px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--cream);
  margin: 0;
  word-break: normal;
  overflow-wrap: break-word;
}
.hero-h1 > .split { display: inline; }
.hero-next {
  font-size: clamp(56px, 11vw, 200px);
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
}

.hero-bottom {
  position: absolute;
  bottom: 60px;
  left: 48px;
  right: 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 64px;
}

/* Portrait placeholder */
.portrait {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--cream-10);
  background: linear-gradient(180deg, #1a1a1a, #0f0f0f);
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s var(--ease) 0.8s;
}
.hero.visible .portrait-hero { opacity: 1; transform: translateY(0); }
.portrait-hero { width: 200px; height: 260px; flex-shrink: 0; }
.portrait-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.portrait-circle {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 1px solid var(--cream-15, rgba(245,240,232,0.15));
}
.portrait-circle.dark {
  width: 80px; height: 80px;
  border-color: var(--ink-15);
}
.portrait-label {
  font-size: 9px;
  color: rgba(245,240,232,0.2);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.portrait-label.dark {
  font-size: 10px;
  color: var(--ink-30);
}
.portrait-tag {
  position: absolute;
  font-size: 10px;
  font-family: var(--font-mono);
  color: var(--cream-40);
  letter-spacing: 0.1em;
}
.portrait-tag.top-left { top: 12px; left: 12px; }
.portrait-tag.bottom-right { bottom: 16px; right: 16px; }
.portrait-tag.dark { color: var(--ink-40); }

.hero-copy {
  max-width: 420px;
  text-align: right;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s var(--ease) 1s;
}
.hero.visible .hero-copy { opacity: 1; transform: translateY(0); }
.hero-copy p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream-70);
  margin: 0;
}
.hero-cta {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: rgba(245,240,232,0.3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: pulse 2s ease-in-out infinite;
}

/* ─── Magnetic buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 22px 44px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.4s var(--ease), background 0.3s, color 0.3s;
  will-change: transform;
}
.btn-primary {
  background: var(--orange);
  color: var(--ink);
}
.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--cream-25);
}
.btn-arrow { font-size: 18px; }

/* ════════════════════════════════════════════════════════════
   MARQUEE
   ════════════════════════════════════════════════════════════ */
.marquee-section {
  width: 100%;
  overflow: hidden;
  padding: 60px 0;
  border-top: 1px solid var(--cream-08);
  border-bottom: 1px solid var(--cream-08);
  background: var(--ink);
}
.marquee-track {
  display: flex;
  animation: marquee 40s linear infinite;
}
.marquee-content {
  display: flex;
  gap: 80px;
  align-items: center;
  white-space: nowrap;
  padding-right: 80px;
  flex-shrink: 0;
}
.marquee-item {
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--cream);
  line-height: 1;
}
.marquee-dot {
  font-size: 48px;
  color: var(--orange);
}

/* ════════════════════════════════════════════════════════════
   INTRO
   ════════════════════════════════════════════════════════════ */
.intro {
  background: var(--cream);
  color: var(--ink);
  padding: 160px 48px;
  position: relative;
}
.intro .section-label { color: var(--ink-40); }
.intro-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: flex-start;
}
.intro-photo-col {
  position: sticky;
  top: 120px;
}
.portrait-intro {
  aspect-ratio: 4/5;
  background: linear-gradient(180deg, #e8dfd0, #d5c8b4);
  border: 1px solid var(--ink-10);
  transform: none;
  opacity: 1;
}
.intro-h2 {
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
  overflow-wrap: break-word;
}
.intro-h2 .split { display: inline; }
.intro-h2 .serif-italic { display: inline; }
.intro-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.intro-paragraphs p {
  font-size: 20px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--ink-75);
  max-width: 560px;
}
.intro-paragraphs p.strong {
  font-weight: 500;
  color: var(--ink);
}

.credentials {
  margin-top: 80px;
  display: table-cell;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  border-top: 1px solid var(--ink-10);
  padding-top: 40px;
}

.credential{margin-top:20px;}
.credential-num {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.credential-label {
  font-size: 13px;
  color: var(--ink-50);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════
   HORIZONTAL PILLARS
   ════════════════════════════════════════════════════════════ */
.pillars {
  height: 300vh;
  position: relative;
  background: var(--ink);
}
.pillars-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.pillars-label-left,
.pillars-label-right {
  position: absolute;
  top: 100px;
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--cream-40);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 5;
}
.pillars-label-left { left: 48px; }
.pillars-label-right { right: 48px; }

.pillars-track {
  display: flex;
  width: 300%;
  transition: transform 0.1s linear;
  will-change: transform;
}
.pillar {
  width: calc(100% / 3);
  flex-shrink: 0;
  padding: 0 48px;
  display: flex;
  align-items: center;
}
.pillar-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: flex-end;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.pillar-num {
  font-size: clamp(180px, 26vw, 420px);
  font-weight: 900;
  line-height: 0.75;
  letter-spacing: -0.06em;
}
.pillar-content { padding-bottom: 40px; }
.pillar-tag {
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--cream-50);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.pillar-title {
  font-size: clamp(40px, 5vw, 84px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 32px;
}
.pillar-body {
  font-size: 18px;
  line-height: 1.65;
  color: var(--cream-65);
  max-width: 560px;
  margin-bottom: 40px;
}
.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--orange);
}

.pillars-progress {
  position: absolute;
  bottom: 48px;
  left: 48px;
  right: 48px;
  height: 1px;
  background: var(--cream-10);
}
.pillars-progress-bar {
  height: 100%;
  background: var(--orange);
  width: 0%;
  transition: width 0.1s linear;
}

/* ════════════════════════════════════════════════════════════
   MANIFESTO
   ════════════════════════════════════════════════════════════ */
.manifesto {
  padding: 200px 48px;
  background: var(--ink);
  border-top: 1px solid rgba(245,240,232,0.06);
  position: relative;
  overflow: hidden;
}
.manifesto-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.manifesto-h {
  font-size: clamp(40px, 5.6vw, 92px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--cream);
  overflow-wrap: break-word;
}
.manifesto-h > .split { display: inline; }
.manifesto-h .accent { display: inline; color: var(--orange); }
.manifesto-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
}
.manifesto-grid p {
  font-size: 22px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--cream-75);
}
.manifesto-grid em { color: var(--cream); font-style: italic; }

/* ════════════════════════════════════════════════════════════
   IDEAS / ARCHIVE
   ════════════════════════════════════════════════════════════ */
.ideas {
  padding: 200px 48px;
  background: var(--cream);
  color: var(--ink);
}
.ideas .section-label { color: var(--ink-40); }
.ideas-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.ideas-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 100px;
}
.ideas-h {
  font-size: clamp(52px, 7.4vw, 128px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.04em;
  overflow-wrap: break-word;
}
.ideas-h > .split { display: inline; }
.ideas-h .serif-italic { display: inline; }
.ideas-view-all {
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
}

.ideas-list { border-top: 1px solid var(--ink-15); }
.idea-row {
  display: grid;
  grid-template-columns: 100px 120px 1fr 100px;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--ink-15);
  text-decoration: none;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  transition: padding 0.5s var(--ease);
}
.idea-row:hover { padding-left: 40px; }
.idea-row::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 8px;
  background: var(--orange);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
}
.idea-row:hover::before { transform: translateX(0); }

.idea-num {
  font-size: 14px;
  font-family: var(--font-mono);
  color: var(--ink-40);
  letter-spacing: 0.05em;
}
.idea-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}
.idea-title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.idea-sub {
  font-size: 16px;
  color: var(--ink-50);
  font-style: italic;
  font-family: var(--font-serif);
}
.idea-year {
  font-size: 14px;
  font-family: var(--font-mono);
  color: var(--ink-40);
  text-align: right;
}

/* ════════════════════════════════════════════════════════════
   CLIENTS STRIP
   ════════════════════════════════════════════════════════════ */
.clients {
  background: var(--ink);
  padding: 140px 48px;
  border-top: 1px solid rgba(245,240,232,0.06);
}
.clients-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.clients .section-label { margin-bottom: 80px; }
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--cream-10);
}
.client {
  padding: 48px 24px;
  border-bottom: 1px solid var(--cream-10);
  border-right: 1px solid var(--cream-10);
  font-size: clamp(24px, 2.5vw, 38px);
  font-weight: 900;
  color: rgba(245,240,232,0.3);
  letter-spacing: -0.02em;
  text-align: center;
  transition: color 0.4s ease, background 0.4s ease;
}
.client:nth-child(4n) { border-right: none; }
.client:hover {
  color: var(--orange);
  background: rgba(255,90,54,0.05);
}

/* ════════════════════════════════════════════════════════════
   CONTACT CTA
   ════════════════════════════════════════════════════════════ */
.contact {
  background: var(--orange);
  color: var(--ink);
  padding: 200px 48px;
  position: relative;
  overflow: hidden;
}
.contact .section-label.onorange { color: var(--ink-50); }
.contact-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.contact-h {
  font-size: clamp(54px, 9.4vw, 168px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin: 0;
  overflow-wrap: break-word;
}
.contact-h > .split { display: inline; }
.contact-h .serif-italic { display: inline; }

.contact-bottom {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 40px;
}
.contact-email {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 4px;
}
.contact-socials { display: flex; gap: 32px; }
.contact-socials a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 48px 40px;
  overflow: hidden;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.footer .section-label {
  font-size: 11px;
  margin-bottom: 16px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 120px;
  gap: 60px;
  flex-wrap: wrap;
}
.newsletter { max-width: 320px; }
.newsletter p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--cream-70);
  margin-bottom: 20px;
}
.newsletter-form {
  display: flex;
  border-bottom: 1px solid var(--cream-25);
  padding-bottom: 8px;
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--cream);
  font-size: 15px;
  outline: none;
  font-family: inherit;
}
.newsletter-form input::placeholder { color: var(--cream-40); }
.newsletter-form button {
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: none;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 60px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col .section-label { margin-bottom: 10px; }
.footer-col a,
.footer-col span {
  color: var(--cream-70);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--orange); }

.wordmark {
  font-size: clamp(80px, 21vw, 340px);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--cream);
  white-space: nowrap;
  overflow: hidden;
}
.footer-copy {
  font-size: 13px;
  color: var(--cream-40);
  margin-top: 40px;
  letter-spacing: 0.02em;
}

/* ════════════════════════════════════════════════════════════
   NAV — active state
   ════════════════════════════════════════════════════════════ */
.nav-link.is-active {
  color: var(--orange);
}
.nav-link.is-active::after {
  content: "";
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--orange);
  margin-left: 6px;
  vertical-align: middle;
}

/* ════════════════════════════════════════════════════════════
   ABOUT PAGE — HERO
   ════════════════════════════════════════════════════════════ */
.about-hero {
  min-height: 100vh;
  position: relative;
  background: var(--ink);
  overflow: hidden;
  padding: 180px 48px 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about-hero-labels {
  position: absolute;
  top: 140px;
  left: 48px;
  right: 48px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--cream-40);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-hero-type {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 40px 0;
}
.about-hero-h1 {
  font-size: clamp(54px, 9.6vw, 168px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--cream);
  margin: 0;
  overflow-wrap: break-word;
  max-width: 1500px;
}
.about-hero-h1 > .split { display: inline; }
.about-hero-italic {
  display: block;
  margin-left: clamp(40px, 10vw, 200px);
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
}
.about-hero-italic .split { display: inline; }

.about-hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 64px;
}
.about-hero-sub {
  max-width: 520px;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--cream-70);
}
.about-hero-scroll {
  font-size: 11px;
  color: var(--cream-40);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: pulse 2s ease-in-out infinite;
}

/* ════════════════════════════════════════════════════════════
   ABOUT — BIO + PORTRAIT
   ════════════════════════════════════════════════════════════ */
.about-bio {
  background: var(--cream);
  color: var(--ink);
  padding: 180px 48px;
}
.about-bio-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.3fr;
  gap: 100px;
  align-items: flex-start;
}
.about-bio-photo-col {
  position: sticky;
  top: 120px;
}
.portrait-about-bio {
  aspect-ratio: 4/5;
  background: linear-gradient(180deg, #e8dfd0, #d2c4ae);
  border: 1px solid var(--ink-10);
  opacity: 1;
  transform: none;
}
.photo-caption {
  margin-top: 20px;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--ink-40);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.photo-caption span { color: var(--orange); font-weight: 700; }

.about-h2 {
  font-size: clamp(40px, 5.4vw, 80px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 56px;
  overflow-wrap: break-word;
}
.about-h2 .split { display: inline; }
.about-h2 .serif-italic { display: inline; }

.about-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.about-paragraphs p {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-75);
  max-width: 620px;
}
.about-paragraphs p.strong {
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.55;
}
.about-paragraphs p.pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.3;
  color: var(--ink);
  padding: 32px 0 32px 32px;
  border-left: 3px solid var(--orange);
  margin: 12px 0;
  max-width: 620px;
}

/* ════════════════════════════════════════════════════════════
   ABOUT — STATS STRIP
   ════════════════════════════════════════════════════════════ */
.about-stats {
  background: var(--ink);
  color: var(--cream);
  padding: 140px 48px;
  border-top: 1px solid rgba(245,240,232,0.06);
}
.about-stats-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.about-stats .section-label { margin-bottom: 60px; }
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  border-top: 1px solid var(--cream-10);
  padding-top: 48px;
}
.about-stat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 24px;
}
.about-stat-num {
  font-size: clamp(64px, 7vw, 112px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--cream);
}
.about-stat:nth-child(2n) .about-stat-num { color: var(--orange); }
.about-stat-label {
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--cream-50);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════
   ABOUT — JOURNEY TIMELINE
   ════════════════════════════════════════════════════════════ */
.journey {
  background: var(--ink);
  color: var(--cream);
  padding: 200px 48px 160px;
  position: relative;
  border-top: 1px solid rgba(245,240,232,0.06);
}
.journey-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.journey-h {
  font-size: clamp(56px, 7.4vw, 132px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-bottom: 120px;
  overflow-wrap: break-word;
}
.journey-h .split { display: inline; }
.journey-h .serif-italic { display: inline; }

.journey-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--cream-10);
}
.journey-row {
  display: grid;
  grid-template-columns: 180px 1.1fr 1.3fr;
  gap: 60px;
  align-items: flex-start;
  padding: 64px 0;
  border-bottom: 1px solid var(--cream-10);
  transition: padding 0.5s var(--ease);
}
.journey-row:hover { padding-left: 24px; }
.journey-year {
  font-size: 14px;
  font-family: var(--font-mono);
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 12px;
}
.journey-media {
  width: 100%;
}
.journey-photo {
  aspect-ratio: 3/2;
  background: linear-gradient(180deg, #1a1a1a, #0f0f0f);
  border: 1px solid var(--cream-10);
  opacity: 1;
  transform: none;
}
.journey-copy {
  padding-top: 8px;
}
.journey-tag {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--cream-40);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.journey-title {
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 20px;
}
.journey-row p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--cream-65);
  max-width: 560px;
}

/* ════════════════════════════════════════════════════════════
   ABOUT — BEYOND THE WORK
   ════════════════════════════════════════════════════════════ */
.beyond {
  background: var(--cream);
  color: var(--ink);
  padding: 200px 48px;
}
.beyond-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
}
.beyond-photo-col { position: relative; }
.portrait-beyond {
  aspect-ratio: 4/5;
  background: linear-gradient(180deg, #e8dfd0, #d2c4ae);
  border: 1px solid var(--ink-10);
  opacity: 1;
  transform: none;
}
.beyond-h {
  font-size: clamp(44px, 6.2vw, 104px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-bottom: 48px;
  overflow-wrap: break-word;
}
.beyond-h .split { display: inline; }
.beyond-h .serif-italic { display: inline; }

/* ════════════════════════════════════════════════════════════
   ABOUT — PHILOSOPHY
   ════════════════════════════════════════════════════════════ */
.philosophy {
  padding: 200px 48px;
  background: var(--ink);
  color: var(--cream);
  border-top: 1px solid rgba(245,240,232,0.06);
  position: relative;
  overflow: hidden;
}
.philosophy-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.philosophy-h {
  font-size: clamp(42px, 5.8vw, 96px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--cream);
  overflow-wrap: break-word;
}
.philosophy-h > .split { display: inline; }
.philosophy-h .accent { display: inline; color: var(--orange); }
.philosophy-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
}
.philosophy-grid p {
  font-size: 20px;
  line-height: 1.65;
  color: var(--cream-75);
}
.philosophy-grid em { color: var(--cream); font-style: italic; }

/* ════════════════════════════════════════════════════════════
   CONTACT PAGE — HERO
   ════════════════════════════════════════════════════════════ */
.contact-hero {
  min-height: 100vh;
  position: relative;
  background: var(--ink);
  overflow: hidden;
  padding: 180px 48px 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-hero-labels {
  position: absolute;
  top: 140px;
  left: 48px;
  right: 48px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--cream-40);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-hero-type {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 40px 0;
}
.contact-hero-h1 {
  font-size: clamp(60px, 11vw, 200px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--cream);
  margin: 0;
  overflow-wrap: break-word;
}
.contact-hero-h1 > .split { display: inline; }
.contact-hero-italic {
  display: block;
  margin-left: clamp(40px, 10vw, 200px);
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
}
.contact-hero-italic .split { display: inline; }

.contact-hero-bottom {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.contact-hero-sub {
  max-width: 580px;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--cream-70);
  text-align: right;
}

/* ════════════════════════════════════════════════════════════
   CONTACT — OPTIONS GRID
   ════════════════════════════════════════════════════════════ */
.contact-options {
  background: var(--cream);
  color: var(--ink);
  padding: 180px 48px;
}
.contact-options-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.contact-options .section-label { margin-bottom: 40px; }
.contact-options-h {
  font-size: clamp(56px, 8vw, 140px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-bottom: 100px;
  overflow-wrap: break-word;
}
.contact-options-h .split { display: inline; }
.contact-options-h .serif-italic { display: inline; }

.contact-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--ink-15);
  border-left: 1px solid var(--ink-15);
}
.contact-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  padding: 64px 48px;
  border-bottom: 1px solid var(--ink-15);
  border-right: 1px solid var(--ink-15);
  text-decoration: none;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease, padding-left 0.5s var(--ease);
}
.contact-option::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 8px;
  background: var(--orange);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
}
.contact-option:hover { padding-left: 72px; }
.contact-option:hover::before { transform: translateX(0); }

.contact-option-num {
  font-size: clamp(64px, 5vw, 88px);
  font-weight: 900;
  line-height: 0.9;
  color: var(--ink-30);
  letter-spacing: -0.03em;
  transition: color 0.4s ease;
}
.contact-option:hover .contact-option-num { color: var(--orange); }

.contact-option-tag {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--ink-40);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.contact-option-title {
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.contact-option-body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-75);
  margin-bottom: 24px;
  max-width: 440px;
}
.contact-option-arrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  display: inline-block;
}

/* ════════════════════════════════════════════════════════════
   CONTACT — FORM SECTION
   ════════════════════════════════════════════════════════════ */
.contact-form-section {
  background: var(--ink);
  color: var(--cream);
  padding: 180px 48px;
  border-top: 1px solid rgba(245,240,232,0.06);
}
.contact-form-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: flex-start;
}
.contact-form-left { position: sticky; top: 140px; }
.contact-form-h {
  font-size: clamp(48px, 6.4vw, 108px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--cream);
  margin: 32px 0 40px;
  overflow-wrap: break-word;
}
.contact-form-h .split { display: inline; }
.contact-form-h .serif-italic { display: inline; }
.contact-form-lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--cream-70);
  max-width: 440px;
  margin-bottom: 60px;
}
.contact-form-direct {
  border-top: 1px solid var(--cream-10);
  padding-top: 32px;
}
.contact-form-direct .section-label { margin-bottom: 16px; }
.contact-form-email {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: -0.02em;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 4px;
  display: inline-block;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-label {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--cream-50);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.form-field input,
.form-field textarea,
.form-field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--cream-25);
  color: var(--cream);
  font-size: 18px;
  font-family: inherit;
  padding: 12px 0 14px;
  outline: none;
  transition: border-color 0.3s ease;
  cursor: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--cream-40);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-bottom-color: var(--orange);
}
.form-field textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.5;
}
.form-field 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 fill='%23f5f0e8' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 12px 8px;
  padding-right: 24px;
}
.form-field select option {
  background: var(--ink);
  color: var(--cream);
}

.form-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 22px 48px;
  border-radius: 100px;
  background: var(--orange);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.4s var(--ease), background 0.3s ease;
  margin-top: 12px;
  will-change: transform;
}
.form-submit:hover { background: #ff6e4c; }
.form-submit span { font-size: 18px; }

.form-note {
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--cream-40);
  line-height: 1.6;
  max-width: 480px;
}

/* ════════════════════════════════════════════════════════════
   CONTACT — FAQ
   ════════════════════════════════════════════════════════════ */
.contact-faq {
  background: var(--cream);
  color: var(--ink);
  padding: 200px 48px;
  position: relative;
}
.contact-faq-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.contact-faq .section-label.dark { color: var(--ink-40); }
.contact-faq-h {
  font-size: clamp(52px, 7vw, 120px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-bottom: 80px;
  overflow-wrap: break-word;
}
.contact-faq-h .split { display: inline; }
.contact-faq-h .serif-italic { display: inline; }

.faq-list {
  border-top: 1px solid var(--ink-15);
}
.faq-item {
  border-bottom: 1px solid var(--ink-15);
  padding: 4px 0;
  transition: padding 0.4s ease;
}
.faq-item[open] { padding: 8px 0 16px; }
.faq-item summary {
  list-style: none;
  cursor: none;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: padding-left 0.4s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item:hover summary { padding-left: 16px; }
.faq-q {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--orange);
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-item p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-75);
  max-width: 760px;
  padding: 0 0 20px 0;
}

/* ════════════════════════════════════════════════════════════
   CONTACT — BIG STRIP
   ════════════════════════════════════════════════════════════ */
.contact-strip {
  background: var(--orange);
  color: var(--ink);
  padding: 160px 48px;
  position: relative;
  overflow: hidden;
}
.contact-strip-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  flex-wrap: wrap;
}
.contact-strip-h {
  font-size: clamp(64px, 10vw, 176px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0;
  overflow-wrap: break-word;
}
.contact-strip-h .split { display: inline; }
.contact-strip-h .serif-italic { display: inline; }
.contact-strip .contact-socials {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 24px;
}
.contact-strip .contact-socials a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
}

/* ════════════════════════════════════════════════════════════
   PROJECTS — HERO
   ════════════════════════════════════════════════════════════ */
.projects-hero {
  min-height: 100vh;
  position: relative;
  background: var(--ink);
  overflow: hidden;
  padding: 180px 48px 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.projects-hero-labels {
  position: absolute;
  top: 140px;
  left: 48px;
  right: 48px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--cream-40);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.projects-hero-type {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 40px 0;
}
.projects-hero-h1 {
  font-size: clamp(54px, 9.6vw, 168px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--cream);
  margin: 0;
  overflow-wrap: break-word;
  max-width: 1500px;
}
.projects-hero-h1 > .split { display: inline; }
.projects-hero-italic {
  display: block;
  margin-left: clamp(40px, 10vw, 200px);
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
}
.projects-hero-italic .split { display: inline; }
.projects-hero-italic .split-word {
  padding-bottom: 0.75em;
  margin-bottom: -0.75em;
}
.projects-hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 64px;
}
.projects-hero-sub {
  max-width: 560px;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--cream-70);
}
.projects-hero-scroll {
  font-size: 11px;
  color: var(--cream-40);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: pulse 2s ease-in-out infinite;
}

/* ════════════════════════════════════════════════════════════
   PROJECTS — FEATURED STACK
   ════════════════════════════════════════════════════════════ */
.projects-stack {
  background: var(--cream);
  color: var(--ink);
  padding: 180px 48px 140px;
}
.projects-stack-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.projects-stack-h {
  font-size: clamp(56px, 8vw, 140px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-bottom: 120px;
  overflow-wrap: break-word;
}
.projects-stack-h .split { display: inline; }
.projects-stack-h .serif-italic { display: inline; }

.project-row {
  display: grid;
  grid-template-columns: 180px 1.1fr 1fr;
  gap: 64px;
  padding: 80px 0;
  border-top: 1px solid var(--ink-15);
  align-items: flex-start;
  position: relative;
}
.project-row:last-of-type { border-bottom: 1px solid var(--ink-15); }
.project-row.reverse {
  grid-template-columns: 180px 1fr 1.1fr;
}
.project-row.reverse .project-row-body { order: 0; }
.project-row.reverse .project-row-media { order: 1; }

.project-row-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 140px;
}
.project-num {
  font-size: clamp(56px, 5vw, 88px);
  font-weight: 900;
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.project-tag {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.project-row-media .portrait {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #e8dfd0, #d2c4ae);
  border: 1px solid var(--ink-10);
  opacity: 1;
  transform: none;
  transition: transform 0.6s var(--ease);
}
.project-row:hover .project-row-media .portrait {
  transform: translateY(-8px);
}

.project-row-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}
.project-title {
  font-size: clamp(40px, 4.4vw, 72px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0;
}
.project-wordmark {
  font-size: 0.4em;
  vertical-align: super;
  color: var(--orange);
  font-weight: 700;
  margin-left: 4px;
}
.project-kicker {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.3;
  color: var(--ink);
  max-width: 520px;
  margin: 4px 0 8px;
}
.project-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-75);
  max-width: 540px;
}
.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.project-tech span {
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 12px;
  border: 1px solid var(--ink-15);
  border-radius: 999px;
  font-weight: 600;
}
.project-links {
  display: flex;
  gap: 28px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.project-links a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.project-links a:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* ════════════════════════════════════════════════════════════
   PROJECTS — PAST EXITS
   ════════════════════════════════════════════════════════════ */
.projects-past {
  background: var(--ink);
  color: var(--cream);
  padding: 180px 48px;
  border-top: 1px solid var(--cream-08);
}
.projects-past-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.projects-past-h {
  font-size: clamp(56px, 8vw, 140px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-bottom: 40px;
  overflow-wrap: break-word;
}
.projects-past-h .split { display: inline; }
.projects-past-h .serif-italic { display: inline; }
.projects-past-lede {
  max-width: 640px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--cream-70);
  margin-bottom: 80px;
}
.past-list {
  border-top: 1px solid var(--cream-10);
}
.past-row {
  display: grid;
  grid-template-columns: 120px 1.4fr 1fr 1.2fr;
  gap: 48px;
  padding: 36px 0;
  border-bottom: 1px solid var(--cream-10);
  align-items: baseline;
  transition: padding-left 0.5s var(--ease), background 0.5s ease;
}
.past-row:hover {
  padding-left: 24px;
}
.past-year {
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--cream-40);
  letter-spacing: 0.1em;
}
.past-name {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.past-row:hover .past-name { color: var(--orange); }
.past-role {
  font-size: 14px;
  color: var(--cream-65);
}
.past-note {
  font-size: 14px;
  color: var(--cream-40);
  text-align: right;
}

/* ════════════════════════════════════════════════════════════
   PROJECTS — PHILOSOPHY CARDS
   ════════════════════════════════════════════════════════════ */
.projects-philosophy {
  background: var(--cream);
  color: var(--ink);
  padding: 180px 48px;
}
.projects-philosophy-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.projects-philosophy-h {
  font-size: clamp(48px, 6.8vw, 120px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 100px;
  overflow-wrap: break-word;
}
.projects-philosophy-h .split { display: inline; }
.projects-philosophy-h .serif-italic { display: inline; }

.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-15);
  border-left: 1px solid var(--ink-15);
}
.phil-card {
  padding: 56px 48px;
  border-right: 1px solid var(--ink-15);
  border-bottom: 1px solid var(--ink-15);
  display: flex;
  gap: 32px;
  align-items: flex-start;
  transition: background 0.4s ease;
}
.phil-card:hover { background: rgba(255, 90, 54, 0.06); }
.phil-card-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 40px;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
}
.phil-card p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-75);
  max-width: 480px;
}
.phil-card em {
  color: var(--ink);
  font-weight: 600;
  font-style: italic;
}

/* ════════════════════════════════════════════════════════════
   PROJECTS — CTA STRIP
   ════════════════════════════════════════════════════════════ */
.projects-cta {
  background: var(--orange);
  color: var(--ink);
  padding: 160px 48px;
}
.projects-cta-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.projects-cta-h {
  font-size: clamp(56px, 8vw, 140px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 40px 0 40px;
  overflow-wrap: break-word;
  max-width: 1300px;
}
.projects-cta-h .split { display: inline; }
.projects-cta-h .serif-italic { display: inline; }
.projects-cta-sub {
  max-width: 600px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 56px;
}
.projects-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 24px 44px;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.4s var(--ease);
}
.projects-cta-btn span {
  font-size: 20px;
  transition: transform 0.4s var(--ease);
}
.projects-cta-btn:hover span { transform: translateX(6px); }

/* ════════════════════════════════════════════════════════════
   HOME — AI POSITIONING STRIP
   ════════════════════════════════════════════════════════════ */
.home-ai {
  background: var(--ink);
  color: var(--cream);
  padding: 140px 48px;
  border-top: 1px solid var(--cream-08);
  border-bottom: 1px solid var(--cream-08);
}
.home-ai-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.home-ai-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: flex-start;
}
.home-ai-left { position: sticky; top: 120px; }
.home-ai-h {
  font-size: clamp(48px, 6.4vw, 108px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-top: 32px;
  overflow-wrap: break-word;
}
.home-ai-h .split { display: inline; }
.home-ai-h .serif-italic { display: inline; }
.home-ai-lede {
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.55;
  color: var(--cream);
  font-weight: 500;
  max-width: 600px;
  margin-bottom: 56px;
}
.home-ai-bullets {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 56px;
  border-top: 1px solid var(--cream-10);
  padding-top: 32px;
}
.home-ai-bullet {
  display: flex;
  align-items: baseline;
  gap: 20px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--cream-75);
}
.home-ai-bullet-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--orange);
  letter-spacing: 0.1em;
  font-weight: 700;
  flex-shrink: 0;
}
.home-ai-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: var(--orange);
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.4s var(--ease);
}
.home-ai-link span { transition: transform 0.4s var(--ease); }
.home-ai-link:hover span { transform: translateX(6px); }

/* ════════════════════════════════════════════════════════════
   ABOUT — CURRENT CHAPTER (AI OFFICER)
   ════════════════════════════════════════════════════════════ */
.about-current {
  background: var(--ink);
  color: var(--cream);
  padding: 180px 48px;
  border-top: 1px solid var(--cream-08);
}
.about-current-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.about-current-h {
  font-size: clamp(48px, 6.8vw, 120px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin: 24px 0 80px;
  overflow-wrap: break-word;
  max-width: 1300px;
}
.about-current-h .split { display: inline; }
.about-current-h .serif-italic { display: inline; }
.about-current-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  align-items: flex-start;
}
.about-current-copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.about-current-copy p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--cream-75);
  max-width: 620px;
}
.about-current-copy p.strong {
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.55;
}
.about-current-copy p.pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
  color: var(--cream);
  padding: 24px 0 24px 28px;
  border-left: 3px solid var(--orange);
  margin: 8px 0;
}
.about-current-card {
  padding: 48px 40px;
  border: 1px solid var(--cream-10);
  background: rgba(245, 240, 232, 0.02);
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.4s ease, background 0.4s ease;
}
.about-current-card:hover {
  border-color: var(--orange);
  background: rgba(255, 90, 54, 0.04);
}
.about-current-card-tag {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--orange);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}
.about-current-card-title {
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.about-current-card-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: var(--cream-65);
  padding: 20px 0;
  border-top: 1px solid var(--cream-10);
  border-bottom: 1px solid var(--cream-10);
}
.about-current-card-link {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--cream);
  align-self: flex-start;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.about-current-card-link:hover { color: var(--orange); border-color: var(--orange); }
.about-current-card-link span { display: inline-block; transition: transform 0.3s ease; }
.about-current-card-link:hover span { transform: translateX(4px); }

/* ════════════════════════════════════════════════════════════
   SERVICES — HERO
   ════════════════════════════════════════════════════════════ */
.services-hero {
  min-height: 100vh;
  position: relative;
  background: var(--ink);
  overflow: hidden;
  padding: 180px 48px 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.services-hero-labels {
  position: absolute;
  top: 140px;
  left: 48px;
  right: 48px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--cream-40);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.services-hero-type {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 40px 0;
}
.services-hero-h1 {
  font-size: clamp(54px, 9.6vw, 168px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--cream);
  margin: 0;
  overflow-wrap: break-word;
  max-width: 1500px;
}
.services-hero-h1 > .split { display: inline; }
.services-hero-italic {
  display: block;
  margin-left: clamp(40px, 10vw, 200px);
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
}
.services-hero-italic .split { display: inline; }
.services-hero-italic .split-word {
  padding-bottom: 0.75em;
  margin-bottom: -0.75em;
}
.services-hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 64px;
}
.services-hero-sub {
  max-width: 560px;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--cream-70);
}
.services-hero-scroll {
  font-size: 11px;
  color: var(--cream-40);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: pulse 2s ease-in-out infinite;
}

/* ════════════════════════════════════════════════════════════
   SERVICES — THE ROLE
   ════════════════════════════════════════════════════════════ */
.services-role {
  background: var(--cream);
  color: var(--ink);
  padding: 180px 48px;
}
.services-role-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.services-role-h {
  font-size: clamp(56px, 8vw, 140px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-bottom: 100px;
  overflow-wrap: break-word;
}
.services-role-h .split { display: inline; }
.services-role-h .serif-italic { display: inline; }
.services-role-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 100px;
  align-items: flex-start;
}
.services-role-copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.services-role-copy p {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-75);
  max-width: 620px;
}
.services-role-copy p.strong {
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.55;
}
.services-role-copy p.pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.3;
  color: var(--ink);
  padding: 32px 0 32px 32px;
  border-left: 3px solid var(--orange);
  margin: 12px 0;
  max-width: 620px;
}
.services-role-card {
  padding: 48px 40px;
  background: var(--ink);
  color: var(--cream);
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.services-role-card-tag {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--orange);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cream-10);
}
.services-role-fact {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--cream-08);
}
.services-role-fact:last-child { border-bottom: none; padding-bottom: 0; }
.services-role-fact-label {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--cream-40);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.services-role-fact-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  text-align: right;
}

/* ════════════════════════════════════════════════════════════
   SERVICES — OFFERINGS GRID
   ════════════════════════════════════════════════════════════ */
.services-offerings {
  background: var(--ink);
  color: var(--cream);
  padding: 180px 48px;
  border-top: 1px solid var(--cream-08);
}
.services-offerings-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.services-offerings-h {
  font-size: clamp(56px, 8vw, 140px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-bottom: 100px;
  overflow-wrap: break-word;
}
.services-offerings-h .split { display: inline; }
.services-offerings-h .serif-italic { display: inline; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--cream-10);
  border-left: 1px solid var(--cream-10);
}
.service-card {
  padding: 64px 48px;
  border-right: 1px solid var(--cream-10);
  border-bottom: 1px solid var(--cream-10);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}
.service-card:hover { background: rgba(255, 90, 54, 0.04); }
.service-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s var(--ease);
}
.service-card:hover::before { transform: scaleY(1); }
.service-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 48px;
  color: var(--orange);
  line-height: 1;
}
.service-tag {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--cream-40);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.service-title {
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin: 4px 0;
}
.service-kicker {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--orange);
  margin-bottom: 4px;
}
.service-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--cream-70);
  max-width: 460px;
}
.service-list {
  list-style: none;
  padding: 20px 0 0;
  margin-top: 8px;
  border-top: 1px solid var(--cream-10);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--cream-65);
  padding-left: 20px;
  position: relative;
}
.service-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--orange);
}

/* ════════════════════════════════════════════════════════════
   SERVICES — PROCESS ROWS
   ════════════════════════════════════════════════════════════ */
.services-process {
  background: var(--cream);
  color: var(--ink);
  padding: 180px 48px;
}
.services-process-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.services-process-h {
  font-size: clamp(56px, 8vw, 140px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-bottom: 80px;
  overflow-wrap: break-word;
}
.services-process-h .split { display: inline; }
.services-process-h .serif-italic { display: inline; }
.process-rows {
  border-top: 1px solid var(--ink-15);
}
.process-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 64px;
  padding: 56px 0;
  border-bottom: 1px solid var(--ink-15);
  transition: padding-left 0.5s var(--ease);
}
.process-row:hover { padding-left: 24px; }
.process-row-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(56px, 4.8vw, 80px);
  color: var(--orange);
  line-height: 1;
}
.process-row-title {
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.process-row-copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-75);
  max-width: 720px;
}

/* ════════════════════════════════════════════════════════════
   SERVICES — FIT CHECK
   ════════════════════════════════════════════════════════════ */
.services-fit {
  background: var(--ink);
  color: var(--cream);
  padding: 180px 48px;
  border-top: 1px solid var(--cream-08);
}
.services-fit-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.services-fit-h {
  font-size: clamp(56px, 8vw, 140px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-bottom: 100px;
  overflow-wrap: break-word;
}
.services-fit-h .split { display: inline; }
.services-fit-h .serif-italic { display: inline; }
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--cream-10);
  border-left: 1px solid var(--cream-10);
}
.fit-col {
  padding: 56px 48px;
  border-right: 1px solid var(--cream-10);
  border-bottom: 1px solid var(--cream-10);
}
.fit-col-tag {
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cream-10);
}
.fit-yes .fit-col-tag { color: var(--green); }
.fit-no .fit-col-tag { color: var(--cream-40); }
.fit-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.fit-col li {
  font-size: 16px;
  line-height: 1.55;
  padding-left: 28px;
  position: relative;
  color: var(--cream-75);
}
.fit-yes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.fit-no li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: var(--cream-40);
  font-weight: 700;
}

/* ════════════════════════════════════════════════════════════
   SERVICES — CTA STRIP
   ════════════════════════════════════════════════════════════ */
.services-cta {
  background: var(--orange);
  color: var(--ink);
  padding: 160px 48px;
}
.services-cta-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.services-cta-h {
  font-size: clamp(56px, 8vw, 140px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 40px 0 40px;
  overflow-wrap: break-word;
  max-width: 1300px;
}
.services-cta-h .split { display: inline; }
.services-cta-h .serif-italic { display: inline; }
.services-cta-sub {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 56px;
}
.services-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 24px 44px;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.4s var(--ease);
}
.services-cta-btn span {
  font-size: 20px;
  transition: transform 0.4s var(--ease);
}
.services-cta-btn:hover span { transform: translateX(6px); }

/* ════════════════════════════════════════════════════════════
   IDEAS PAGE — HERO
   ════════════════════════════════════════════════════════════ */
.ideas-hero {
  min-height: 100vh;
  position: relative;
  background: var(--ink);
  overflow: hidden;
  padding: 180px 48px 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ideas-hero-labels {
  position: absolute;
  top: 140px;
  left: 48px;
  right: 48px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--cream-40);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ideas-hero-type {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 40px 0;
}
.ideas-hero-h1 {
  font-size: clamp(54px, 10vw, 180px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--cream);
  margin: 0;
  overflow-wrap: break-word;
  max-width: 1500px;
}
.ideas-hero-h1 > .split { display: inline; }
.ideas-hero-italic {
  display: block;
  margin-left: clamp(40px, 10vw, 200px);
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
}
.ideas-hero-italic .split { display: inline; }
.ideas-hero-italic .split-word {
  padding-bottom: 0.75em;
  margin-bottom: -0.75em;
}
.ideas-hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 64px;
}
.ideas-hero-sub {
  max-width: 560px;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--cream-70);
}
.ideas-hero-scroll {
  font-size: 11px;
  color: var(--cream-40);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: pulse 2s ease-in-out infinite;
}

/* ════════════════════════════════════════════════════════════
   IDEAS PAGE — FEATURED ESSAY
   ════════════════════════════════════════════════════════════ */
.ideas-featured {
  background: var(--cream);
  color: var(--ink);
  padding: 180px 48px 120px;
}
.ideas-featured-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.ideas-featured-h {
  font-size: clamp(48px, 6.8vw, 120px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 80px;
  overflow-wrap: break-word;
}
.ideas-featured-h .split { display: inline; }
.ideas-featured-h .serif-italic { display: inline; }
.featured-essay {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  text-decoration: none;
  color: var(--ink);
  align-items: center;
  padding: 48px 0;
  border-top: 1px solid var(--ink-15);
  border-bottom: 1px solid var(--ink-15);
  transition: padding-left 0.5s var(--ease);
}
.featured-essay:hover { padding-left: 24px; }
.portrait-essay {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #e8dfd0, #c8b99d);
  border: 1px solid var(--ink-10);
  opacity: 1;
  transform: none;
}
.featured-essay-meta {
  display: flex;
  gap: 24px;
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--ink-40);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.featured-essay-meta span:first-child { color: var(--orange); font-weight: 700; }
.featured-essay-title {
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 560px;
}
.featured-essay-excerpt {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-75);
  max-width: 520px;
  margin-bottom: 32px;
}
.featured-essay-read {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  display: inline-block;
}
.featured-essay:hover .featured-essay-read {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* ════════════════════════════════════════════════════════════
   IDEAS PAGE — FILTERS
   ════════════════════════════════════════════════════════════ */
.ideas-filters {
  background: var(--cream);
  color: var(--ink);
  padding: 60px 48px 40px;
}
.ideas-filters-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.ideas-filters-inner .section-label { color: var(--ink-40); margin-bottom: 32px; }
.filters-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.filter-chip {
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 12px 20px;
  border: 1px solid var(--ink-15);
  border-radius: 999px;
  color: var(--ink-75);
  cursor: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.filter-chip:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.filter-chip.is-active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* ════════════════════════════════════════════════════════════
   IDEAS PAGE — ESSAYS GRID
   ════════════════════════════════════════════════════════════ */
.ideas-grid-section {
  background: var(--cream);
  color: var(--ink);
  padding: 40px 48px 180px;
}
.ideas-grid-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.essays-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
}
.essay-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-decoration: none;
  cursor: none;
}
.essay-card-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  border: 1px solid var(--ink-10);
}
.portrait-essay-sm {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #e8dfd0, #d2c4ae);
  opacity: 1;
  transform: none;
  width: 100%;
  transition: transform 0.6s var(--ease);
}
.essay-card:hover .portrait-essay-sm { transform: scale(1.04); }
.essay-card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.essay-card-meta {
  display: flex;
  gap: 16px;
  align-items: baseline;
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.essay-card-tag { color: var(--orange); font-weight: 700; }
.essay-card-date { color: var(--ink-40); }
.essay-card-title {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  transition: color 0.3s ease;
}
.essay-card:hover .essay-card-title { color: var(--orange); }
.essay-card-excerpt {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-75);
}
.essay-card-read {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-75);
  margin-top: 4px;
}
.essays-more {
  margin-top: 100px;
  display: flex;
  justify-content: center;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: none;
  transition: background 0.3s ease, color 0.3s ease;
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

/* ════════════════════════════════════════════════════════════
   IDEAS PAGE — NEWSLETTER CTA
   ════════════════════════════════════════════════════════════ */
.ideas-newsletter {
  background: var(--orange);
  color: var(--ink);
  padding: 160px 48px;
}
.ideas-newsletter-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.ideas-newsletter-inner .section-label { margin-bottom: 40px; }
.ideas-newsletter-h {
  font-size: clamp(56px, 8vw, 140px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 40px;
  overflow-wrap: break-word;
}
.ideas-newsletter-h .split { display: inline; }
.ideas-newsletter-h .serif-italic { display: inline; }
.ideas-newsletter-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  max-width: 620px;
  margin: 0 auto 48px;
}
.ideas-newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}
.ideas-newsletter-form input {
  flex: 1;
  padding: 20px 24px;
  border: 2px solid var(--ink);
  background: var(--cream);
  color: var(--ink);
  font-size: 15px;
  font-family: inherit;
  border-radius: 999px;
  outline: none;
}
.ideas-newsletter-form input::placeholder { color: var(--ink-50); }
.ideas-newsletter-form button {
  padding: 20px 32px;
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: none;
}
.ideas-newsletter-meta {
  margin-top: 24px;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--ink-50);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════
   KEYFRAMES
   ════════════════════════════════════════════════════════════ */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, 0); }
  50%      { opacity: 1; transform: translate(-50%, 6px); }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav { padding: 24px 28px; }
  .nav.scrolled { padding: 16px 28px; }
  .nav-links { gap: 24px; }
  .hero-type { padding: 60px 28px 0; }
  .hero-bottom { left: 28px; right: 28px; flex-direction: column; align-items: flex-start; gap: 32px; }
  .hero-copy { text-align: left; }
  .hero-cta { justify-content: flex-start; }
  .hero-labels { left: 28px; right: 28px; font-size: 11px; flex-wrap: wrap; gap: 8px; }
  .intro { padding: 100px 28px; }
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-photo-col { position: static; max-width: 360px; }
  .pillars { height: auto; }
  .pillars-sticky { position: static; height: auto; flex-direction: column; }
  .pillars-track { flex-direction: column; width: 100% !important; transform: none !important; }
  .pillar { width: 100%; padding: 80px 28px; }
  .pillar-inner { grid-template-columns: 1fr; gap: 32px; }
  .pillars-label-left, .pillars-label-right { position: static; padding: 40px 28px 0; }
  .pillars-progress { display: none; }
  .manifesto { padding: 120px 28px; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 32px; }
  .ideas { padding: 120px 28px; }
  .ideas-header { flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 48px; }
  .idea-row { grid-template-columns: 1fr; gap: 8px; padding: 28px 0; }
  .idea-row:hover { padding-left: 16px; }
  .clients { padding: 80px 28px; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .client:nth-child(4n) { border-right: 1px solid var(--cream-10); }
  .client:nth-child(2n) { border-right: none; }
  .contact { padding: 120px 28px; }
  .contact-bottom { flex-direction: column; align-items: flex-start; }
  .footer { padding: 60px 28px 32px; }
  .footer-top { flex-direction: column; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .abs-top-left { top: 40px; left: 28px; }
  .credentials { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  /* ─── About page ─── */
  .about-hero { padding: 140px 28px 60px; }
  .about-hero-labels { left: 28px; right: 28px; top: 100px; font-size: 11px; flex-wrap: wrap; gap: 8px; }
  .about-hero-bottom { flex-direction: column; align-items: flex-start; gap: 32px; }

  .about-bio { padding: 100px 28px; }
  .about-bio-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-bio-photo-col { position: static; max-width: 420px; }

  .about-stats { padding: 100px 28px; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }

  .journey { padding: 120px 28px; }
  .journey-h { margin-bottom: 64px; }
  .journey-row {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 0;
  }
  .journey-row:hover { padding-left: 12px; }
  .journey-year { padding-top: 0; }

  .beyond { padding: 120px 28px; }
  .beyond-grid { grid-template-columns: 1fr; gap: 48px; }
  .beyond-photo-col { max-width: 420px; }

  .philosophy { padding: 120px 28px; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 32px; }

  /* ─── Contact page ─── */
  .contact-hero { padding: 140px 28px 60px; }
  .contact-hero-labels { left: 28px; right: 28px; top: 100px; font-size: 11px; flex-wrap: wrap; gap: 8px; }
  .contact-hero-bottom { justify-content: flex-start; }
  .contact-hero-sub { text-align: left; }

  .contact-options { padding: 100px 28px; }
  .contact-options-h { margin-bottom: 56px; }
  .contact-options-grid { grid-template-columns: 1fr; }
  .contact-option { padding: 40px 28px; gap: 24px; }
  .contact-option:hover { padding-left: 44px; }

  .contact-form-section { padding: 100px 28px; }
  .contact-form-inner { grid-template-columns: 1fr; gap: 60px; }
  .contact-form-left { position: static; }
  .form-row { grid-template-columns: 1fr; gap: 32px; }

  .contact-faq { padding: 120px 28px; }
  .contact-faq-h { margin-bottom: 48px; }

  .contact-strip { padding: 100px 28px; }
  .contact-strip-inner { flex-direction: column; align-items: flex-start; gap: 48px; }

  /* ─── Projects page ─── */
  .projects-hero { padding: 140px 28px 60px; }
  .projects-hero-labels { left: 28px; right: 28px; top: 100px; font-size: 11px; flex-wrap: wrap; gap: 8px; }
  .projects-hero-bottom { flex-direction: column; align-items: flex-start; gap: 32px; }

  .projects-stack { padding: 120px 28px 80px; }
  .projects-stack-h { margin-bottom: 64px; }
  .project-row,
  .project-row.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 56px 0;
  }
  .project-row.reverse .project-row-body,
  .project-row.reverse .project-row-media { order: 0; }
  .project-row-meta {
    position: static;
    flex-direction: row;
    align-items: baseline;
    gap: 20px;
  }

  .projects-past { padding: 120px 28px; }
  .projects-past-h { margin-bottom: 32px; }
  .projects-past-lede { margin-bottom: 56px; }
  .past-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 28px 0;
  }
  .past-row:hover { padding-left: 12px; }
  .past-note { text-align: left; }

  .projects-philosophy { padding: 120px 28px; }
  .projects-philosophy-h { margin-bottom: 64px; }
  .philosophy-cards { grid-template-columns: 1fr; }
  .phil-card { padding: 40px 28px; gap: 20px; }

  .projects-cta { padding: 120px 28px; }

  /* ─── Home AI positioning strip ─── */
  .home-ai { padding: 100px 28px; }
  .home-ai-grid { grid-template-columns: 1fr; gap: 48px; }
  .home-ai-left { position: static; }

  /* ─── About — Current Chapter ─── */
  .about-current { padding: 120px 28px; }
  .about-current-h { margin-bottom: 56px; }
  .about-current-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-current-card { position: static; }

  /* ─── Services page ─── */
  .services-hero { padding: 140px 28px 60px; }
  .services-hero-labels { left: 28px; right: 28px; top: 100px; font-size: 11px; flex-wrap: wrap; gap: 8px; }
  .services-hero-bottom { flex-direction: column; align-items: flex-start; gap: 32px; }

  .services-role { padding: 120px 28px; }
  .services-role-h { margin-bottom: 56px; }
  .services-role-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-role-card { position: static; }

  .services-offerings { padding: 120px 28px; }
  .services-offerings-h { margin-bottom: 64px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 48px 28px; }

  .services-process { padding: 120px 28px; }
  .services-process-h { margin-bottom: 56px; }
  .process-row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 0;
  }
  .process-row:hover { padding-left: 12px; }

  .services-fit { padding: 120px 28px; }
  .services-fit-h { margin-bottom: 56px; }
  .fit-grid { grid-template-columns: 1fr; }
  .fit-col { padding: 40px 28px; }

  .services-cta { padding: 120px 28px; }

  /* ─── Ideas page ─── */
  .ideas-hero { padding: 140px 28px 60px; }
  .ideas-hero-labels { left: 28px; right: 28px; top: 100px; font-size: 11px; flex-wrap: wrap; gap: 8px; }
  .ideas-hero-bottom { flex-direction: column; align-items: flex-start; gap: 32px; }

  .ideas-featured { padding: 120px 28px 80px; }
  .ideas-featured-h { margin-bottom: 56px; }
  .featured-essay { grid-template-columns: 1fr; gap: 40px; padding: 32px 0; }
  .featured-essay:hover { padding-left: 12px; }

  .ideas-filters { padding: 40px 28px 24px; }
  .ideas-grid-section { padding: 24px 28px 120px; }
  .essays-grid { grid-template-columns: 1fr; gap: 56px; }

  .ideas-newsletter { padding: 120px 28px; }
  .ideas-newsletter-form { flex-direction: column; }
}

/* ════════════════════════════════════════════════════════════
   MOBILE NAV — hamburger + fullscreen overlay
   ════════════════════════════════════════════════════════════ */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  cursor: none;
  z-index: 1001;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 32px 60px;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.nav-overlay.is-visible {
  display: flex;
  opacity: 1;
}
.nav-overlay a {
  font-size: clamp(36px, 8vw, 56px);
  font-weight: 900;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1.3;
  transition: color 0.2s ease;
}
.nav-overlay a:hover,
.nav-overlay a.is-active { color: var(--orange); }
.nav-overlay .nav-overlay-cta {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--orange);
  color: var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  /* ─── Nav ─── */
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav { padding: 20px 20px; }
  .nav.scrolled { padding: 16px 20px; }

  /* ─── Hide grey meta labels on all heroes ─── */
  .hero-labels,
  .about-hero-labels,
  .services-hero-labels,
  .projects-hero-labels,
  .ideas-hero-labels { display: none; }

  /* ─── Hero — stack vertically, portrait below copy ─── */
  .hero { padding-top: 100px; min-height: auto; padding-bottom: 60px; }
  .hero-type { padding: 20px 20px 0; }
  .hero-h1 { font-size: clamp(44px, 12vw, 72px); line-height: 0.95; }
  .hero-next { margin-left: 0; }
  .hero-bottom {
    position: static;
    padding: 40px 20px 0;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 40px;
  }
  .portrait-hero { width: 100%; height: 320px; }
  .hero-copy { text-align: left; max-width: 100%; }
  .hero-cta { justify-content: flex-start; }
  .scroll-indicator { display: none; }

  /* ─── General: all italic offsets → left-align ─── */
  .hero-next,
  .about-hero-italic,
  .services-hero-italic,
  .projects-hero-italic,
  .ideas-hero-italic { margin-left: 0; }

  /* ─── All section labels: smaller, tighter ─── */
  .section-label { font-size: 11px; margin-bottom: 24px; }

  /* ─── Intro ─── */
  .intro { padding: 80px 20px; }
  .intro-h2 { font-size: clamp(36px, 9vw, 56px); margin-bottom: 40px; }

  /* ─── Pillars ─── */
  .pillar { padding: 60px 20px; }

  /* ─── Manifesto ─── */
  .manifesto { padding: 80px 20px; }
  .manifesto-h { font-size: clamp(36px, 9vw, 56px); }

  /* ─── Ideas section (home) ─── */
  .ideas { padding: 80px 20px; }
  .ideas-h { font-size: clamp(36px, 9vw, 56px); }

  /* ─── Clients ─── */
  .clients { padding: 60px 20px; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }

  /* ─── Contact (home) ─── */
  .contact { padding: 80px 20px; }
  .contact-h { font-size: clamp(36px, 9vw, 56px); }

  /* ─── Marquee ─── */
  .marquee-section { padding: 40px 0; }
  .credential-num { font-size: 48px; }

  /* ─── Footer ─── */
  .footer { padding: 60px 20px 32px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .wordmark { font-size: clamp(60px, 18vw, 200px); }

  /* ─── Home AI strip ─── */
  .home-ai { padding: 80px 20px; }
  .home-ai-h { font-size: clamp(36px, 9vw, 56px); }

  /* ════════════════ ABOUT PAGE ════════════════ */
  .about-hero { padding: 100px 20px 60px; min-height: auto; }
  .about-hero-h1 { font-size: clamp(40px, 10vw, 64px); }
  .about-hero-italic { margin-left: 0; }
  .about-hero-bottom { padding: 0; }
  .about-hero-sub { font-size: 16px; }
  .about-hero-scroll { display: none; }

  .about-bio { padding: 80px 20px; }
  .about-h2 { font-size: clamp(32px, 8vw, 48px); }
  .about-paragraphs p { font-size: 16px; }
  .about-paragraphs p.strong { font-size: 18px; }
  .about-paragraphs p.pull-quote { font-size: 22px; padding-left: 20px; }

  .about-stats { padding: 80px 20px; }
  .about-stats-grid { grid-template-columns: 1fr; gap: 28px; }

  .journey { padding: 80px 20px; }
  .journey-h { font-size: clamp(36px, 9vw, 56px); }

  .about-current { padding: 80px 20px; }
  .about-current-h { font-size: clamp(32px, 8vw, 48px); }
  .about-current-copy p.pull-quote { font-size: 20px; padding-left: 16px; }

  .beyond { padding: 80px 20px; }
  .beyond-h { font-size: clamp(32px, 8vw, 48px); }

  .philosophy { padding: 80px 20px; }
  .philosophy-h { font-size: clamp(32px, 8vw, 48px); }

  /* ════════════════ SERVICES PAGE ════════════════ */
  .services-hero { padding: 100px 20px 60px; min-height: auto; }
  .services-hero-h1 { font-size: clamp(40px, 10vw, 64px); }
  .services-hero-sub { font-size: 16px; }
  .services-hero-scroll { display: none; }

  .services-role { padding: 80px 20px; }
  .services-role-h { font-size: clamp(36px, 9vw, 56px); margin-bottom: 56px; }
  .services-role-copy p { font-size: 16px; }
  .services-role-copy p.strong { font-size: 18px; }
  .services-role-copy p.pull-quote { font-size: 22px; padding-left: 20px; }
  .services-role-fact { flex-direction: column; gap: 4px; align-items: flex-start; }
  .services-role-fact-value { text-align: left; }

  .services-offerings { padding: 80px 20px; }
  .services-offerings-h { font-size: clamp(36px, 9vw, 56px); margin-bottom: 48px; }
  .service-card { padding: 40px 20px; }
  .service-title { font-size: clamp(28px, 6vw, 40px); }

  .services-process { padding: 80px 20px; }
  .services-process-h { font-size: clamp(36px, 9vw, 56px); }
  .process-row-title { font-size: clamp(22px, 5vw, 32px); }

  .services-fit { padding: 80px 20px; }
  .services-fit-h { font-size: clamp(36px, 9vw, 56px); margin-bottom: 48px; }
  .fit-col { padding: 32px 20px; }

  .services-cta { padding: 80px 20px; }
  .services-cta-h { font-size: clamp(36px, 9vw, 56px); }
  .services-cta-btn { padding: 20px 32px; font-size: 12px; }

  /* ════════════════ PROJECTS PAGE ════════════════ */
  .projects-hero { padding: 100px 20px 60px; min-height: auto; }
  .projects-hero-h1 { font-size: clamp(40px, 10vw, 64px); }
  .projects-hero-sub { font-size: 16px; }
  .projects-hero-scroll { display: none; }

  .projects-stack { padding: 80px 20px 60px; }
  .projects-stack-h { font-size: clamp(36px, 9vw, 56px); margin-bottom: 48px; }
  .project-num { font-size: 48px; }
  .project-title { font-size: clamp(28px, 7vw, 40px); }
  .project-kicker { font-size: 18px; }
  .project-desc { font-size: 15px; }

  .projects-past { padding: 80px 20px; }
  .projects-past-h { font-size: clamp(36px, 9vw, 56px); }

  .projects-philosophy { padding: 80px 20px; }
  .projects-philosophy-h { font-size: clamp(32px, 8vw, 48px); }
  .phil-card { padding: 32px 20px; gap: 16px; }
  .phil-card-num { font-size: 32px; }

  .projects-cta { padding: 80px 20px; }
  .projects-cta-h { font-size: clamp(36px, 9vw, 56px); }
  .projects-cta-btn { padding: 20px 32px; font-size: 12px; }

  /* ════════════════ IDEAS PAGE ════════════════ */
  .ideas-hero { padding: 100px 20px 60px; min-height: auto; }
  .ideas-hero-h1 { font-size: clamp(40px, 10vw, 64px); }
  .ideas-hero-sub { font-size: 16px; }
  .ideas-hero-scroll { display: none; }

  .ideas-featured { padding: 80px 20px 60px; }
  .ideas-featured-h { font-size: clamp(32px, 8vw, 48px); }
  .featured-essay-title { font-size: clamp(28px, 7vw, 40px); }

  .ideas-filters { padding: 24px 20px 16px; }
  .filter-chip { padding: 10px 14px; font-size: 11px; }

  .ideas-grid-section { padding: 16px 20px 80px; }
  .essay-card-title { font-size: clamp(20px, 5vw, 28px); }

  .ideas-newsletter { padding: 80px 20px; }
  .ideas-newsletter-h { font-size: clamp(36px, 9vw, 56px); }

  /* ════════════════ CONTACT PAGE ════════════════ */
  .contact-hero { padding: 100px 20px 60px; min-height: auto; }
  .contact-hero-h1 { font-size: clamp(40px, 10vw, 64px); }
  .contact-hero-sub { font-size: 16px; }

  .contact-options { padding: 80px 20px; }
  .contact-options-h { font-size: clamp(36px, 9vw, 56px); }
  .contact-option { padding: 32px 20px; gap: 16px; }

  .contact-form-section { padding: 80px 20px; }
  .contact-faq { padding: 80px 20px; }
  .contact-faq-h { font-size: clamp(36px, 9vw, 56px); }

  .contact-strip { padding: 80px 20px; }
  .contact-strip-h { font-size: clamp(36px, 9vw, 56px); }

  /* ─── Custom cursor: hide on touch ─── */
  .cursor-dot, .cursor-ring { display: none; }
}
