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

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

:root {
  --bg-main: #F7F5F0;
  --green-dark: #3B5345;
  --sand: #C6B9A1;
  --ink: #1F201E;
  --white: #F7F5F0;
  --text-body: #2C2E2B;
  --text-muted: #6B6B6B;
  --container: 1000px;
  --container-narrow: 700px;
}

html {
  background-color: var(--bg-main);
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', Georgia, serif;
  background-color: var(--bg-main);
  color: var(--text-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }

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

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

ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.5rem; }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--bg-main);
  border-bottom: 1px solid rgba(31,32,30,0.12);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: -0.04em;
  text-decoration: none;
}

.header-logo:hover { color: var(--green-dark); }

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.header-nav a:hover { color: var(--green-dark); }

.header-nav a.active { color: var(--green-dark); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--ink);
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  background-color: var(--bg-main);
  border-top: 1px solid rgba(31,32,30,0.12);
  padding: 16px 24px 24px;
}

.mobile-nav.open { display: block; }

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav li { border-bottom: 1px solid rgba(31,32,30,0.08); }

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}

.site-header-spacer { height: 68px; }

/* FOOTER */
.site-footer {
  background-color: var(--ink);
  color: var(--bg-main);
  padding: 64px 0 32px;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--bg-main);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  display: block;
}

.footer-tagline {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(247,245,240,0.7);
  margin-bottom: 20px;
}

.footer-disclaimer {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--sand);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
}

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

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(247,245,240,0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--bg-main); }

.footer-contact-item {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(247,245,240,0.75);
  margin-bottom: 8px;
  line-height: 1.5;
}

.footer-hours {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(247,245,240,0.75);
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(247,245,240,0.12);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(247,245,240,0.5);
}

.footer-legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(247,245,240,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal-links a:hover { color: rgba(247,245,240,0.9); }

/* PANEL SYSTEM */
.panel {
  width: 100%;
  padding: 96px 0;
}

.panel-light { background-color: var(--bg-main); }
.panel-dark { background-color: var(--green-dark); }
.panel-sand { background-color: #EDE8DF; }
.panel-ink { background-color: var(--ink); }

.panel-dark h1,
.panel-dark h2,
.panel-dark h3 { color: var(--white); }

.panel-dark p,
.panel-dark li { color: rgba(247,245,240,0.85); }

.panel-ink h1,
.panel-ink h2,
.panel-ink h3 { color: var(--white); }

.panel-ink p,
.panel-ink li { color: rgba(247,245,240,0.8); }

/* HERO */
.hero-panel {
  background-color: var(--green-dark);
  padding: 120px 0 96px;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero-text p {
  color: rgba(247,245,240,0.82);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.hero-image {
  position: relative;
}

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

/* INTRO CARD */
.intro-card {
  background-color: var(--green-dark);
  color: var(--white);
  padding: 40px 48px;
  margin-bottom: 64px;
}

.intro-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 12px;
}

.intro-card h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.intro-card .intro-body {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  color: rgba(247,245,240,0.82);
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
}

/* ACCENT NUMBER */
.accent-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--sand);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 16px;
  display: block;
}

/* TOPIC GRID */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.topic-card {
  background-color: var(--ink);
  padding: 48px 36px;
}

.topic-card:nth-child(2) { background-color: var(--green-dark); }
.topic-card:nth-child(3) { background-color: #2A3D34; }

.topic-card .topic-num {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--sand);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 20px;
}

.topic-card h3 { color: var(--white); margin-bottom: 12px; }
.topic-card p { color: rgba(247,245,240,0.75); font-size: 0.95rem; margin-bottom: 0; }

/* CONTEXTUAL PHOTO MODULE */
.photo-module {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.photo-module-text {
  padding: 72px 56px;
  background-color: var(--green-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.photo-module-text h2 { color: var(--white); margin-bottom: 24px; }
.photo-module-text p { color: rgba(247,245,240,0.82); margin-bottom: 0; }

.photo-module-img img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

/* COMPARISON MATRIX */
.matrix-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
}

.matrix-table th {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 24px;
  text-align: left;
  border-bottom: 2px solid var(--ink);
}

.matrix-table th:first-child { width: 40%; }

.matrix-table td {
  padding: 18px 24px;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(31,32,30,0.1);
  vertical-align: top;
}

.matrix-table tr:last-child td { border-bottom: none; }

.matrix-table tr:nth-child(even) td { background-color: rgba(31,32,30,0.03); }

.matrix-table .col-fact { color: var(--green-dark); font-weight: 600; font-family: 'Inter', sans-serif; font-size: 0.875rem; }
.matrix-table .col-myth { color: #7A3B3B; font-family: 'Inter', sans-serif; font-size: 0.875rem; }

.matrix-table .th-fact { color: var(--green-dark); }
.matrix-table .th-myth { color: #7A3B3B; }

/* LONGREAD BLOCK */
.longread-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(31,32,30,0.1);
}

.longread-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.longread-index {
  font-family: 'Inter', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--sand);
  line-height: 1;
  padding-top: 8px;
}

.longread-content h3 { margin-bottom: 16px; }
.longread-content p { font-size: 0.975rem; }

/* GLOSSARY */
.glossary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 32px;
}

.glossary-item {
  padding: 28px 32px;
  background-color: rgba(31,32,30,0.04);
}

.glossary-term {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.glossary-def {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

/* FAQ */
.faq-item {
  border-top: 1px solid rgba(31,32,30,0.12);
  padding: 28px 0;
}

.faq-item:last-child { border-bottom: 1px solid rgba(31,32,30,0.12); }

.faq-q {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}

.faq-a {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* CONTACT PREVIEW */
.contact-preview {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-preview h2 { color: var(--white); margin-bottom: 20px; }
.contact-preview p { color: rgba(247,245,240,0.8); margin-bottom: 32px; }

/* CTA LINK */
.cta-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--sand);
  padding-bottom: 3px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.cta-link:hover { color: var(--green-dark); border-color: var(--green-dark); }

.cta-link-light {
  color: var(--white);
  border-bottom-color: rgba(198,185,161,0.6);
}

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

/* STAT STRIP */
.stat-strip {
  background-color: var(--ink);
  padding: 0;
  overflow: hidden;
}

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

.stat-item {
  padding: 48px 40px;
  border-right: 1px solid rgba(247,245,240,0.08);
  text-align: center;
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(247,245,240,0.65);
  letter-spacing: 0.05em;
  line-height: 1.4;
}

/* TIMELINE */
.timeline {
  position: relative;
  margin-top: 48px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--sand);
  opacity: 0.4;
}

.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}

.timeline-marker {
  text-align: right;
  padding-right: 20px;
  position: relative;
}

.timeline-marker::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--sand);
}

.timeline-year {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sand);
  letter-spacing: 0.05em;
}

