:root {
  --paper: #f4efe5;
  --paper-deep: #e9e0d1;
  --paper-light: #fbf8f1;
  --ink: #1d2726;
  --ink-soft: #4f5a56;
  --charcoal: #17201f;
  --marigold: #d49325;
  --marigold-bright: #efb64a;
  --teal: #6c9b97;
  --marigold-text: #8e5f16;
  --teal-text: #2f716d;
  --line: rgba(29, 39, 38, 0.18);
  --line-light: rgba(244, 239, 229, 0.2);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --shell: min(1180px, calc(100vw - 64px));
  --header-height: 76px;
  --radius: 3px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 11% 6%, rgba(212, 147, 37, 0.07), transparent 28rem),
    radial-gradient(circle at 86% 28%, rgba(108, 155, 151, 0.06), transparent 30rem),
    var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.16;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 5px, rgba(29, 39, 38, 0.025) 5px 6px),
    repeating-linear-gradient(90deg, transparent 0 8px, rgba(29, 39, 38, 0.018) 8px 9px);
  mix-blend-mode: multiply;
}

::selection {
  color: var(--charcoal);
  background: var(--marigold-bright);
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

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

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--paper-light);
  background: var(--charcoal);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.section-shell,
.nav-shell,
.hero-grid {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background-color 240ms ease, border-color 240ms ease, transform 240ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(29, 39, 38, 0.1);
  background: rgba(244, 239, 229, 0.9);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
}

.nav-shell {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 750;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.primary-nav a,
.nav-contact {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.035em;
  text-decoration: none;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--marigold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.primary-nav a:hover::after,
.primary-nav a[aria-current]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  justify-self: end;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + clamp(22px, 4vh, 40px)) 0 clamp(22px, 3vh, 34px);
}

.hero::before {
  content: "";
  position: absolute;
  top: 12%;
  left: -150px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(29, 39, 38, 0.08);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(330px, 0.78fr);
  align-items: center;
  gap: clamp(44px, 6vw, 78px);
  min-height: clamp(500px, calc(100svh - var(--header-height) - 176px), 650px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 0;
}

.eyebrow {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--marigold);
}

.eyebrow span {
  color: var(--ink-soft);
  font-weight: 650;
  letter-spacing: 0.11em;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 5.45vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.93;
  text-wrap: initial;
}

.hero-line {
  display: block;
  padding-left: 0.42em;
}

.hero-accent {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.82em;
  font-style: italic;
  line-height: 1.08;
}

.hero-accent::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 10%;
  bottom: -0.08em;
  left: 20%;
  height: 0.22em;
  background: rgba(212, 147, 37, 0.24);
  border-radius: 50%;
  transform: rotate(-1.5deg);
  filter: blur(1px);
}

.hero-summary {
  max-width: 620px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.58;
}

.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 26px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 12px 20px;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.025em;
  text-decoration: none;
  transition: transform 220ms var(--ease), background-color 220ms ease, color 220ms ease;
}

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

.button-primary {
  color: var(--paper-light);
  background: var(--charcoal);
}

.button-primary:hover {
  background: #273432;
}

.button-text {
  min-height: auto;
  padding-inline: 0;
  border-bottom: 1px solid var(--line);
}

.button-secondary {
  border: 1px solid rgba(29, 39, 38, 0.34);
  color: var(--ink);
  background: rgba(251, 248, 241, 0.38);
}

.button-secondary:hover {
  border-color: var(--ink);
  background: var(--paper-light);
}

.linkedin-button {
  gap: 12px;
}

.linkedin-mark {
  width: 23px;
  height: 23px;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-facts {
  width: var(--shell);
  margin: 12px auto 0;
  padding: 14px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.hero-facts li {
  display: grid;
  gap: 3px;
  padding: 0 24px;
  border-left: 1px solid var(--line);
}

.hero-facts li:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-facts strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 650;
}

.hero-facts span {
  color: var(--ink-soft);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
}

.hero-portrait {
  position: relative;
  margin: 0;
}

.hero-portrait::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 12% -18% 2% -16%;
  background:
    radial-gradient(circle at 24% 58%, rgba(212, 147, 37, 0.16), transparent 36%),
    radial-gradient(circle at 78% 44%, rgba(108, 155, 151, 0.14), transparent 40%);
  filter: blur(16px);
}

.portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: visible;
  border: 0;
  background: transparent;
}

.portrait-frame::after {
  content: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.82) drop-shadow(0 28px 42px rgba(29, 39, 38, 0.07));
  transform: scale(1.08);
}

