/* ==========================================================================
   Onu Ventures — site styles
   Implementation of "Onu Ventures Home.dc.html" (Claude Design canvas).
   Design tokens and measurements are carried over 1:1 from the canvas.
   ========================================================================== */

:root {
  --bg: #faf8f4;
  --bg-alt: #ffffff;
  --cream: #f1ede4;
  --ink: #231f20;
  --dark: #231f20;
  --footer: #191617;
  --gold: #c3b04a;
  --gold-light: #ddcb6a;
  --gold-ink: #857021;

  --serif: Spectral, Georgia, "Times New Roman", serif;
  --sans: Archivo, system-ui, -apple-system, "Segoe UI", sans-serif;

  --gutter: clamp(20px, 4vw, 64px);
  --shell: 1440px;
  --ease: cubic-bezier(.23, 1, .32, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img, svg, video { max-width: 100%; }
img { display: block; }
h1, h2, h3, p, a, li { overflow-wrap: break-word; }
input, select, textarea, button { max-width: 100%; font-size: 16px; }

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

:focus-visible { outline: 2px solid var(--gold-ink); outline-offset: 3px; }

.shell { max-width: var(--shell); margin: 0 auto; }

.rule {
  width: 38px;
  height: 1.5px;
  background: var(--gold);
  margin-bottom: 26px;
}
.rule--light { background: var(--gold-light); }

.eyebrow {
  margin: 0;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* Buttons ---------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: transform 160ms ease-out, background 220ms ease, color 220ms ease, border-color 220ms ease;
}
.btn:active { transform: scale(.98); }

.btn--gold { color: var(--ink); background: var(--gold); }
.btn--gold:hover { background: var(--gold-light); color: var(--ink); }

.btn--ghost-light { color: #fff; border: 1px solid rgba(255, 255, 255, .42); }
.btn--ghost-light:hover { background: rgba(255, 255, 255, .12); color: #fff; }

.btn--ghost-dark {
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid rgba(35, 31, 32, .3);
}
.btn--ghost-dark:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Header ----------------------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 64px);
  background: transparent;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background 400ms var(--ease), border-color 400ms ease;
}

.site-header__logo { display: block; flex: none; }
.site-header__logo img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 400ms ease;
}

.nav { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 34px); }

.nav__link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 220ms ease, color 400ms ease;
}
.nav__link:hover { border-bottom-color: currentColor; color: inherit; }

.nav__cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .5);
  padding: 12px 20px;
  transition: background 220ms var(--ease), color 220ms ease, border-color 220ms ease;
}
.nav__cta:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.nav__cta:active { transform: scale(.98); }

/* scrolled state (set by JS on <body>) */
body.scrolled:not(.menu-open) .site-header {
  background: rgba(250, 248, 244, .94);
  border-bottom-color: rgba(35, 31, 32, .1);
}
body.scrolled:not(.menu-open) .site-header__logo img { filter: none; }
body.scrolled:not(.menu-open) .nav__link,
body.scrolled:not(.menu-open) .nav__cta { color: var(--ink); }
body.scrolled:not(.menu-open) .nav__cta { border-color: rgba(35, 31, 32, .32); }
body.scrolled:not(.menu-open) .burger__bar { background: var(--ink); }

/* Burger + mobile panel -------------------------------------------------- */

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 0;
  margin: 0 -10px 0 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  flex: none;
}

.burger__bar {
  display: block;
  width: 26px;
  height: 1.5px;
  background: rgba(255, 255, 255, .9);
  transition: transform 260ms var(--ease), background 400ms ease;
}

body.menu-open .burger__bar { background: rgba(255, 255, 255, .9); }
body.menu-open .burger__bar:first-child { transform: translateY(3.75px) rotate(45deg); }
body.menu-open .burger__bar:last-child { transform: translateY(-3.75px) rotate(-45deg); }

.mobile-panel {
  position: fixed;
  inset: 0;
  height: 100dvh;
  z-index: 49;
  background: var(--dark);
  display: none;
  flex-direction: column;
  padding: 0;
  opacity: 0;
  transition: opacity 300ms var(--ease);
  overflow: hidden;
}
body.menu-open .mobile-panel { display: flex; opacity: 1; }

