@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg: #F4F6F5;
  --dark: #1A1C1A;
  --green: #3C5A46;
  --sand: #D6C7A9;
  --border: rgba(26,28,26,0.10);
  --border-strong: rgba(26,28,26,0.22);
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
}

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

html {
  background: var(--bg);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.3rem, 2.5vw, 2rem); font-weight: 600; }
h3 { font-size: clamp(1rem, 1.8vw, 1.35rem); font-weight: 500; }

p {
  margin-bottom: 1.1rem;
  line-height: 1.65;
}

p:last-child { margin-bottom: 0; }

ul, ol {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.matrix-border {
  border: 1px solid var(--border);
}

.matrix-border-strong {
  border: 1px solid var(--border-strong);
}

/* ── HEADER ─────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border-strong);
}

.header-inner {
  display: flex;
  align-items: stretch;
  min-height: 60px;
}

.header-logo {
  display: flex;
  align-items: center;
  padding: 0 2rem;
  border-right: 1px solid var(--border-strong);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
}

.header-logo:hover {
  background: var(--sand);
  text-decoration: none;
  color: var(--dark);
}

.header-nav {
  display: flex;
  align-items: stretch;
  flex: 1;
}

.header-nav a {
  display: flex;
  align-items: center;
  padding: 0 1.2rem;
  border-right: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.15s;
}

.header-nav a:hover,
.header-nav a.active {
  background: var(--green);
  color: var(--bg);
  text-decoration: none;
}

.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  border-left: 1px solid var(--border);
  font-size: 0.75rem;
  color: rgba(26,28,26,0.45);
  letter-spacing: 0.04em;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 1.2rem;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
}

/* ── FOOTER ─────────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--border-strong);
  background: var(--bg);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  border-left: 1px solid var(--border-strong);
}

.footer-cell {
  padding: 2rem 1.8rem;
  border-right: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}

.footer-tagline {
  font-size: 0.78rem;
  color: rgba(26,28,26,0.55);
  line-height: 1.5;
}

.footer-cell h4 {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(26,28,26,0.5);
  margin-bottom: 0.9rem;
}

.footer-cell ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-cell ul li {
  margin-bottom: 0.4rem;
}

.footer-cell ul li a {
  font-size: 0.82rem;
  color: var(--dark);
  text-decoration: none;
}

.footer-cell ul li a:hover {
  color: var(--green);
  text-decoration: underline;
}

.footer-contact-line {
  font-size: 0.82rem;
  color: var(--dark);
  margin-bottom: 0.35rem;
  line-height: 1.5;
}

.footer-hours {
  font-size: 0.78rem;
  color: rgba(26,28,26,0.6);
  margin-top: 0.8rem;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.8rem;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border-strong);
  border-right: 1px solid var(--border-strong);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(26,28,26,0.45);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(26,28,26,0.5);
  font-style: italic;
}

/* ── MATRIX GRID ─────────────────────────────────────────── */

.matrix-full {
  width: 100%;
  border-left: 1px solid var(--border-strong);
  border-top: 1px solid var(--border-strong);
}

.matrix-row {
  display: grid;
  width: 100%;
}

.matrix-row-2 { grid-template-columns: 1fr 1fr; }
.matrix-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.matrix-row-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
.matrix-row-asym { grid-template-columns: 1.6fr 1fr; }
.matrix-row-asym-rev { grid-template-columns: 1fr 1.6fr; }
.matrix-row-asym-3 { grid-template-columns: 2fr 1fr 1fr; }
.matrix-row-wide { grid-template-columns: 1fr; }
.matrix-row-sidebar { grid-template-columns: 1fr 320px; }
.matrix-row-sidebar-left { grid-template-columns: 300px 1fr; }

.matrix-cell {
  padding: 2.4rem 2rem;
  border-right: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  position: relative;
  overflow: hidden;
}

.matrix-cell-flush {
  padding: 0;
  border-right: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  position: relative;
  overflow: hidden;
}

.matrix-cell-flush img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.matrix-cell-green {
  background: var(--green);
  color: var(--bg);
}

.matrix-cell-green h1,
.matrix-cell-green h2,
.matrix-cell-green h3,
.matrix-cell-green .matrix-index {
  color: var(--bg);
}

.matrix-cell-sand {
  background: var(--sand);
}

.matrix-cell-dark {
  background: var(--dark);
  color: var(--bg);
}

.matrix-cell-dark h1,
.matrix-cell-dark h2,
.matrix-cell-dark h3,
.matrix-cell-dark p {
  color: var(--bg);
}

.matrix-index {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26,28,26,0.35);
  margin-bottom: 1rem;
  display: block;
}

