/* ============================================================
   KEVIN HAWKINS — MODERN EDITORIAL (DARK · NEAR-MONOCHROME)
   Grotesque display · Serif-italic accents · Ink & paper
   Colour reserved for interaction only.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Fraunces:ital,wght@0,400;1,400&family=DM+Mono:wght@300;400;500&display=swap');

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

:root {
  /* ── Surfaces (light-primary; dark reserved for accent bands) ── */
  --bg:        #FAF6EF;
  --bg-soft:   #F1E9DB;
  --surface:   #FFFFFF;
  --surface-2: #F1E9DB;

  /* ── Ink ── */
  --ink:       #16120D;
  --ink-70:    #57503f;
  --muted:     #8a8175;
  --faint:     #b8b0a2;

  /* ── Lines ── */
  --line:      rgba(22,18,13,0.10);
  --line-2:    rgba(22,18,13,0.18);

  /* ── Signature accent + playful color pops (matches the light home) ── */
  --accent:    #FF5A1F;
  --accent-2:  #FF7A45;
  --accent-dim:rgba(255,90,31,0.14);
  --teal:      #10A78F;
  --cobalt:    #3B5BDB;
  --pink:      #FF4D8D;
  --plum:      #6C4AE0;
  --gold:      #F5A623;

  /* ── Dark accent-band tokens (hero photo scrim / outcomes / footer bookend) ── */
  --night:     #0b0a0c;
  --night-2:   #141216;
  --cream:     #F6F1E8;
  --cream-2:   #a9a29a;
  --line-d:    rgba(246,241,232,0.14);

  /* ── Type ── */
  --sans:  'Schibsted Grotesk', system-ui, -apple-system, sans-serif;
  --serif: 'Fraunces', Georgia, serif;
  --mono:  'DM Mono', 'SFMono-Regular', ui-monospace, monospace;

  --max-w: 1400px;
  --gut:   clamp(1.25rem, 4vw, 4.5rem);
  --ease:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.006em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* very subtle film grain for depth — monochrome, non-interactive */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.03; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── SCROLL PROGRESS (injected by JS) ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 800; pointer-events: none;
  transition: width 0.08s linear;
}

/* ── TYPE SCALE ── */
h1, h2, h3, h4, h5 {
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(3rem, 8.5vw, 8.5rem); line-height: 0.92; letter-spacing: -0.045em; font-weight: 500; }
h2 { font-size: clamp(2.1rem, 5vw, 4.75rem); line-height: 0.98; letter-spacing: -0.038em; }
h3 { font-size: clamp(1.5rem, 3vw, 2.6rem); line-height: 1.06; letter-spacing: -0.03em; }
h4 { font-size: clamp(1rem, 1.5vw, 1.35rem); font-weight: 600; letter-spacing: -0.02em; }

/* serif-italic editorial emphasis (replaces the old red em) */
h1 em, h2 em, h3 em, .work-item-title em, .hero em, .podcast-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
}

p { color: var(--ink-70); line-height: 1.72; margin-bottom: 1rem; font-size: 1rem; }
p:last-child { margin-bottom: 0; }
p strong { color: var(--ink); font-weight: 600; }
em { font-style: italic; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--accent-dim); color: var(--ink); }

.mono {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

.label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
  display: block;
}

hr, .rule { border: none; border-top: 1px solid var(--line); }

/* everything above the grain */
nav, .page, footer, .scroll-progress { position: relative; z-index: 2; }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gut);
  border-bottom: 1px solid transparent;
  background: rgba(250,246,239,0.55);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  transition: border-color 0.4s, background 0.4s, height 0.4s var(--ease);
}
#nav.scrolled {
  border-color: var(--line);
  background: rgba(250,246,239,0.85);
  height: 60px;
}

.nav-logo {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.nav-logo::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-dim);
  animation: livepulse 2.6s ease-in-out infinite;
}
@keyframes livepulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,90,31,0.35); }
  50%     { box-shadow: 0 0 0 6px rgba(255,90,31,0); }
}

.nav-links {
  display: flex; align-items: center; gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--muted);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -4px; height: 1px;
  background: var(--accent); transition: right 0.35s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }

/* ── SOCIAL ICONS ── */
.social-icons { display: flex; align-items: center; gap: 1rem; }
.social-icons a { display: inline-flex; align-items: center; color: var(--muted); transition: color 0.25s, transform 0.2s var(--ease); }
.social-icons a:hover { color: var(--accent); transform: translateY(-2px); }
.social-icons svg { width: 16px; height: 16px; }
.nav-links a.social-ico::after { display: none; }
footer .social-icons a { color: var(--cream-2); }
footer .social-icons a:hover { color: var(--accent-2); }

