
:root {
  --deep-forest: #2D5016;
  --medium-green: #3D6B1F;
  --light-green: #EAF2DC;
  --border-green: #C8DBA8;
  --harvest-gold: #E8A020;
  --gold-light: #FDF3E0;
  --warm-brown: #8B5E3C;
  --cream-white: #FAF7F0;
  --text-dark: #1A2E0A;
  --text-mid: #3A4A2A;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(26, 46, 10, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream-white);
  color: var(--text-dark);
  font-family: "Lato", Arial, sans-serif;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--deep-forest);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.4px;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.92;
}

.nav-links a:hover {
  color: var(--harvest-gold);
}

.hero {
  background:
    radial-gradient(circle at 25% 15%, rgba(232,160,32,0.26), transparent 32%),
    linear-gradient(135deg, #25470f 0%, var(--deep-forest) 48%, #173309 100%);
  color: var(--white);
  padding: 82px 0 72px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.eyebrow {
  color: var(--harvest-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  font-weight: 900;
  margin: 0 0 14px;
}

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
}

h1 {
  font-size: clamp(3.1rem, 7vw, 6.4rem);
  margin: 0 0 18px;
}

.hero .tagline {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 900;
  margin: 0 0 18px;
}

.hero p {
  font-size: 1.09rem;
  color: rgba(255,255,255,0.88);
  max-width: 690px;
  margin: 0 0 28px;
}

.hero-card {
  background: rgba(250,247,240,0.08);
  border: 1px solid rgba(232,160,32,0.34);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 22px 65px rgba(0,0,0,0.24);
  backdrop-filter: blur(4px);
}

.hero-card img {
  border-radius: 20px;
  box-shadow: 0 18px 55px rgba(0,0,0,0.28);
}

.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.button {
  display: inline-block;
  background: var(--harvest-gold);
  color: #1b250e;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

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

.button.secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.72);
  box-shadow: none;
}

section {
  padding: 72px 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 16px;
}

.section-intro {
  color: var(--text-mid);
  font-size: 1.08rem;
  max-width: 820px;
  margin: 0 0 32px;
}

.about {
  background: var(--cream-white);
}

.two-col {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.callout {
  background: var(--gold-light);
  border-left: 6px solid var(--harvest-gold);
  border-radius: 18px;
  padding: 22px;
  color: var(--text-mid);
}

.logo-panel {
  background: var(--white);
  border: 1px solid var(--border-green);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: center;
}

.logo-panel img {
  width: min(420px, 100%);
}

.guides {
  background: var(--light-green);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border-green);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.card .badge {
  display: inline-block;
  background: var(--gold-light);
  color: var(--warm-brown);
  font-weight: 900;
  font-size: 0.78rem;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
}

.card p {
  color: var(--text-mid);
  margin: 0 0 16px;
}

.price {
  font-weight: 900;
  color: var(--deep-forest);
  margin-bottom: 18px;
}

.text-link {
  color: var(--deep-forest);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid var(--harvest-gold);
}

.zone-strip {
  background: var(--deep-forest);
  color: var(--white);
  text-align: center;
}

.zone-strip p {
  max-width: 780px;
  margin: 0 auto 24px;
  color: rgba(255,255,255,0.85);
}

.newsletter {
  background: var(--cream-white);
}

.newsletter-box {
  background: var(--white);
  border: 1px solid var(--border-green);
  border-radius: 30px;
  padding: clamp(28px, 5vw, 52px);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 35px;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  margin: 12px 0;
  padding-left: 30px;
  position: relative;
  color: var(--text-mid);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--medium-green);
  font-weight: 900;
}

.site-footer {
  background: #172a0a;
  color: rgba(255,255,255,0.84);
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.footer-grid h3 {
  color: var(--white);
  margin: 0 0 8px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: rgba(255,255,255,0.84);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--harvest-gold);
}

.page-hero {
  background: var(--deep-forest);
  color: var(--white);
  padding: 70px 0;
}

.page-hero h1 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.content-card {
  background: var(--white);
  border: 1px solid var(--border-green);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.legal {
  max-width: 880px;
}

@media (max-width: 840px) {
  .hero-grid,
  .two-col,
  .newsletter-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .nav {
    justify-content: center;
  }

  .nav-links {
    justify-content: center;
  }

  .hero {
    text-align: center;
  }

  .button-row {
    justify-content: center;
  }
}