.mobile-panel__scroll {
  flex: 1 1 auto;
  margin-top: 78px;
  padding: 8px clamp(22px, 7vw, 56px) 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav { display: flex; flex-direction: column; gap: 2px; }

.mobile-nav__link {
  display: flex;
  align-items: center;
  min-height: 60px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 28px;
  line-height: 1.2;
  color: var(--bg);
  border-bottom: 1px solid rgba(250, 248, 244, .14);
}
.mobile-nav__link:hover { color: var(--gold-light); }
.mobile-nav__link:active { opacity: .6; }

.mobile-panel__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-top: 28px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
}
.mobile-panel__cta:active { transform: scale(.98); }

.mobile-panel__address {
  margin: 28px 0 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(250, 248, 244, .5);
}

/* Hero ------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 640px;
  height: 92svh;
  overflow: hidden;
  background: var(--dark);
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ovHeroZoom 16s var(--ease) forwards;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 22, 23, .66) 0%, rgba(25, 22, 23, .3) 40%, rgba(25, 22, 23, .8) 100%);
}

.hero__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 var(--gutter) clamp(44px, 6vw, 88px);
}

.hero__eyebrow {
  margin: 0 0 20px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .66);
  animation: ovRise 700ms var(--ease) both;
}

.hero__title {
  margin: 0;
  max-width: 16em;
  font-family: var(--serif);
  font-weight: 200;
  font-size: clamp(38px, 6.2vw, 96px);
  line-height: 1.02;
  letter-spacing: -.02em;
  color: #fff;
  text-wrap: pretty;
  animation: ovRise 800ms 80ms var(--ease) both;
}
.hero__title em { font-weight: 300; }

.hero__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-top: clamp(26px, 3.4vw, 48px);
  animation: ovRise 800ms 200ms var(--ease) both;
}

.hero__lede {
  margin: 0;
  max-width: 46ch;
  font-size: clamp(14.5px, 1.1vw, 17px);
  line-height: 1.7;
  color: rgba(255, 255, 255, .8);
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Stats ------------------------------------------------------------------ */

.stats { padding: clamp(36px, 4.5vw, 64px) var(--gutter); background: var(--bg-alt); }

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2vw, 32px);
}

.stat { padding: 4px clamp(0px, 1.4vw, 20px); border-left: 1px solid rgba(35, 31, 32, .14); }

.stat__value {
  margin: 0;
  font-family: var(--serif);
  font-weight: 200;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}

.stat__label {
  margin: 10px 0 0;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(35, 31, 32, .5);
  line-height: 1.5;
}

/* Featured-in strip ------------------------------------------------------ */

.outlets {
  padding: clamp(22px, 2.4vw, 30px) var(--gutter);
  background: var(--cream);
  border-top: 1px solid rgba(35, 31, 32, .08);
  border-bottom: 1px solid rgba(35, 31, 32, .08);
}

.outlets__shell { display: grid; gap: 16px; justify-items: center; }

.outlets__label {
  margin: 0;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(35, 31, 32, .42);
}

.outlets__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2.6vw, 36px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.outlets__list li {
  font-size: 13px;
  letter-spacing: .02em;
  color: rgba(35, 31, 32, .62);
  padding: 6px 2px;
}

/* Approach --------------------------------------------------------------- */

.approach { padding: clamp(64px, 9vw, 132px) var(--gutter); }

.approach__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.approach__title {
  margin: 0 0 26px;
  font-family: var(--serif);
  font-weight: 200;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.1;
  letter-spacing: -.02em;
  text-wrap: pretty;
}

.prose {
  margin: 0 0 18px;
  font-size: clamp(14.5px, 1.05vw, 16.5px);
  line-height: 1.8;
  color: rgba(35, 31, 32, .7);
  max-width: 52ch;
}
.prose:last-of-type { margin-bottom: 32px; }

.approach__figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e8e2d5;
  margin: 0;
}
.approach__figure img { width: 100%; height: 100%; object-fit: cover; }

.approach__badge {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--gold);
  color: #fff;
  padding: 12px 20px 14px;
}
.approach__badge p:first-child {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.1;
}
.approach__badge p:last-child {
  margin: 4px 0 0;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
}

/* Capabilities ----------------------------------------------------------- */

.capabilities {
  padding: clamp(52px, 7vw, 104px) var(--gutter);
  background: var(--dark);
  color: var(--bg);
}

