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

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

:root {
  --bg: #F4F5F2;
  --dark: #1D1E1C;
  --green: #3A5549;
  --sand: #C8BCA7;
  --border: #C8BCA7;
  --text: #1D1E1C;
  --muted: #6b6b69;
  --max: 1440px;
  --font-head: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

html { font-size: 16px; background: var(--bg); color: var(--text); }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.6; min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

a { color: var(--dark); text-decoration: none; }
a:hover { color: var(--green); }
img { display: block; max-width: 100%; height: auto; }

h1, h2, h3 { font-family: var(--font-head); color: var(--dark); line-height: 1.2; }
h1 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 2.5vw, 2.2rem); font-weight: 600; }
h3 { font-size: clamp(1rem, 1.8vw, 1.35rem); font-weight: 500; }
p { font-size: 1rem; line-height: 1.7; color: var(--text); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: 900px; margin: 0 auto; padding: 0 2rem; }
.container--text { max-width: 780px; margin: 0 auto; padding: 0 2rem; }

hr.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--bg); border-bottom: 1px solid var(--border);
  height: 64px; display: flex; align-items: center;
}
.site-header__inner {
  max-width: var(--max); margin: 0 auto; padding: 0 2rem;
  width: 100%; display: flex; align-items: center; justify-content: space-between;
}
.site-header__logo {
  font-family: var(--font-head); font-size: 1.35rem; font-weight: 700;
  color: var(--dark); letter-spacing: 0.02em; text-decoration: none;
}
.site-header__logo:hover { color: var(--green); }
.site-nav { display: flex; align-items: center; gap: 0; }
.site-nav a {
  font-size: 0.82rem; font-weight: 400; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--dark); padding: 0 1rem;
  border-left: 1px solid var(--border); line-height: 64px;
  transition: color 0.2s;
}
.site-nav a:first-child { border-left: none; }
.site-nav a:hover { color: var(--green); }
.site-nav a.active { color: var(--green); }

.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--dark); transition: all 0.2s; }

.mobile-nav {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: var(--bg); border-bottom: 1px solid var(--border);
  z-index: 99; flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 1rem 2rem; font-size: 0.9rem; letter-spacing: 0.05em;
  text-transform: uppercase; border-bottom: 1px solid var(--border);
  color: var(--dark);
}
.mobile-nav a:hover { color: var(--green); background: rgba(58,85,73,0.04); }

body { padding-top: 64px; }