.matrix-index-large {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(26,28,26,0.06);
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ── HERO BLOCK ──────────────────────────────────────────── */

.hero-block {
  border-left: 1px solid var(--border-strong);
  border-top: 1px solid var(--border-strong);
}

.hero-cell-content {
  padding: 3.5rem 2.5rem;
  border-right: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
}

.hero-cell-image {
  border-bottom: 1px solid var(--border-strong);
  overflow: hidden;
  min-height: 420px;
}

.hero-cell-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.2rem;
}

.hero-h1 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.8rem;
}

.hero-lead {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(26,28,26,0.7);
  max-width: 540px;
  margin-bottom: 2rem;
}

/* ── CTA LINKS ──────────────────────────────────────────── */

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 2px solid var(--dark);
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
}

.cta-link:hover {
  color: var(--green);
  border-color: var(--green);
  text-decoration: none;
}

.cta-link-light {
  color: var(--bg);
  border-color: var(--bg);
}

.cta-link-light:hover {
  color: var(--sand);
  border-color: var(--sand);
}

/* ── COMPARISON TABLE ────────────────────────────────────── */

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.comparison-table th {
  background: var(--dark);
  color: var(--bg);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
}

.comparison-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.55;
}

.comparison-table tr:nth-child(even) td {
  background: rgba(26,28,26,0.025);
}

.comparison-table tr:hover td {
  background: rgba(60,90,70,0.06);
}

/* ── GLOSSARY ────────────────────────────────────────────── */

.glossary-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.glossary-list li {
  display: flex;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  line-height: 1.5;
}

.glossary-list li:last-child {
  border-bottom: none;
}

.glossary-term {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--green);
  min-width: 130px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-top: 0.05rem;
}

.glossary-def {
  color: rgba(26,28,26,0.75);
  flex: 1;
}

/* ── FAQ ─────────────────────────────────────────────────── */

.faq-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.faq-table tr {
  border-bottom: 1px solid var(--border);
}

.faq-table td {
  padding: 1rem 1.2rem;
  vertical-align: top;
  line-height: 1.6;
}

.faq-table td:first-child {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--green);
  width: 40%;
  font-size: 0.88rem;
}

.faq-table td:last-child {
  color: rgba(26,28,26,0.78);
  font-size: 0.85rem;
}

/* ── STAT STRIP ──────────────────────────────────────────── */

.stat-strip {
  display: grid;
  border-left: 1px solid var(--border-strong);
  border-top: 1px solid var(--border-strong);
}

.stat-strip-4 { grid-template-columns: repeat(4, 1fr); }
.stat-strip-3 { grid-template-columns: repeat(3, 1fr); }

.stat-item {
  padding: 1.8rem 1.5rem;
  border-right: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(26,28,26,0.55);
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── TIMELINE ────────────────────────────────────────────── */

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  padding-top: 0.1rem;
}

.timeline-text {
  font-size: 0.88rem;
  color: rgba(26,28,26,0.78);
  line-height: 1.6;
}

.timeline-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

/* ── BLOG GRID ───────────────────────────────────────────── */

