@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary: #0d5c4c;
  --primary-light: #1a7a65;
  --primary-dark: #083d33;
  --accent: #c9952a;
  --accent-light: #e0b84a;
  --bg: #f7f4ef;
  --bg-2: #ede8df;
  --card: #ffffff;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --border: #d8d0c4;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,244,239,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-brand svg { color: var(--accent); }
.nav-links { display: flex; gap: 1.75rem; list-style: none; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); text-decoration: none; }
.nav-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; color: var(--text); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  flex-direction: column;
  padding: 1.5rem 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.mobile-menu-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-menu-links a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}
.mobile-menu-links a:hover { color: var(--primary); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #0d5c4c;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,92,76,0.35) 0%, rgba(13,60,51,0.7) 60%, rgba(13,40,33,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.25rem;
}
.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-heading span { color: var(--accent-light); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.hero-cta:hover { background: var(--accent-light); transform: translateY(-1px); text-decoration: none; }

/* ── INTRO ── */
.intro { padding: 5rem 2rem; }
.intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.intro-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.intro-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
.intro-text { color: var(--muted); margin-bottom: 1rem; }
.intro-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.intro-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
}
.intro-list li svg { color: var(--primary); flex-shrink: 0; }
.intro-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13,92,76,0.15);
  aspect-ratio: 4/3;
}
.intro-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ── ARTICLES GRID ── */
.articles { padding: 4rem 2rem 5rem; }
.articles-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: 0.75rem;
}
.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: 0.75rem;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}
.article-card {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(13,92,76,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.article-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(13,92,76,0.15); }
.article-img-wrap { aspect-ratio: 16/9; overflow: hidden; }
.article-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.article-card:hover .article-img-wrap img { transform: scale(1.04); }
.article-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.article-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.article-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.35;
  flex: 1;
}
.article-excerpt {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.article-toggle {
  align-self: flex-start;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  background: none;
  border: 1.5px solid var(--primary);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font-body);
}
.article-toggle:hover { background: var(--primary); color: #fff; }
.article-full {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
}
.article-full.open { display: block; }
.article-close {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-body);
}

/* ── STATS BAR ── */
.stats { background: var(--primary); padding: 3.5rem 2rem; }
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.75); }

/* ── SEASONAL GUIDE ── */
.seasonal { padding: 5rem 2rem; background: var(--bg-2); }
.seasonal-inner { max-width: 1200px; margin: 0 auto; }
.season-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.season-card {
  border-radius: 16px;
  padding: 2rem 1.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.season-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  pointer-events: none;
}
.season-card > * { position: relative; z-index: 1; }
.season-spring { background: linear-gradient(135deg, #2d6a4f, #52b788); }
.season-summer { background: linear-gradient(135deg, #9d4b00, #e07b39); }
.season-autumn { background: linear-gradient(135deg, #7f4f24, #b5752a); }
.season-winter { background: linear-gradient(135deg, #1b4965, #3a8fb7); }
.season-icon { margin-bottom: 1rem; }
.season-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.season-period { font-size: 0.8rem; opacity: 0.85; margin-bottom: 1.25rem; }
.season-tips { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.season-tips li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  line-height: 1.5;
}
.season-tips li::before {
  content: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── NEWSLETTER ── */
.newsletter { padding: 5rem 2rem; }
.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}
.newsletter-sub { color: var(--muted); margin-bottom: 2rem; font-size: 0.95rem; }
.newsletter-form { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.newsletter-input {
  flex: 1;
  min-width: 240px;
  padding: 0.85rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  background: var(--card);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input:focus { border-color: var(--primary); }
.newsletter-btn {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s;
}
.newsletter-btn:hover { background: var(--primary-light); }
.newsletter-consent {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 1rem;
}
.newsletter-consent input { margin-right: 0.4rem; }

/* ── FAQ ── */
.faq { padding: 5rem 2rem; background: var(--bg-2); }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 3rem; }
.faq-item { background: var(--card); border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(13,92,76,0.06); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  gap: 1rem;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--accent);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ── FOOTER ── */
.footer { background: var(--primary-dark); color: rgba(255,255,255,0.7); padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-col-heading {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.82rem; }
.footer-legal-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-legal-links a { font-size: 0.82rem; color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-legal-links a:hover { color: #fff; }

/* ── LEGAL PAGES ── */
.legal-page { padding: 4rem 2rem; }
.legal-inner { max-width: 760px; margin: 0 auto; }
.legal-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}
.legal-meta { font-size: 0.82rem; color: var(--muted); margin-bottom: 3rem; }
.legal-section { margin-bottom: 2.5rem; }
.legal-section h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}
.legal-section p, .legal-section li { font-size: 0.92rem; color: var(--muted); line-height: 1.8; }
.legal-section ul { padding-left: 1.5rem; margin-top: 0.5rem; display: flex; flex-direction: column; gap: 0.4rem; }
.legal-back { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; font-weight: 500; color: var(--primary); margin-bottom: 2rem; text-decoration: none; }
.legal-back:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: block; }
  .intro-inner { grid-template-columns: 1fr; gap: 2rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .season-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .articles-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .season-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { min-width: unset; }
}

/* ── JS REVEAL (progressive enhancement) ── */
.js-reveal .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.js-reveal .reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal { opacity: 1; transform: none; transition: none; }
}