.hero-portrait figcaption {
  margin: 9px 2px 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.scroll-cue {
  display: none;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  width: 1px;
  height: 38px;
  display: block;
  overflow: hidden;
  background: var(--line);
}

.scroll-cue i::after {
  content: "";
  width: 1px;
  height: 18px;
  display: block;
  background: var(--marigold);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes scroll-pulse {
  from { transform: translateY(-20px); }
  to { transform: translateY(42px); }
}

.section {
  padding: clamp(84px, 9vw, 132px) 0;
}

.section-label {
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-label::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--marigold);
}

.section-label span {
  color: var(--marigold-text);
}

.section-label-light {
  color: rgba(244, 239, 229, 0.58);
}

.section h2,
.contact h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(3.1rem, 5.5vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

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

.introduction h2 {
  font-size: clamp(2.85rem, 4vw, 3.7rem);
}

.introduction-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 28px;
}

.introduction-grid > div:first-child {
  grid-column: 1 / span 5;
}

.introduction-copy {
  grid-column: 7 / -1;
  padding-top: 42px;
}

.introduction-copy p {
  max-width: 660px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.introduction-copy .lead,
.work-copy .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.6vw, 2.5rem);
  line-height: 1.3;
}

.introduction-copy em {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.14em;
}

.philosophy,
.testimonial {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--charcoal);
}

.philosophy::before {
  content: "";
  position: absolute;
  top: -240px;
  right: -180px;
  width: 610px;
  height: 610px;
  border: 1px solid rgba(239, 182, 74, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(108, 155, 151, 0.025), 0 0 0 180px rgba(239, 182, 74, 0.02);
}

.philosophy-grid {
  position: relative;
  z-index: 1;
  min-height: 690px;
  padding-block: 88px 72px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.philosophy-statement {
  margin: 58px 0 74px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  gap: 30px 28px;
}

.philosophy h2 {
  grid-column: 1 / span 8;
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: clamp(4.8rem, 8.4vw, 8.4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.89;
}

.philosophy h2 em {
  color: var(--marigold-bright);
  font-weight: 500;
}

.philosophy-copy {
  grid-column: 9 / -1;
  padding-bottom: 10px;
}

.philosophy-copy p {
  color: rgba(244, 239, 229, 0.68);
  font-size: 1.08rem;
  line-height: 1.7;
}

.philosophy-copy .philosophy-lead {
  margin-bottom: 12px;
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.25;
}

.idea-line {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
}

.idea-line li {
  padding-top: 15px;
  display: grid;
  gap: 3px;
  border-top: 1px solid rgba(244, 239, 229, 0.22);
}

.idea-line strong {
  color: var(--marigold-bright);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.idea-line span {
  color: rgba(244, 239, 229, 0.64);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.section-heading {
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  column-gap: 28px;
}

.section-heading > div {
  grid-column: 1 / span 7;
}

.section-heading > p {
  grid-column: 9 / -1;
  max-width: 450px;
  margin-bottom: 8px;
  color: var(--ink-soft);
}

.timeline {
  position: relative;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 51px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--marigold-text), var(--teal-text));
}

.timeline li {
  position: relative;
  min-width: 0;
}

.timeline-year {
  display: block;
  margin-bottom: 21px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 0.93rem;
  font-style: italic;
}

.timeline-dot {
  position: relative;
  z-index: 2;
  width: 13px;
  height: 13px;
  margin-bottom: 28px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--marigold-text);
  box-shadow: 0 0 0 1px var(--marigold-text);
}

.timeline li:nth-child(n+4) .timeline-dot {
  background: var(--teal-text);
  box-shadow: 0 0 0 1px var(--teal-text);
}

.timeline li:nth-child(4) h3 {
  color: var(--teal-text);
}

.timeline h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 650;
  line-height: 1.15;
}

.timeline p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.68;
}

.journey-support {
  margin: 54px 0 0;
  padding-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.48fr);
  align-items: start;
  gap: 42px;
  border-top: 1px solid var(--line);
}

.journey-note {
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.journey-note strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.06rem;
}

.journey-evidence {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.journey-evidence figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-light);
}

.journey-evidence picture,
.work-visual picture {
  display: block;
  line-height: 0;
}

.journey-evidence img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.journey-evidence figcaption {
  min-height: 86px;
  padding: 13px 15px 15px;
  display: grid;
  align-content: start;
  gap: 4px;
  border-top: 1px solid var(--line);
}