.capabilities__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 1px;
  background: rgba(250, 248, 244, .15);
}

.capability {
  background: var(--dark);
  padding: clamp(24px, 2.6vw, 38px) clamp(20px, 2.2vw, 34px);
}

.capability__n {
  margin: 0 0 20px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--gold-light);
}

.capability__title {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(20px, 1.8vw, 27px);
  line-height: 1.15;
  color: #fff;
}

.capability__body {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(250, 248, 244, .6);
  max-width: 40ch;
}

/* Section headers -------------------------------------------------------- */

.section { padding: clamp(60px, 8vw, 120px) var(--gutter); scroll-margin-top: 80px; }
.section--bg { background: var(--bg); }
.section--white { background: var(--bg-alt); }

.section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(28px, 3.4vw, 48px);
}

.section__title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(27px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -.015em;
}

.section__cta {
  min-height: 48px;
  padding: 0 24px;
  font-size: 10.5px;
}

/* Projects --------------------------------------------------------------- */

.projects__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(288px, 100%), 1fr));
  gap: clamp(22px, 2.4vw, 36px);
}

.project { display: flex; flex-direction: column; }

.project__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: #e8e2d5;
}

.project__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}
.project:hover .project__media img { transform: scale(1.045); }

.project__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 22, 23, .05) 40%, rgba(25, 22, 23, .78) 100%);
}

.project__status {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(176, 86, 58, .92);
}
.project__status--dark { background: rgba(35, 31, 32, .86); }
.project__status .dot { width: 6px; height: 6px; border-radius: 50%; background: #f2c9b8; }
.project__status--dark .dot { background: #7fc79b; }

.project__caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 0 18px 16px; }

.project__category {
  margin: 0 0 7px;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
}

.project__name {
  margin: 0 0 3px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(19px, 1.7vw, 25px);
  line-height: 1.15;
  color: #fff;
}

.project__location { margin: 0; font-size: 13px; color: rgba(255, 255, 255, .74); }

.project__body {
  margin: 18px 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(35, 31, 32, .66);
  flex: 1 1 auto;
}

.project__more {
  display: block;
  padding-top: 14px;
  border-top: 1px solid rgba(35, 31, 32, .14);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-ink);
}

/* Press ------------------------------------------------------------------ */

.press__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 1px;
  background: rgba(35, 31, 32, .12);
  border-top: 1px solid rgba(35, 31, 32, .12);
  border-bottom: 1px solid rgba(35, 31, 32, .12);
}

.press__item {
  display: block;
  background: var(--bg-alt);
  padding: 24px 22px 26px;
  transition: background 260ms ease;
}
.press__item:hover { background: #f4f0e7; color: inherit; }

.press__outlet {
  margin: 0 0 12px;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-ink);
}

.press__title { margin: 0; font-size: 15px; line-height: 1.55; color: var(--ink); text-wrap: pretty; }

.press__all { margin-top: clamp(26px, 3vw, 40px); }

/* Investors -------------------------------------------------------------- */

.investors {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  scroll-margin-top: 80px;
}

.investors__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .28;
}

.investors__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(25, 22, 23, .94) 0%, rgba(25, 22, 23, .72) 60%, rgba(25, 22, 23, .5) 100%);
}

.investors__body { position: relative; padding: clamp(64px, 9vw, 132px) var(--gutter); }

.investors__title {
  margin: 0 0 24px;
  max-width: 24ch;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(30px, 4.2vw, 62px);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: #fff;
  text-wrap: pretty;
}

.investors__lede {
  margin: 0 0 36px;
  max-width: 54ch;
  font-size: clamp(14.5px, 1.05vw, 16.5px);
  line-height: 1.8;
  color: rgba(250, 248, 244, .72);
}

.investors__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 1px;
  background: rgba(250, 248, 244, .16);
  margin-top: clamp(40px, 5vw, 72px);
}

.fact { background: rgba(25, 22, 23, .72); padding: 22px 20px 26px; }

.fact__label {
  margin: 0 0 9px;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, .45);
}

.fact__value {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.25;
  color: #fff;
}

/* Contact ---------------------------------------------------------------- */

.contact { padding: clamp(64px, 9vw, 132px) var(--gutter); background: var(--bg); scroll-margin-top: 80px; }

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}

.contact__title {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-weight: 200;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -.02em;
  text-wrap: pretty;
}