.blog-card {
  border-right: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  overflow: hidden;
}

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

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-index {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26,28,26,0.35);
  margin-bottom: 0.6rem;
  display: block;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.blog-card-excerpt {
  font-size: 0.83rem;
  color: rgba(26,28,26,0.65);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-card-meta {
  font-size: 0.73rem;
  color: rgba(26,28,26,0.4);
  letter-spacing: 0.04em;
}

/* ── ARTICLE PAGE ────────────────────────────────────────── */

.article-header {
  border-left: 1px solid var(--border-strong);
  border-top: 1px solid var(--border-strong);
}

.article-meta-cell {
  padding: 2rem 2rem;
  border-right: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.article-meta-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(26,28,26,0.38);
}

.article-meta-value {
  font-size: 0.88rem;
  color: var(--dark);
}

.article-body {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
}

.article-body h2 {
  margin-top: 2.2rem;
  margin-bottom: 0.9rem;
}

.article-body h3 {
  margin-top: 1.6rem;
  margin-bottom: 0.6rem;
}

.article-body p {
  margin-bottom: 1.1rem;
}

.article-body ul, .article-body ol {
  margin-bottom: 1.1rem;
}

/* ── PAGE HERO ───────────────────────────────────────────── */

.page-hero {
  border-left: 1px solid var(--border-strong);
  border-top: 1px solid var(--border-strong);
}

.page-hero-cell {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  background: var(--green);
  color: var(--bg);
}

.page-hero-cell h1 {
  color: var(--bg);
  max-width: 700px;
}

.page-hero-cell .matrix-index {
  color: rgba(244,246,245,0.5);
}

/* ── LEGAL PAGES ─────────────────────────────────────────── */

.legal-body {
  border-left: 1px solid var(--border-strong);
}

.legal-cell {
  padding: 3rem 4rem;
  border-right: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  max-width: 820px;
}

.legal-cell h1 {
  margin-bottom: 2rem;
}

.legal-cell h2 {
  font-size: 1.1rem;
  margin-top: 2.2rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}

.legal-cell p {
  font-size: 0.92rem;
  color: rgba(26,28,26,0.8);
}

.legal-cell ul {
  font-size: 0.92rem;
  color: rgba(26,28,26,0.8);
}

.legal-date {
  font-size: 0.8rem;
  color: rgba(26,28,26,0.4);
  margin-bottom: 2.5rem;
  display: block;
}

/* ── CONTACT PAGE ────────────────────────────────────────── */

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 1rem;
  outline: none;
  transition: border-color 0.15s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(26,28,26,0.5);
  margin-bottom: 0.4rem;
}

.btn-submit {
  background: var(--green);
  color: var(--bg);
  border: none;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-submit:hover {
  background: var(--dark);
}

/* ── COOKIE BANNER ───────────────────────────────────────── */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--bg);
  z-index: 9999;
  border-top: 2px solid var(--green);
  display: none;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 2rem;
  max-width: 1440px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 0.82rem;
  color: rgba(244,246,245,0.85);
  line-height: 1.55;
  flex: 1;
  min-width: 200px;
}

.cookie-text a {
  color: var(--sand);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.55rem 1.2rem;
  border: 1px solid rgba(244,246,245,0.4);
  cursor: pointer;
  background: transparent;
  color: var(--bg);
  transition: background 0.15s, color 0.15s;
}

.cookie-btn-accept {
  background: var(--green);
  border-color: var(--green);
}

.cookie-btn:hover {
  background: var(--bg);
  color: var(--dark);
}

/* ── BREADCRUMB ──────────────────────────────────────────── */

.breadcrumb-bar {
  border-left: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  padding: 0.6rem 2rem;
  font-size: 0.76rem;
  color: rgba(26,28,26,0.45);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb-bar a {
  color: rgba(26,28,26,0.55);
  text-decoration: none;
}

.breadcrumb-bar a:hover {
  color: var(--green);
}

.breadcrumb-sep {
  color: rgba(26,28,26,0.25);
}

/* ── THANK YOU ───────────────────────────────────────────── */

.thankyou-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-strong);
  margin: 2rem;
}