/* ── FOOTER ── */
.site-footer {
  background: var(--dark); color: var(--bg);
  border-top: 1px solid var(--border); margin-top: auto;
}
.site-footer__grid {
  max-width: var(--max); margin: 0 auto; padding: 3rem 2rem 2rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
}
.site-footer__brand h3 { font-family: var(--font-head); color: var(--bg); font-size: 1.3rem; margin-bottom: 0.75rem; }
.site-footer__brand p { font-size: 0.82rem; color: #a0a09e; line-height: 1.7; }
.site-footer__col h4 { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sand); margin-bottom: 1rem; font-weight: 500; }
.site-footer__col ul { list-style: none; }
.site-footer__col ul li { margin-bottom: 0.5rem; }
.site-footer__col ul li a { font-size: 0.82rem; color: #a0a09e; transition: color 0.2s; }
.site-footer__col ul li a:hover { color: var(--bg); }
.site-footer__col p { font-size: 0.82rem; color: #a0a09e; line-height: 1.7; }
.site-footer__bottom {
  border-top: 1px solid #333331; padding: 1.25rem 2rem;
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
}
.site-footer__bottom p { font-size: 0.75rem; color: #7a7a78; }
.footer-disclaimer {
  border-top: 1px solid #333331;
  padding: 1rem 2rem;
  max-width: var(--max); margin: 0 auto;
  font-size: 0.75rem; color: #7a7a78; text-align: center;
}

/* ── HERO ── */
.hero {
  position: relative; width: 100%; min-height: 92vh;
  display: flex; align-items: flex-end; overflow: hidden;
  background: var(--dark);
}
.hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; opacity: 0.62;
}
.hero__overlay {
  position: relative; z-index: 2; padding: 4rem 2rem 5rem;
  max-width: var(--max); margin: 0 auto; width: 100%;
}
.hero__tag {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 1.5rem; display: block;
}
.hero__title { color: #F4F5F2; max-width: 700px; margin-bottom: 1.5rem; font-size: clamp(2.2rem, 4.5vw, 4rem); }
.hero__sub { color: #c8c8c6; font-size: 1.05rem; max-width: 520px; line-height: 1.7; margin-bottom: 2rem; }
.hero__cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sand); border-bottom: 1px solid var(--sand); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.hero__cta:hover { color: var(--bg); border-color: var(--bg); }
.hero__cta::after { content: '→'; font-size: 1rem; }

/* ── SECTION LABELS ── */
.section-label {
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green); font-weight: 500; margin-bottom: 1.25rem; display: block;
}
.section-index {
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sand); font-weight: 400;
}

/* ── SECTION SPACING ── */
.section { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }
.section--lg { padding: 7rem 0; }
.section--dark { background: var(--dark); color: var(--bg); }
.section--dark h2, .section--dark h3, .section--dark p { color: var(--bg); }
.section--green { background: var(--green); color: var(--bg); }
.section--sand { background: var(--sand); }

/* ── EDITORIAL INTRO ── */
.editorial-intro { padding: 5rem 0; border-bottom: 1px solid var(--border); }
.editorial-intro__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.drop-cap::first-letter {
  font-family: var(--font-head); font-size: 4.5rem; font-weight: 700;
  line-height: 0.85; float: left; margin-right: 0.15em; margin-top: 0.05em;
  color: var(--green);
}

/* ── TOPIC GRID ── */
.topic-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border-top: 1px solid var(--border); }
.topic-card { padding: 2.5rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.topic-card:nth-child(3n) { border-right: none; }
.topic-card__num { font-size: 0.65rem; letter-spacing: 0.12em; color: var(--sand); margin-bottom: 1.25rem; display: block; }
.topic-card h3 { margin-bottom: 1rem; }
.topic-card p { font-size: 0.9rem; color: var(--muted); }

/* ── TWO-COL IMAGE TEXT ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--border); }
.two-col__img { overflow: hidden; }
.two-col__img img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.two-col__text { padding: 4rem 3rem; }
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

/* ── MATRIX TABLE ── */
.matrix-wrap { overflow-x: auto; }
.matrix-table { width: 100%; border-collapse: collapse; }
.matrix-table th { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sand); font-weight: 500; padding: 1rem 1.5rem; border-bottom: 1px solid var(--border); text-align: left; }
.matrix-table td { padding: 1.1rem 1.5rem; border-bottom: 1px solid var(--border); font-size: 0.9rem; vertical-align: top; }
.matrix-table tr:last-child td { border-bottom: none; }
.matrix-table .myth { font-style: italic; color: var(--muted); }
.matrix-table .fact { color: var(--dark); }
.badge { display: inline-block; font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 2px 8px; border: 1px solid; }
.badge--myth { border-color: #c0392b; color: #c0392b; }
.badge--fact { border-color: var(--green); color: var(--green); }

/* ── LONGREAD ── */
.longread { display: grid; grid-template-columns: 7fr 3fr; gap: 4rem; }
.longread__main { }
.longread__main p { margin-bottom: 1.5rem; font-size: 0.95rem; color: var(--muted); }
.longread__main h3 { margin-bottom: 1rem; margin-top: 2rem; }
.margin-notes { padding-top: 1rem; border-left: 1px solid var(--border); padding-left: 2rem; }
.margin-note { margin-bottom: 2.5rem; }
.margin-note__label { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sand); margin-bottom: 0.5rem; display: block; }
.margin-note p { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }

/* ── GLOSSARY ── */
.glossary-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border-top: 1px solid var(--border); }
.glossary-item { padding: 2rem 2rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.glossary-item:nth-child(3n) { border-right: none; }
.glossary-item__term { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; color: var(--dark); margin-bottom: 0.5rem; }
.glossary-item__def { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* ── FAQ ── */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.75rem 0; }
.faq-item__q { font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; margin-bottom: 0.75rem; }
.faq-item__a { font-size: 0.9rem; color: var(--muted); line-height: 1.7; max-width: 800px; }

/* ── CONTACT PREVIEW ── */
.contact-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--border); }
.contact-preview__img img { width: 100%; height: 100%; object-fit: cover; min-height: 380px; }
.contact-preview__info { padding: 4rem 3rem; display: flex; flex-direction: column; justify-content: center; }
.contact-preview__info h2 { margin-bottom: 1.5rem; }
.contact-preview__info p { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.5rem; }

