:root {
  color-scheme: dark;
  --ink: #070707;
  --ink-deep: #030303;
  --paper: #0d0d0e;
  --white: #f6f1e7;
  --gray: #0a0a0a;
  --gray-dark: #1b1a18;
  --line: rgba(214, 185, 120, 0.2);
  --line-light: rgba(246, 241, 231, 0.17);
  --gold: #d6b978;
  --gold-dark: #9b7a3f;
  --muted: #aaa59c;
  --hero-start: 50vh;
  --page-pad: 5vw;
  --header-height: 92px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  background: var(--ink);
  scroll-behavior: smooth;
}

html.is-wheel-smoothing { scroll-behavior: auto; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--white);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.is-loading,
body.menu-open { overflow: hidden; }

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

button { font: inherit; }

svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.skip-link {
  position: fixed;
  z-index: 1200;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  border: 1px solid var(--white);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
}

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

/* Opening */
.intro-loader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background: transparent;
}

.intro-loader.is-finished { visibility: hidden; }

.intro-screen {
  position: relative;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--ink-deep);
  transition: top 800ms cubic-bezier(0.76, 0, 0.24, 1);
  will-change: top;
}

.intro-loader.is-exiting .intro-screen { top: -100%; }

.intro-word-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 0.38em;
  transform: translate(-50%, -50px);
  opacity: 0;
  color: var(--white);
  font-size: 54px;
  line-height: 1.065;
  white-space: nowrap;
  transition: opacity 800ms cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: opacity;
}

.intro-word-wrap.is-visible { opacity: 1; }
.intro-loader.is-exiting .intro-word-wrap { opacity: 0; transition: opacity 300ms linear; }

.intro-dot {
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-5%);
}

.intro-word.is-japanese { font-size: 0.65em; transform: translateY(10%); }

.intro-curve-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10vh;
  overflow: hidden;
  transform: translateY(99%);
  transition: height 1000ms cubic-bezier(0.76, 0, 0.24, 1);
  will-change: height;
}

.intro-loader.is-exiting .intro-curve-wrap { height: 0; }

.intro-curve {
  position: absolute;
  left: 50%;
  width: 150%;
  height: 745%;
  border-radius: 50%;
  background: var(--ink-deep);
  transform: translate(-50%, -86.666%);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 300;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 0 var(--page-pad);
  color: var(--white);
  transition: transform 500ms cubic-bezier(0.76, 0, 0.24, 1);
}

.site-header.is-hidden { transform: translateY(-110%); }
.site-header.is-scrolled { background: transparent; }

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 160px;
  padding: 12px 0;
  font-size: 15px;
}

.brand-copyright { font-size: 18px; }

.brand-copy {
  position: relative;
  display: block;
  height: 23px;
  overflow: hidden;
}

.brand-copy span {
  display: block;
  transition: transform 450ms cubic-bezier(0.76, 0, 0.24, 1);
}

.brand:hover .brand-copy span { transform: translateY(-23px); }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link,
.os-nav {
  position: relative;
  display: grid;
  min-height: 48px;
  place-items: center;
  overflow: hidden;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 15px;
}

.nav-link::after,
.os-nav::after {
  position: absolute;
  right: 18px;
  bottom: 8px;
  left: 18px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform 350ms ease;
}

.nav-link:hover::after,
.os-nav:hover::after { transform: scaleX(1); transform-origin: left; }