.thankyou-cell {
  padding: 4rem 3rem;
  text-align: center;
  max-width: 520px;
}

.thankyou-cell .matrix-index {
  text-align: center;
  margin-bottom: 1.5rem;
}

.thankyou-cell h1 {
  margin-bottom: 1rem;
}

.thankyou-cell p {
  color: rgba(26,28,26,0.65);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

/* ── 404 STYLE (inline in 404.html) ─────────────────────── */

/* ── SECTION LABEL ───────────────────────────────────────── */

.section-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(26,28,26,0.35);
  margin-bottom: 1.2rem;
  display: block;
}

.text-green { color: var(--green); }
.text-sand { color: var(--sand); }
.text-muted { color: rgba(26,28,26,0.5); }
.bg-green { background: var(--green); }
.bg-sand { background: var(--sand); }
.bg-dark { background: var(--dark); }

/* ── GLOSSARY RAIL ───────────────────────────────────────── */

.glossary-rail {
  padding: 0;
  border-right: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  background: var(--bg);
}

.glossary-rail-header {
  padding: 1.4rem 1.5rem;
  border-bottom: 1px solid var(--border-strong);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(26,28,26,0.45);
  background: var(--sand);
}

.glossary-rail-item {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  line-height: 1.55;
}

.glossary-rail-item:last-child {
  border-bottom: none;
}

.glossary-rail-term {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.2rem;
}

/* ── SEASON STRIP ────────────────────────────────────────── */

.season-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--border-strong);
}

.season-cell {
  padding: 1.5rem 1.2rem;
  border-right: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
}

.season-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.6rem;
}

.season-desc {
  font-size: 0.82rem;
  color: rgba(26,28,26,0.7);
  line-height: 1.55;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */

@media (max-width: 1024px) {
  .matrix-row-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-strip-4 { grid-template-columns: repeat(2, 1fr); }
  .matrix-row-asym-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .matrix-row-2,
  .matrix-row-3,
  .matrix-row-4,
  .matrix-row-asym,
  .matrix-row-asym-rev,
  .matrix-row-asym-3,
  .matrix-row-sidebar,
  .matrix-row-sidebar-left {
    grid-template-columns: 1fr;
  }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-strip-4 { grid-template-columns: 1fr 1fr; }
  .stat-strip-3 { grid-template-columns: 1fr 1fr; }
  .season-strip { grid-template-columns: 1fr 1fr; }

  .hero-cell-content {
    min-height: 300px;
  }

  .hero-cell-image,
  .hero-cell-image img {
    min-height: 240px;
  }

  .matrix-cell-flush img {
    min-height: 200px;
  }

  .header-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border-strong);
    z-index: 99;
  }

  .header-nav.open {
    display: flex;
  }

  .header-nav a {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 0.85rem 1.5rem;
  }

  .nav-toggle {
    display: flex;
  }

  .header-right {
    display: none;
  }

  .header-inner {
    position: relative;
  }

  .legal-cell {
    padding: 2rem 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-start;
  }

  .timeline-item {
    grid-template-columns: 60px 1fr;
    gap: 0.8rem;
  }

  .glossary-list li {
    flex-direction: column;
    gap: 0.2rem;
  }

  .matrix-index-large {
    font-size: 3rem;
  }

  .faq-table td:first-child {
    width: auto;
  }

  .faq-table tr {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stat-strip-4 { grid-template-columns: 1fr; }
  .stat-strip-3 { grid-template-columns: 1fr; }
  .season-strip { grid-template-columns: 1fr; }

  .matrix-cell {
    padding: 1.6rem 1.2rem;
  }

  .hero-cell-content {
    padding: 2rem 1.5rem;
    min-height: 260px;
  }
}