.timeline-body h3 { margin-bottom: 10px; }
.timeline-body p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 0; }

/* GLOSSARY RAIL */
.glossary-rail {
  background-color: var(--ink);
  padding: 40px 36px;
}

.glossary-rail-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 24px;
}

.glossary-rail-item {
  border-top: 1px solid rgba(247,245,240,0.1);
  padding: 16px 0;
}

.glossary-rail-term {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.glossary-rail-def {
  font-size: 0.85rem;
  color: rgba(247,245,240,0.6);
  margin-bottom: 0;
  line-height: 1.5;
}

/* TWO COLUMN */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.two-col-wide {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: start;
}

/* BLOG GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.blog-card {
  background-color: var(--bg-main);
  display: flex;
  flex-direction: column;
}

.blog-card-image {
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img { transform: scale(1.03); }

.blog-card-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(31,32,30,0.1);
  border-top: none;
}

.blog-card-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 14px;
  display: block;
}

.blog-card-body h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  line-height: 1.4;
}

.blog-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 20px;
}

/* ARTICLE */
.article-header {
  background-color: var(--green-dark);
  padding: 96px 0 72px;
}

.article-header h1 { color: var(--white); margin-bottom: 24px; }

.article-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(247,245,240,0.6);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.article-meta span { display: flex; align-items: center; gap: 6px; }

.article-body {
  padding: 72px 0;
}

.article-body h2 {
  margin-top: 48px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--sand);
}

.article-body h2:first-child { margin-top: 0; }

.article-body h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

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

.article-body ul li::marker { color: var(--sand); }

/* BREADCRUMB */
.breadcrumb {
  padding: 16px 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(31,32,30,0.1);
}

.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--green-dark); }
.breadcrumb span { margin: 0 8px; }

/* FORMS */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}

.contact-form-panel {
  background-color: var(--bg-main);
  padding: 56px 48px;
  border: 1px solid rgba(31,32,30,0.1);
}

.contact-info-panel {
  background-color: var(--green-dark);
  padding: 56px 48px;
}

.contact-info-panel h2 { color: var(--white); margin-bottom: 32px; }

.contact-detail {
  margin-bottom: 24px;
}

.contact-detail-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 6px;
}

.contact-detail-value {
  font-size: 0.95rem;
  color: rgba(247,245,240,0.85);
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: block;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  color: var(--ink);
  background-color: var(--bg-main);
  border: 1px solid rgba(31,32,30,0.2);
  outline: none;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-control:focus { border-color: var(--green-dark); }

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.btn-submit {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background-color: var(--ink);
  color: var(--bg-main);
  border: none;
  padding: 16px 40px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: inline-block;
}

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

/* LEGAL PAGES */
.legal-content {
  padding: 80px 0 96px;
}

.legal-content h1 { margin-bottom: 16px; }
.legal-content .legal-updated {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 56px;
}

.legal-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(31,32,30,0.12);
}

