@font-face {
  font-family: "Archivo";
  src: url("assets/fonts/archivo-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #f7f5ef;
  --white: #fdfcf8;
  --ink: #1c1a14;
  --muted: #5a5e55;
  --graphite: #141712;
  --graphite-soft: #1d221c;
  --green-deep: #24120b;
  --green: #ff671f;
  --green-bright: #ff8a3d;
  --gold: #ff671f;
  --line: rgba(28, 26, 20, .14);
  --line-on-dark: rgba(247, 245, 239, .18);
  --cream-on-dark: rgba(247, 245, 239, .78);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Archivo", "Helvetica Neue", Arial, sans-serif;
  font-weight: 450;
  color: var(--ink);
  background: var(--paper);
}

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

a:focus-visible {
  outline: 2px solid var(--green-bright);
  outline-offset: 3px;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(20, 23, 18, .86);
  border-bottom: 1px solid var(--line-on-dark);
  backdrop-filter: blur(14px);
  color: var(--paper);
}

.brand {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.top-nav {
  display: flex;
  gap: clamp(14px, 2vw, 30px);
  color: rgba(247, 245, 239, .68);
  font-size: .76rem;
  font-weight: 620;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.top-nav a,
.brand,
.scroll-link,
.value {
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.top-nav a:hover,
.brand:hover {
  color: var(--green-bright);
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 680;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.rule-double {
  margin: 0 0 28px;
  border: 0;
  border-top: 2px solid var(--ink);
  width: 64px;
  margin-left: 0;
}

.hero {
  min-height: 76svh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 430px);
  align-items: start;
  gap: clamp(36px, 5vw, 84px);
  padding: 96px clamp(20px, 6vw, 80px) clamp(38px, 6vh, 70px);
  background: radial-gradient(120% 95% at 78% 6%, #5f260d, var(--graphite) 62%);
  color: var(--paper);
}

.hero-copy {
  max-width: 820px;
}

.hero .eyebrow {
  display: inline-block;
  color: var(--green-bright);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 10px;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 10vw, 8rem);
  font-weight: 700;
  line-height: .92;
  letter-spacing: -.03em;
  max-width: 900px;
  color: var(--white);
}

.hero-lede {
  margin-bottom: 16px;
  color: rgba(247, 245, 239, .94);
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-weight: 430;
  line-height: 1.24;
  max-width: 620px;
}

.hero-text {
  max-width: 620px;
  color: var(--cream-on-dark);
  font-size: 1.08rem;
  line-height: 1.55;
}

.scroll-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 20px;
  padding: 0 28px;
  color: var(--paper);
  border: 1px solid rgba(247, 245, 239, .5);
  font-weight: 660;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.scroll-link:hover {
  background: var(--green-bright);
  border-color: var(--green-bright);
  color: var(--graphite);
}

.hero-portrait {
  margin: 0;
  justify-self: end;
  width: 100%;
  max-width: 430px;
}

.hero-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 52% 26%;
  border-radius: 8px;
  box-shadow: 0 26px 64px rgba(0, 0, 0, .34);
}

.hero-portrait figcaption {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line-on-dark);
  color: rgba(247, 245, 239, .56);
  font-size: .7rem;
  font-weight: 620;
  letter-spacing: .16em;
  text-transform: uppercase;
  line-height: 1.6;
}

.keyword-band {
  background: var(--green-deep);
  border-top: 1px solid rgba(247, 245, 239, .12);
}

.keyword-band p {
  margin: 0;
  padding: 16px clamp(16px, 4vw, 48px);
  text-align: center;
  font-size: .88rem;
  font-weight: 680;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(247, 245, 239, .92);
}

.section {
  padding: clamp(54px, 7vw, 94px) clamp(20px, 6vw, 80px);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 4.4vw, 3.9rem);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.01em;
  text-transform: uppercase;
}

.axes-section h2 {
  max-width: 920px;
}

.axis-list {
  list-style: none;
  margin: clamp(28px, 4vw, 52px) 0 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
}

.axis {
  display: grid;
  grid-template-columns: clamp(90px, 9vw, 130px) minmax(0, .55fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 56px);
  align-items: start;
  border-top: 1px solid var(--line);
  padding: clamp(20px, 2.4vw, 32px) 0;
}

.axis-number {
  color: var(--green);
  font-size: clamp(2.3rem, 3.6vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
}

.axis h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
}

.axis p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.55;
}

.intro-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, .84fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 88px);
}

.split h2 {
  max-width: 560px;
}

.section-copy p,
.ecology-panel p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.55;
}

.section-copy p {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.section-copy p:first-child {
  border-top: 2px solid var(--green);
}

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

.values-section h2 {
  max-width: 780px;
}

.value-list {
  list-style: none;
  margin: clamp(28px, 4vw, 52px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 36px);
}

.value {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  padding: clamp(18px, 2.4vw, 26px);
}

.value:hover {
  border-top-color: var(--gold);
  transform: translateY(-4px);
}

.value h3 {
  margin-bottom: 12px;
  font-size: 1.42rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
}

.value p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.ecology-section {
  color: var(--paper);
  background: linear-gradient(160deg, var(--green-deep), var(--graphite) 82%);
}

.ecology-panel {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(280px, .75fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
}

.ecology-panel .section-kicker {
  color: var(--gold);
}

.ecology-panel h2 {
  margin-bottom: 0;
  color: var(--white);
}

.ecology-panel p {
  margin-bottom: 0;
  color: var(--cream-on-dark);
  border-top: 1px solid var(--line-on-dark);
  padding-top: 18px;
}

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

.closing-tag {
  margin: 0;
  color: rgba(247, 245, 239, .55);
  font-size: .78rem;
  font-weight: 660;
  letter-spacing: .22em;
  text-transform: uppercase;
}

@media (max-width: 1200px) and (min-width: 861px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    gap: 40px;
    padding-right: 48px;
    padding-left: 48px;
  }

  h1 {
    font-size: 5.4rem;
  }

  .hero-lede {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 3.2rem;
  }
}

@media (max-width: 1040px) {
  .split,
  .ecology-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .split h2 {
    max-width: 640px;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: sticky;
    align-items: flex-start;
    padding: 14px 18px;
  }

  .top-nav {
    gap: 12px;
    font-size: .7rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero,
  .split,
  .ecology-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
    align-items: start;
  }

  .hero-portrait {
    justify-self: start;
    max-width: 420px;
  }

  .hero-portrait img {
    border-radius: 8px;
  }

  .axis {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .axis-number {
    font-size: 1.6rem;
  }

  .value-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .brand {
    max-width: 148px;
    line-height: 1.3;
  }

  .top-nav {
    max-width: 200px;
  }

  .hero-text,
  .section-copy p,
  .ecology-panel p {
    line-height: 1.7;
  }

  .keyword-band p {
    font-size: .76rem;
    letter-spacing: .14em;
    line-height: 2;
  }
}

@media (max-width: 380px) {
  .hero-lede {
    font-size: 1.3rem;
  }

  .scroll-link {
    padding: 0 20px;
  }
}
