/* ============ tokens & base ============ */
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/archivo-latin-variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #EDEAE1;
  --ink: #21201A;
  --ink-dim: #655F51;
  --ink-dimmer: #7A7566;
  --green: #1A5B45;
  --green-bright: #1FA678;
  --dark: #181712;
  --darker: #16150F;
  --paper: #F4F1EA;
  --panel-alt: #EDE9DF;
  --slate: #6E6A5E;
  --slate-light: #8A8578;
  --ink-soft: #3E3C34;
  --err: #9B3B2E;
  --shadow-out: 8px 8px 20px rgba(33, 32, 26, 0.12), -8px -8px 20px rgba(255, 255, 255, 0.85);
  --shadow-out-sm: 6px 6px 14px rgba(33, 32, 26, 0.14), -6px -6px 14px rgba(255, 255, 255, 0.8);
  --shadow-out-xs: 5px 5px 12px rgba(33, 32, 26, 0.14), -5px -5px 12px rgba(255, 255, 255, 0.85);
  --shadow-in: inset 7px 7px 16px rgba(33, 32, 26, 0.26), inset -7px -7px 16px rgba(255, 255, 255, 0.85);
  --shadow-in-active: inset 10px 10px 20px rgba(33, 32, 26, 0.34), inset -10px -10px 20px rgba(255, 255, 255, 0.85);
}

body.paper { background: var(--paper); color: var(--darker); }
body.paper a { color: var(--darker); }
body.paper a:hover { color: var(--green); }

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

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Archivo', sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--green); }

::selection { background: var(--green); color: var(--paper); }

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

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

.dashed {
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(33, 32, 26, 0.25) 0 6px, transparent 6px 12px);
}

/* ============ nav ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(244, 241, 234, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(22, 21, 15, 0.08);
}

.site-header .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.site-header .brand .dot { color: var(--green); font-size: 18px; line-height: 1; }

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
}

.nav-location {
  font-size: 12px;
  color: #8A8578;
  letter-spacing: 0.02em;
  margin-right: 8px;
  display: none;
}

.nav-links {
  display: none;
  align-items: center;
  gap: clamp(16px, 2.2vw, 28px);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a.active { color: var(--green); }

.nav-toggle {
  background: none;
  border: 1px solid rgba(22, 21, 15, 0.2);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  color: #16150F;
  display: inline-flex;
}

@media (min-width: 860px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

@media (min-width: 1180px) {
  .nav-location { display: inline; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--paper);
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 0 32px;
  gap: 8px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: clamp(32px, 9vw, 48px);
  font-weight: 900;
  letter-spacing: -0.03em;
  padding: 10px 0;
  border-bottom: 1px solid rgba(22, 21, 15, 0.1);
}

.mobile-menu a:last-of-type { border-bottom: none; }

.mobile-menu .loc {
  margin-top: 24px;
  font-size: 13px;
  color: #8A8578;
}

@media (min-width: 860px) {
  .mobile-menu { display: none !important; }
}

/* ============ layout ============ */
main {
  background: var(--cream);
  padding: clamp(120px, 15vh, 168px) clamp(16px, 3.5vw, 40px) clamp(40px, 5vw, 64px);
}

.wrap {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.panel {
  background: var(--cream);
  border-radius: 32px;
  box-shadow: var(--shadow-out);
  padding: clamp(24px, 3vw, 40px);
}

/* ============ hero ============ */
.hero-row { display: flex; flex-wrap: wrap; gap: 20px; animation: rise .6s ease both; }

.hero-card {
  flex: 3 1 620px;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 3vw, 40px);
  align-items: stretch;
}

.hero-portrait {
  flex: 1 1 240px;
  position: relative;
  align-self: center;
  aspect-ratio: 4 / 5;
  max-height: 420px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 6px 6px 16px rgba(33, 32, 26, 0.14) inset;
}

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

.hero-copy { flex: 1.5 1 320px; align-self: center; }

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-dimmer);
}

.hero-kicker .dot { color: var(--green); }

.hero-copy h1 {
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 18px 0 0;
  text-wrap: balance;
}

.hero-copy .dashed { margin: 24px 0; }

