:root {
  color-scheme: light;
  --ink: #18211f;
  --muted: #5f6864;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --line: #dde2de;
  --forest: #20342e;
  --moss: #4e735f;
  --amber: #d89a4a;
  --shadow: 0 18px 42px rgba(24, 33, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 14px clamp(18px, 5vw, 64px);
  color: #fff;
}

.brand {
  font-size: 18px;
  font-weight: 750;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(620px, 94vh, 860px);
  overflow: hidden;
  color: #fff;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 18, 16, 0.84) 0%, rgba(20, 32, 29, 0.58) 42%, rgba(20, 32, 29, 0.12) 100%),
    linear-gradient(180deg, rgba(12, 18, 16, 0.34) 0%, rgba(12, 18, 16, 0.08) 44%, rgba(251, 250, 247, 0.94) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 120px clamp(20px, 6vw, 76px) clamp(104px, 16vh, 148px);
}

.kicker,
.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(64px, 12vw, 148px);
  line-height: 0.9;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.4vw, 26px);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 760;
}

.button.primary {
  border-color: var(--amber);
  background: var(--amber);
  color: #1f1710;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(12px);
}

.intro {
  display: flex;
  justify-content: center;
  padding: 34px 20px 42px;
  background: var(--paper);
}

.intro p {
  max-width: 840px;
  margin: 0;
  color: var(--forest);
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 720;
  line-height: 1.25;
  text-align: center;
}

.section-band {
  padding: clamp(56px, 9vw, 104px) clamp(18px, 5vw, 64px);
  background: var(--forest);
  color: #fff;
}

.section-band.light {
  background: #eef2ed;
  color: var(--ink);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 6vw, 70px);
  line-height: 1;
  letter-spacing: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  min-height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.feature-mark {
  display: block;
  margin-bottom: 54px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.1;
}

.feature-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: start;
}

.split > p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.65;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 64px);
  background: var(--paper);
  color: var(--muted);
  font-size: 14px;
}

.site-footer span {
  color: var(--ink);
  font-weight: 750;
}

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

  .site-nav {
    gap: 14px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-content {
    padding-top: 104px;
  }

  .feature-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 190px;
  }

  .feature-mark {
    margin-bottom: 34px;
  }
}

@media (max-width: 520px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    font-size: 13px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(11, 18, 16, 0.88), rgba(20, 32, 29, 0.42)),
      linear-gradient(180deg, rgba(12, 18, 16, 0.44), rgba(251, 250, 247, 0.94));
  }

  .hero-content {
    padding-right: 20px;
    padding-left: 20px;
  }

  .button {
    width: 100%;
  }

  .section-heading,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
