@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;900&display=swap');

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

:root {
  --black: #0e0f0c;
  --green: #9fe870;
  --dark-green: #163300;
  --mint: #e2f6d5;
  --pastel: #cdffad;
  --gray: #868685;
  --warm-dark: #454745;
  --light-surface: #e8ebe6;
  --white: #ffffff;
  --radius-pill: 9999px;
  --radius-card: 30px;
  --radius-card-sm: 16px;
  --radius-section: 40px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-feature-settings: "calt";
  color: var(--black);
  background: var(--white);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.44;
  letter-spacing: 0.18px;
}

a { color: var(--dark-green); text-decoration: none; transition: color .2s; }
a:hover { color: var(--black); }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(14,15,12,0.10);
  padding: 16px 0;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--black);
  letter-spacing: -0.5px;
  font-feature-settings: "calt";
}
.logo span { color: var(--dark-green); }

/* ── NAV ── */
.site-nav { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.site-nav a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: background .2s, transform .15s;
  font-feature-settings: "calt";
}
.site-nav a:hover { background: rgba(211,242,192,0.4); color: var(--black); transform: none; }
.site-nav a.nav-cta {
  background: var(--green);
  color: var(--dark-green);
  padding: 8px 20px;
}
.site-nav a.nav-cta:hover { transform: scale(1.05); background: var(--green); }

.burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: .3s; }

/* ── HERO ── */
.hero {
  padding: 80px 0 64px;
  background: var(--white);
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-label {
  display: inline-block;
  background: var(--mint);
  color: var(--dark-green);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  letter-spacing: -0.084px;
  font-feature-settings: "calt";
}
.hero h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.95;
  color: var(--black);
  margin-bottom: 24px;
  font-feature-settings: "calt";
  letter-spacing: -1px;
}
.hero-text {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--warm-dark);
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-img {
  border-radius: var(--radius-section);
  overflow: hidden;
  box-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px;
}
.hero-img img { width: 100%; height: 420px; object-fit: cover; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.108px;
  font-feature-settings: "calt";
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform .15s, background .2s;
  text-align: center;
  line-height: 1;
  text-decoration: none;
}
.btn-primary {
  background: var(--green);
  color: var(--dark-green);
  padding: 14px 28px;
}
.btn-primary:hover { transform: scale(1.05); color: var(--dark-green); }
.btn-primary:active { transform: scale(0.95); }
.btn-secondary {
  background: rgba(22,51,0,0.08);
  color: var(--black);
  padding: 12px 24px;
}
.btn-secondary:hover { transform: scale(1.05); color: var(--black); }
.btn-secondary:active { transform: scale(0.95); }

/* ── SECTION TITLES ── */
.section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  color: var(--black);
  font-feature-settings: "calt";
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.125rem;
  color: var(--warm-dark);
  font-weight: 400;
  margin-bottom: 48px;
  max-width: 560px;
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: var(--radius-card);
  border: 1px solid rgba(14,15,12,0.12);
  overflow: hidden;
  transition: transform .2s;
}
.card:hover { transform: translateY(-4px); }
.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 28px; }
.card-tag {
  display: inline-block;
  background: var(--mint);
  color: var(--dark-green);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  font-feature-settings: "calt";
}
.card-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.25;
  letter-spacing: -0.396px;
  margin-bottom: 10px;
  font-feature-settings: "calt";
}
.card-excerpt {
  font-size: 1rem;
  color: var(--warm-dark);
  line-height: 1.5;
  margin-bottom: 20px;
}
.card-meta {
  font-size: 0.88rem;
  color: var(--gray);
  font-weight: 400;
}
.card-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-green);
  font-feature-settings: "calt";
}
.card-link:hover { color: var(--black); }

/* ── GRIDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* ── SECTIONS ── */
section { padding: 72px 0; }
.section-green { background: var(--mint); }
.section-dark { background: var(--black); color: var(--white); }
.section-dark .section-title { color: var(--white); }
.section-dark .section-sub { color: rgba(255,255,255,0.7); }

/* ── MARKETS TABLE ── */
.markets-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-section);
  overflow: hidden;
  box-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px;
}
.markets-table th {
  background: var(--black);
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: left;
  padding: 16px 20px;
  font-feature-settings: "calt";
}
.markets-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(14,15,12,0.08);
  font-size: 1rem;
  color: var(--black);
}
.markets-table tr:last-child td { border-bottom: none; }
.markets-table tr:hover td { background: var(--light-surface); }

/* ── SEASON CHART ── */
.season-grid {
  display: grid;
  grid-template-columns: 180px repeat(4, 1fr);
  gap: 2px;
  border-radius: var(--radius-card-sm);
  overflow: hidden;
  border: 1px solid rgba(14,15,12,0.12);
}
.sg-header {
  background: var(--black);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 12px 16px;
  font-feature-settings: "calt";
}
.sg-cell {
  background: var(--white);
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--black);
  display: flex;
  align-items: center;
}
.sg-cell.label { font-weight: 600; background: var(--light-surface); }
.sg-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); display: inline-block; margin-right: 6px; }
.sg-empty { background: rgba(14,15,12,0.04); }

