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

/* ─── Tokens ─────────────────────────────────────────────── */
:root {
  --forest:    #1a2318;
  --moss:      #2d3d28;
  --pine:      #3d5c35;
  --sage:      #6b8c5f;
  --mist:      #a8b8a0;
  --birch:     #e8e4d8;
  --cream:     #f5f2ea;
  --snow:      #faf9f5;
  --bark:      #5c4a32;
  --amber:     #c4832a;
  --stone:     #8c8478;
  --ink:       #1a1a18;

  --serif:     'Playfair Display', Georgia, serif;
  --sans:      'DM Sans', system-ui, sans-serif;
  --mono:      'DM Mono', monospace;

  --max:       1160px;
  --col:       680px;
  --gap:       clamp(1.5rem, 4vw, 3rem);
  --section:   clamp(3rem, 8vw, 6rem);
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ─── Base ───────────────────────────────────────────────── */
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--snow);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ─── Layout ─────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gap); }
.col       { max-width: var(--col); }

/* ─── Nav ────────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--snow);
  border-bottom: 1px solid var(--birch);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  max-width: var(--max); margin-inline: auto; padding-inline: var(--gap);
}
.nav-logo {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 700;
  letter-spacing: .02em; color: var(--forest); text-decoration: none;
}
.nav-logo span { color: var(--sage); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: .8125rem; font-weight: 400; letter-spacing: .06em;
  text-transform: uppercase; text-decoration: none;
  color: var(--stone); transition: color .2s;
}
.nav-links a:hover { color: var(--forest); }

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  background: var(--forest);
  padding: clamp(4rem, 10vw, 8rem) var(--gap) clamp(3rem, 7vw, 6rem);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(61,92,53,.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(45,61,40,.4) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: var(--max); margin-inline: auto; }
.hero-kicker {
  font-family: var(--sans); font-size: .75rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: .75rem;
}
.hero-kicker::before {
  content: ''; display: block; width: 2rem; height: 1px; background: var(--sage);
}
.hero h1 {
  font-family: var(--serif); font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.1; color: var(--snow);
  max-width: 18ch; margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--mist); }
.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.125rem); font-weight: 300;
  color: var(--mist); max-width: 52ch; line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-meta {
  display: flex; gap: 2rem; flex-wrap: wrap;
}
.hero-meta-item {
  display: flex; flex-direction: column; gap: .2rem;
}
.hero-meta-label {
  font-size: .6875rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--sage);
}
.hero-meta-value {
  font-family: var(--serif); font-size: 1.125rem; color: var(--birch);
}

/* ─── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  padding: 1rem 0;
  border-bottom: 1px solid var(--birch);
  background: var(--cream);
}
.breadcrumb ol { display: flex; gap: .5rem; align-items: center; list-style: none; flex-wrap: wrap; }
.breadcrumb li { display: flex; align-items: center; gap: .5rem; }
.breadcrumb a {
  font-size: .8125rem; color: var(--stone); text-decoration: none;
  transition: color .2s;
}
.breadcrumb a:hover { color: var(--pine); }
.breadcrumb li:not(:last-child)::after {
  content: '/'; color: var(--mist); font-size: .75rem;
}
.breadcrumb li:last-child a { color: var(--ink); font-weight: 400; pointer-events: none; }

/* ─── Sections ───────────────────────────────────────────── */
.section { padding: var(--section) 0; }
.section + .section { padding-top: 0; }
.section-label {
  font-size: .75rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--sage);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: .75rem;
}
.section-label::after {
  content: ''; flex: 1; height: 1px; background: var(--birch);
}
.section h2 {
  font-family: var(--serif); font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 500; line-height: 1.2; color: var(--forest);
  margin-bottom: 1rem;
}
.section-lead {
  font-size: 1.0625rem; color: var(--stone); line-height: 1.8;
  max-width: 62ch; margin-bottom: var(--gap);
}