.hero-copy p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-dim);
  max-width: 480px;
  margin: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--cream);
  padding: 14px 22px 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: var(--shadow-out-xs);
  transition: box-shadow .2s cubic-bezier(0.22, 1, 0.36, 1), transform .2s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-cta .arrow {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.icon-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: var(--shadow-out-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--green);
  transition: box-shadow .2s cubic-bezier(0.22, 1, 0.36, 1), transform .2s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-cta:hover, .icon-btn:hover { box-shadow: var(--shadow-in); transform: scale(0.985); color: inherit; }
.btn-cta:active, .icon-btn:active { box-shadow: var(--shadow-in-active); transform: scale(0.97); }
.icon-btn:hover { color: var(--green); }

/* ============ selected work ============ */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px 4px 16px;
}

.section-head h2 {
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0;
}

.section-head .meta {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-dimmer);
  letter-spacing: 0.06em;
}

.work-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.work-card {
  position: relative;
  border-radius: 24px;
  background: var(--cream);
  box-shadow: var(--shadow-out-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s cubic-bezier(0.22, 1, 0.36, 1), transform .2s cubic-bezier(0.22, 1, 0.36, 1);
}

.work-card:hover { box-shadow: var(--shadow-in); transform: scale(0.99); }
.work-card:active { box-shadow: var(--shadow-in-active); transform: scale(0.98); }

.work-card .work-card-cover {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0;
}

.work-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.work-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.work-card-top h3 { font-size: 19px; font-weight: 800; letter-spacing: -0.015em; margin: 0; color: var(--ink); }

.work-card-arrow {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--green);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: transform .2s cubic-bezier(0.22, 1, 0.36, 1);
}

.work-card:hover .work-card-arrow { transform: translateX(3px); }

.work-card-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.work-card-meta .year { font-size: 12px; font-weight: 600; color: var(--ink-dimmer); }
.work-card-meta .status-pill { font-size: 11px; font-weight: 700; border-radius: 999px; padding: 3px 11px; border: 1px solid; }

.work-card-desc { font-size: 14px; line-height: 1.55; color: var(--ink-dim); margin: 0; }

.work-card-viewall {
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 40px 20px;
}

.work-card-viewall .work-card-arrow { width: 40px; height: 40px; font-size: 16px; }
.work-card-viewall .label { font-weight: 700; font-size: 15px; color: var(--ink); }

/* ============ what I work on ============ */
.work-on-row { display: flex; flex-wrap: wrap; gap: 20px; }

.work-on-panel { flex: 2 1 560px; padding: clamp(28px, 3vw, 44px); }

.work-on-panel h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 clamp(24px, 3vw, 36px);
}

.work-on-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(24px, 3vw, 36px);
}

.work-on-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: #FBFAF6;
  box-shadow: 4px 4px 10px rgba(33, 32, 26, 0.10), -4px -4px 10px rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.work-on-grid h3 { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; line-height: 1.25; margin: 0 0 8px; }
.work-on-grid .dashed { margin-bottom: 10px; }
.work-on-grid p { font-size: 13.5px; line-height: 1.55; color: var(--ink-dimmer); margin: 0; }