.legal-content p { line-height: 1.75; font-size: 0.975rem; }

.legal-content ul {
  margin-bottom: 1.2rem;
}

.legal-content ul li { font-size: 0.975rem; }

/* ABOUT */
.about-narrow {
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 24px 96px;
}

.about-narrow h1 { margin-bottom: 32px; }

/* COOKIE BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: var(--ink);
  color: var(--bg-main);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookie-banner.visible { transform: translateY(0); }

#cookie-banner p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(247,245,240,0.85);
  margin: 0;
  flex: 1;
  min-width: 200px;
}

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

.cookie-btn-group {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

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

.cookie-btn-accept:hover { background-color: #4d6e5c; }

.cookie-btn-decline {
  background-color: transparent;
  color: rgba(247,245,240,0.6);
  border: 1px solid rgba(247,245,240,0.2);
}

.cookie-btn-decline:hover { color: var(--white); border-color: rgba(247,245,240,0.5); }

/* THANK YOU */
.thankyou-panel {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.thankyou-inner {
  max-width: 560px;
}

.thankyou-inner h1 { margin-bottom: 20px; }
.thankyou-inner p { color: var(--text-muted); margin-bottom: 0; }
.thankyou-inner .back-link { margin-top: 40px; display: inline-block; }

/* 404 */
.not-found {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

/* COMPARISON TABLE BLOG */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
}

.compare-table th {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
  background-color: var(--ink);
  color: var(--white);
}

.compare-table td {
  padding: 14px 20px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(31,32,30,0.1);
  vertical-align: top;
  line-height: 1.5;
}

.compare-table tr:nth-child(even) td { background-color: rgba(31,32,30,0.03); }

/* SEASONAL TIMELINE */
.season-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin: 32px 0;
}

.season-card {
  padding: 28px 24px;
  background-color: rgba(31,32,30,0.04);
}

.season-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 12px;
  display: block;
}

.season-card h4 { font-size: 1rem; margin-bottom: 10px; }
.season-card p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0; }

/* ASYM PANELS */
.asym-panel {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 0;
  align-items: stretch;
}

.asym-panel.reverse { grid-template-columns: 2fr 3fr; }

.asym-text {
  padding: 64px 56px;
  background-color: var(--bg-main);
}

.asym-accent {
  background-color: var(--green-dark);
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.asym-accent h3 { color: var(--white); margin-bottom: 16px; }
.asym-accent p { color: rgba(247,245,240,0.8); font-size: 0.95rem; margin-bottom: 0; }

/* DIVIDER */
.divider {
  height: 2px;
  background-color: var(--sand);
  opacity: 0.3;
  margin: 0;
}

/* CONTACT PAGE IMAGE */
.contact-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  margin-bottom: 0;
}

/* BLOG HERO */
.blogs-hero {
  background-color: var(--ink);
  padding: 80px 0 64px;
}

.blogs-hero h1 { color: var(--white); margin-bottom: 20px; }
.blogs-hero p { color: rgba(247,245,240,0.7); max-width: 600px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .mobile-menu-btn { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { display: none; }

  .topic-grid { grid-template-columns: 1fr; gap: 2px; }
  .photo-module { grid-template-columns: 1fr; }
  .photo-module-img { display: none; }

  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col-wide { grid-template-columns: 1fr; gap: 40px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .contact-grid { grid-template-columns: 1fr; }

  .blog-grid { grid-template-columns: 1fr 1fr; }

  .stat-strip-inner { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(247,245,240,0.08); }
  .stat-item:nth-child(2n) { border-right: none; }

  .glossary-grid { grid-template-columns: 1fr; }

  .asym-panel { grid-template-columns: 1fr; }
  .asym-panel.reverse { grid-template-columns: 1fr; }

  .season-timeline { grid-template-columns: 1fr 1fr; }

  .longread-block { grid-template-columns: 60px 1fr; gap: 24px; }
  .longread-index { font-size: 2.5rem; }

  .timeline::before { left: 20px; }
  .timeline-item { grid-template-columns: 70px 1fr; gap: 20px; }

  .intro-card { padding: 32px; }

  .panel { padding: 64px 0; }
}

@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-strip-inner { grid-template-columns: 1fr; }
  .season-timeline { grid-template-columns: 1fr; }
  .contact-form-panel { padding: 36px 24px; }
  .contact-info-panel { padding: 36px 24px; }
  .footer-legal-links { gap: 16px; }
  .panel { padding: 48px 0; }
}
