:root {
  --soil: #34251d;
  --soil-soft: #5f4636;
  --leaf: #2f6e42;
  --leaf-deep: #224c31;
  --beet: #94344f;
  --cream: #fbf6e8;
  --paper: #fffdf5;
  --line: rgba(52, 37, 29, 0.16);
  --shadow: 0 18px 50px rgba(52, 37, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(251, 246, 232, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.main-nav,
.footer-links,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--soil);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--leaf);
  color: var(--paper);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.main-nav {
  gap: clamp(12px, 3vw, 28px);
  color: var(--soil-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a,
.footer-links a,
.text-link {
  text-decoration: none;
}

.main-nav a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--beet);
}

.hero {
  min-height: calc(100svh - 79px);
  display: grid;
  align-items: end;
  padding: clamp(72px, 12vw, 150px) clamp(18px, 4vw, 56px) clamp(44px, 8vw, 92px);
  background:
    linear-gradient(90deg, rgba(28, 23, 17, 0.78), rgba(28, 23, 17, 0.34)),
    url("https://images.unsplash.com/photo-1464226184884-fa280b87c399?auto=format&fit=crop&w=1800&q=85")
      center / cover;
  color: var(--paper);
}

.hero-content {
  width: min(820px, 100%);
}

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

.hero .eyebrow {
  color: #f7c66b;
}

h1,
h2 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  line-height: 1.02;
}

h1 {
  max-width: 11ch;
  font-size: clamp(4rem, 14vw, 10rem);
}

h2 {
  font-size: clamp(2.25rem, 6vw, 4.8rem);
}

.hero-copy {
  max-width: 700px;
  margin: 22px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

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

.button.primary:hover {
  background: #7e2c43;
}

.button.secondary {
  border-color: rgba(255, 253, 245, 0.7);
  color: var(--paper);
}

.button.secondary:hover {
  background: rgba(255, 253, 245, 0.12);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-band div {
  padding: clamp(20px, 4vw, 36px);
  background: var(--paper);
}

.metric {
  display: block;
  color: var(--leaf-deep);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.55rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.05;
}

.content-section,
.cta-section,
.legal-page {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.content-section {
  padding: clamp(64px, 10vw, 126px) 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.text-stack {
  display: grid;
  gap: 18px;
  color: var(--soil-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
}

.text-stack p,
.feature-copy p,
.cta-section p,
.legal-page p {
  margin: 0;
}

.text-link {
  width: fit-content;
  color: var(--leaf-deep);
  font-weight: 800;
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: stretch;
}

.feature-copy {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: clamp(30px, 5vw, 56px);
  background: var(--leaf-deep);
  color: var(--paper);
}

.feature-copy .eyebrow {
  color: #f7c66b;
}

.feature-copy p {
  max-width: 680px;
  font-size: 1.08rem;
}

.season-box {
  display: grid;
  align-content: end;
  gap: 18px;
  padding: clamp(28px, 5vw, 46px);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.season-label {
  color: var(--beet);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.season-box strong {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1;
}

.season-box p {
  margin: 0;
  color: var(--soil-soft);
}

.cta-section {
  margin-bottom: clamp(56px, 8vw, 96px);
  padding: clamp(42px, 7vw, 76px);
  background: var(--soil);
  color: var(--paper);
  text-align: center;
}

.cta-section .eyebrow {
  color: #f7c66b;
}

.cta-section p {
  max-width: 720px;
  margin: 20px auto 28px;
  font-size: 1.12rem;
}

.legal-page {
  max-width: 860px;
  padding: clamp(52px, 8vw, 96px) 0;
}

.legal-page h1 {
  max-width: none;
  margin-bottom: 42px;
  font-size: clamp(3rem, 8vw, 6rem);
}

.legal-page section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-page h2 {
  margin-bottom: 12px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.15rem;
  line-height: 1.35;
}

.legal-page p {
  color: var(--soil-soft);
}

.legal-page a {
  color: var(--leaf-deep);
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 56px);
  background: var(--paper);
  border-top: 1px solid var(--line);
  color: var(--soil-soft);
}

.site-footer div:first-child {
  display: grid;
  gap: 2px;
}

.site-footer strong {
  color: var(--soil);
}

.footer-links {
  gap: 18px;
  font-weight: 700;
}

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

  .main-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: 760px;
  }

  .intro-band,
  .two-column,
  .feature-panel {
    grid-template-columns: 1fr;
  }

  .intro-band {
    gap: 0;
  }

  .intro-band div {
    border-bottom: 1px solid var(--line);
  }

  .cta-section {
    width: 100%;
    margin-bottom: 0;
  }
}