/* ── CTA STRIP ── */
.cta-strip { border-top: 1px solid var(--border); padding: 2.5rem 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.cta-strip h3 { font-size: 1rem; font-weight: 500; }
.arrow-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--dark); border-bottom: 1px solid var(--dark); padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.arrow-link:hover { color: var(--green); border-color: var(--green); }
.arrow-link::after { content: '→'; }

/* ── CTA FULL-WIDTH ── */
.cta-full { padding: 2.5rem 0; display: flex; justify-content: flex-end; }

/* ── PAGE HERO ── */
.page-hero { padding: 5rem 0 3rem; border-bottom: 1px solid var(--border); }
.page-hero__label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sand); margin-bottom: 1rem; display: block; }
.page-hero h1 { max-width: 720px; }
.page-hero p { font-size: 1.05rem; color: var(--muted); max-width: 600px; margin-top: 1.25rem; line-height: 1.7; }

/* ── ABOUT ── */
.about-main { padding: 5rem 0; }
.about-body p { font-size: 1rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.5rem; max-width: 780px; }
.about-body h2 { margin-top: 3rem; margin-bottom: 1.25rem; max-width: 780px; }

/* ── TIMELINE ── */
.timeline { margin: 3rem 0; padding-left: 1.5rem; border-left: 2px solid var(--green); }
.timeline__item { padding: 0 0 2.5rem 2rem; position: relative; }
.timeline__item::before {
  content: ''; position: absolute; left: -9px; top: 6px;
  width: 10px; height: 10px; border: 2px solid var(--green); background: var(--bg);
}
.timeline__year { font-size: 0.7rem; letter-spacing: 0.1em; color: var(--sand); text-transform: uppercase; margin-bottom: 0.5rem; display: block; }
.timeline__item h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.timeline__item p { font-size: 0.88rem; color: var(--muted); }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--border); }
.contact-grid__info { padding: 4rem 4rem 4rem 0; border-right: 1px solid var(--border); }
.contact-grid__form { padding: 4rem 0 4rem 4rem; }
.contact-info-item { margin-bottom: 2rem; }
.contact-info-item .label { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sand); margin-bottom: 0.4rem; display: block; }
.contact-info-item p, .contact-info-item a { font-size: 0.9rem; color: var(--dark); }
.contact-info-item a:hover { color: var(--green); }

/* ── FORM ── */
.form-field { margin-bottom: 1.5rem; }
.form-field label { display: block; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
.form-field input, .form-field textarea {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--border);
  padding: 0.75rem 0; font-size: 0.95rem; font-family: var(--font-body);
  color: var(--dark); outline: none; transition: border-color 0.2s; resize: none;
}
.form-field input:focus, .form-field textarea:focus { border-bottom-color: var(--dark); }
.form-btn {
  background: var(--dark); color: var(--bg); border: none; cursor: pointer;
  padding: 0.85rem 2.5rem; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-family: var(--font-body); transition: background 0.2s;
}
.form-btn:hover { background: var(--green); }

/* ── THANK YOU ── */
.thankyou { min-height: calc(100vh - 64px); display: flex; align-items: center; padding: 4rem 2rem; }
.thankyou__inner { max-width: 640px; }
.thankyou__inner .section-label { margin-bottom: 2rem; }
.thankyou__inner h1 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 1.25rem; }
.thankyou__inner p { font-size: 0.9rem; color: var(--muted); margin-bottom: 2rem; }

/* ── LEGAL PAGES ── */
.legal-page { padding: 5rem 0; }
.legal-page h1 { margin-bottom: 0.75rem; }
.legal-meta { font-size: 0.75rem; color: var(--sand); letter-spacing: 0.06em; margin-bottom: 3rem; }
.legal-body h2 { font-size: 1.15rem; margin-top: 2.5rem; margin-bottom: 0.75rem; border-top: 1px solid var(--border); padding-top: 1.5rem; }
.legal-body p { font-size: 0.9rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.75; }
.legal-body ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.legal-body ul li { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 0.35rem; }