.contact__lede {
  margin: 0 0 38px;
  font-size: clamp(14.5px, 1.05vw, 16.5px);
  line-height: 1.8;
  color: rgba(35, 31, 32, .7);
  max-width: 46ch;
}

.contact__details { display: grid; gap: 24px; }

.field-label,
.contact__details p:first-child {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(35, 31, 32, .45);
}

.contact__details h3 {
  margin: 0 0 8px;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(35, 31, 32, .45);
}

.contact__details p { margin: 0; font-size: 15.5px; line-height: 1.65; color: rgba(35, 31, 32, .82); }

.contact__email {
  display: inline-block;
  font-size: 15.5px;
  color: var(--ink);
  border-bottom: 1px solid rgba(35, 31, 32, .25);
  padding-bottom: 3px;
  transition: border-color 220ms ease;
}
.contact__email:hover { border-bottom-color: var(--gold-ink); color: var(--ink); }

.contact-form { display: grid; gap: 24px; }
.contact-form label { display: block; }

.field-label { display: block; margin-bottom: 10px; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid rgba(35, 31, 32, .16);
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 220ms ease;
}
.contact-form input,
.contact-form select { min-height: 48px; }
.contact-form textarea { line-height: 1.6; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--gold-ink); }

.contact-form button { justify-self: start; min-height: 54px; padding: 0 32px; }
.contact-form button[disabled] { opacity: .65; cursor: default; }

.form-status { margin: 0; font-size: 13.5px; line-height: 1.6; color: #3f5c47; min-height: 1.6em; }
.form-status.is-error { color: #9a3412; }

/* Newsletter ------------------------------------------------------------- */

.newsletter {
  padding: clamp(48px, 6vw, 84px) var(--gutter);
  background: var(--dark);
  color: var(--bg);
  border-top: 1px solid rgba(195, 176, 74, .45);
}

.newsletter__shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 3vw, 56px);
}

.newsletter__copy { flex: 1 1 380px; min-width: 0; }

.newsletter__eyebrow { margin: 0 0 14px; color: var(--gold-light); }

.newsletter__title {
  margin: 0 0 12px;
  max-width: 22ch;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #fff;
  text-wrap: pretty;
}

.newsletter__body {
  margin: 0;
  max-width: 48ch;
  font-size: clamp(14.5px, 1.05vw, 16px);
  line-height: 1.75;
  color: rgba(250, 248, 244, .72);
}

.newsletter__action { flex: 0 1 auto; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.newsletter__action .btn { min-height: 56px; padding: 0 34px; font-size: 11.5px; }
.newsletter__note { margin: 0; font-size: 11px; letter-spacing: .04em; color: rgba(250, 248, 244, .5); }

/* Footer ----------------------------------------------------------------- */

.site-footer {
  padding: clamp(36px, 4.5vw, 60px) var(--gutter);
  background: var(--footer);
  color: rgba(250, 248, 244, .5);
}

.site-footer__shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__logo { height: 52px; width: auto; filter: brightness(0) invert(1) opacity(.55); }

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(16px, 2.2vw, 32px);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-footer__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(250, 248, 244, .5);
}
.site-footer__nav a:hover { color: var(--gold-light); }

.site-footer__legal { margin: 0; font-size: 11px; letter-spacing: .04em; }

/* Responsive ------------------------------------------------------------- */

@media (max-width: 980px) {
  .nav { display: none; }
  .burger { display: flex; }
  .hero { min-height: 560px; }
  .stats__grid { grid-template-columns: repeat(auto-fit, minmax(min(140px, 100%), 1fr)); }
  .stat { border-left: 0; }
}

/* Motion ----------------------------------------------------------------- */

@keyframes ovHeroZoom {
  from { transform: scale(1.005); }
  to   { transform: scale(1.045); }
}

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

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  html { scroll-behavior: auto; }
  .project:hover .project__media img { transform: none; }
}

/* ==========================================================================
   Interior pages — About, Our Approach, Portfolio, News
   ========================================================================== */

/* Page hero (shorter than the home hero) ---------------------------------- */

.page-hero {
  position: relative;
  min-height: 520px;
  height: 56svh;
  overflow: hidden;
  background: var(--dark);
}
.page-hero--short { min-height: 460px; height: 52svh; }

