:root {
  --primary: #2f6b3f;
  --primary-deep: #1f4a2b;
  --secondary: #d58a29;
  --accent: #6ca87e;
  --background: #eef5ee;
  --surface: #ffffff;
  --surface-soft: #f6faf3;
  --ink: #193424;
  --muted: #4d6557;
  --border: #d6e6d4;
  --shadow: 0 16px 40px rgba(20, 58, 35, 0.12);
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  background: radial-gradient(circle at 20% 20%, #f8fbf5 0%, var(--background) 46%, #e3efdf 100%);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--primary-deep);
  font-family: var(--font-heading);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.7rem, 7vw, 5.15rem);
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

p {
  margin: 0;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: clamp(3.8rem, 9vw, 7.5rem);
}

.kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
}

.text-muted {
  color: var(--muted);
}

.section-tight {
  padding-top: 0;
}

.mt-sm {
  margin-top: 1rem;
}

.mt-md {
  margin-top: 1.5rem;
}

.max-copy {
  max-width: 58ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.8rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--primary), #3e8754);
  box-shadow: 0 12px 24px rgba(47, 107, 63, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 14px 26px rgba(31, 74, 43, 0.35);
}

.btn-secondary {
  color: var(--primary-deep);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(31, 74, 43, 0.22);
}

.card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(13, 54, 30, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: #bfd6bd;
  box-shadow: 0 18px 42px rgba(13, 54, 30, 0.12);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(19, 52, 33, 0.88), rgba(19, 52, 33, 0.72));
  backdrop-filter: blur(12px);
}

.site-header .container {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-family: var(--font-heading);
  font-size: 1.58rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.site-logo-accent {
  color: #f1c27a;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu a {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: rgba(255, 255, 255, 0.95);
}

.nav-menu a:not(.btn):hover {
  color: #f1c27a;
}

.nav-cta {
  padding-inline: 1.25rem;
  font-size: 0.84rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-bar {
  width: 22px;
  height: 2px;
  border-radius: 10px;
  background: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #ffffff 0 50%, transparent 50%);
  padding-block: clamp(2rem, 5.8vw, 4rem) clamp(1.7rem, 4.5vw, 3rem);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.42;
}

.hero-layout {
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
}

.hero-content {
  background: #ffffff;
  max-width: min(560px, 48vw);
  min-height: clamp(300px, 36vw, 430px);
  padding: clamp(1rem, 2.1vw, 1.6rem) 1.25rem clamp(1rem, 2vw, 1.4rem) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title span {
  color: var(--secondary);
}

.hero-title {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
}

.hero-copy {
  margin-top: 0.9rem;
  max-width: 56ch;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
}

.hero-actions {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-right-bleed {
  position: relative;
  min-height: clamp(300px, 36vw, 430px);
  border-left: 1px solid rgba(31, 74, 43, 0.12);
}

@media (min-width: 901px) {
  .hero-right-bleed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50vw;
    min-width: 460px;
  }
}

.hero-visual-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual-overlay {
  position: absolute;
  left: 50%;
  bottom: 16px;
  width: min(calc(100% - 32px), 760px);
  transform: translateX(-50%);
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(31, 74, 43, 0.14);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  box-shadow: 0 14px 30px rgba(17, 50, 31, 0.2);
}

.hero + .section.section-tight {
  padding-top: clamp(2rem, 5vw, 3.2rem);
}

.hero-visual-overlay h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.hero-visual-overlay p {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-stat-grid {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-stat {
  padding: 0.7rem;
  border-radius: 12px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--primary-deep);
}

.hero-stat span {
  color: var(--muted);
  font-size: 0.84rem;
}

.season-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.season-card {
  padding: 1.45rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
}

.season-card i {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.season-card h3 {
  margin-top: 1rem;
  font-size: 1.1rem;
}

.season-card p {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.split {
  display: grid;
  gap: clamp(2rem, 4.8vw, 4rem);
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
}

.feature-list {
  margin-top: 1.45rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.feature-list li {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  color: var(--muted);
}

.feature-list i {
  width: 18px;
  height: 18px;
  color: var(--secondary);
}

.image-card {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.image-card img {
  display: block;
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.badge-card {
  position: relative;
  z-index: 3;
  margin-top: -36px;
  margin-inline: auto 16px;
  max-width: 290px;
  padding: 1.2rem;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(150deg, var(--primary), #448b5c);
  box-shadow: 0 16px 26px rgba(31, 74, 43, 0.34);
}

.badge-card h3 {
  color: #fff;
  font-size: 1rem;
}

.badge-card p {
  margin-top: 0.5rem;
  opacity: 0.92;
  font-size: 0.95rem;
}

.cta-band {
  text-align: center;
  border: 1px solid rgba(47, 107, 63, 0.16);
  border-radius: 28px;
  padding: clamp(2rem, 6vw, 4rem);
  background: linear-gradient(135deg, #2e7445, #234f33);
  box-shadow: var(--shadow);
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.cta-band p {
  margin: 0.95rem auto 0;
  max-width: 62ch;
  opacity: 0.92;
}

.cta-band .btn {
  margin-top: 1.7rem;
}

.site-footer {
  padding-block: clamp(3rem, 8vw, 5.5rem) 2rem;
  background: #1c3b2a;
  color: rgba(255, 255, 255, 0.94);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.7fr repeat(3, 1fr);
}

.footer-column h4 {
  margin-bottom: 0.8rem;
  color: #fff;
  font-size: 0.84rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-column p,
.footer-column a {
  color: rgba(239, 248, 240, 0.85);
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.52rem;
}

.footer-social {
  margin-top: 1rem;
  display: inline-flex;
  gap: 0.65rem;
}

.footer-social i {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(239, 248, 240, 0.75);
  font-size: 0.85rem;
}

@media (max-width: 1024px) {
  .hero-layout,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .season-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-right-bleed {
    min-height: 360px;
  }
}

@media (max-width: 900px) {
  .site-header .container {
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 0.65rem 1.2rem 1rem;
    gap: 0;
    align-items: flex-start;
    flex-direction: column;
    background: rgba(19, 52, 33, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .nav-menu a {
    width: 100%;
    padding: 0.85rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .nav-menu .btn {
    margin-top: 0.5rem;
    width: auto;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .site-header.menu-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.menu-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 640px) {
  .container {
    padding-inline: 18px;
  }

  .section {
    padding-block: clamp(3.2rem, 11vw, 4.8rem);
  }

  .hero {
    display: flex;
    flex-direction: column;
    padding-block: 1rem 1.5rem;
  }

  .hero .container {
    order: 1;
  }

  .hero-right-bleed {
    order: 2;
    margin-top: 0.9rem;
  }

  .hero-content {
    max-width: 100%;
    min-height: auto;
    background: transparent;
    display: block;
    padding: 0;
    padding-right: 0;
    margin-bottom: 0;
  }

  .hero-right-bleed {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(31, 74, 43, 0.16);
  }

  .hero-visual-overlay {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 0.85rem;
  }

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

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

  .card {
    padding: 1.3rem;
  }
}