/* dropdown */
.has-dropdown { position: relative; }
.dropdown {
  display: block; position: absolute; top: calc(100% + 0.9rem); left: -0.9rem;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
  border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  list-style: none; min-width: 230px; padding: 0.5rem;
  z-index: 600;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  box-shadow: 0 24px 60px -20px rgba(22,18,13,0.25);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block; padding: 0.6rem 0.85rem; border-radius: 7px;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 500;
  color: var(--ink-70); letter-spacing: -0.01em;
  transition: color 0.15s, background 0.15s;
}
.dropdown li a::after { display: none; }
.dropdown li a:hover { color: var(--ink); background: rgba(22,18,13,0.045); }
.dropdown li a.active { color: var(--ink); background: rgba(22,18,13,0.035); }

.nav-cta {
  font-family: var(--sans); font-size: 0.82rem; font-weight: 600;
  letter-spacing: -0.01em; color: #fff;
  background: var(--accent); border-radius: 100px;
  padding: 0.55rem 1.15rem;
  transition: transform 0.3s var(--ease), background 0.25s, color 0.25s, box-shadow 0.25s;
  will-change: transform;
}
.nav-cta:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(255,90,31,0.55); }

/* ── MOBILE MENU ── */
.nav-toggle { display: none; }
.mobile-menu { display: none; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }

  .nav-toggle {
    display: flex; flex-direction: column; align-items: flex-end; justify-content: center;
    gap: 5.5px; width: 40px; height: 40px; padding: 0;
    background: none; border: none; cursor: pointer;
    position: relative; z-index: 700;
  }
  .nav-toggle span {
    display: block; width: 24px; height: 1.5px; border-radius: 2px;
    background: var(--ink);
    transition: transform 0.4s var(--ease), opacity 0.25s, width 0.3s var(--ease);
  }
  .nav-toggle span:last-child { width: 16px; }
  .nav-toggle.open span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav-toggle.open span:last-child  { width: 24px; transform: translateY(-3.5px) rotate(-45deg); }

  .mobile-menu {
    display: flex; flex-direction: column; justify-content: flex-start;
    position: fixed; inset: 0; z-index: 600;
    padding: calc(60px + 5vh) var(--gut) 4vh;
    background: rgba(250,246,239,0.97);
    backdrop-filter: blur(26px) saturate(140%);
    -webkit-backdrop-filter: blur(26px) saturate(140%);
    overflow-y: auto; overscroll-behavior: contain;
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), visibility 0.45s;
  }
  .mobile-menu.open { opacity: 1; visibility: visible; transform: none; }

  .mobile-menu-inner {
    display: flex; flex-direction: column; gap: 0.15rem;
    width: 100%; max-width: 34rem; margin: auto 0;
  }
  .mm-link {
    font-family: var(--sans); font-weight: 500; letter-spacing: -0.035em;
    font-size: clamp(1.5rem, 7vw, 2.2rem); line-height: 1.12;
    color: var(--ink); padding: 0.3rem 0;
    opacity: 0; transform: translateY(14px);
    transition: color 0.2s;
  }
  .mm-link.active { color: var(--muted); }
  .mm-sub {
    display: flex; flex-direction: column;
    padding: 0.15rem 0 0.9rem 0.1rem;
    border-left: 1px solid var(--line); margin-left: 0.1rem; padding-left: 1rem;
  }
  .mm-sublink {
    font-family: var(--sans); font-weight: 500; letter-spacing: -0.01em;
    font-size: 1.02rem; color: var(--ink-70); padding: 0.42rem 0;
    opacity: 0; transform: translateY(14px);
    transition: color 0.2s;
  }
  .mm-sublink.active { color: var(--ink); }
  .mm-sublink:active, .mm-link:active { color: var(--accent-2); }
  .mm-cta {
    margin-top: 1.6rem; align-self: flex-start;
    font-family: var(--sans); font-weight: 600; font-size: 0.98rem; letter-spacing: -0.01em;
    color: var(--bg); background: var(--ink); border-radius: 100px;
    padding: 0.95rem 1.7rem;
    opacity: 0; transform: translateY(14px);
  }

  /* staggered entrance once the menu opens */
  .mobile-menu.open .mm-link,
  .mobile-menu.open .mm-sublink,
  .mobile-menu.open .mm-cta {
    animation: mmIn 0.55s var(--ease) forwards;
  }
  .mobile-menu.open .mm-link:nth-child(1) { animation-delay: 0.08s; }
  .mobile-menu.open .mm-link:nth-child(2) { animation-delay: 0.12s; }
  .mobile-menu.open .mm-link:nth-child(4) { animation-delay: 0.16s; }
  .mobile-menu.open .mm-link:nth-child(5) { animation-delay: 0.20s; }
  .mobile-menu.open .mm-sub .mm-sublink { animation-delay: 0.16s; }
  .mobile-menu.open .mm-cta { animation-delay: 0.26s; }
  @keyframes mmIn { to { opacity: 1; transform: none; } }

  body.menu-open { overflow: hidden; }
}