/* ── CONTACT FORM ── */
.contact-section { background: var(--light-surface); }
.form-card {
  background: var(--white);
  border-radius: var(--radius-section);
  padding: 48px;
  max-width: 620px;
  border: 1px solid rgba(14,15,12,0.12);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
  font-feature-settings: "calt";
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(14,15,12,0.20);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color .2s;
  font-feature-settings: "calt";
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--dark-green); box-shadow: rgb(134,134,133) 0px 0px 0px 1px inset; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── FEATURES BAR ── */
.features-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(14,15,12,0.12);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-top: 48px;
}
.feature-item {
  background: var(--white);
  padding: 32px 24px;
}
.feature-num {
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--dark-green);
  font-feature-settings: "calt";
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.feature-label {
  font-size: 1rem;
  color: var(--warm-dark);
  font-weight: 400;
}

/* ── ARTICLE PAGE ── */
.article-hero {
  padding: 56px 0 40px;
}
.article-hero-img {
  border-radius: var(--radius-section);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px;
}
.article-hero-img img { width: 100%; height: 480px; object-fit: cover; }
.article-meta { font-size: 0.88rem; color: var(--gray); margin-bottom: 16px; }
.article-title {
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.95;
  color: var(--black);
  font-feature-settings: "calt";
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.article-lead {
  font-size: 1.25rem;
  color: var(--warm-dark);
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.5;
}
.article-content { max-width: 740px; }
.article-content h2 {
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--black);
  margin: 40px 0 16px;
  line-height: 1.1;
  font-feature-settings: "calt";
  letter-spacing: -0.5px;
}
.article-content h3 {
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--black);
  margin: 28px 0 10px;
  font-feature-settings: "calt";
}
.article-content p { margin-bottom: 18px; line-height: 1.7; color: var(--warm-dark); }
.article-content ul, .article-content ol { margin: 0 0 18px 24px; color: var(--warm-dark); }
.article-content li { margin-bottom: 8px; line-height: 1.6; }
.article-content a { color: var(--dark-green); text-decoration: underline; }
.article-content a:hover { color: var(--black); }
.article-layout { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.article-sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--mint);
  border-radius: var(--radius-card);
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-card h4 {
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--dark-green);
  margin-bottom: 16px;
  font-feature-settings: "calt";
}
.sidebar-card ul { list-style: none; padding: 0; }
.sidebar-card ul li { margin-bottom: 10px; }
.sidebar-card ul li a { font-size: 0.95rem; font-weight: 600; color: var(--dark-green); }
.sidebar-card ul li a:hover { color: var(--black); }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; color: var(--gray);
  padding: 16px 0 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gray); font-weight: 400; }
.breadcrumb a:hover { color: var(--dark-green); }
.breadcrumb span { color: var(--gray); }

/* ── FOOTER ── */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.95rem; line-height: 1.6; color: rgba(255,255,255,0.6); }
.footer-col h5 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-feature-settings: "calt";
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.95rem; color: rgba(255,255,255,0.6); font-weight: 400; }
.footer-col ul li a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.88rem; color: rgba(255,255,255,0.5); }
.footer-contact { font-size: 0.88rem; color: rgba(255,255,255,0.5); }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--green); }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--black);
  color: var(--white);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 2px solid var(--green);
}
#cookie-banner p { font-size: 0.95rem; color: rgba(255,255,255,0.8); max-width: 680px; line-height: 1.5; }
#cookie-banner p a { color: var(--green); }
.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btns button {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  cursor: pointer;
  transition: transform .15s;
  font-feature-settings: "calt";
}
.cookie-btns button:hover { transform: scale(1.05); }
.cookie-btns button:active { transform: scale(0.95); }
#btn-accept { background: var(--green); color: var(--dark-green); }
#btn-reject { background: rgba(255,255,255,0.12); color: var(--white); }

/* ── ABOUT / STATIC PAGES ── */
.page-hero { padding: 64px 0 48px; }
.page-title {
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.95;
  color: var(--black);
  font-feature-settings: "calt";
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.page-lead { font-size: 1.2rem; color: var(--warm-dark); max-width: 640px; line-height: 1.6; }
.prose h2 {
  font-weight: 900;
  font-size: 1.75rem;
  color: var(--black);
  margin: 40px 0 14px;
  font-feature-settings: "calt";
  letter-spacing: -0.5px;
}
.prose h3 { font-weight: 600; font-size: 1.2rem; color: var(--black); margin: 28px 0 10px; font-feature-settings: "calt"; }
.prose p { margin-bottom: 18px; color: var(--warm-dark); line-height: 1.7; }
.prose ul, .prose ol { margin: 0 0 18px 24px; color: var(--warm-dark); }
.prose li { margin-bottom: 8px; line-height: 1.6; }
.prose a { color: var(--dark-green); text-decoration: underline; }

/* ── TAGS ── */
.tag {
  display: inline-block;
  background: var(--mint);
  color: var(--dark-green);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-feature-settings: "calt";
}

/* ── DISCLAIMER ── */
.disclaimer-bar {
  background: var(--light-surface);
  padding: 14px 0;
  font-size: 0.82rem;
  color: var(--gray);
  text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { order: -1; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .features-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .season-grid { grid-template-columns: 140px repeat(4, 1fr); }
}
@media (max-width: 576px) {
  .site-nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid rgba(14,15,12,0.10); padding: 16px 24px; gap: 4px; }
  .site-nav.open { display: flex; }
  .burger { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .features-bar { grid-template-columns: repeat(2, 1fr); }
  .season-grid { grid-template-columns: 110px repeat(4, 1fr); font-size: 0.8rem; }
  .season-grid .sg-header, .season-grid .sg-cell { padding: 8px 10px; }
  .hero h1 { font-size: 2.2rem; }
}
