:root {
  --ink: #111714;
  --ink-soft: #1c2420;
  --paper: #f2f0e8;
  --paper-deep: #e6e1d4;
  --olive: #73814d;
  --olive-dark: #39442d;
  --signal: #d8ff63;
  --orange: #ee6b3a;
  --white: #fffef8;
  --muted: #626a64;
  --line: rgba(17, 23, 20, 0.18);
  --line-light: rgba(255, 254, 248, 0.2);
  --sans: -apple-system, BlinkMacSystemFont, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --page: min(1480px, calc(100vw - 80px));
  --section-space: clamp(88px, 10vw, 160px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  width: var(--page);
  min-height: 96px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
}

.brand-mark {
  width: 46px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--signal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: grid;
  line-height: 1.12;
}

.brand-copy strong {
  font-size: 14px;
  letter-spacing: -0.01em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 44px);
}

.site-nav a {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-nav a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  padding: 11px 16px;
  border: 1px solid var(--ink);
  transition: background 180ms ease, color 180ms ease;
}

.nav-contact:hover {
  background: var(--ink);
  color: var(--white);
}

.nav-toggle {
  display: none;
}

.hero {
  width: var(--page);
  min-height: min(850px, calc(100vh - 96px));
  margin: 0 auto;
  padding: clamp(64px, 7vw, 110px) 0 clamp(72px, 8vw, 120px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  gap: clamp(52px, 7vw, 120px);
  align-items: center;
}

.eyebrow,
.section-index {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow span {
  width: 32px;
  height: 8px;
  background: var(--orange);
}

.hero h1 {
  max-width: 800px;
  margin: 34px 0 0;
  font-size: clamp(54px, 6.4vw, 102px);
  font-weight: 570;
  line-height: 0.95;
  letter-spacing: -0.064em;
}

.hero h1 em {
  color: var(--olive);
  font-style: normal;
}

.hero-intro {
  max-width: 650px;
  margin: 40px 0 0;
  color: #3f4742;
  font-size: clamp(19px, 1.65vw, 26px);
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.hero-actions {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  color: var(--white);
}

.button-primary:hover {
  background: var(--olive-dark);
}

.text-link {
  padding: 8px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-fields {
  max-width: 690px;
  margin: 80px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.hero-fields div {
  padding: 16px 10px 0 0;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.hero-fields dt {
  color: var(--olive);
  font-size: 10px;
  font-weight: 800;
}

.hero-fields dd {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
}

.hero-portrait {
  width: min(100%, 600px);
  margin: 0;
  justify-self: end;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  background: #d7d4cb;
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 0.88;
  object-fit: cover;
  object-position: 50% 45%;
  filter: saturate(0.88) contrast(1.02);
}

.portrait-label {
  position: absolute;
  z-index: 1;
  padding: 8px 10px;
  background: var(--signal);
  color: var(--ink);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.portrait-label-top {
  top: 22px;
  right: 0;
}

.portrait-label-bottom {
  right: 22px;
  bottom: 22px;
  background: var(--ink);
  color: var(--white);
}

.hero-portrait figcaption {
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.signal-strip {
  min-height: 74px;
  padding: 20px max(40px, calc((100vw - 1480px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  background: var(--signal);
}

.signal-strip p {
  margin: 0;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.signal-strip span {
  flex: 1;
  min-width: 18px;
  height: 1px;
  background: rgba(17, 23, 20, 0.4);
}

.section {
  padding: var(--section-space) max(40px, calc((100vw - 1480px) / 2));
}

.section-heading {
  max-width: 950px;
}

.section-heading h2,
.approach-intro h2,
.contact-copy h2 {
  margin: 28px 0 0;
  font-size: clamp(44px, 5vw, 78px);
  font-weight: 570;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section-heading > p:last-child,
.approach-intro > p:last-child {
  max-width: 700px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
}

.venture-grid {
  margin-top: 76px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.venture-card {
  min-height: 570px;
  padding: clamp(28px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.venture-card-primary {
  background: var(--olive);
  color: var(--white);
}

.venture-card-dark {
  background: var(--ink);
  color: var(--white);
}

.venture-card-secondary {
  min-height: 410px;
  background: var(--paper-deep);
}

.venture-card-accent {
  background: var(--orange);
  color: var(--ink);
}

.venture-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.venture-body {
  margin-top: auto;
  padding-top: 80px;
}

.venture-number {
  margin: 0 0 20px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.venture-card h3 {
  margin: 0;
  font-size: clamp(42px, 4.6vw, 72px);
  font-weight: 570;
  letter-spacing: -0.055em;
  line-height: 1;
}

.venture-card p:not(.venture-number) {
  max-width: 560px;
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 1.55;
}

.venture-proof {
  margin-top: 48px;
  padding-top: 18px;
  display: flex;
  align-items: end;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.venture-proof strong {
  font-size: 38px;
  line-height: 1;
}

.venture-proof span {
  max-width: 220px;
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.venture-proof-words {
  justify-content: space-between;
}

.venture-proof-words span {
  color: var(--signal);
  font-size: clamp(13px, 1.4vw, 20px);
  font-weight: 800;
  letter-spacing: 0.1em;
}

.venture-card > a {
  width: fit-content;
  margin-top: 36px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.approach-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(500px, 1.2fr);
  gap: clamp(70px, 10vw, 170px);
  background: var(--ink);
  color: var(--white);
}

.section-index-light,
.approach-intro > p:last-child {
  color: rgba(255, 254, 248, 0.63);
}

.approach-intro {
  align-self: start;
  position: sticky;
  top: 30px;
}

.principle-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.principle-list li {
  padding: 34px 0;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line-light);
}

.principle-number {
  color: var(--signal);
  font-size: 10px;
  font-weight: 900;
}

.principle-list h3 {
  margin: 0;
  font-size: clamp(23px, 2.2vw, 35px);
  font-weight: 540;
  letter-spacing: -0.035em;
}

.principle-list p {
  max-width: 570px;
  margin: 12px 0 0;
  color: rgba(255, 254, 248, 0.65);
  font-size: 15px;
}

.speaking-section {
  background: var(--white);
}

.section-heading-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  gap: 80px;
  align-items: end;
}

.section-heading-split > p:last-child {
  margin: 0;
  padding-bottom: 8px;
}

.speaking-layout {
  margin-top: 76px;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(50px, 8vw, 130px);
}

.speaking-image {
  margin: 0;
}

.speaking-image img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  object-position: 50% 28%;
  filter: saturate(0.72) contrast(1.04);
}

.speaking-image figcaption {
  padding: 13px 0;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.appearance-list {
  border-top: 1px solid var(--line);
}

.appearance {
  min-height: 118px;
  padding: 22px 4px;
  display: grid;
  grid-template-columns: 80px 1fr 30px;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  transition: padding 200ms ease, background 200ms ease;
}

a.appearance:hover {
  padding-right: 18px;
  padding-left: 18px;
  background: var(--paper);
}

.appearance-date {
  color: var(--olive);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.appearance-body {
  display: grid;
}

.appearance-body strong {
  font-size: clamp(19px, 1.8vw, 27px);
  font-weight: 560;
  letter-spacing: -0.025em;
}

.appearance-body small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
}

.appearance-arrow {
  justify-self: end;
  font-size: 18px;
}

.appearance-paper {
  background: var(--signal);
}

.profile-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(560px, 1.2fr);
  gap: clamp(70px, 10vw, 170px);
  background: var(--olive-dark);
  color: var(--white);
}

.profile-thesis {
  margin: 34px 0 0;
  font-size: clamp(31px, 3.2vw, 52px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.journey {
  border-top: 1px solid var(--line-light);
}

.journey-item {
  padding: 26px 0;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line-light);
}

.journey-item > p {
  margin: 4px 0 0;
  color: var(--signal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.journey-item h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 560;
  letter-spacing: -0.025em;
}

.journey-item span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 254, 248, 0.65);
  font-size: 13px;
}

.journey-item-now {
  background: var(--signal);
  color: var(--ink);
  margin: 0 -26px;
  padding: 26px;
  border: 0;
}

.journey-item-now > p,
.journey-item-now span {
  color: var(--ink);
}

.press-section {
  background: var(--paper);
}

.press-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.press-card {
  min-height: 330px;
  padding: clamp(28px, 3vw, 45px);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 200ms ease, color 200ms ease;
}

.press-card:hover {
  background: var(--white);
}

.press-card-featured {
  background: var(--ink);
  color: var(--white);
}

.press-card-featured:hover {
  background: var(--olive-dark);
}

.press-meta {
  color: var(--olive);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.press-card-featured .press-meta {
  color: var(--signal);
}

.press-card h3 {
  max-width: 640px;
  margin: 40px 0 0;
  font-size: clamp(25px, 2.6vw, 41px);
  font-weight: 540;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.press-card p {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 254, 248, 0.66);
  font-size: 14px;
}

.press-source {
  width: fit-content;
  margin-top: auto;
  padding-top: 36px;
  border-bottom: 1px solid currentColor;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-section {
  padding: clamp(90px, 11vw, 170px) max(40px, calc((100vw - 1480px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.6fr);
  align-items: end;
  gap: 100px;
  background: var(--orange);
}

.contact-copy h2 {
  max-width: 900px;
}

.contact-action p {
  max-width: 390px;
  margin: 0 0 28px;
  font-size: 17px;
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-light:hover {
  background: var(--ink);
  color: var(--white);
}

.site-footer {
  min-height: 150px;
  padding: 34px max(40px, calc((100vw - 1480px) / 2));
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 50px;
  background: var(--ink);
  color: var(--white);
}

.brand-footer .brand-mark {
  background: var(--signal);
  color: var(--ink);
}

.brand-footer .brand-copy small {
  color: rgba(255, 254, 248, 0.55);
}

.site-footer > p {
  margin: 0;
  color: rgba(255, 254, 248, 0.55);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-late {
  transition-delay: 100ms;
}

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

@media (max-width: 1100px) {
  :root {
    --page: calc(100vw - 48px);
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.75fr);
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(52px, 6.4vw, 76px);
  }

  .approach-section,
  .profile-section {
    gap: 70px;
  }

  .speaking-layout {
    grid-template-columns: minmax(280px, 0.7fr) minmax(440px, 1.3fr);
    gap: 50px;
  }
}

@media (max-width: 820px) {
  :root {
    --page: calc(100vw - 36px);
    --section-space: 88px;
  }

  .site-header {
    min-height: 82px;
  }

  .nav-toggle {
    justify-self: end;
    padding: 12px 0 12px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .nav-toggle-lines {
    width: 22px;
    display: grid;
    gap: 5px;
  }

  .nav-toggle-lines i {
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .nav-open .nav-toggle-lines i:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .nav-open .nav-toggle-lines i:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 50;
    inset: 82px 0 0;
    padding: 60px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    background: var(--paper);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .nav-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    font-size: 26px;
    font-weight: 550;
    letter-spacing: -0.025em;
    text-transform: none;
  }

  .nav-contact {
    margin-top: 12px;
    padding: 14px 18px;
    font-size: 15px !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
  }

  .hero {
    min-height: 0;
    padding-top: 62px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    display: contents;
  }

  .eyebrow,
  .hero h1,
  .hero-intro,
  .hero-actions,
  .hero-fields {
    grid-column: 1;
  }

  .hero h1 {
    margin-top: 28px;
    font-size: clamp(50px, 12.7vw, 88px);
  }

  .hero-intro {
    margin-top: 26px;
  }

  .hero-actions {
    margin-top: 30px;
  }

  .hero-portrait {
    grid-row: auto;
    margin-top: 8px;
    justify-self: stretch;
    width: 100%;
  }

  .portrait-frame img {
    aspect-ratio: 1;
  }

  .hero-fields {
    margin-top: 0;
  }

  .signal-strip {
    justify-content: flex-start;
  }

  .signal-strip span {
    flex: 0 0 38px;
  }

  .section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .section-heading h2,
  .approach-intro h2,
  .contact-copy h2 {
    font-size: clamp(42px, 10vw, 70px);
  }

  .venture-grid,
  .press-grid {
    grid-template-columns: 1fr;
  }

  .approach-section,
  .profile-section,
  .speaking-layout,
  .section-heading-split,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .approach-intro {
    position: static;
  }

  .section-heading-split,
  .contact-section {
    gap: 34px;
  }

  .section-heading-split > p:last-child {
    padding: 0;
  }

  .speaking-layout {
    gap: 58px;
  }

  .speaking-image img {
    max-height: none;
    aspect-ratio: 4 / 5;
  }

  .profile-section {
    gap: 60px;
  }

  .contact-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .site-footer {
    padding: 36px 18px;
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

@media (max-width: 520px) {
  :root {
    --page: calc(100vw - 28px);
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 40px;
  }

  .hero {
    padding-top: 48px;
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(47px, 13.5vw, 65px);
    line-height: 0.97;
  }

  .hero-intro {
    font-size: 18px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-fields {
    grid-template-columns: 1fr;
  }

  .hero-fields div {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-strip {
    min-height: 62px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .venture-grid,
  .press-grid {
    margin-top: 48px;
  }

  .venture-card,
  .venture-card-secondary {
    min-height: 470px;
    padding: 26px 22px;
  }

  .venture-card h3 {
    font-size: 46px;
  }

  .venture-topline {
    display: grid;
    gap: 7px;
  }

  .venture-proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .venture-proof-words {
    flex-direction: row;
  }

  .principle-list li {
    grid-template-columns: 38px 1fr;
  }

  .appearance {
    min-height: 104px;
    grid-template-columns: 55px 1fr 22px;
  }

  .journey-item {
    grid-template-columns: 72px 1fr;
  }

  .journey-item-now {
    margin: 0 -14px;
    padding: 24px 14px;
  }

  .press-card {
    min-height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