.page-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 22, 23, .66) 0%, rgba(25, 22, 23, .36) 45%, rgba(25, 22, 23, .84) 100%);
}
.page-hero--short .page-hero__scrim {
  background: linear-gradient(180deg, rgba(25, 22, 23, .68) 0%, rgba(25, 22, 23, .42) 45%, rgba(25, 22, 23, .84) 100%);
}

.page-hero__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 var(--gutter) clamp(36px, 4.5vw, 64px);
}

.page-hero__eyebrow {
  margin: 0 0 16px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .66);
  animation: ovRise 700ms 40ms var(--ease) both;
}

.page-hero__title {
  margin: 0;
  max-width: 20ch;
  font-family: var(--serif);
  font-weight: 200;
  font-size: clamp(34px, 5.2vw, 82px);
  line-height: 1.02;
  letter-spacing: -.02em;
  color: #fff;
  text-wrap: pretty;
  animation: ovRise 800ms 100ms var(--ease) both;
}

.page-hero__lede {
  margin: 22px 0 0;
  max-width: min(52ch, 100%);
  font-size: clamp(14.5px, 1.05vw, 16.5px);
  line-height: 1.7;
  color: rgba(255, 255, 255, .78);
  animation: ovRise 800ms 180ms var(--ease) both;
}

.page-hero .rule { animation: ovRise 700ms var(--ease) both; margin-bottom: 22px; }

/* Dark hero band (News) --------------------------------------------------- */

.dark-hero {
  padding: clamp(108px, 13vw, 176px) var(--gutter) clamp(40px, 5vw, 72px);
  background: var(--dark);
  color: #fff;
}
.dark-hero .rule { margin-bottom: 24px; }
.dark-hero__title {
  margin: 0;
  max-width: 20ch;
  font-family: var(--serif);
  font-weight: 200;
  font-size: clamp(34px, 5vw, 76px);
  line-height: 1.03;
  letter-spacing: -.02em;
  color: #fff;
  text-wrap: pretty;
}
.dark-hero__lede {
  margin: 24px 0 0;
  max-width: min(52ch, 100%);
  font-size: clamp(14.5px, 1.05vw, 16.5px);
  line-height: 1.75;
  color: rgba(250, 248, 244, .7);
}

/* The News header sits on a dark band, so it starts solid rather than clear */
body.header-solid .site-header { background: var(--dark); }
body.header-solid.scrolled:not(.menu-open) .site-header { background: rgba(250, 248, 244, .94); }

.outlets--flush { border-top: 0; }

/* Two-column story block --------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.split--center { align-items: center; }

.story__title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 200;
  font-size: clamp(27px, 3.4vw, 50px);
  line-height: 1.12;
  letter-spacing: -.015em;
  text-wrap: pretty;
}

.story__body {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: clamp(0px, 2.4vw, 42px);
}
.story__body p {
  margin: 0;
  font-size: clamp(14.5px, 1.05vw, 16.5px);
  line-height: 1.8;
  color: rgba(35, 31, 32, .72);
  max-width: min(52ch, 100%);
}
.story__body .btn { align-self: flex-start; }

/* Bordered cell grids (stats, values, recognition) ------------------------- */

.cells {
  display: grid;
  gap: 1px;
  background: rgba(35, 31, 32, .12);
  border-top: 1px solid rgba(35, 31, 32, .12);
  border-bottom: 1px solid rgba(35, 31, 32, .12);
}
.cells--stats { grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr)); }
.cells--values { grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); }
.cells--recognition {
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  border-bottom: 0;
}

.cell { background: var(--bg); padding: clamp(24px, 2.6vw, 36px) clamp(18px, 2vw, 28px); }
.cell--cream { background: var(--cream); padding: 22px 20px 26px; }
.cell--value { padding: 26px 22px 30px; }

.cell__stat {
  margin: 0;
  font-family: var(--serif);
  font-weight: 200;
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1;
  letter-spacing: -.02em;
}
.cell__label {
  margin: 11px 0 0;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(35, 31, 32, .5);
  line-height: 1.5;
}
.cell__n { margin: 0 0 18px; font-size: 10px; font-weight: 500; letter-spacing: .18em; color: var(--gold-ink); }
.cell__title {
  margin: 0 0 13px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.15;
}
.cell__body { margin: 0; font-size: 14.5px; line-height: 1.75; color: rgba(35, 31, 32, .66); max-width: min(40ch, 100%); }
.cell__source { margin: 0 0 9px; font-size: 9.5px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-ink); }
.cell__headline { margin: 0; font-family: var(--serif); font-weight: 300; font-size: 18px; line-height: 1.35; }