/* ─── Prose ──────────────────────────────────────────────── */
.prose { max-width: var(--col); }
.prose p { font-size: 1.0625rem; line-height: 1.8; color: #2a2a28; margin-bottom: 1.25rem; }
.prose p:last-child { margin-bottom: 0; }
.prose h2 {
  font-family: var(--serif); font-size: 1.625rem; font-weight: 500;
  color: var(--forest); margin: 2.5rem 0 .875rem; line-height: 1.25;
}
.prose h3 {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 500;
  color: var(--forest); margin: 2rem 0 .625rem;
}
.prose a { color: var(--pine); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--moss); }
.prose ul { padding-left: 1.25rem; margin-bottom: 1.25rem; }
.prose li { font-size: 1.0625rem; line-height: 1.8; color: #2a2a28; margin-bottom: .375rem; }

/* ─── Cards ──────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--cream);
  border: 1px solid var(--birch);
  border-radius: 3px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color .2s, transform .2s;
  display: flex; flex-direction: column;
}
.card:hover { border-color: var(--mist); transform: translateY(-2px); }
.card-img {
  aspect-ratio: 16/9; background: var(--moss);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.card-img-placeholder {
  font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--mist); font-weight: 400;
}
.card-body { padding: 1.25rem 1.375rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-tag {
  font-size: .6875rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--sage); margin-bottom: .625rem;
}
.card-title {
  font-family: var(--serif); font-size: 1.1875rem; font-weight: 500;
  color: var(--forest); line-height: 1.3; margin-bottom: .5rem;
}
.card-desc {
  font-size: .9375rem; color: var(--stone); line-height: 1.65;
  flex: 1; margin-bottom: 1rem;
}
.card-link {
  font-size: .8125rem; font-weight: 500; letter-spacing: .04em;
  color: var(--pine); display: flex; align-items: center; gap: .375rem;
}
.card-link::after { content: '→'; transition: transform .2s; }
.card:hover .card-link::after { transform: translateX(3px); }

/* ─── Overview table ─────────────────────────────────────── */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: var(--birch);
  border: 1px solid var(--birch);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.overview-item {
  background: var(--snow);
  padding: 1.25rem 1.375rem;
  text-decoration: none;
  transition: background .15s;
}
.overview-item:hover { background: var(--cream); }
.overview-item-label {
  font-size: .6875rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--sage); margin-bottom: .375rem;
}
.overview-item-title {
  font-family: var(--serif); font-size: 1.0625rem; font-weight: 500;
  color: var(--forest); margin-bottom: .375rem;
}
.overview-item-sub { font-size: .9rem; color: var(--stone); line-height: 1.5; }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq { max-width: var(--col); }
.faq-item { border-bottom: 1px solid var(--birch); }
.faq-item:first-child { border-top: 1px solid var(--birch); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.25rem 0; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem; text-align: left;
}
.faq-q-text {
  font-family: var(--serif); font-size: 1.125rem; font-weight: 500;
  color: var(--forest); line-height: 1.35;
}
.faq-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 1px solid var(--mist); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem; color: var(--sage); transition: transform .25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none; padding-bottom: 1.25rem;
  font-size: 1rem; color: var(--stone); line-height: 1.75;
}
.faq-item.open .faq-a { display: block; }
.faq-a a { color: var(--pine); text-underline-offset: 3px; }

/* ─── Related links ──────────────────────────────────────── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  background: var(--birch);
  border: 1px solid var(--birch);
  border-radius: 3px;
  overflow: hidden;
}
.related-item {
  background: var(--snow); padding: 1rem 1.125rem;
  text-decoration: none; transition: background .15s;
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
}
.related-item:hover { background: var(--cream); }
.related-item-text { font-size: .9375rem; color: var(--forest); font-weight: 400; }
.related-item-arrow { color: var(--mist); font-size: .875rem; transition: transform .15s; }
.related-item:hover .related-item-arrow { transform: translateX(3px); color: var(--sage); }

/* ─── Pull quote ─────────────────────────────────────────── */
.pull-quote {
  border-left: 3px solid var(--sage);
  padding: 1.25rem 0 1.25rem 1.75rem;
  margin: 2.5rem 0;
}
.pull-quote p {
  font-family: var(--serif); font-size: 1.3125rem; font-style: italic;
  color: var(--forest); line-height: 1.5; margin: 0;
}

/* ─── Stat bar ───────────────────────────────────────────── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: var(--birch);
  border: 1px solid var(--birch);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.stat-item {
  background: var(--cream); padding: 1.25rem 1.375rem;
}
.stat-value {
  font-family: var(--serif); font-size: 1.875rem; font-weight: 500;
  color: var(--forest); line-height: 1; margin-bottom: .375rem;
}
.stat-label {
  font-size: .8125rem; font-weight: 400; color: var(--stone); letter-spacing: .03em;
}

/* ─── Season strip ───────────────────────────────────────── */
.season-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--birch); border: 1px solid var(--birch);
  border-radius: 3px; overflow: hidden;
}
.season-item {
  background: var(--snow); padding: 1rem; text-decoration: none;
  transition: background .15s; text-align: center;
}
.season-item:hover { background: var(--cream); }
.season-glyph { font-size: 1.25rem; margin-bottom: .375rem; }
.season-name {
  font-size: .8125rem; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; color: var(--stone);
}

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--forest);
  padding: clamp(2.5rem, 6vw, 4rem) 0 2rem;
  margin-top: var(--section);
}
.footer-inner {
  max-width: var(--max); margin-inline: auto; padding-inline: var(--gap);
}
.footer-logo {
  font-family: var(--serif); font-size: 1.125rem; font-weight: 700;
  color: var(--snow); margin-bottom: .5rem;
}
.footer-logo span { color: var(--sage); }
.footer-desc {
  font-size: .9rem; color: var(--mist); max-width: 44ch;
  line-height: 1.65; margin-bottom: 2rem;
}
.footer-cols {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem; border-top: 1px solid var(--moss); padding-top: 2rem;
  margin-bottom: 2rem;
}
.footer-col-label {
  font-size: .6875rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--sage); margin-bottom: .875rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col a {
  font-size: .9rem; color: var(--mist); text-decoration: none; transition: color .2s;
}
.footer-col a:hover { color: var(--snow); }
.footer-bottom {
  border-top: 1px solid var(--moss); padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: .8125rem; color: var(--stone); }
.footer-affiliate {
  font-size: .75rem; color: var(--stone); max-width: 52ch; line-height: 1.5;
}

/* ─── Utilities ──────────────────────────────────────────── */
.bg-cream  { background: var(--cream); }
.bg-forest { background: var(--forest); }
.mt-0 { margin-top: 0; }
.mb-2 { margin-bottom: 2rem; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 720px) {
  .nav-links { display: none; }
  .season-strip { grid-template-columns: repeat(2, 1fr); }
  .hero-meta { gap: 1.25rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
