:root {
  --ink: #09111d;
  --ink-soft: #101b2a;
  --paper: #f3f4f5;
  --white: #ffffff;
  --red: #ff1738;
  --blue: #1d3f73;
  --cyan: #3aa7d8;
  --yellow: #ffe229;
  --line: rgba(9, 17, 29, .18);
  --line-dark: rgba(255, 255, 255, .16);
  --muted: #66707d;
  --max: 1360px;
  --pad: clamp(1.25rem, 4vw, 4.5rem);
  --display: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
::selection { background: var(--red); color: white; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  padding: .8rem 1rem;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.page-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}
.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  right: 0;
  color: white;
  transition: background-color .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(9, 17, 29, .94);
  border-color: var(--line-dark);
  backdrop-filter: blur(16px);
}
.header-inner {
  width: min(100%, var(--max));
  min-height: 84px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.personal-mark {
  position: relative;
  display: block;
  width: clamp(150px, 12vw, 180px);
  aspect-ratio: 1362 / 418;
  overflow: hidden;
}
.personal-mark img,
.site-footer img {
  width: 100%;
  filter: brightness(0) invert(1);
}
.personal-mark img {
  position: absolute;
  top: 0;
  left: 0;
  width: 114.76%;
  max-width: none;
  transform: translate(-6.46%, -27.72%);
}
.main-nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.4rem); }
.language-switcher {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.55);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
}
.language-switcher select {
  max-width: 7.6rem;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.4);
  border-radius: 0;
  padding: .35rem 1.15rem .35rem .15rem;
  background: transparent;
  color: white;
  font: inherit;
  letter-spacing: .04em;
  cursor: pointer;
}
.language-switcher select:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
.language-switcher select option { background: var(--ink); color: white; }
.main-nav a {
  position: relative;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.main-nav a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.35rem;
  height: 2px;
  background: var(--red);
  transition: right .2s ease;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after { right: 0; }
.nav-contact {
  border: 1px solid rgba(255,255,255,.45);
  padding: .75rem 1rem;
  transition: background-color .2s ease, color .2s ease;
}
.nav-contact:hover,
.nav-contact:focus-visible { background: white; color: var(--ink); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(8.5rem, 14vh, 10.5rem) var(--pad) clamp(3rem, 6vh, 5rem);
  background: var(--ink);
  color: white;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .76fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: clamp(190px, 24vw, 390px);
  aspect-ratio: 1;
  border: clamp(18px, 2.2vw, 34px) solid var(--red);
  border-left-color: transparent;
  border-bottom-color: transparent;
  right: -8%;
  top: 9%;
  transform: rotate(9deg);
  opacity: .9;
}
.hero-grid {
  position: absolute;
  inset: 0 auto 0 0;
  width: 72%;
  opacity: .12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cpath d='M72 0H0V72' fill='none' stroke='%23ffffff' stroke-opacity='.55'/%3E%3C/svg%3E");
  background-size: 72px 72px;
}
.hero-copy,
.hero-visual { position: relative; z-index: 2; }
.hero-copy { max-width: 880px; }
.eyebrow {
  margin: 0 0 1.6rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow span { width: 32px; height: 3px; background: var(--red); }
.hero h1 {
  margin: 0;
  max-width: 980px;
  font-family: var(--display);
  font-size: clamp(3.35rem, 7.3vw, 8.2rem);
  font-weight: 800;
  letter-spacing: -.07em;
  line-height: .9;
}
.hero h1 strong { color: var(--red); font-style: normal; }
.hero h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.9);
}
.hero-lead {
  max-width: 700px;
  margin: clamp(1.75rem, 4vh, 3rem) 0 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  line-height: 1.65;
}
.hero-actions { margin-top: 2.1rem; display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.button {
  min-height: 54px;
  padding: .9rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: .86rem;
  font-weight: 780;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.button-primary { background: var(--red); color: white; transition: background-color .2s ease, color .2s ease; }
.button-primary:hover,
.button-primary:focus-visible { background: white; color: var(--ink); }
.text-link {
  padding: .7rem 0;
  border-bottom: 1px solid rgba(255,255,255,.4);
  font-size: .94rem;
  font-weight: 650;
}
.text-link:hover,
.text-link:focus-visible { border-color: var(--red); }
.hero-visual { align-self: stretch; display: flex; align-items: center; justify-content: center; }
.portrait-frame {
  position: relative;
  width: min(100%, 570px);
  margin-left: auto;
  isolation: isolate;
}
.portrait-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 42%;
  height: 43%;
  right: -7%;
  top: -5%;
  background: var(--red);
}
.portrait-frame::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 31%;
  height: 30%;
  left: -7%;
  bottom: -6%;
  border: 1px solid rgba(255,255,255,.55);
}
.portrait-frame > img {
  width: 100%;
  aspect-ratio: .82;
  object-fit: cover;
  object-position: 51% center;
  clip-path: polygon(12% 0, 100% 0, 100% 88%, 82% 100%, 0 100%, 0 13%);
  filter: saturate(.88) contrast(1.03);
}
.portrait-caption {
  position: absolute;
  right: -2%;
  bottom: 8%;
  padding: .95rem 1.15rem;
  background: var(--white);
  color: var(--ink);
  box-shadow: 12px 12px 0 var(--red);
}
.portrait-caption span { display: block; font-weight: 800; letter-spacing: -.02em; }
.portrait-caption small { display: block; margin-top: .15rem; color: var(--muted); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.hero-stamp {
  position: absolute;
  left: -1.8rem;
  top: 53%;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left top;
  display: flex;
  gap: 1rem;
  color: rgba(255,255,255,.54);
  font-size: .65rem;
  font-weight: 760;
  letter-spacing: .18em;
}
.hero-stamp span + span::before { content: "/"; margin-right: 1rem; color: var(--red); }
.hero-index {
  position: absolute;
  right: var(--pad);
  bottom: 2rem;
  color: rgba(255,255,255,.4);
  font-size: .72rem;
  letter-spacing: .18em;
}

.manifesto { overflow: hidden; background: var(--red); color: white; }
.manifesto-track {
  display: flex;
  width: max-content;
  gap: 1.5rem;
  padding: .85rem 0;
  background: white;
  color: var(--ink);
  font-family: var(--display);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .13em;
  animation: marquee 24s linear infinite;
}
.manifesto-track i { color: var(--red); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }
.manifesto-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 9rem) var(--pad);
  display: grid;
  grid-template-columns: .45fr .85fr 1.7fr;
  align-items: end;
  gap: clamp(1.5rem, 4vw, 5rem);
}
.manifesto-number {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5rem, 11vw, 10rem);
  font-weight: 850;
  line-height: .7;
  letter-spacing: -.09em;
}
.manifesto-number span { font-size: .38em; vertical-align: top; }
.manifesto-text { margin: 0; max-width: 300px; font-size: 1.05rem; font-weight: 650; }
.manifesto blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .96;
}