@media (prefers-reduced-motion: reduce) {
  .mm-link, .mm-sublink, .mm-cta { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ── PAGE WRAPPER ── */
.page { padding-top: 68px; }

/* ── HERO ── */
.hero {
  min-height: min(94vh, 900px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(3rem, 6vw, 6.5rem) var(--gut);
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(1100px 620px at 78% -8%, rgba(220,198,168,0.06), transparent 60%),
    radial-gradient(900px 700px at 8% 108%, rgba(246,244,239,0.035), transparent 55%);
}
.hero-index {
  position: absolute; top: clamp(5.5rem,10vw,7rem); right: var(--gut);
  font-family: var(--mono); font-size: 0.7rem;
  color: var(--muted); letter-spacing: 0.08em;
}
.hero-role {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: clamp(1.75rem, 4vh, 3.5rem);
}
.hero-role .label { font-size: 0.7rem; }
.hero-role-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.hero h1 {
  max-width: 18ch;
  margin-bottom: clamp(2rem, 5vh, 4.5rem);
}
.hero-meta {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero-summary {
  font-family: var(--sans); font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--ink-70); max-width: 52ch; line-height: 1.6; font-weight: 400;
  letter-spacing: -0.015em;
}
.hero-scroll {
  font-family: var(--mono); font-size: 0.66rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); display: flex; align-items: center; gap: 0.75rem;
  flex-shrink: 0;
}
.hero-scroll::before {
  content: '';
  display: block; width: 1px; height: 44px;
  background: linear-gradient(var(--accent), transparent);
  animation: pulse-line 2.2s ease-in-out infinite;
}
@keyframes pulse-line { 0%,100% { opacity:0.25; transform: scaleY(0.6); transform-origin: top; } 50% { opacity:1; transform: scaleY(1); } }

/* headline line-clip reveal on load */
.hero h1 { }
.reveal-line { display: block; overflow: hidden; }
.reveal-line > span {
  display: block;
  transform: translateY(105%);
  animation: lineUp 1s var(--ease) forwards;
}
.reveal-line:nth-child(2) > span { animation-delay: 0.08s; }
.reveal-line:nth-child(3) > span { animation-delay: 0.16s; }
@keyframes lineUp { to { transform: translateY(0); } }

/* ── LOGO STRIP ── */
.logo-strip {
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden; position: relative;
}
.logo-strip::before,.logo-strip::after {
  content:''; position:absolute; top:0; bottom:0; width:14vw; max-width:180px; z-index:2; pointer-events:none;
}
.logo-strip::before { left:0; background:linear-gradient(to right,var(--bg),transparent); }
.logo-strip::after  { right:0; background:linear-gradient(to left,var(--bg),transparent); }
.logo-track {
  display:flex; gap:clamp(3rem,6vw,5.5rem); align-items:center;
  width:max-content; animation:marquee 40s linear infinite;
}
.logo-track:hover { animation-play-state:paused; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.logo-track img, .logo-track svg {
  height:30px; width:auto; flex-shrink:0;
  filter: brightness(0) invert(1) opacity(0.34);
  transition: filter 0.35s, transform 0.35s var(--ease);
}
.logo-track a:hover img, .logo-track a:hover svg,
.logo-track img:hover, .logo-track svg:hover {
  filter: brightness(0) invert(1) opacity(0.9);
}
.logo-track a { display:flex; align-items:center; flex-shrink:0; transition:transform 0.3s var(--ease); }
.logo-track a:hover { transform:translateY(-2px); }
.logo-track a img, .logo-track a svg { pointer-events:none; }

/* ── SECTION LAYOUT ── */
.section {
  padding: clamp(4.5rem, 9vw, 9rem) var(--gut);
  max-width: var(--max-w); margin: 0 auto;
}
.section-header {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-bottom: 1.75rem; border-bottom: 1px solid var(--line);
  margin-bottom: 0; gap: 2rem;
}
.section-header .label { font-size: 0.72rem; }
.section-header h2 { font-size: clamp(0.9rem, 1.2vw, 1.05rem); font-weight: 500; }

/* ── WORK INDEX ── */
.work-list { list-style: none; }
.work-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 0 2.5rem;
  padding: clamp(1.75rem, 3.2vw, 2.75rem) 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none; color: inherit;
  position: relative;
  transition: padding-left 0.5s var(--ease);
}
.work-item::before {
  content: ''; position: absolute; inset: 0 -1.5rem; border-radius: var(--radius);
  background: var(--surface); opacity: 0;
  transform: scale(0.98); z-index: -1;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.work-item:hover { padding-left: 1.5rem; }
.work-item:hover::before { opacity: 1; transform: scale(1); }
.work-item:hover .work-item-title { color: var(--ink); }
.work-item:hover .work-item-num { color: var(--accent); }

.work-item-num {
  font-family: var(--mono); font-size: 0.72rem;
  color: var(--muted); letter-spacing: 0.06em;
  transition: color 0.3s;
}
.work-item-co {
  font-family: var(--mono); font-size: 0.68rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
  display: block; margin-bottom: 0.55rem;
}
.work-item-title {
  font-family: var(--sans); font-weight: 500;
  font-size: clamp(1.5rem, 3.4vw, 3rem);
  line-height: 1.02; letter-spacing: -0.035em;
  color: var(--ink-70);
  transition: color 0.3s;
}
.work-item-meta {
  text-align: right; display: flex; flex-direction: column;
  align-items: flex-end; gap: 0.6rem;
}
.work-item-role {
  font-family: var(--mono); font-size: 0.68rem;
  letter-spacing: 0.03em; color: var(--muted);
}
.work-item-pills { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0.4rem; }
.pill {
  font-family: var(--mono); font-size: 0.62rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-70); border: 1px solid var(--line-2);
  padding: 0.2rem 0.7rem; border-radius: 100px;
  display: inline-block; white-space: nowrap;
  transition: color 0.25s, border-color 0.25s;
}
.work-item:hover .pill { border-color: var(--accent-dim); color: var(--ink); }

@media (max-width: 720px) {
  .work-item { grid-template-columns: 34px 1fr; gap: 0 1.25rem; }
  .work-item-meta { display: none; }
  .work-item:hover { padding-left: 0.75rem; }
  .work-item::before { inset: 0 -0.9rem; }
}

/* ── LEADERSHIP ── */
.leadership-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.leadership-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: var(--max-w); margin: 0 auto;
}
.leadership-text {
  padding: clamp(4rem, 8vw, 8rem) var(--gut);
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: center;
}
.leadership-text .label { margin-bottom: 1.75rem; }
.leadership-text h2 { margin-bottom: 2rem; }
.leadership-text p { font-size: 1.05rem; max-width: 42ch; color: var(--ink-70); }
.leadership-photos {
  padding: clamp(2rem, 4vw, 3.5rem) var(--gut);
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.85rem;
  align-content: center;
}
.leadership-photos img {
  width: 100%; height: 100%; object-fit: cover;
  aspect-ratio: 4/3; border-radius: var(--radius-sm);
  filter: grayscale(40%) contrast(1.02);
  transition: filter 0.6s var(--ease), transform 0.6s var(--ease);
}
.leadership-photos img:hover { filter: grayscale(0%); transform: scale(1.015); }
.leadership-photos img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}