.stats-grid {
  flex: 1 1 260px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: var(--cream);
  border-radius: 24px;
  box-shadow: 6px 6px 16px rgba(33, 32, 26, 0.12), -6px -6px 16px rgba(255, 255, 255, 0.85);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-card .value { font-size: clamp(28px, 3vw, 36px); font-weight: 900; letter-spacing: -0.03em; line-height: 1; }
.stat-card .value.green { color: var(--green); }
.stat-card .label { font-size: 12px; color: var(--ink-dimmer); margin-top: 8px; line-height: 1.4; }

/* ============ about + current focus ============ */
.about-row { display: flex; flex-wrap: wrap; gap: 20px; }

.about-panel {
  flex: 1.3 1 480px;
  background: var(--dark);
  color: var(--paper);
  border-radius: 32px;
  box-shadow: 10px 10px 26px rgba(0, 0, 0, 0.28);
  padding: clamp(28px, 3.2vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-panel .kicker { color: #3FCB94; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

.about-panel h2 {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 18px 0 0;
  text-wrap: balance;
}

.about-panel p { font-size: 14.5px; line-height: 1.65; color: rgba(244, 241, 234, 0.62); margin: 20px 0 0; }

.about-panel .link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  border-bottom: 2px solid #3FCB94;
  padding-bottom: 3px;
  margin-top: 24px;
  align-self: flex-start;
  color: var(--paper);
}

.focus-col { flex: 1 1 340px; display: flex; flex-direction: column; gap: 20px; }

.focus-card {
  background: var(--cream);
  border-radius: 24px;
  box-shadow: 6px 6px 16px rgba(33, 32, 26, 0.12), -6px -6px 16px rgba(255, 255, 255, 0.85);
  padding: 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow .2s cubic-bezier(0.22, 1, 0.36, 1), transform .2s cubic-bezier(0.22, 1, 0.36, 1);
}

.focus-card:hover { box-shadow: var(--shadow-in); transform: scale(0.985); }
.focus-card:active { box-shadow: var(--shadow-in-active); transform: scale(0.97); }
.focus-card h3 { font-size: 18px; font-weight: 800; letter-spacing: -0.015em; margin: 0 0 6px; }
.focus-card p { font-size: 13.5px; line-height: 1.5; color: var(--ink-dimmer); margin: 0; }

/* ============ speaking + ideas ============ */
.speaking-row { display: flex; flex-wrap: wrap; gap: 20px; }

.speaking-panel { flex: 1 1 380px; padding: clamp(28px, 3vw, 40px); }
.ideas-panel { flex: 1.2 1 420px; padding: clamp(28px, 3vw, 40px); }

.speaking-panel .kicker, .ideas-panel .kicker {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.speaking-panel h2 {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 16px 0 14px;
  text-wrap: balance;
}

.speaking-panel p { font-size: 14.5px; line-height: 1.65; color: var(--ink-dim); margin: 0 0 22px; }

.speaking-panel .link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 3px;
}

.speaking-panel .link:hover { color: var(--green); border-bottom-color: var(--green); }

.ideas-list { display: flex; flex-direction: column; margin-top: 14px; }

.idea-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(33, 32, 26, 0.2);
}

.idea-row:last-child { border-bottom: none; }

.idea-row .title { font-size: 14.5px; font-weight: 700; letter-spacing: -0.005em; line-height: 1.35; }

.idea-row .tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-dimmer);
  border: 1px solid rgba(33, 32, 26, 0.25);
  border-radius: 999px;
  padding: 3px 9px;
  white-space: nowrap;
}

/* ============ footer ============ */
.site-footer {
  background: var(--darker);
  color: var(--paper);
  padding: clamp(80px, 12vw, 160px) clamp(20px, 6vw, 80px) 0;
}

.footer-inner { max-width: 1280px; margin: 0 auto; }

.footer-inner .kicker {
  color: var(--green-bright);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-inner h2 {
  font-size: clamp(48px, 8.5vw, 128px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin: 24px 0 0;
  text-wrap: balance;
}

.footer-inner > p {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.6;
  color: rgba(244, 241, 234, 0.65);
  max-width: 560px;
  margin: 32px 0 0;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
}

.btn-footer {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green);
  color: var(--paper);
  padding: 18px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  transition: transform .25s ease;
}

.btn-footer:hover { transform: translateY(-2px); color: var(--paper); background: var(--green-bright); }

.footer-links { display: flex; flex-wrap: wrap; gap: 20px; font-size: 14px; color: rgba(244, 241, 234, 0.6); }
.footer-links a { color: rgba(244, 241, 234, 0.75); border-bottom: 1px solid rgba(244, 241, 234, 0.25); padding-bottom: 2px; }
.footer-links a:hover { color: var(--green-bright); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(244, 241, 234, 0.14);
  margin-top: clamp(64px, 9vw, 120px);
  padding: 28px 0 32px;
  font-size: 13px;
  color: rgba(244, 241, 234, 0.5);
}

.footer-bottom .brand { display: flex; align-items: center; gap: 10px; font-weight: 700; color: rgba(244, 241, 234, 0.8); }
.footer-bottom .brand .dot { color: var(--green-bright); }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-bottom nav a { color: rgba(244, 241, 234, 0.6); }
.footer-bottom nav a:hover { color: var(--green-bright); }

/* ============ subpage shared: hero, media placeholder ============ */
.subpage-hero { padding: clamp(140px, 16vh, 190px) clamp(20px, 6vw, 80px) clamp(40px, 5vw, 64px); }
.subpage-hero .inner { max-width: 1280px; margin: 0 auto; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.subpage-hero h1 {
  font-size: clamp(38px, 5.4vw, 84px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 20px 0 0;
  text-wrap: balance;
}

.subpage-hero p.lead {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  color: var(--slate);
  max-width: 560px;
  margin: 28px 0 0;
}

.media-slot {
  position: relative;
  width: 100%;
  border-radius: 16px;
  background: var(--panel-alt);
  background-image: radial-gradient(circle at 1px 1px, rgba(22, 21, 15, 0.07) 1px, transparent 0);
  background-size: 16px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.media-slot .mark {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: rgba(22, 21, 15, 0.16);
}

.media-slot .caption {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(22, 21, 15, 0.28);
}

.pill-static {
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(22, 21, 15, 0.25);
  border-radius: 999px;
  padding: 10px 18px;
}

.status-pill {
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 12px;
}

/* ============ work page ============ */
.work-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 44px; }

.filter-btn {
  font-family: inherit;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(22, 21, 15, 0.25);
  background: transparent;
  color: var(--darker);
  transition: all .25s ease;
}

.filter-btn.active { background: var(--darker); color: var(--paper); border-color: var(--darker); }

.work-list {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 6vw, 80px) clamp(80px, 10vw, 120px);
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 88px);
}

.work-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  border-top: 1px solid rgba(22, 21, 15, 0.15);
  padding-top: clamp(32px, 4vw, 56px);
}