/* Leadership -------------------------------------------------------------- */

.leadership { background: var(--cream); }

.leadership__grid {
  display: grid;
  grid-template-columns: minmax(240px, .7fr) minmax(320px, 1.7fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: start;
}

.leadership__portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #e8e2d5;
  margin: 0;
}
.leadership__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }

.leadership__body { min-width: 0; }
.leadership__name {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-weight: 200;
  font-size: clamp(30px, 3.8vw, 54px);
  line-height: 1.05;
  letter-spacing: -.02em;
}
.leadership__role {
  margin: 0 0 28px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(35, 31, 32, .5);
}
.leadership__body p.prose { max-width: min(60ch, 100%); }

/* Lifecycle --------------------------------------------------------------- */

.lifecycle { border-top: 1px solid rgba(35, 31, 32, .14); }

.step {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: clamp(10px, 3vw, 44px);
  padding: clamp(22px, 2.4vw, 34px) clamp(0px, 1vw, 12px);
  border-bottom: 1px solid rgba(35, 31, 32, .14);
  transition: background 280ms ease;
}
.step:hover { background: var(--cream); }

.step__n { margin: 0; font-size: 10.5px; font-weight: 500; letter-spacing: .18em; color: var(--gold-ink); padding-top: 5px; }

.step__body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: clamp(8px, 3vw, 44px);
  align-items: baseline;
}
.step__title { margin: 0; font-family: var(--serif); font-weight: 300; font-size: clamp(20px, 2vw, 31px); line-height: 1.15; }
.step__text { margin: 0; font-size: 14.5px; line-height: 1.75; color: rgba(35, 31, 32, .68); max-width: min(56ch, 100%); }

/* Impact ------------------------------------------------------------------ */

.impact { background: var(--cream); }
.impact__figure { overflow: hidden; aspect-ratio: 4 / 3; background: #e8e2d5; margin: 0; }
.impact__figure img { width: 100%; height: 100%; object-fit: cover; }

.approach__badge--dark { color: var(--ink); }
.approach__badge--dark p:last-child { color: rgba(35, 31, 32, .72); }

/* Generic dark image band ------------------------------------------------- */

.band { position: relative; overflow: hidden; background: var(--dark); }
.band__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .26; }
.band__scrim { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(25, 22, 23, .94), rgba(25, 22, 23, .6)); }
.band__body { position: relative; padding: clamp(56px, 8vw, 120px) var(--gutter); }
.band__title {
  margin: 0 0 20px;
  max-width: min(24ch, 100%);
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.8vw, 54px);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: #fff;
  text-wrap: pretty;
}
.band__lede {
  margin: 0 0 32px;
  max-width: min(52ch, 100%);
  font-size: clamp(14.5px, 1.05vw, 16.5px);
  line-height: 1.8;
  color: rgba(250, 248, 244, .72);
}
.band__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Portfolio --------------------------------------------------------------- */