@media (max-width: 900px) {
  .leadership-inner { grid-template-columns: 1fr; }
  .leadership-text { border-right: none; border-bottom: 1px solid var(--line); }
}

/* ── SPEAKING ── */
.speaking-header {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 2rem;
  margin-bottom: 0;
}
.speaking-platform-btns { display: flex; gap: 1rem; align-items: center; }
.platform-btn {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-70); border: 1px solid var(--line-2); border-radius: 100px;
  padding: 0.45rem 0.95rem; transition: color 0.25s, border-color 0.25s, background 0.25s;
  display: flex; align-items: center; gap: 0.5rem;
}
.platform-btn:hover { color: var(--ink); border-color: var(--accent-dim); background: var(--surface); }
.platform-btn svg { width: 14px; height: 14px; }

.speaking-tabs {
  display: flex; gap: 0; border-bottom: 1px solid var(--line);
  margin-bottom: 0;
}
.speaking-tab {
  font-family: var(--sans); font-size: 0.85rem; font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--muted); background: none; border: none;
  padding: 1.1rem 1.75rem; cursor: pointer;
  border-bottom: 1px solid transparent; margin-bottom: -1px;
  transition: color 0.25s, border-color 0.25s;
}
.speaking-tab:hover { color: var(--ink-70); }
.speaking-tab.active { color: var(--ink); border-bottom-color: var(--accent); }
.speaking-tab-content.hidden { display: none; }

