:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #171a18;
  background: #d9dbd7;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  background: #171a18;
}

body {
  margin: 0;
  min-width: 320px;
  background: #d9dbd7;
}

a {
  color: inherit;
}

.site-header {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 72px);
  color: #ffffff;
}

.wordmark {
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
}

.status {
  border-left: 3px solid #c68a52;
  padding-left: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 650;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  min-height: 82svh;
  max-height: 900px;
  overflow: hidden;
  align-items: center;
  color: #ffffff;
  background: #242725;
}

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

.hero-image {
  object-fit: cover;
  object-position: 52% center;
}

.hero-overlay {
  background: rgba(12, 15, 14, 0.42);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100% - 40px));
  margin-left: clamp(20px, 8vw, 120px);
  padding-top: 44px;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: #ddb07e;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: 7.5rem;
  font-weight: 680;
  line-height: 0.94;
}

.tagline {
  max-width: 650px;
  margin: 28px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  line-height: 1.18;
}

.domain {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 5vw, 72px);
  bottom: 26px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.75rem;
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(130px, 0.55fr) minmax(280px, 1.1fr) minmax(260px, 0.9fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: start;
  padding: clamp(56px, 8vw, 108px) clamp(20px, 8vw, 120px);
  border-bottom: 1px solid #b8bcb7;
  background: #d9dbd7;
}

.manifesto .section-label {
  color: #7a4a34;
}

.manifesto h2 {
  max-width: 590px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.08;
}

.manifesto-copy {
  max-width: 500px;
  margin: 4px 0 0;
  color: #444b47;
  font-size: 1rem;
  line-height: 1.75;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(20px, 8vw, 120px);
  color: #d1d4d1;
  background: #171a18;
  font-size: 0.75rem;
}

@media (max-width: 900px) {
  h1 {
    font-size: 5.5rem;
  }

  .manifesto {
    grid-template-columns: 0.5fr 1.25fr;
  }

  .manifesto-copy {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-top: 20px;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-content {
    align-self: end;
    margin: 0 20px 82px;
    padding: 0;
  }

  h1 {
    font-size: 3.75rem;
  }

  .tagline {
    font-size: 1.75rem;
  }

  .hero-image {
    object-position: 65% center;
  }

  .domain {
    right: auto;
    left: 20px;
    bottom: 22px;
  }

  .manifesto {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .manifesto h2 {
    font-size: 2.25rem;
  }

  .manifesto-copy {
    grid-column: auto;
  }

  footer {
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