.os-nav {
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.menu-button {
  display: none;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 12px 0;
}

.menu-button:focus-visible {
  border-radius: 999px;
  outline: 1px solid var(--gold);
  outline-offset: 6px;
}

.menu-lines {
  display: grid;
  width: 22px;
  gap: 6px;
}

.menu-lines i {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 300ms ease;
}

.menu-button[aria-expanded="true"] .menu-lines i:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-button[aria-expanded="true"] .menu-lines i:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.magnetic {
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  transform: translate(var(--magnetic-x), var(--magnetic-y));
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.mobile-menu {
  position: fixed;
  z-index: 250;
  inset: 0;
  overflow-y: auto;
  background: var(--ink-deep);
  color: var(--white);
  padding: calc(var(--header-height) + 38px) var(--page-pad) 38px;
  clip-path: circle(0 at calc(100% - 48px) 48px);
  visibility: hidden;
  transition: clip-path 650ms cubic-bezier(0.76, 0, 0.24, 1), visibility 650ms;
}

.mobile-menu.is-open {
  clip-path: circle(150% at calc(100% - 48px) 48px);
  visibility: visible;
}

.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-light);
  padding-bottom: 12px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.mobile-menu-links { display: grid; }

.mobile-menu-links a {
  display: flex;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--line-light);
  padding: 17px 0;
  font-size: 38px;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 450ms ease, transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.is-open .mobile-menu-links a { opacity: 1; transform: none; }
.mobile-menu.is-open .mobile-menu-links a:nth-child(1) { transition-delay: 140ms; }
.mobile-menu.is-open .mobile-menu-links a:nth-child(2) { transition-delay: 190ms; }
.mobile-menu.is-open .mobile-menu-links a:nth-child(3) { transition-delay: 240ms; }
.mobile-menu.is-open .mobile-menu-links a:nth-child(4) { transition-delay: 290ms; }
.mobile-menu.is-open .mobile-menu-links a:nth-child(5) { transition-delay: 340ms; }

.mobile-menu-links a span { color: var(--gold); font-size: 11px; }

.mobile-os-link {
  display: flex;
  justify-content: space-between;
  margin-top: 34px;
  border: 1px solid var(--line-light);
  padding: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 450ms ease 350ms, transform 650ms cubic-bezier(0.16, 1, 0.3, 1) 350ms;
}

.mobile-menu.is-open .mobile-os-link { opacity: 1; transform: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 115svh;
  overflow: hidden;
  isolation: isolate;
  background: #000000;
  color: var(--white);
}

.hero::before {
  position: absolute;
  z-index: 0;
  inset: -9%;
  background: url("assets/steven-portrait.png") center 22% / cover no-repeat;
  content: "";
  filter: blur(24px) brightness(0.42) saturate(0.82);
  opacity: 0.58;
  pointer-events: none;
  transform: scale(1.08);
}

.hero-enter {
  translate: 0 0;
  will-change: translate;
}

body.is-loading:not(.is-ready) .hero-enter { translate: 0 var(--hero-start); }

.portrait-stage {
  position: absolute;
  z-index: 1;
  top: -5%;
  left: 0;
  width: 100%;
  height: 110%;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(var(--parallax-y, 0px));
}

.portrait-image {
  position: absolute;
  top: 0;
  left: 50%;
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: contain;
  transform: translateX(-50%);
  user-select: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 9%, #000 91%, transparent 100%);
}

.location-pill {
  position: absolute;
  z-index: 5;
  top: 42%;
  left: 0;
  display: flex;
  align-items: center;
  width: clamp(250px, 18vw, 300px);
  justify-content: space-between;
  border-radius: 0 999px 999px 0;
  background: var(--ink);
  padding: 16px 18px 16px var(--page-pad);
  font-size: 16px;
  line-height: 1.2;
  transform: translateY(-50%);
}

.globe-button {
  display: grid;
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
}

.globe-button svg {
  width: 37px;
  height: 37px;
  animation: globe-turn 12s linear infinite;
}

@keyframes globe-turn {
  from { rotate: 0deg; }
  to { rotate: 360deg; }
}

.hero-role {
  position: absolute;
  z-index: 4;
  top: 20%;
  right: 7vw;
  width: 360px;
}

.role-arrow { display: block; margin-bottom: 27px; color: var(--gold); font-size: 38px; }
.hero-role p { margin: 0; font-size: 32px; line-height: 1.22; }
.role-line { display: block; }
.role-line-primary { white-space: nowrap; }

.big-name {
  position: absolute;
  z-index: 3;
  bottom: 28vh;
  left: 0;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.name-scroll {
  width: max-content;
  transform: translate3d(calc(-4vw + var(--name-shift, 0px)), 0, 0);
  will-change: transform;
}

.name-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.name-track h1 {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.18em;
  margin: 0;
  padding-right: 0.22em;
  font-size: 192px;
  font-weight: 400;
  line-height: 0.9;
}

.name-track h1 span { color: var(--gold); }

.hero-scroll {
  position: absolute;
  z-index: 7;
  right: var(--page-pad);
  bottom: 34px;
  display: none;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  text-transform: uppercase;
}

.hero-scroll span:first-child {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}

/* Shared sections */
.section-pad { padding: 145px var(--page-pad); }

.section-index {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 13px;
  color: var(--gold-dark);
  font-size: 11px;
  text-transform: uppercase;
}

.light-index { border-color: var(--line-light); color: var(--gold-dark); }

.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 750ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible { opacity: 1; transform: none; }

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

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.6fr);
  gap: 11vw;
  margin-top: 88px;
}