/* ── BLOGS ── */
.blogs-hero { padding: 4rem 0 2rem; border-bottom: 1px solid var(--border); }
.blogs-hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.blogs-hero__img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.blog-list { border-top: 1px solid var(--border); }
.blog-item { display: grid; grid-template-columns: 80px 1fr auto; align-items: start; gap: 2rem; padding: 2rem 0; border-bottom: 1px solid var(--border); }
.blog-item__num { font-size: 0.7rem; letter-spacing: 0.1em; color: var(--sand); padding-top: 0.25rem; }
.blog-item__body h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.blog-item__body p { font-size: 0.85rem; color: var(--muted); }
.blog-item__action { padding-top: 0.25rem; white-space: nowrap; }
.blog-grid-preview { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border-top: 1px solid var(--border); margin-top: 3rem; }
.blog-preview-card { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.blog-preview-card:nth-child(3n) { border-right: none; }
.blog-preview-card__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.blog-preview-card__body { padding: 1.75rem; }
.blog-preview-card__body .section-label { margin-bottom: 0.75rem; }
.blog-preview-card__body h3 { font-size: 0.95rem; margin-bottom: 0.75rem; }
.blog-preview-card__body .arrow-link { font-size: 0.72rem; }

/* ── ARTICLE PAGES ── */
.article-header { padding: 4rem 0 3rem; border-bottom: 1px solid var(--border); }
.article-header .section-label { margin-bottom: 1rem; }
.article-header h1 { max-width: 820px; margin-bottom: 1.25rem; }
.article-meta { font-size: 0.75rem; color: var(--sand); letter-spacing: 0.06em; }
.article-photo { margin: 0; }
.article-photo img { width: 100%; max-height: 480px; object-fit: cover; }
.article-body { padding: 4rem 0; }
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 5rem; align-items: start; }
.article-layout--full { display: block; max-width: 820px; }
.article-content p { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.5rem; }
.article-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; border-top: 1px solid var(--border); padding-top: 1.5rem; }
.article-content h3 { margin-top: 1.75rem; margin-bottom: 0.75rem; }
.article-aside { position: sticky; top: 84px; }