.podcast-list { list-style: none; }
.podcast-item {
  display: grid; grid-template-columns: 44px 1fr auto;
  gap: 0 2rem; align-items: center;
  padding: 1.6rem 0; border-bottom: 1px solid var(--line);
  text-decoration: none; color: inherit;
  transition: padding-left 0.4s var(--ease);
}
.podcast-item:hover { padding-left: 0.75rem; }
.podcast-item:hover .podcast-title { color: var(--ink); }
.podcast-item:hover .podcast-num { color: var(--accent); }
.podcast-num { font-family: var(--mono); font-size: 0.7rem; color: var(--muted); transition: color 0.3s; }
.podcast-source { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 0.4rem; }
.podcast-title { font-family: var(--sans); font-size: clamp(1.05rem, 2vw, 1.5rem); font-weight: 500; letter-spacing: -0.03em; color: var(--ink-70); line-height: 1.15; transition: color 0.3s; }
.podcast-dur { font-family: var(--mono); font-size: 0.66rem; color: var(--muted); white-space: nowrap; }

.teaching-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem; margin-top: 0.85rem;
}
.teaching-item {
  padding: 2.25rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 0.3s, transform 0.4s var(--ease);
}
.teaching-item:hover { border-color: var(--line-2); transform: translateY(-3px); }
.teaching-item h4 { color: var(--ink); margin-bottom: 0.75rem; font-size: 1.1rem; }
.teaching-item p { font-size: 0.92rem; color: var(--ink-70); }

@media (max-width: 720px) {
  .podcast-item { grid-template-columns: 34px 1fr; }
  .podcast-dur { display: none; }
  .teaching-grid { grid-template-columns: 1fr; }
}

/* ── CURRENTLY / NOW BIO ── */
.now-section {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.now-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 300px 1fr;
}
.now-head {
  padding: clamp(3.5rem, 7vw, 6rem) var(--gut);
  border-right: 1px solid var(--line);
}
.now-body {
  padding: clamp(3.5rem, 7vw, 6rem) var(--gut);
}
.now-body h2 { margin-bottom: 1.75rem; max-width: 20ch; font-size: clamp(1.8rem, 3.6vw, 3rem); }
.now-body > p { font-size: 1.1rem; color: var(--ink-70); max-width: 58ch; margin-bottom: 2.75rem; }
.now-list { list-style: none; border-top: 1px solid var(--line); }
.now-list li a {
  display: flex; align-items: baseline; justify-content: space-between; gap: 2rem;
  padding: 1.35rem 0; border-bottom: 1px solid var(--line);
  transition: padding-left 0.4s var(--ease);
}
.now-list li a:hover { padding-left: 0.75rem; }
.now-co {
  font-family: var(--sans); font-weight: 500;
  font-size: clamp(1.3rem, 2.6vw, 2rem); letter-spacing: -0.03em;
  color: var(--ink-70); transition: color 0.3s;
}
.now-list li a:hover .now-co { color: var(--ink); }
.now-role {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--muted); white-space: nowrap; text-align: right;
}
@media (max-width: 820px) {
  .now-inner { grid-template-columns: 1fr; }
  .now-head { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 1.5rem; }
  .now-list li a { gap: 1rem; }
}

/* ── STATS ROW ── */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  max-width: var(--max-w); margin: 0 auto;
}
.stat-item {
  padding: clamp(2.25rem, 4vw, 3.75rem) clamp(1.25rem, 3vw, 2.75rem);
  border-right: 1px solid var(--line);
  transition: background 0.35s;
}
.stat-item:hover { background: var(--bg-soft); }
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block; font-family: var(--sans); font-weight: 500;
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  line-height: 1; letter-spacing: -0.05em;
  color: var(--ink); margin-bottom: 0.75rem;
}
.stat-num em { font-style: normal; color: var(--ink); transition: color 0.35s; }
.stat-item:hover .stat-num em { color: var(--accent); }
.stat-label { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.04em; color: var(--muted); line-height: 1.55; }