.work-row.reverse { direction: rtl; }
.work-row.reverse > * { direction: ltr; }

.work-row .cover { display: block; width: 100%; aspect-ratio: 16 / 10; }

.work-row .meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-row .meta-row .year, .work-row .meta-row .category { color: var(--slate); }
.work-row .meta-row .status-pill { border: 1px solid; }

.work-row h2 { font-size: clamp(30px, 3.6vw, 52px); font-weight: 900; letter-spacing: -0.03em; line-height: 1; margin: 18px 0 0; }
.work-row h2 a:hover { color: var(--green); }
.work-row p.tagline { font-size: 16px; line-height: 1.65; color: var(--slate); margin: 16px 0 0; max-width: 480px; }
.work-row .role { font-size: 13px; font-weight: 600; color: var(--slate-light); margin-top: 14px; }
.work-row .links-row { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 24px; }

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  border-bottom: 2px solid var(--darker);
  padding-bottom: 3px;
}

.case-link:hover { color: var(--green); border-bottom-color: var(--green); }

.site-link { font-size: 14px; font-weight: 600; color: var(--slate); border-bottom: 1px solid rgba(22, 21, 15, 0.25); padding-bottom: 3px; }
.site-link:hover { color: var(--green); }

/* ============ project (case study) page ============ */
.case-hero { padding: clamp(130px, 15vh, 180px) clamp(20px, 6vw, 80px) 0; }
.case-hero .inner { max-width: 1280px; margin: 0 auto; }

.back-link { font-size: 13px; font-weight: 700; color: var(--slate); letter-spacing: 0.06em; }
.back-link:hover { color: var(--green); }

.case-hero h1 { font-size: clamp(44px, 7vw, 110px); font-weight: 900; letter-spacing: -0.04em; line-height: 0.98; margin: 18px 0 0; }

.case-hero .tagline {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: var(--slate);
  max-width: 26em;
  margin: 24px 0 0;
  text-wrap: balance;
}

.case-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  border-top: 1px solid rgba(22, 21, 15, 0.15);
  margin-top: 44px;
  padding-top: 24px;
}

.case-facts .label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--slate-light); text-transform: uppercase; }
.case-facts .value { font-size: 15px; font-weight: 600; margin-top: 8px; }
.case-facts .value.link-value { color: var(--green); display: inline-block; }

.case-cover { position: relative; width: 100%; aspect-ratio: 16 / 8; margin-top: 44px; border-radius: 20px; }

.case-body {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 110px) clamp(20px, 6vw, 80px) 0;
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 7vw, 96px);
}

.case-block { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(20px, 3vw, 48px); }
.case-block h2 { font-size: clamp(24px, 2.6vw, 36px); font-weight: 900; letter-spacing: -0.025em; margin: 0; }
.case-block h2 .dot { color: var(--green); }
.case-block p { font-size: clamp(16px, 1.6vw, 20px); line-height: 1.7; margin: 0; grid-column: span 2 / auto; }

.case-insight {
  background: var(--darker);
  color: var(--paper);
  border-radius: 20px;
  padding: clamp(32px, 5vw, 72px);
}

