:root {
  color-scheme: light;
  --ink: #181713;
  --muted: #69645a;
  --paper: #f7f4ee;
  --paper-strong: #fffdf8;
  --line: #d8d0c3;
  --pine: #153d36;
  --rust: #a44f2c;
  --gold: #c9943d;
  --shadow: 0 22px 70px rgba(24, 23, 19, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(247, 244, 238, 0.88);
  border-bottom: 1px solid rgba(216, 208, 195, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  font-weight: 800;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

nav a:hover,
.site-footer a:hover {
  color: var(--rust);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  min-height: calc(100svh - 69px);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 8vw, 110px) clamp(22px, 5vw, 76px);
}

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

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

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 8.5vw, 8.4rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.lede {
  max-width: 690px;
  color: #4e4a42;
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-weight: 800;
}

.button.primary {
  background: var(--ink);
  color: var(--paper-strong);
}

.button.secondary {
  color: var(--ink);
}

.button:hover {
  transform: translateY(-1px);
}

.hero-image {
  min-height: 520px;
  background:
    linear-gradient(90deg, rgba(247, 244, 238, 0.88) 0%, rgba(247, 244, 238, 0.2) 36%, rgba(247, 244, 238, 0) 60%),
    url("assets/hero.svg") center / cover no-repeat;
}

.section {
  padding: clamp(60px, 9vw, 118px) clamp(20px, 5vw, 64px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 38px;
}

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

.feature-card {
  min-height: 250px;
  padding: 28px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-card p,
.statement p {
  color: var(--muted);
}

.feature-kicker {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--pine);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.statement {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  padding: clamp(58px, 9vw, 120px) clamp(20px, 5vw, 64px);
  background: var(--pine);
  color: var(--paper-strong);
}

.statement .eyebrow {
  color: var(--gold);
}

.statement p {
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px clamp(20px, 5vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 58svh;
    padding-top: 50px;
    padding-bottom: 42px;
  }

  .hero-image {
    min-height: 44svh;
    background:
      linear-gradient(0deg, rgba(247, 244, 238, 0.72) 0%, rgba(247, 244, 238, 0) 42%),
      url("assets/hero.svg") center / cover no-repeat;
  }

  .section-heading,
  .statement,
  .feature-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  h1 {
    font-size: clamp(3.1rem, 18vw, 4.8rem);
  }

  .button {
    width: 100%;
  }

  .feature-card {
    padding: 22px;
  }
}