@media (max-width: 820px) { .stats-row { grid-template-columns: repeat(2, 1fr); } .stat-item:nth-child(2) { border-right: none; } }
@media (max-width: 480px) { .stats-row { grid-template-columns: 1fr; } .stat-item { border-right: none; } }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--line-d);
  padding: clamp(3rem,6vw,5rem) var(--gut);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 2rem;
  background: var(--night);
}
.footer-copy { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.05em; color: var(--cream-2); }
footer > .footer-copy:last-child { text-align: right; }
.footer-links { display: flex; gap: 1.75rem; justify-content: center; }
.footer-links a { font-family: var(--sans); font-size: 0.82rem; font-weight: 500; letter-spacing: -0.01em; color: var(--cream-2); transition: color 0.25s; }
.footer-links a:hover { color: var(--accent-2); }
@media (max-width: 720px) {
  footer { grid-template-columns: 1fr; text-align: left; gap: 1.5rem; }
  footer > .footer-copy:last-child { text-align: left; }
  .footer-links { justify-content: flex-start; flex-wrap: wrap; }
}

/* ── ABOUT ── */
.about-hero {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  min-height: 82vh;
  border-bottom: 1px solid var(--line);
}
.about-hero-text {
  padding: clamp(4rem, 8vw, 8rem) var(--gut);
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.about-hero-text .label { margin-bottom: 1.75rem; }
.about-hero-text h1 { margin-bottom: 2rem; font-size: clamp(2.75rem, 6.5vw, 6rem); }
.about-hero-text p { font-size: 1.15rem; max-width: 44ch; color: var(--ink-70); }
.about-hero-photo { background: var(--surface); overflow: hidden; }
.about-hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(30%) contrast(1.02);
  transition: filter 0.6s var(--ease), transform 6s var(--ease);
}
.about-hero-photo:hover img { filter: grayscale(0%); transform: scale(1.04); }

@media (max-width: 820px) {
  .about-hero { grid-template-columns: 1fr; }
  .about-hero-text { border-right: none; border-bottom: 1px solid var(--line); min-height: auto; }
  .about-hero-photo { min-height: 55vh; }
}