.journey-evidence strong {
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.journey-evidence span {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 0.9rem;
  line-height: 1.35;
}

.journey-evidence .cofounder-links a {
  color: var(--ink);
  font-weight: 650;
  text-decoration-color: rgba(142, 95, 22, 0.46);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.journey-evidence .cofounder-links a:hover {
  color: var(--marigold-text);
}

.ventures {
  background: var(--paper-light);
}

.ventures-heading {
  align-items: center;
}

.venture-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.venture-grid-core {
  grid-template-columns: 1.12fr 1fr;
}

.venture-card {
  min-height: 420px;
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  background: var(--paper-light);
  transition: transform 260ms var(--ease), background-color 260ms ease;
}

.venture-card:hover {
  z-index: 2;
  background: #fffdf8;
  transform: none;
  box-shadow: inset 0 3px 0 rgba(142, 95, 22, 0.42);
}

.venture-featured {
  background:
    radial-gradient(circle at 90% 10%, rgba(212, 147, 37, 0.13), transparent 14rem),
    var(--paper-light);
}

.venture-meta {
  margin-bottom: auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.venture-card h3 {
  margin: 56px 0 16px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 550;
  letter-spacing: -0.04em;
}

.venture-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.venture-card .registry-proof {
  margin: 14px 0 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--marigold-text);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.55;
  text-transform: uppercase;
}

.tag-list {
  margin: 22px 0 36px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}

.tag-list li {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.venture-card > a {
  margin-top: auto;
  align-self: flex-start;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.collaboration-heading {
  margin: 70px 0 28px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  column-gap: 28px;
}

.collaboration-heading p {
  grid-column: 1 / span 4;
  margin-bottom: 6px;
  color: var(--marigold-text);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collaboration-heading h3 {
  grid-column: 6 / -1;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 550;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.collaboration-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.collaboration-grid article {
  min-height: 420px;
  padding: 30px 32px;
  display: flex;
  flex-direction: column;
  background: var(--paper-light);
}

.collaboration-grid article > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.collaboration-grid h3 {
  margin: 48px 0 14px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 550;
  letter-spacing: -0.04em;
}

.collaboration-grid p {
  max-width: 500px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.proof-list {
  margin: 18px 0 24px;
  padding: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.proof-list li {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 3px;
}

.proof-list strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1.15;
}

.proof-list span {
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.055em;
  line-height: 1.45;
  text-transform: uppercase;
}

.collaboration-grid a {
  min-height: 44px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  column-gap: 28px;
}

.work-visual {
  grid-column: 1 / span 6;
}

.work-copy {
  grid-column: 8 / -1;
}

.work-visual {
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 3px solid var(--marigold);
  background: var(--paper-light);
  box-shadow: 0 22px 58px rgba(29, 39, 38, 0.08);
}

.work-visual::before {
  content: none;
}

.work-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.work-visual figcaption {
  margin: 0;
  padding: 13px 18px 14px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.69rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-align: left;
  text-transform: uppercase;
}

.work-copy > p:not(.section-label):not(.lead) {
  color: var(--ink-soft);
}

.work-copy .lead {
  margin-top: 36px;
}

.focus-list {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.focus-list li {
  padding: 15px 0;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.04rem;
}

.focus-list span {
  color: var(--marigold-text);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

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

.ideas .section-heading {
  grid-template-columns: 1fr;
}

.ideas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.ideas-grid article {
  min-height: 300px;
  padding: 30px;
  background: var(--paper);
}

.ideas-grid article > span {
  color: var(--marigold-text);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.ideas-grid h3 {
  margin: 62px 0 20px;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.35vw, 2.35rem);
  font-weight: 550;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.ideas-grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.testimonial::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -250px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(108, 155, 151, 0.18);
  border-radius: 50%;
}

.testimonial-grid {
  position: relative;
  z-index: 1;
  min-height: 510px;
  padding-block: 88px;
  display: grid;
  grid-template-columns: 4fr 8fr;
  align-items: start;
  gap: 70px;
}

.testimonial figure {
  margin: 0;
}

.testimonial blockquote {
  max-width: 870px;
  margin-bottom: 46px;
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.6vw, 4.8rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.testimonial figcaption {
  display: grid;
  gap: 4px;
}

.testimonial figcaption strong {
  color: var(--marigold-bright);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.testimonial figcaption span {
  color: rgba(244, 239, 229, 0.56);
  font-size: 0.74rem;
}

.contact {
  padding: clamp(96px, 10vw, 150px) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  column-gap: 28px;
}

.contact-grid > div:first-child {
  grid-column: 1 / span 7;
}

.contact-copy {
  grid-column: 9 / -1;
}

.contact h2 {
  max-width: 780px;
}

.contact h2 em {
  position: relative;
  color: var(--marigold);
  font-weight: 500;
}

.contact-copy > p:first-child {
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.contact-note {
  margin: 34px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(233, 224, 209, 0.36);
}

.footer-grid {
  min-height: 160px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 40px;
}

.footer-grid > p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 0.94rem;
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a,
.copyright {
  color: var(--ink-soft);
  font-family: var(--sans) !important;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem !important;
  font-style: normal !important;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.has-js [data-reveal] {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 48px, 960px);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.24fr) minmax(300px, 0.76fr);
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 6.7vw, 4.7rem);
  }

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

  .venture-featured {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: auto 1fr auto;
  }

  .copyright {
    grid-column: 1 / -1;
    padding-bottom: 28px;
  }
}

@media (max-width: 900px) {
  .hero::before,
  .hero-accent::after {
    content: none;
  }

  .hero-dash {
    display: none;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 92px;
  }

  html {
    scroll-padding-top: 80px;
  }

  .nav-shell {
    padding: 4px 0 0;
    grid-template-columns: 1fr auto;
    row-gap: 0;
    transition: min-height 220ms var(--ease), padding 220ms var(--ease);
  }

  .site-header.is-scrolled .nav-shell {
    min-height: 80px;
    padding-top: 0;
  }

  .brand,
  .nav-contact {
    min-height: 40px;
  }

  .brand {
    min-width: 40px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    transition: width 220ms var(--ease), height 220ms var(--ease);
  }

  .site-header.is-scrolled .brand-mark {
    width: 30px;
    height: 30px;
  }

  .primary-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }

  .primary-nav a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
  }

  .primary-nav a::after {
    right: 18%;
    bottom: 2px;
    left: 18%;
  }

  .nav-contact {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 22px);
    padding-bottom: 24px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: auto;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(3rem, 7vw, 3.8rem);
  }

  .hero-portrait {
    width: min(240px, 52vw);
    margin: 0 auto;
  }

  .hero-facts {
    margin-top: 20px;
  }

  .section {
    padding: 72px 0;
  }

  .section-label {
    margin-bottom: 22px;
  }

  .scroll-cue {
    display: none;
  }

  .introduction-grid,
  .work-grid,
  .contact-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .introduction-grid > div:first-child,
  .introduction-copy,
  .work-visual,
  .work-copy,
  .contact-grid > div:first-child,
  .contact-copy {
    grid-column: auto;
  }

  .introduction-copy {
    padding-top: 0;
  }

  .work-copy {
    order: -1;
  }

  .philosophy-statement {
    grid-template-columns: 1fr;
  }

  .philosophy h2,
  .philosophy-copy {
    grid-column: auto;
  }

  .philosophy-copy {
    max-width: 560px;
    padding-bottom: 0;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .timeline::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 5px;
    width: 1px;
    height: auto;
  }

  .timeline li {
    padding: 0 0 40px 38px;
  }

  .journey-support {
    margin-top: 40px;
    padding-top: 22px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .timeline-year {
    margin-bottom: 8px;
  }

  .timeline-dot {
    position: absolute;
    top: 8px;
    left: 0;
    margin: 0;
  }

  .section-heading {
    margin-bottom: 44px;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .section-heading > div,
  .section-heading > p {
    grid-column: auto;
  }

  .collaboration-heading {
    margin: 52px 0 24px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .collaboration-heading p,
  .collaboration-heading h3 {
    grid-column: auto;
  }

  .work-visual {
    width: min(680px, 96%);
    margin-inline: auto;
  }

  .ideas-grid {
    grid-template-columns: 1fr;
  }

  .ideas-grid article {
    min-height: auto;
  }

  .ideas-grid h3 {
    margin-top: 34px;
  }

  .testimonial-grid {
    min-height: auto;
    gap: 38px;
  }

  .contact-copy {
    max-width: 620px;
  }

  .footer-grid {
    padding-block: 44px;
    grid-template-columns: 1fr auto;
  }

  .footer-grid > p:not(.copyright) {
    display: none;
  }

  .footer-links {
    grid-column: 1 / -1;
    flex-wrap: wrap;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 36px);
  }

  body {
    font-size: 15px;
  }

  .section {
    padding: 58px 0;
  }

  .section-label {
    margin-bottom: 18px;
  }

  body::before {
    opacity: 0.08;
    mix-blend-mode: normal;
  }

  .brand-name {
    display: none;
  }

  .nav-contact {
    font-size: 0.75rem;
  }

  .primary-nav {
    gap: 12px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 18px);
  }

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

  .hero-portrait {
    order: initial;
    width: min(210px, 58vw);
    margin: 0 auto;
  }

  .hero-portrait figcaption {
    margin-top: 6px;
    font-size: 0.66rem;
    letter-spacing: 0.075em;
  }

  .eyebrow {
    max-width: none;
    margin-bottom: 14px;
    display: block;
    font-size: clamp(0.62rem, 2.7vw, 0.68rem);
    letter-spacing: 0.11em;
    line-height: 1.55;
    white-space: nowrap;
  }

  .eyebrow::before {
    content: none;
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: clamp(2.72rem, 12.2vw, 3.45rem);
    line-height: 0.96;
  }

  .hero-summary {
    margin-bottom: 18px;
  }

  .hero-line {
    padding-left: 0.14em;
  }

  .hero-accent {
    font-size: 0.86em;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions {
    gap: 10px;
  }

  .button {
    min-height: 48px;
    width: 100%;
  }

  .button-text {
    padding-block: 14px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-facts li {
    min-height: 62px;
    padding: 10px 0;
    grid-template-columns: 126px 1fr;
    align-items: center;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-facts li:first-child {
    padding-left: 0;
    border-top: 0;
  }

  .section h2,
  .contact h2 {
    font-size: clamp(2.75rem, 13vw, 4.1rem);
  }

  .journey .section-heading {
    margin-bottom: 36px;
  }

  #journey-title {
    font-size: clamp(2.55rem, 11.4vw, 3.35rem);
    letter-spacing: -0.048em;
    line-height: 1.02;
  }

  .journey-title-break {
    display: none;
  }

  .journey-note strong {
    margin-bottom: 6px;
    display: block;
    font-size: 1.18rem;
  }

  .philosophy-grid {
    min-height: auto;
    padding-block: 60px 48px;
  }

  .philosophy-statement {
    margin: 30px 0 44px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .philosophy h2 {
    font-size: clamp(4rem, 18vw, 5.2rem);
  }

  .philosophy-copy p {
    font-size: 1rem;
  }

  .idea-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 16px;
  }

  .idea-line li:last-child {
    grid-column: 1 / -1;
  }

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

  .venture-featured {
    grid-column: auto;
  }

  .venture-card {
    min-height: auto;
    padding: 26px 24px;
  }

  .venture-card h3 {
    margin: 34px 0 14px;
  }

  .tag-list {
    margin: 16px 0 20px;
  }

  .collaboration-grid {
    grid-template-columns: 1fr;
  }

  .collaboration-grid article {
    min-height: auto;
    padding: 26px 24px;
  }

  .proof-list span {
    font-size: 0.72rem;
  }

  .testimonial blockquote {
    font-size: clamp(2.2rem, 10.5vw, 3.2rem);
  }

  .testimonial-grid {
    padding-block: 60px;
  }

  .contact {
    padding-block: 64px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-column: auto;
    gap: 16px;
  }

  .copyright {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .journey-evidence {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .journey-evidence figure {
    display: block;
  }

  .journey-evidence img {
    height: clamp(180px, 56vw, 220px);
    min-height: 0;
    aspect-ratio: auto;
  }

  .journey-evidence picture {
    height: auto;
    min-height: 0;
  }

  .journey-evidence figcaption {
    min-height: auto;
    padding: 14px 15px 16px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .journey-evidence strong {
    font-size: 0.66rem;
    line-height: 1.45;
  }

  .journey-evidence .cofounder-links a {
    text-decoration-color: rgba(142, 95, 22, 0.24);
  }
}

@media (max-width: 420px) {
  .proof-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .proof-list li {
    grid-template-columns: 88px 1fr;
    align-items: baseline;
    gap: 12px;
  }
}

@media (max-height: 820px) and (min-width: 761px) {
  .hero {
    padding-top: calc(var(--header-height) + 12px);
    padding-bottom: 18px;
  }

  .hero-grid {
    min-height: 480px;
  }

  .eyebrow {
    margin-bottom: 14px;
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: clamp(3.45rem, 4.8vw, 4.15rem);
  }

  .hero-summary {
    margin-bottom: 16px;
    font-size: 0.98rem;
  }

  .hero-portrait {
    max-width: 390px;
  }

  .hero-facts {
    margin-top: 8px;
    padding-block: 10px;
  }
}

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

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

  .has-js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .scroll-cue,
  .hero-actions,
  .contact-actions {
    display: none;
  }

  body {
    color: #111;
    background: #fff;
  }

  .hero,
  .section,
  .contact {
    min-height: auto;
    padding-block: 48px;
  }

  .philosophy,
  .testimonial {
    color: #111;
    background: #fff;
  }

  .philosophy h2,
  .testimonial blockquote {
    color: #111;
  }
}