.about-statement h1 {
  max-width: 1050px;
  margin: 0;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.1;
}

.about-side {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  gap: 72px;
}

.about-side p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.about-copy { display: grid; gap: 22px; }

.about-story {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 105px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-chapter { min-height: 360px; padding: 34px 38px 42px; }
.about-chapter + .about-chapter { border-left: 1px solid var(--line); }
.about-chapter > span { color: var(--gold-dark); font-size: 10px; text-transform: uppercase; }
.about-chapter h2 { max-width: 280px; margin: 92px 0 22px; font-size: 34px; font-weight: 400; line-height: 1.08; }
.about-chapter p { max-width: 370px; margin: 0; color: var(--muted); font-size: 15px; }

.round-action {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 160px;
  height: 160px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

.round-action::before {
  position: absolute;
  z-index: -1;
  inset: 100% 0 -100%;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  transition: inset 500ms cubic-bezier(0.76, 0, 0.24, 1);
}

.round-action:hover::before { inset: 0; }

.round-action:hover { color: var(--ink); }

.round-action span:last-child { margin-top: 9px; }

.work-section { position: relative; background: var(--paper); }

.work-heading {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 40px;
  margin: 90px 0 70px;
}

.work-heading p { margin: 11px 0 0; color: var(--gold-dark); font-size: 12px; text-transform: uppercase; }
.work-heading h2 { margin: 0; font-size: 74px; font-weight: 400; line-height: 1.03; }

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

.project-row {
  position: relative;
  display: grid;
  grid-template-columns: 55px minmax(0, 1fr) minmax(220px, 0.42fr) 90px 36px;
  align-items: center;
  gap: 20px;
  min-height: 136px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  transition: color 350ms ease, padding 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-row::before {
  position: absolute;
  z-index: 0;
  inset: 100% 0 -100%;
  background: #191611;
  content: "";
  transition: inset 500ms cubic-bezier(0.76, 0, 0.24, 1);
}

.project-row > * { position: relative; z-index: 1; }
.project-row:hover { color: var(--white); padding: 0 18px; }
.project-row:hover::before { inset: 0; }
.project-number, .project-type, .project-year { color: var(--gold-dark); font-size: 12px; }
.project-row:hover .project-number, .project-row:hover .project-type, .project-row:hover .project-year { color: var(--gold); }
.project-row h3 { margin: 0; font-size: 42px; font-weight: 400; }
.project-arrow { font-size: 24px; }

.project-preview {
  position: fixed;
  z-index: 400;
  top: 50%;
  right: 5vw;
  display: grid;
  width: 330px;
  height: 250px;
  place-items: center;
  transform: translateY(-50%);
  scale: 0.84;
  opacity: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: var(--gray-dark);
  color: var(--white);
  pointer-events: none;
  transition: opacity 200ms ease, scale 300ms ease, background 300ms ease;
}

.project-preview.is-visible { opacity: 1; scale: 1; }
.project-preview[data-theme="nevets"] { background: #17130d; }
.project-preview[data-theme="research"] { background: #25211a; }
.project-preview[data-theme="investments"] { background: #302514; }

.preview-index { position: absolute; top: 16px; left: 17px; font-size: 11px; }
.preview-title { position: absolute; right: 17px; bottom: 14px; font-size: 13px; }
.preview-mark { font-family: Georgia, "Times New Roman", serif; font-size: 90px; }

.fields-section { background: var(--ink); color: var(--white); }

.fields-intro { margin-top: 88px; }
.fields-intro p { margin: 0 0 16px; color: var(--gold); font-size: 12px; text-transform: uppercase; }
.fields-intro h2 { margin: 0; font-size: 80px; font-weight: 400; line-height: 1; }

.field-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 100px;
  border-top: 1px solid var(--line-light);
}

.field-card {
  min-height: 370px;
  border-right: 1px solid var(--line-light);
  padding: 22px 32px 30px 0;
}

.field-card + .field-card { padding-left: 32px; }
.field-card:last-child { border-right: 0; }
.field-card > span { color: var(--gold-dark); font-size: 11px; }
.field-card h3 { margin: 96px 0 22px; font-size: 42px; font-weight: 400; }
.field-card p { max-width: 340px; margin: 0; color: var(--muted); }

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

.principles-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.55fr);
  gap: 10vw;
  margin-top: 92px;
}

.principles-layout h2 { margin: 0; font-size: 70px; font-weight: 400; line-height: 1.08; }
.principles-layout h2 em { color: var(--gold-dark); font-style: normal; }
.principle-list { border-top: 1px solid var(--line); }

.principle {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 30px 0 32px;
}

.principle span { color: var(--gold-dark); font-size: 11px; }
.principle-copy h3 {
  max-width: 520px;
  margin: -6px 0 14px;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.15;
}

.principle-copy p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.principle-copy cite {
  display: block;
  margin-top: 18px;
  color: var(--gold-dark);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nevets-bridge {
  position: relative;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) auto;
  align-items: center;
  gap: 70px;
  overflow: hidden;
  background: #060606;
  color: var(--white);
}

.bridge-orbit {
  position: relative;
  display: grid;
  width: 250px;
  height: 250px;
  place-items: center;
  border: 1px solid #313235;
  border-radius: 50%;
}

.bridge-orbit::before,
.bridge-orbit::after {
  position: absolute;
  border: 1px solid #242529;
  border-radius: 50%;
  content: "";
}

.bridge-orbit::before { inset: 34px; }
.bridge-orbit::after { inset: 68px; border-color: var(--gold-dark); }
.bridge-orbit span { z-index: 1; color: var(--gold); font-family: Georgia, "Times New Roman", serif; font-size: 56px; }

.bridge-copy { max-width: 700px; }
.bridge-label { color: var(--gold); font-size: 11px; text-transform: uppercase; }
.bridge-copy h2 { margin: 13px 0 20px; font-size: 82px; font-weight: 400; line-height: 1; }
.bridge-copy p { max-width: 590px; margin: 0; color: var(--muted); }

.bridge-button {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  min-width: 270px;
  overflow: hidden;
  border: 1px solid #44464a;
  padding: 18px;
}

.bridge-button::before {
  position: absolute;
  z-index: -1;
  inset: 100% 0 -100%;
  background: var(--gold);
  content: "";
  transition: inset 500ms cubic-bezier(0.76, 0, 0.24, 1);
}

.bridge-button:hover { color: var(--ink); }
.bridge-button:hover::before { inset: 0; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 150px var(--page-pad) 34px;
}

.contact-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
  gap: 60px;
  border-bottom: 1px solid var(--line-light);
  padding-bottom: 90px;
}

.contact-kicker {
  grid-column: 1 / -1;
  margin: 0 0 -20px;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
}

.contact-intro h2 { margin: 0; font-size: 76px; font-weight: 400; line-height: 1.05; }
.contact-lead { align-self: end; max-width: 390px; margin: 0 0 8px; color: #a9a9a9; font-size: 17px; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(460px, 1.28fr);
  gap: clamp(60px, 9vw, 150px);
  padding: 105px 0 120px;
}

.contact-details { display: flex; flex-direction: column; }

.contact-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px 20px;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  padding: 22px 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.contact-detail > span { grid-column: 1; color: var(--gold-dark); font-size: 10px; text-transform: uppercase; }
.contact-detail strong { grid-column: 1; overflow-wrap: anywhere; font-size: 15px; font-weight: 400; }
.contact-detail em { grid-column: 2; grid-row: 1 / 3; align-self: center; color: var(--gold); font-size: 12px; font-style: normal; }
.contact-detail:hover strong, .contact-detail:focus-visible strong { color: var(--gold); }

.contact-form { display: grid; }

.contact-field {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  align-items: start;
  gap: 30px;
  border-bottom: 1px solid var(--line-light);
  padding: 23px 0;
}

.contact-field > span { padding-top: 6px; color: var(--gold-dark); font-size: 10px; text-transform: uppercase; }

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 0;
  resize: vertical;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 18px;
  line-height: 1.55;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder { color: #686868; opacity: 1; }
.contact-field:focus-within { border-color: var(--gold); }
.contact-field-message { min-height: 170px; }

.contact-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 36px;
}

.contact-status { margin: 0; color: #888888; font-size: 12px; }
.contact-status.is-success { color: var(--gold); }

.contact-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  min-width: 220px;
  min-height: 62px;
  border: 1px solid var(--gold-dark);
  padding: 0 22px;
  background: transparent;
  color: var(--white);
  font: inherit;
  cursor: pointer;
  transition: background 250ms ease, color 250ms ease;
}

.contact-submit:hover, .contact-submit:focus-visible { background: var(--gold); color: var(--ink); }
.contact-submit:disabled { cursor: wait; opacity: 0.65; }

.footer-bottom {
  display: grid;
  grid-template-columns: 180px 180px 1fr;
  align-items: end;
  gap: 30px;
  margin-top: 120px;
}

.footer-bottom div { display: grid; gap: 6px; }
.footer-bottom span { color: var(--gold-dark); font-size: 10px; text-transform: uppercase; }
.footer-bottom strong { font-size: 13px; font-weight: 400; }
.footer-links { display: flex !important; justify-content: flex-end; gap: 28px !important; font-size: 13px; }

@media (max-width: 1100px) {
  :root { --page-pad: 34px; }
  .location-pill { width: 265px; padding-left: var(--page-pad); }
  .hero-role { right: 4vw; width: 290px; }
  .hero-role p { font-size: 27px; }
  .name-track h1 { font-size: 138px; }
  .about-statement h1 { font-size: 52px; }
  .about-chapter { padding-right: 25px; padding-left: 25px; }
  .about-chapter h2 { font-size: 30px; }
  .work-heading h2 { font-size: 62px; }
  .project-row { grid-template-columns: 44px minmax(0, 1fr) minmax(180px, 0.4fr) 70px 32px; }
  .project-row h3 { font-size: 34px; }
  .principles-layout h2 { font-size: 58px; }
  .nevets-bridge { grid-template-columns: 200px 1fr; }
  .bridge-orbit { width: 190px; height: 190px; }
  .bridge-button { grid-column: 2; justify-self: start; }
  .contact-layout { gap: 60px; }
}

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .menu-button { display: flex; }
}

@media (min-width: 1600px) {
  .name-track h1 { font-size: 246px; }
}

@media (max-width: 760px) {
  :root { --page-pad: 20px; --header-height: 74px; --hero-start: 10vh; }
  .brand { min-width: 0; }
  .brand-copy { width: 28px; }
  .brand-copy span { font-size: 0; }
  .brand-copy span::after { color: var(--white); font-size: 14px; content: "SD"; }
  .brand:hover .brand-copy span { transform: none; }
  .intro-word-wrap { transform: translate(-50%, -50px); font-size: 39px; }
  .intro-dot { width: 10px; height: 10px; transform: translateY(-8%); }
  .intro-curve-wrap { height: 5vh; }
  .hero { min-height: 110svh; }
  .portrait-stage {
    top: -3%;
    width: 100%;
    height: 106%;
  }
  .portrait-image { left: 48%; }
  .location-pill {
    top: auto;
    right: 0;
    bottom: 12vh;
    left: auto;
    width: auto;
    min-width: 0;
    justify-content: flex-end;
    padding: 0 var(--page-pad) 0 0;
    background: transparent;
    transform: none;
  }
  .location-pill > span:first-child { display: none; }
  .globe-button { width: 62px; height: 62px; }
  .globe-button svg { width: 32px; height: 32px; }
  .hero-role {
    top: auto;
    right: auto;
    bottom: 12vh;
    left: var(--page-pad);
    width: 220px;
  }
  .role-arrow { margin-bottom: 18px; font-size: 26px; }
  .hero-role p { font-size: 19px; }
  .big-name { bottom: 31vh; }
  .name-scroll { transform: translate3d(calc(-1vw + var(--name-shift, 0px)), 0, 0); }
  .name-track h1 { font-size: 66px; }
  .hero-scroll { display: none; }

  .section-pad { padding: 95px var(--page-pad); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; margin-top: 52px; }
  .about-statement h1 { font-size: 38px; }
  .about-side { gap: 42px; }
  .about-side p { font-size: 16px; }
  .about-story { grid-template-columns: 1fr; margin-top: 74px; }
  .about-chapter { min-height: 0; padding: 30px 0 46px; }
  .about-chapter + .about-chapter { border-top: 1px solid var(--line); border-left: 0; }
  .about-chapter h2 { max-width: 100%; margin: 55px 0 18px; font-size: 32px; }
  .about-chapter p { max-width: 100%; }
  .round-action { width: 132px; height: 132px; }

  .work-heading { grid-template-columns: 1fr; gap: 18px; margin: 56px 0 42px; }
  .work-heading h2 { font-size: 44px; }
  .project-row {
    grid-template-columns: 34px minmax(0, 1fr) 25px;
    gap: 10px;
    min-height: 110px;
  }
  .project-row h3 { font-size: 25px; }
  .project-type, .project-year { display: none; }
  .project-row:hover { padding: 0 8px; }
  .project-preview { display: none; }

  .fields-intro { margin-top: 54px; }
  .fields-intro h2 { font-size: 48px; }
  .field-grid { grid-template-columns: 1fr; margin-top: 62px; }
  .field-card, .field-card + .field-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
    padding: 20px 0 52px;
  }
  .field-card:last-child { border-bottom: 0; }
  .field-card h3 { margin: 46px 0 16px; font-size: 36px; }

  .principles-layout { grid-template-columns: 1fr; gap: 58px; margin-top: 58px; }
  .principles-layout h2 { font-size: 42px; }
  .principle { grid-template-columns: 38px 1fr; padding: 26px 0 28px; }
  .principle-copy h3 { font-size: 24px; }

  .nevets-bridge { grid-template-columns: 1fr; gap: 46px; }
  .bridge-orbit { width: 170px; height: 170px; }
  .bridge-copy h2 { font-size: 58px; }
  .bridge-button { grid-column: auto; width: 100%; min-width: 0; }

  .site-footer { padding: 100px var(--page-pad) 28px; }
  .contact-intro { grid-template-columns: 1fr; gap: 28px; padding-bottom: 58px; }
  .contact-kicker { margin-bottom: 0; }
  .contact-intro h2 { font-size: 43px; }
  .contact-lead { max-width: 100%; }
  .contact-layout { grid-template-columns: 1fr; gap: 70px; padding: 68px 0 90px; }
  .contact-field { grid-template-columns: 1fr; gap: 13px; padding: 20px 0; }
  .contact-field > span { padding-top: 0; }
  .contact-submit-row { align-items: stretch; flex-direction: column; }
  .contact-submit { width: 100%; }
  .footer-bottom { grid-template-columns: 1fr 1fr; margin-top: 0; }
  .footer-links { grid-column: 1 / -1; justify-content: flex-start; margin-top: 20px; }
}

@media (max-width: 390px) {
  .hero { min-height: 110svh; }
  .name-track h1 { font-size: 56px; }
  .mobile-menu-links a { font-size: 34px; }
}

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