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

* {
  box-sizing: border-box;
}

html {
  background: #101617;
}

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

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 #f1a55b;
  padding-left: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

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

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

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

.hero-overlay {
  background: rgba(9, 19, 22, 0.5);
}

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

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

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

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

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

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

.direction {
  display: grid;
  grid-template-columns: minmax(140px, 0.6fr) minmax(260px, 1fr) minmax(260px, 1fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: start;
  padding: clamp(54px, 8vw, 110px) clamp(20px, 8vw, 120px);
  border-bottom: 1px solid #cbd0c9;
}

.direction .section-label {
  color: #a64f37;
}

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

.direction > p:last-child {
  max-width: 540px;
  margin: 4px 0 0;
  color: #4b5855;
  font-size: 1rem;
  line-height: 1.75;
}

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

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

  .hero {
    min-height: 82svh;
  }

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

  h1 {
    font-size: 4rem;
  }

  .tagline {
    font-size: 1.75rem;
  }

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

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

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

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

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

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