:root {
  --ink: #1d1819;
  --ink-soft: #3f3938;
  --paper: #f8f6f1;
  --white: #ffffff;
  --gold: #c89436;
  --gold-dark: #9b6a20;
  --line: #ddd7cc;
  --charcoal: #221e1f;
  --danger: #8f2f2d;
  --sage: #68776c;
  --blue: #244965;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.55;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  min-height: 82px;
  padding: 0 42px;
  color: var(--white);
  background: var(--charcoal);
}

.brand {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 0.97rem;
  font-weight: 650;
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
}

.main-nav a.active::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 650;
}

.header-tools button {
  display: grid;
  width: 28px;
  height: 28px;
  padding: 0;
  place-items: center;
  color: var(--white);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.header-tools svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: transparent;
  border: 0;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 82px);
  overflow: hidden;
  place-items: center;
  color: var(--white);
  text-align: center;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(18, 14, 13, 0.38), rgba(18, 14, 13, 0.66)),
    radial-gradient(circle at center, rgba(30, 25, 22, 0.1), rgba(12, 10, 9, 0.35));
}

.hero-content {
  position: relative;
  width: min(860px, calc(100% - 36px));
  padding-top: 6vh;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.about-hero h1,
.story-copy h2,
.impact-copy h2,
.section-heading h2,
.split-copy h2,
.contact-strip h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  margin-inline: auto;
  max-width: 820px;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  text-wrap: balance;
}

.hero-copy {
  margin: 22px auto 28px;
  max-width: 780px;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  font-weight: 750;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  color: var(--white);
  background: var(--gold);
  border: 1px solid var(--gold);
  font-weight: 850;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.primary-button:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
}

.primary-button.dark {
  background: var(--ink);
  border-color: var(--ink);
}

.feature-band {
  padding: 86px max(28px, 6vw) 94px;
  background: var(--white);
}

.section-heading {
  width: min(920px, 100%);
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2,
.contact-strip h2 {
  font-size: clamp(2.15rem, 4vw, 4.2rem);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.feature-grid article {
  min-height: 270px;
  padding: 34px;
  color: var(--white);
  background: var(--charcoal);
}

.feature-grid article:nth-child(2) {
  background: var(--blue);
}

.feature-grid article:nth-child(3) {
  background: var(--danger);
}

.feature-grid span {
  display: block;
  margin-bottom: 58px;
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--font-display);
  font-size: 2rem;
}

.feature-grid h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.feature-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: 620px;
  background: #eee8dd;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy {
  align-self: center;
  padding: 72px max(32px, 7vw);
}

.split-copy h2 {
  max-width: 650px;
  font-size: clamp(2.4rem, 4.5vw, 5rem);
}

.split-copy p {
  max-width: 590px;
  margin: 24px 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.text-link {
  display: inline-flex;
  border-bottom: 2px solid var(--gold);
  color: var(--ink);
  font-weight: 850;
}

.contact-strip {
  padding: 86px 28px 98px;
  color: var(--ink);
  background: var(--sage);
  text-align: center;
}

.contact-strip .eyebrow,
.contact-strip h2 {
  color: var(--white);
}

.contact-strip h2 {
  max-width: 860px;
  margin: 0 auto 30px;
}

.about-page {
  background: var(--white);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  min-height: 680px;
  background: var(--white);
}

.about-hero-copy {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 82px 48px;
  text-align: center;
}

.about-hero h1 {
  max-width: 830px;
  font-size: clamp(3rem, 5.2vw, 6rem);
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: max(36px, 5vw);
  align-items: center;
  padding: 120px max(28px, 6vw);
  background: var(--paper);
}

.story-section.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  background: var(--white);
}

.story-section.reverse .story-media {
  order: 2;
}

.story-copy {
  max-width: 880px;
}

.story-copy h2,
.impact-copy h2 {
  font-size: clamp(2.45rem, 4.4vw, 5.4rem);
}

.story-copy p,
.impact-copy p {
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.45vw, 1.28rem);
  font-weight: 560;
}

.story-media.collage {
  display: grid;
  gap: 18px;
  padding: 18px;
  background: var(--charcoal);
}

.story-media.collage img {
  width: 100%;
  aspect-ratio: 1.48 / 1;
  object-fit: cover;
}

.story-media.single img {
  width: 100%;
  aspect-ratio: 0.92 / 1;
  object-fit: cover;
}

.impact-section {
  padding: 120px max(28px, 12vw) 132px;
  color: var(--white);
  background: var(--charcoal);
}

.impact-copy {
  max-width: 980px;
}

.impact-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 32px 42px;
  color: rgba(255, 255, 255, 0.7);
  background: #141112;
  font-size: 0.94rem;
}

.site-footer span:first-child {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 24px;
  }

  .menu-button {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

  .main-nav,
  .header-tools {
    display: none;
  }

  .site-header.nav-open {
    align-items: start;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .site-header.nav-open .main-nav {
    display: flex;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    width: 100%;
    padding-top: 20px;
  }

  .hero {
    min-height: calc(100vh - 82px);
  }

  .feature-grid,
  .split-section,
  .about-hero,
  .story-section,
  .story-section.reverse {
    grid-template-columns: 1fr;
  }

  .about-hero {
    min-height: 0;
  }

  .about-hero-media {
    min-height: 460px;
  }

  .story-section.reverse .story-media {
    order: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 72px;
  }

  .brand {
    font-size: 1.55rem;
  }

  .hero {
    min-height: calc(100vh - 72px);
  }

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

  .hero h1 {
    font-size: clamp(2.3rem, 12vw, 4rem);
  }

  .feature-band,
  .story-section,
  .impact-section {
    padding-top: 70px;
    padding-bottom: 78px;
  }

  .feature-grid {
    gap: 14px;
  }

  .feature-grid article {
    min-height: 235px;
    padding: 28px;
  }

  .split-section {
    min-height: 0;
  }

  .split-media {
    min-height: 320px;
  }

  .split-copy,
  .about-hero-copy {
    padding: 58px 24px;
  }

  .about-hero-media {
    min-height: 360px;
  }

  .story-section {
    gap: 34px;
    padding-right: 22px;
    padding-left: 22px;
  }

  .story-copy p,
  .impact-copy p {
    margin-top: 22px;
  }

  .site-footer {
    padding: 28px 24px;
  }
}