.case-insight .kicker { color: var(--green-bright); font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.case-insight p { font-size: clamp(20px, 2.6vw, 34px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.35; margin: 20px 0 0; text-wrap: balance; }

.case-flow-heading { font-size: clamp(24px, 2.6vw, 36px); font-weight: 900; letter-spacing: -0.025em; margin: 0 0 28px; }
.case-flow { display: flex; flex-wrap: wrap; align-items: stretch; gap: 12px; }
.case-flow .step-wrap { display: flex; align-items: center; gap: 12px; }

.case-flow .step {
  border: 1px solid rgba(22, 21, 15, 0.25);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 140px;
  background: var(--panel-alt);
}

.case-flow .step .num { font-size: 11px; font-weight: 800; color: var(--green); letter-spacing: 0.08em; }
.case-flow .step .label { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.case-flow .arrow { font-size: 18px; color: var(--slate-light); }

.case-tags { display: flex; flex-wrap: wrap; gap: 10px; grid-column: span 2 / auto; }

.case-metrics { display: flex; flex-wrap: wrap; gap: clamp(28px, 4vw, 64px); }
.case-metrics .value { font-size: clamp(44px, 5vw, 72px); font-weight: 900; letter-spacing: -0.04em; color: var(--green); line-height: 1; }
.case-metrics .label { font-size: 14px; color: var(--slate); margin-top: 10px; }

.case-media-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.case-media-grid .media-slot { aspect-ratio: 16 / 10; }

.case-links-list { display: flex; flex-direction: column; }

.case-links-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(22, 21, 15, 0.15);
}

.case-links-list a:hover { color: var(--green); }
.case-links-list .link-name { font-size: 17px; font-weight: 700; }
.case-links-list .link-meta { display: flex; align-items: center; gap: 14px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: var(--slate-light); text-transform: uppercase; }

.case-related {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 110px) clamp(20px, 6vw, 80px) clamp(80px, 10vw, 120px);
}

.case-related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(20px, 3vw, 40px); }

.case-related-grid a { display: block; border-top: 2px solid var(--darker); padding-top: 20px; }
.case-related-grid a:hover { color: var(--green); }
.case-related-grid .category { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: var(--slate); text-transform: uppercase; }
.case-related-grid h3 { font-size: clamp(26px, 3vw, 40px); font-weight: 900; letter-spacing: -0.03em; margin: 12px 0 10px; }
.case-related-grid p { font-size: 15px; line-height: 1.6; color: var(--slate); margin: 0; }

.case-pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(22, 21, 15, 0.15);
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: 28px;
}

.case-pager a { font-weight: 700; font-size: 15px; }
.case-pager .pager-links { display: flex; gap: 28px; }
.case-pager .pager-links a { color: var(--slate); }
.case-pager .pager-links a:hover { color: var(--green); }

/* ============ about page ============ */
.about-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 5vw, 80px);
  margin-top: clamp(40px, 5vw, 72px);
  align-items: start;
}

.about-hero-grid .portrait { position: relative; width: 100%; aspect-ratio: 4 / 5; border-radius: 20px; overflow: hidden; }
.about-hero-grid .portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }

.about-bio { display: flex; flex-direction: column; gap: 20px; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.7; color: var(--ink-soft); }
.about-bio p { margin: 0; }

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  border-bottom: 2px solid var(--darker);
  padding-bottom: 4px;
  margin-top: 8px;
  align-self: flex-start;
}

.about-cta:hover { color: var(--green); border-bottom-color: var(--green); }

.about-extra {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 6vw, 80px);
  background: var(--panel-alt);
}

.about-extra .inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 5vw, 72px);
}

.about-extra .pull-quote { font-size: clamp(18px, 2vw, 24px); font-weight: 600; letter-spacing: -0.015em; line-height: 1.5; margin: 20px 0 0; }
.about-extra .note { font-size: 16px; line-height: 1.7; color: var(--slate); margin: 18px 0 0; }
.about-extra .tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

/* ============ ideas page ============ */
.idea-list { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 6vw, 80px) clamp(80px, 10vw, 120px); display: flex; flex-direction: column; }

.idea-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: clamp(24px, 3vw, 40px) 0;
  border-top: 1px solid rgba(22, 21, 15, 0.15);
}

.idea-item .meta-row { display: flex; flex-wrap: wrap; gap: 14px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate); }
.idea-item .meta-row .category { color: var(--green); }
.idea-item h2 { font-size: clamp(22px, 2.8vw, 40px); font-weight: 900; letter-spacing: -0.025em; line-height: 1.1; margin: 14px 0 10px; max-width: 22em; text-wrap: balance; }
.idea-item .excerpt { font-size: 15px; line-height: 1.6; color: var(--slate); margin: 0; max-width: 600px; }