.section { width: min(100%, var(--max)); margin: 0 auto; padding: clamp(5.5rem, 10vw, 10rem) var(--pad); }
.section-kicker {
  margin-bottom: clamp(3rem, 6vw, 6rem);
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.section-kicker span { color: var(--red); font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.section-kicker p { margin: 0; font-size: .76rem; font-weight: 780; letter-spacing: .13em; text-transform: uppercase; }
.section-kicker.light { border-color: var(--line-dark); }
.story-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}
.story h2,
.ventures h2,
.expertise h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 6.8rem);
  font-weight: 800;
  letter-spacing: -.07em;
  line-height: .92;
}
.story h2 span,
.ventures h2 span,
.expertise h2 span { color: var(--red); }
.story-copy { max-width: 620px; }
.story-copy p { margin: 0 0 1.35rem; color: #3c4652; font-size: 1.03rem; }
.story-copy .lead { color: var(--ink); font-size: clamp(1.25rem, 1.7vw, 1.55rem); line-height: 1.5; font-weight: 650; }
.story-copy .signature-line {
  margin-top: 2.2rem;
  padding: 1.4rem 0 0 1.4rem;
  border-top: 1px solid var(--line);
  border-left: 4px solid var(--red);
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
}
.principles {
  margin-top: clamp(4.5rem, 8vw, 8rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.principles > div { min-height: 230px; padding: 1.5rem; border-right: 1px solid var(--line); }
.principles > div:first-child { padding-left: 0; }
.principles > div:last-child { border-right: 0; }
.principles span { color: var(--red); font-size: .7rem; font-weight: 800; }
.principles strong { display: block; margin-top: 4rem; font-family: var(--display); font-size: 1.45rem; }
.principles p { margin: .55rem 0 0; color: var(--muted); font-size: .9rem; line-height: 1.5; }

.ventures {
  width: 100%;
  max-width: none;
  background: var(--ink);
  color: white;
}
.ventures > * { width: min(100%, calc(var(--max) - 2 * var(--pad))); margin-left: auto; margin-right: auto; }
.ventures-intro {
  display: grid;
  grid-template-columns: 1.15fr .65fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}
.ventures-intro p { margin: 0 0 .5rem; color: rgba(255,255,255,.67); font-size: 1.05rem; }
.venture-list { border-top: 1px solid var(--line-dark); }
.venture {
  min-height: 450px;
  display: grid;
  grid-template-columns: 100px .72fr 1.35fr;
  border-bottom: 1px solid var(--line-dark);
}
.venture-side {
  padding: 2rem 1rem 2rem 0;
  border-right: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.venture-side > span { color: var(--red); font-size: .75rem; font-weight: 800; }
.venture-side small { color: rgba(255,255,255,.42); font-size: .65rem; font-weight: 760; letter-spacing: .14em; writing-mode: vertical-rl; transform: rotate(180deg); }
.venture-logo { margin: clamp(1.5rem, 3vw, 2.8rem); padding: 2rem; min-height: 210px; display: flex; align-items: center; justify-content: center; }
.venture-logo img { max-width: min(100%, 330px); max-height: 145px; object-fit: contain; }
.logo-on-dark { background: #071a35; }
.logo-on-light { background: white; }
.venture-bbs .venture-logo { background: #f2f2f2; }
.venture-bbs .venture-logo img { width: 260px; image-rendering: auto; }
.pob-logo img { max-height: 210px; }
.venture-body { padding: clamp(2.2rem, 4vw, 4rem); display: flex; flex-direction: column; justify-content: center; }
.venture-body .role { margin: 0 0 1.1rem; color: var(--red); font-size: .76rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.venture-body h3 { margin: 0; max-width: 700px; font-family: var(--display); font-size: clamp(2rem, 3.6vw, 4rem); line-height: 1; letter-spacing: -.05em; }
.venture-body > p:not(.role) { max-width: 700px; margin: 1.35rem 0 0; color: rgba(255,255,255,.65); }
.venture-links { margin-top: 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.venture-links > a {
  padding-bottom: .45rem;
  border-bottom: 2px solid var(--red);
  font-size: .86rem;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.social-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.social-row a { color: rgba(255,255,255,.58); font-size: .72rem; font-weight: 700; }
.social-row a:hover,
.social-row a:focus-visible { color: white; }

.expertise-heading {
  display: grid;
  grid-template-columns: 1.2fr .55fr;
  align-items: end;
  gap: clamp(3rem, 8vw, 9rem);
  margin-bottom: clamp(4rem, 7vw, 7rem);
}
.expertise-heading > p { margin: 0 0 .5rem; color: var(--muted); font-size: 1.05rem; }
.expertise-list { border-top: 2px solid var(--ink); }
.expertise-item {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(220px, .8fr) 1.15fr auto;
  gap: 2rem;
  align-items: center;
  min-height: 150px;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line);
  transition: color .22s ease, padding .22s ease;
}
.expertise-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .32s cubic-bezier(.2,.8,.2,1);
}
.expertise-item:hover { color: white; padding-left: 1.4rem; padding-right: 1.4rem; }
.expertise-item:hover::before { transform: scaleX(1); transform-origin: left; }
.expertise-no { color: var(--red); font-size: .72rem; font-weight: 800; }
.expertise-item h3 { margin: 0; font-family: var(--display); font-size: clamp(1.45rem, 2.5vw, 2.45rem); line-height: 1.05; letter-spacing: -.04em; }
.expertise-item p { margin: 0; max-width: 590px; color: var(--muted); }
.expertise-item:hover p { color: rgba(255,255,255,.68); }
.expertise-tag { font-size: .65rem; font-weight: 800; letter-spacing: .15em; }

.belief { background: var(--blue); color: white; }
.belief-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(6rem, 11vw, 11rem) var(--pad);
}
.belief h2 {
  margin: 0;
  max-width: 1180px;
  font-family: var(--display);
  font-size: clamp(3rem, 6.7vw, 7.1rem);
  font-weight: 800;
  letter-spacing: -.07em;
  line-height: .94;
}
.belief h2 em { color: var(--yellow); font-style: normal; }
.belief > .belief-inner > p:last-child { max-width: 640px; margin: 2rem 0 0 auto; color: rgba(255,255,255,.72); font-size: 1.1rem; }

.contact {
  display: grid;
  grid-template-columns: 1.05fr .75fr;
  gap: clamp(3rem, 9vw, 10rem);
  align-items: end;
}
.contact h2 { margin: 0; max-width: 800px; font-family: var(--display); font-size: clamp(3rem, 6vw, 6.5rem); line-height: .93; letter-spacing: -.065em; }
.contact-actions { border-top: 2px solid var(--ink); }
.contact-main,
.contact-secondary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .25rem 1rem;
  align-items: center;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding .2s ease, color .2s ease;
}
.contact-main:hover,
.contact-main:focus-visible,
.contact-secondary:hover,
.contact-secondary:focus-visible { padding-left: 1rem; color: var(--red); }
.contact-actions span { font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.contact-actions strong { grid-column: 1; font-family: var(--display); font-size: clamp(1.1rem, 1.8vw, 1.45rem); overflow-wrap: anywhere; }
.contact-actions i { grid-column: 2; grid-row: 1 / 3; font-style: normal; font-size: 1.5rem; }

.site-footer { background: var(--ink); color: white; padding: clamp(3rem, 6vw, 6rem) var(--pad) 2rem; }
.footer-top,
.footer-bottom { width: min(100%, calc(var(--max) - 2 * var(--pad))); margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: end; gap: 2rem; padding-bottom: clamp(3rem, 6vw, 6rem); }
.footer-top img { width: clamp(190px, 24vw, 360px); }
.footer-top > p { margin: 0; color: rgba(255,255,255,.55); font-size: .92rem; text-align: right; }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; border-top: 1px solid var(--line-dark); padding-top: 1.4rem; color: rgba(255,255,255,.58); font-size: .75rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 1.4rem; }
.footer-bottom > a { justify-self: end; }
.footer-bottom a:hover,
.footer-bottom a:focus-visible { color: white; }

.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .72s ease, transform .72s cubic-bezier(.2,.8,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr .65fr; gap: 2rem; }
  .hero h1 { font-size: clamp(3.5rem, 7.8vw, 6.2rem); }
  .manifesto-inner { grid-template-columns: .55fr 1fr; }
  .manifesto blockquote { grid-column: 1 / -1; margin-top: 1.5rem; }
  .venture { grid-template-columns: 74px .62fr 1.2fr; }
  .venture-logo { margin: 1.5rem; padding: 1.25rem; }
  .expertise-item { grid-template-columns: 50px .7fr 1fr auto; gap: 1.2rem; }
}

@media (max-width: 820px) {
  .header-inner { min-height: 72px; }
  .personal-mark { width: 150px; }
  .menu-toggle {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    align-items: flex-end;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { display: block; height: 2px; background: white; transition: transform .2s ease, width .2s ease; }
  .menu-toggle span:nth-child(2) { width: 28px; }
  .menu-toggle span:nth-child(3) { width: 20px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { width: 26px; transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { width: 26px; transform: translateY(-4.5px) rotate(-45deg); }
  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 1rem var(--pad) 1.5rem;
    background: var(--ink);
    border-top: 1px solid var(--line-dark);
    display: grid;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { padding: 1rem 0; border-bottom: 1px solid var(--line-dark); font-size: .9rem; }
  .language-switcher {
    padding: .7rem 0;
    border-bottom: 1px solid var(--line-dark);
  }
  .language-switcher select { max-width: none; min-width: 11rem; padding: .5rem 1.5rem .5rem .25rem; }
  .main-nav a::after { display: none; }
  .nav-contact { border: 0; }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 8.5rem;
    padding-bottom: 5rem;
  }
  .hero-copy { max-width: 760px; }
  .hero h1 { font-size: clamp(3.4rem, 12.5vw, 6.4rem); }
  .hero-visual { margin-top: 2rem; }
  .portrait-frame { width: min(84vw, 570px); margin: 0 auto; }
  .hero-stamp { left: -1rem; }
  .manifesto-inner { grid-template-columns: .6fr 1fr; }
  .story-layout,
  .ventures-intro,
  .expertise-heading,
  .contact { grid-template-columns: 1fr; }
  .story-copy { max-width: none; }
  .principles { grid-template-columns: 1fr 1fr; }
  .principles > div { border-bottom: 1px solid var(--line); }
  .principles > div:nth-child(2) { border-right: 0; }
  .principles > div:nth-child(3), .principles > div:nth-child(4) { border-bottom: 0; }
  .principles > div:nth-child(3) { padding-left: 0; }
  .venture { grid-template-columns: 58px 1fr; }
  .venture-side { grid-row: 1 / 3; }
  .venture-logo { min-height: 230px; }
  .venture-body { padding: 2rem 1.5rem 3rem; }
  .expertise-item { grid-template-columns: 45px 1fr auto; }
  .expertise-item p { grid-column: 2 / 4; }
  .contact-actions { margin-top: 1rem; }
}

@media (max-width: 560px) {
  :root { --pad: 1.15rem; }
  .hero { padding-top: 7.5rem; }
  .hero::before { right: -22%; top: 6%; }
  .hero-grid { background-size: 48px 48px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.75rem); line-height: .93; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; justify-content: space-between; }
  .text-link { text-align: center; }
  .portrait-frame { width: 92%; }
  .portrait-caption { right: -4%; bottom: 5%; }
  .hero-stamp { display: none; }
  .manifesto-inner { grid-template-columns: 1fr; }
  .manifesto-number { font-size: 7rem; }
  .manifesto blockquote { grid-column: auto; font-size: 2.6rem; }
  .section-kicker { margin-bottom: 2.8rem; }
  .story h2, .ventures h2, .expertise h2 { font-size: clamp(2.8rem, 14vw, 4.5rem); }
  .principles { grid-template-columns: 1fr; }
  .principles > div,
  .principles > div:first-child,
  .principles > div:nth-child(3) { min-height: auto; padding: 1.4rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .principles > div:last-child { border-bottom: 0; }
  .principles strong { margin-top: 1.7rem; }
  .venture { grid-template-columns: 42px 1fr; }
  .venture-side { padding: 1.3rem .55rem 1.3rem 0; }
  .venture-logo { min-height: 190px; margin: 1rem; }
  .venture-body { padding: 1.7rem 1rem 2.8rem; }
  .venture-body h3 { font-size: 2.2rem; }
  .venture-links { align-items: flex-start; flex-direction: column; }
  .social-row { gap: .65rem 1rem; }
  .expertise-item { grid-template-columns: 34px 1fr; gap: 1rem; padding: 1.5rem 0; }
  .expertise-item p, .expertise-tag { grid-column: 2; }
  .expertise-item:hover { padding-left: .7rem; padding-right: .7rem; }
  .belief h2 { font-size: clamp(2.75rem, 13.5vw, 4.4rem); }
  .belief > .belief-inner > p:last-child { margin-left: 0; }
  .contact h2 { font-size: clamp(2.8rem, 13.5vw, 4.5rem); }
  .footer-top { align-items: flex-start; flex-direction: column; }
  .footer-top > p { text-align: left; }
  .footer-bottom { grid-template-columns: 1fr auto; }
  .footer-bottom div { grid-column: 1 / -1; grid-row: 1; flex-wrap: wrap; }
  .footer-bottom p { grid-row: 2; }
  .footer-bottom > a { grid-row: 2; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