.project__status--gold { background: rgba(195, 176, 74, .95); color: var(--ink); }
.project__status--gold .dot { background: #3f5c47; }
.project__status--sold .dot { background: #9b968f; }

.project__media--button { cursor: pointer; outline: none; }
.project__media--button:focus-visible { box-shadow: 0 0 0 2px var(--gold); }

.project__overview {
  align-self: flex-start;
  min-height: 44px;
  padding: 0;
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(35, 31, 32, .25);
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 220ms ease, color 220ms ease;
}
.project__overview:hover { color: var(--gold-ink); border-bottom-color: var(--gold-ink); }

/* Card gallery ------------------------------------------------------------
   A scroll-snap track, so touch devices get native swipe and momentum for
   free. Arrows and dots drive it programmatically for mouse and keyboard. */

.gallery__track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.gallery__track::-webkit-scrollbar { display: none; }

.gallery__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

/* The scrim and caption sit over the track, so they must not eat the drag. */
.project__media[data-gallery] .project__scrim,
.project__media[data-gallery] .project__caption,
.project__media[data-gallery] .project__status { pointer-events: none; }

.gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  font-size: 20px;
  line-height: 1;
  color: #fff;
  background: rgba(25, 22, 23, .5);
  border: 0;
  cursor: pointer;
  opacity: 0;
  transition: opacity 220ms ease, background 220ms ease;
}
.gallery__nav:hover { background: rgba(25, 22, 23, .82); color: #fff; }
.gallery__nav--prev { left: 10px; }
.gallery__nav--next { right: 10px; }
.gallery__nav[disabled] { opacity: 0 !important; pointer-events: none; }

.project__media:hover .gallery__nav,
.gallery__nav:focus-visible { opacity: 1; }

/* No hover on touch, so the arrows would never appear — hide them there and
   let the swipe and the dots carry it. */
@media (hover: none) {
  .gallery__nav { display: none; }
}

.gallery__dots {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 8px;
  display: flex;
  justify-content: center;
  gap: 7px;
  pointer-events: none;
}

.gallery__dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
  pointer-events: auto;
  transition: background 220ms ease, transform 220ms ease;
}
.gallery__dot[aria-current="true"] { background: #fff; transform: scale(1.25); }

.gallery__count {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 12px;
  padding: 5px 9px;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .12em;
  color: #fff;
  background: rgba(25, 22, 23, .55);
  font-variant-numeric: tabular-nums;
  pointer-events: none;
}

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

/* Project modal ----------------------------------------------------------- */

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(0px, 4vh, 56px) clamp(0px, 4vw, 40px);
  background: rgba(25, 22, 23, .72);
  backdrop-filter: blur(3px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.modal[hidden] { display: none; }

.modal__panel { position: relative; width: 100%; max-width: 820px; background: var(--bg); box-shadow: 0 40px 90px rgba(25, 22, 23, .45); }

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  color: #fff;
  background: rgba(25, 22, 23, .6);
  border: 0;
  cursor: pointer;
  transition: background 220ms ease;
}
.modal__close:hover { background: var(--dark); }

.modal__media { position: relative; overflow: hidden; aspect-ratio: 16 / 9; background: #e8e2d5; }
.modal__media img { width: 100%; height: 100%; object-fit: cover; }
.modal__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(25, 22, 23, .05) 45%, rgba(25, 22, 23, .8) 100%); }
.modal__caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 0 clamp(20px, 3.5vw, 40px) clamp(18px, 2.4vw, 26px); }
.modal__category { margin: 0 0 8px; font-size: 9.5px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: rgba(255, 255, 255, .72); }
.modal__name {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: #fff;
}
.modal__meta { margin: 0; font-size: 13.5px; color: rgba(255, 255, 255, .78); }
.modal__content { padding: clamp(26px, 3.4vw, 44px) clamp(20px, 3.5vw, 40px) clamp(30px, 3.6vw, 48px); }
.modal__story { display: grid; gap: 18px; }
.modal__story p { margin: 0; font-size: clamp(14.5px, 1.05vw, 16px); line-height: 1.85; color: rgba(35, 31, 32, .78); text-wrap: pretty; }
.modal__site { margin-top: 28px; }

/* News rows --------------------------------------------------------------- */

.press-rows { border-top: 1px solid rgba(35, 31, 32, .14); }

.press-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 190px;
  gap: clamp(8px, 3vw, 44px);
  align-items: baseline;
  padding: clamp(22px, 2.4vw, 34px) clamp(0px, 1vw, 14px);
  border-bottom: 1px solid rgba(35, 31, 32, .14);
  transition: background 260ms ease;
}
.press-row:hover { background: var(--cream); color: inherit; }
.press-row__outlet { font-size: 9.5px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-ink); }
.press-row__title { font-family: var(--serif); font-weight: 300; font-size: clamp(19px, 1.9vw, 28px); line-height: 1.3; text-wrap: pretty; }
.press-row__date { font-size: 10px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: rgba(35, 31, 32, .45); }

/* Interior responsive ----------------------------------------------------- */

@media (max-width: 980px) {
  .page-hero { min-height: 460px; }
  .page-hero--short { min-height: 400px; }
  .leadership__grid { grid-template-columns: minmax(0, 1fr); }
  .step { grid-template-columns: minmax(0, 1fr); }
  .press-row { grid-template-columns: minmax(0, 1fr); }
}