.about-body {
  display: grid; grid-template-columns: 1fr 340px;
  max-width: var(--max-w); margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.about-content {
  padding: clamp(4rem, 7vw, 7rem) var(--gut);
  border-right: 1px solid var(--line);
}
.about-content > p:first-child {
  font-family: var(--sans); font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.35; letter-spacing: -0.03em; color: var(--ink);
  max-width: 26ch; margin-bottom: 2.5rem;
}
.about-content h2 { margin: 3.25rem 0 1.25rem; font-size: clamp(1.5rem,3vw,2.25rem); }
.about-content h2:first-child { margin-top: 0; }
.about-content p { font-size: 1.05rem; max-width: 58ch; color: var(--ink-70); }
.about-sidebar {
  padding: clamp(3rem, 5vw, 5rem) clamp(1.75rem,3vw,2.75rem);
  display: flex; flex-direction: column; gap: 0;
}
.about-sidebar-block {
  padding: 1.6rem 0; border-bottom: 1px solid var(--line);
}
.about-sidebar-block:first-child { padding-top: 0; }
.about-sidebar-block:last-child { border-bottom: none; }
.about-sidebar-block .label { margin-bottom: 1rem; }
.about-sidebar-block ul { list-style: none; padding: 0; }
.about-sidebar-block ul li {
  font-family: var(--sans); font-size: 0.9rem; font-weight: 500;
  color: var(--ink-70); padding: 0.45rem 0; letter-spacing: -0.01em;
  border-bottom: 1px solid var(--line);
}
.about-sidebar-block ul li:last-child { border-bottom: none; }
.about-sidebar-block p { font-size: 0.9rem; line-height: 1.7; }
.about-content p a, .about-sidebar-block ul li a {
  color: var(--ink);
  border-bottom: 1px solid var(--line-2);
  transition: color 0.2s, border-color 0.2s;
}
.about-content p a:hover, .about-sidebar-block ul li a:hover {
  color: var(--accent-2); border-color: var(--accent-dim);
}

@media (max-width: 900px) {
  .about-body { grid-template-columns: 1fr; }
  .about-content { border-right: none; border-bottom: 1px solid var(--line); }
}

/* ── CASE STUDY ── */
.case-hero-area {
  min-height: 82vh; display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(3rem, 6vw, 6rem) var(--gut);
  border-bottom: 1px solid var(--line); position: relative; overflow: hidden;
}
.case-hero-area::after {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(900px 560px at 82% -6%, rgba(255,90,31,0.10), transparent 60%),
    radial-gradient(700px 500px at 8% 104%, rgba(108,74,224,0.08), transparent 60%);
}
.case-breadcrumb {
  position: absolute; top: clamp(5.5rem,10vw,7rem); left: var(--gut);
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--mono); font-size: 0.66rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted);
}
.case-breadcrumb a { transition: color 0.2s; }
.case-breadcrumb a:hover { color: var(--ink); }
.case-breadcrumb span { opacity: 0.4; }
.case-num {
  position: absolute; top: clamp(5.5rem,10vw,7rem); right: var(--gut);
  font-family: var(--mono); font-size: 0.66rem;
  color: var(--muted); letter-spacing: 0.06em;
}
.case-co {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.case-co-badge {
  height: 34px; min-width: 34px; padding: 0 10px;
  background: var(--surface);
  border: 1px solid var(--line-2); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.case-co-badge img {
  height: 20px; width: auto; max-width: 110px; object-fit: contain;
  mix-blend-mode: multiply; opacity: 0.85;
}
.case-co-badge img.inv { filter: invert(1); }
.case-co-name { font-family: var(--sans); font-size: 0.9rem; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.case-co-div { width: 1px; height: 14px; background: var(--line-2); }
.case-co-role { font-family: var(--mono); font-size: 0.7rem; color: var(--muted); }

.case-hero-area h1 { max-width: 20ch; margin-bottom: 2.5rem; font-size: clamp(2.1rem, 4.8vw, 4rem); }

.case-specs {
  display: flex; flex-wrap: wrap; gap: 0;
  border-top: 1px solid var(--line);
}
.case-spec {
  padding: 1.25rem 2.5rem 0 0;
  margin-right: 2.5rem; border-right: 1px solid var(--line);
}
.case-spec:last-child { border-right: none; margin-right: 0; }
.case-spec dt {
  font-family: var(--mono); font-size: 0.6rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.4rem;
}
.case-spec dd { font-family: var(--sans); font-size: 0.95rem; font-weight: 500; letter-spacing: -0.01em; color: var(--ink); }

/* Case full-bleed image */
.case-full-img {
  width: 100%; max-height: 72vh; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.case-full-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Case body */
.case-body-area {
  display: grid; grid-template-columns: 1fr 320px;
  max-width: var(--max-w); margin: 0 auto;
}
.case-main {
  padding: clamp(4rem, 7vw, 7rem) var(--gut);
  border-right: 1px solid var(--line);
  min-width: 0;
}
.case-section { margin-bottom: clamp(3.5rem,6vw,5.5rem); }
.case-section-num {
  font-family: var(--mono); font-size: 0.64rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1.4rem;
}
.case-section h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.9rem); margin-bottom: 1.5rem;
}
.case-section p { font-size: 1.05rem; max-width: 64ch; line-height: 1.8; color: var(--ink-70); }
.case-section figure {
  margin: 3rem 0;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--surface);
}
.case-section figure img { width: 100%; display: block; }
.case-section figcaption {
  font-family: var(--mono); font-size: 0.66rem;
  letter-spacing: 0.04em; color: var(--muted);
  padding: 0.9rem 1.25rem;
  border-top: 1px solid var(--line);
}

/* Outcomes */
.case-outcomes { margin-bottom: clamp(3.5rem,6vw,5.5rem); }
.case-outcomes h2 { font-size: clamp(1.75rem, 3.5vw, 2.9rem); margin-bottom: 0; }
.outcomes-strip {
  display: grid; grid-template-columns: repeat(2, 1fr);
  background: var(--night); border: 1px solid var(--line-d); border-radius: var(--radius); overflow: hidden;
  margin-top: 2rem;
}
.outcome-cell {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--line-d);
  border-bottom: 1px solid var(--line-d);
  transition: background 0.3s;
}
.outcome-cell:hover { background: var(--night-2); }
.outcome-cell:nth-child(even) { border-right: none; }
.outcome-cell:nth-last-child(-n+2) { border-bottom: none; }
.outcome-num {
  display: block; font-family: var(--sans); font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.25rem); line-height: 1;
  color: var(--cream); letter-spacing: -0.04em; margin-bottom: 0.55rem;
}
.outcome-num em { color: var(--c, var(--accent)); font-style: normal; transition: color 0.3s; }
.outcome-cell:nth-child(4n+1){ --c: var(--accent); } .outcome-cell:nth-child(4n+2){ --c: var(--teal); }
.outcome-cell:nth-child(4n+3){ --c: var(--cobalt); } .outcome-cell:nth-child(4n+4){ --c: var(--plum); }
.outcome-label { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.03em; color: var(--cream-2); line-height: 1.6; }