/* ── STAT STRIP ── */
.stat-strip { background: var(--dark); color: var(--bg); display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid #333331; }
.stat-item { padding: 2.5rem 2rem; border-right: 1px solid #333331; }
.stat-item:last-child { border-right: none; }
.stat-item__num { font-family: var(--font-head); font-size: 2.5rem; font-weight: 700; color: var(--sand); display: block; margin-bottom: 0.4rem; }
.stat-item__label { font-size: 0.78rem; color: #a0a09e; letter-spacing: 0.05em; }

/* ── SEASON TIMELINE ── */
.season-timeline { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border-top: 1px solid var(--border); }
.season-col { padding: 2rem 1.5rem; border-right: 1px solid var(--border); }
.season-col:last-child { border-right: none; }
.season-col__name { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 1rem; display: block; }
.season-col h3 { font-size: 1rem; margin-bottom: 0.75rem; }
.season-col ul { list-style: none; }
.season-col ul li { font-size: 0.82rem; color: var(--muted); padding: 0.3rem 0; border-bottom: 1px solid rgba(200,188,167,0.3); }
.season-col ul li:last-child { border-bottom: none; }

/* ── COMPARISON TABLE ── */
.compare-table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.compare-table th { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sand); padding: 1rem 1.5rem; border-bottom: 1px solid var(--border); text-align: left; background: var(--dark); color: var(--bg); }
.compare-table td { padding: 1rem 1.5rem; border-bottom: 1px solid var(--border); font-size: 0.88rem; vertical-align: top; }
.compare-table tr:nth-child(even) td { background: rgba(200,188,167,0.1); }
.compare-table tr:last-child td { border-bottom: none; }
.td-myth { color: #999; font-style: italic; }
.td-fact { color: var(--green); font-weight: 500; }

/* ── HISTORY TIMELINE ── */
.hist-timeline { padding: 3rem 0; }
.hist-item { display: grid; grid-template-columns: 140px 1fr; gap: 2rem; border-top: 1px solid var(--border); padding: 2rem 0; }
.hist-item__year { font-family: var(--font-head); font-size: 1.75rem; font-weight: 700; color: var(--green); }
.hist-item__text h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.hist-item__text p { font-size: 0.88rem; color: var(--muted); }

/* ── GLOSSARY RAIL (sidebar) ── */
.glossary-rail { border: 1px solid var(--border); padding: 1.5rem; }
.glossary-rail__title { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sand); margin-bottom: 1.25rem; display: block; }
.glossary-rail__item { padding: 0.75rem 0; border-bottom: 1px solid rgba(200,188,167,0.4); }
.glossary-rail__item:last-child { border-bottom: none; }
.glossary-rail__item .term { font-weight: 600; font-size: 0.88rem; margin-bottom: 0.25rem; display: block; }
.glossary-rail__item .def { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

/* ── 404 ── */
.error-page { min-height: calc(100vh - 64px); display: flex; align-items: center; padding: 4rem 2rem; }
.error-page__inner { max-width: 640px; }
.error-page__code { font-family: var(--font-head); font-size: 7rem; font-weight: 700; color: var(--sand); line-height: 1; margin-bottom: 1rem; }
.error-page__inner h2 { margin-bottom: 1rem; }
.error-page__inner p { font-size: 0.9rem; color: var(--muted); margin-bottom: 2rem; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--dark); color: var(--bg);
  border-top: 1px solid #333331; padding: 1.25rem 2rem;
  display: none;
}
.cookie-banner.visible { display: block; }
.cookie-banner__inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cookie-banner p { font-size: 0.82rem; color: #a0a09e; }
.cookie-banner a { color: var(--sand); text-decoration: underline; }
.cookie-banner__btns { display: flex; gap: 1rem; flex-shrink: 0; }
.cookie-btn {
  background: none; border: 1px solid var(--sand); color: var(--sand);
  padding: 0.5rem 1.25rem; font-size: 0.75rem; letter-spacing: 0.08em;
  text-transform: uppercase; cursor: pointer; font-family: var(--font-body);
  transition: background 0.2s, color 0.2s;
}
.cookie-btn:hover { background: var(--sand); color: var(--dark); }
.cookie-btn--accept { background: var(--sand); color: var(--dark); }
.cookie-btn--accept:hover { background: #b0a492; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .article-layout { grid-template-columns: 1fr 280px; gap: 3rem; }
}

@media (max-width: 900px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .editorial-intro__inner { grid-template-columns: 1fr; gap: 2rem; }
  .topic-grid { grid-template-columns: 1fr; }
  .topic-card { border-right: none; }
  .two-col { grid-template-columns: 1fr; }
  .two-col__img img { min-height: 280px; }
  .two-col--reverse { direction: ltr; }
  .longread { grid-template-columns: 1fr; }
  .margin-notes { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 1.5rem; margin-top: 2rem; }
  .glossary-grid { grid-template-columns: 1fr 1fr; }
  .glossary-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .glossary-item:nth-child(2n) { border-right: none; }
  .contact-preview { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid__info { padding: 3rem 0; border-right: none; border-bottom: 1px solid var(--border); }
  .contact-grid__form { padding: 3rem 0; }
  .blogs-hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .stat-strip { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .season-timeline { grid-template-columns: 1fr 1fr; }
  .season-col:nth-child(2) { border-right: none; }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; }
  .hist-item { grid-template-columns: 80px 1fr; gap: 1.25rem; }
  .blog-grid-preview { grid-template-columns: 1fr 1fr; }
  .blog-grid-preview .blog-preview-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .blog-grid-preview .blog-preview-card:nth-child(2n) { border-right: none; }
}

@media (max-width: 600px) {
  .container, .container--narrow, .container--text { padding: 0 1.25rem; }
  .section { padding: 3rem 0; }
  .section--lg { padding: 4rem 0; }
  .hero { min-height: 80vh; }
  .hero__overlay { padding: 2rem 1.25rem 3rem; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 1.25rem 1.5rem; }
  .site-footer__bottom { padding: 1rem 1.25rem; flex-direction: column; align-items: flex-start; }
  .glossary-grid { grid-template-columns: 1fr; }
  .glossary-item { border-right: none; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .season-timeline { grid-template-columns: 1fr; }
  .season-col { border-right: none; border-bottom: 1px solid var(--border); }
  .blog-list .blog-item { grid-template-columns: 40px 1fr; }
  .blog-item__action { display: none; }
  .blog-grid-preview { grid-template-columns: 1fr; }
  .blog-grid-preview .blog-preview-card { border-right: none; }
  .hist-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .hist-item__year { font-size: 1.25rem; }
  .two-col__text { padding: 2.5rem 1.25rem; }
  .contact-grid__info { padding: 2rem 0; }
  .contact-grid__form { padding: 2rem 0; }
  .matrix-table th, .matrix-table td { padding: 0.75rem 0.75rem; }
  .compare-table th, .compare-table td { padding: 0.75rem 0.75rem; }
}