.idea-item .badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  border-radius: 999px;
  padding: 6px 14px;
  white-space: nowrap;
  align-self: start;
  margin-top: 8px;
  border: 1px solid;
}

.idea-item .badge.draft { color: var(--slate); border-color: var(--slate); }
.idea-item .badge.upcoming { color: var(--green); border-color: var(--green); }

.idea-more { border-top: 1px solid rgba(22, 21, 15, 0.15); padding-top: 32px; font-size: 14px; color: var(--slate-light); }

/* ============ speaking page ============ */
.speaking-media {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 6vw, 80px) clamp(60px, 8vw, 100px);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.speaking-media .main-still { position: relative; width: 100%; aspect-ratio: 16 / 9; min-width: 280px; border-radius: 20px; }
.speaking-media .side-col { display: grid; grid-template-rows: 1fr 1fr; gap: 20px; min-width: 200px; }
.speaking-media .side-col .media-slot { border-radius: 16px; }

.speaking-areas { padding: clamp(60px, 8vw, 100px) clamp(20px, 6vw, 80px); background: var(--darker); color: var(--paper); }
.speaking-areas .inner { max-width: 1280px; margin: 0 auto; }
.speaking-areas .kicker { color: var(--green-bright); font-size: 14px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }

.speaking-areas .areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0 clamp(24px, 4vw, 64px);
  margin-top: 28px;
}

.speaking-areas .areas-grid div {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 700;
  letter-spacing: -0.015em;
  padding: 20px 0;
  border-bottom: 1px solid rgba(244, 241, 234, 0.15);
}

.speaking-organisers {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 6vw, 80px);
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.speaking-organisers p { font-size: 16px; line-height: 1.7; color: var(--ink-soft); margin: 20px 0 0; }
.speaking-organisers .portrait { position: relative; width: 100%; aspect-ratio: 3 / 4; max-width: 320px; border-radius: 16px; overflow: hidden; }
.speaking-organisers .portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============ contact page ============ */
.contact-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(140px, 16vh, 190px) clamp(20px, 6vw, 80px) clamp(80px, 10vw, 120px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.contact-grid h1 { font-size: clamp(38px, 5vw, 76px); font-weight: 900; letter-spacing: -0.04em; line-height: 1; margin: 20px 0 0; text-wrap: balance; }
.contact-grid > div:first-child > p { font-size: clamp(15px, 1.4vw, 18px); line-height: 1.65; color: var(--slate); max-width: 480px; margin: 28px 0 0; }

.contact-links { display: flex; flex-direction: column; gap: 14px; margin-top: 44px; font-size: 15px; font-weight: 600; }
.contact-links a, .contact-links span { display: inline-flex; gap: 12px; align-items: center; }
.contact-links a:hover { color: var(--green); }
.contact-links .dot { color: var(--green); }
.contact-links span { color: var(--slate); }

.contact-form { display: flex; flex-direction: column; gap: 22px; background: var(--panel-alt); border-radius: 20px; padding: clamp(24px, 3vw, 44px); }
.contact-form .field { display: flex; flex-direction: column; gap: 8px; }
.contact-form label { font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate); }

.contact-form input, .contact-form select, .contact-form textarea {
  font-family: inherit;
  font-size: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(22, 21, 15, 0.2);
  border-radius: 10px;
  background: var(--paper);
  color: var(--darker);
}

.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 2px solid var(--green); outline-offset: 1px; }
.contact-form .honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.contact-form .form-error {
  font-size: 14px;
  font-weight: 600;
  color: var(--err);
  border: 1px solid var(--err);
  border-radius: 10px;
  padding: 12px 16px;
  display: none;
}

.contact-form .form-error.show { display: block; }

.contact-form button[type="submit"] {
  font-family: inherit;
  cursor: pointer;
  background: var(--darker);
  color: var(--paper);
  border: none;
  border-radius: 999px;
  padding: 18px 32px;
  font-size: 16px;
  font-weight: 700;
  transition: background .25s ease;
}

.contact-form button[type="submit"]:hover { background: var(--green); }
.contact-form .form-note { font-size: 12px; color: var(--slate-light); line-height: 1.5; }
