:root {
  color-scheme: light;
  --cream: #f7f3ef;
  --green: #1f5f4b;
  --green-soft: #2f7d64;
  --sand: #f9f6f0;
  --dark: #1b1b1b;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(15, 35, 28, 0.2);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
}

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

.hero {
  min-height: 100vh;
  background: linear-gradient(120deg, rgba(17, 47, 38, 0.82), rgba(26, 86, 68, 0.45)),
    url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
  color: var(--white);
  display: flex;
  flex-direction: column;
  padding: 2.5rem 6vw 4rem;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-link {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.nav-link--cta {
  background: rgba(255, 255, 255, 0.15);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
  align-items: center;
  flex: 1;
}

.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  margin: 1rem 0 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  opacity: 0.85;
}

.subheading {
  font-size: 1.1rem;
  max-width: 520px;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
}

.button.primary {
  background: var(--white);
  color: var(--green);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}


.story {
  padding: 5rem 6vw;
  background: var(--sand);
}

.section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
  color: var(--green);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
}

.story-grid article {
  background: var(--white);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.story-grid h3 {
  margin-bottom: 1rem;
  color: var(--green);
}

.cta {
  padding: 4rem 6vw;
  background: var(--cream);
}

.cta-card {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(120deg, #1f5f4b, #2f7d64);
  color: var(--white);
  padding: 2.5rem 3rem;
  border-radius: 2rem;
  box-shadow: var(--shadow);
}

.footer {
  padding: 2rem 6vw 3rem;
  text-align: center;
  font-size: 0.9rem;
  color: #5b5b5b;
}

@media (max-width: 768px) {
  .hero {
    padding: 2rem 6vw 3.5rem;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-content {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .cta-card {
    flex-direction: column;
    text-align: center;
  }
}