/* ── FADED BACKGROUND PHOTO (hero / immersive sections) ── */
.bg-photo {
  position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.06);
  transition: opacity 1.8s var(--ease), transform 2.6s var(--ease);
  filter: saturate(0.15) contrast(1.05);
}
.bg-photo.in { opacity: var(--bg-op, 0.32); transform: scale(1); }
.bg-scrim {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(250,246,239,0.15), rgba(250,246,239,0.55) 55%, var(--bg) 96%);
}
.case-hero-area .bg-scrim { background: linear-gradient(160deg, rgba(250,246,239,0.25), rgba(250,246,239,0.78) 70%, var(--bg) 98%); }

/* case figures: full color, subtle zoom on hover */
.case-section figure img { transition: filter 0.5s var(--ease), transform 0.6s var(--ease); }
.case-section figure:hover img { transform: scale(1.015); }

/* two-up figure gallery */
.fig-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 3rem 0; }
.fig-grid figure { margin: 0; }
@media (max-width: 700px) { .fig-grid { grid-template-columns: 1fr; } }

/* big editorial highlight/quote block */
.case-quote {
  margin: 3rem 0; padding: 0 0 0 1.75rem; border-left: 2px solid var(--accent);
}
.case-quote p {
  font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(1.3rem, 2.6vw, 2rem);
  line-height: 1.35; letter-spacing: -0.01em; color: var(--ink); max-width: 32ch;
}

/* Case sidebar */
.case-sidebar {
  padding: clamp(3rem, 5vw, 5rem) clamp(1.5rem,2.5vw,2.25rem);
  position: sticky; top: 68px;
  height: fit-content;
}
.case-sidebar-block { padding-bottom: 2rem; margin-bottom: 2rem; border-bottom: 1px solid var(--line); }
.case-sidebar-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.case-sidebar-block .label { margin-bottom: 1rem; }
.case-sidebar-block p { font-size: 0.9rem; line-height: 1.7; color: var(--ink-70); }
.case-sidebar-block ul { list-style: none; padding: 0; }
.case-sidebar-block ul li {
  font-family: var(--sans); font-size: 0.86rem; font-weight: 500;
  color: var(--ink-70); padding: 0.4rem 0; letter-spacing: -0.01em;
  border-bottom: 1px solid var(--line);
}
.case-sidebar-block ul li:last-child { border-bottom: none; }
.tag-list { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag {
  font-family: var(--mono); font-size: 0.62rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line-2); border-radius: 100px;
  padding: 0.2rem 0.65rem; transition: color 0.2s, border-color 0.2s;
}
.tag:hover { color: var(--ink); border-color: var(--accent-dim); }

/* Case nav — dark closing bookend */
.case-nav {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-d);
  background: var(--night);
}
.case-nav a {
  padding: clamp(2rem,4vw,3rem) var(--gut);
  border-right: 1px solid var(--line-d);
  display: flex; flex-direction: column; gap: 0.5rem;
  transition: background 0.3s;
}
.case-nav a:hover { background: var(--night-2); }
.case-nav a:hover .case-nav-title { color: var(--cream); }
.case-nav a:last-child { border-right: none; text-align: right; align-items: flex-end; }
.case-nav-dir {
  font-family: var(--mono); font-size: 0.62rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-2);
}
.case-nav-title { font-family: var(--sans); font-size: clamp(1.05rem, 1.8vw, 1.5rem); font-weight: 500; letter-spacing: -0.02em; color: var(--cream-2); transition: color 0.3s; }

@media (max-width: 960px) {
  .case-body-area { grid-template-columns: 1fr; }
  .case-sidebar { position: static; height: auto; border-top: 1px solid var(--line); }
}
@media (max-width: 600px) {
  .case-nav { grid-template-columns: 1fr; }
  .case-nav a:last-child { border-right: none; border-top: 1px solid var(--line-d); text-align: left; align-items: flex-start; }
  .outcomes-strip { grid-template-columns: 1fr; }
  .outcome-cell { border-right: none; }
  .outcome-cell:nth-last-child(2) { border-bottom: 1px solid var(--line-d); }
}

/* ── REVEAL ANIMATIONS ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.40s; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #d8cba9; border-radius: 100px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #c2b085; }

@media (hover: none), (pointer: coarse) {
  .speaking-tab { cursor: pointer; }
}

@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; }
  .reveal-line > span { transform: none; }
  [data-reveal] { opacity: 1; transform: none; }
}
