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

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

:root {
  --bg: #F4F6F0;
  --text: #292929;
  --accent-dark: #526E5A;
  --accent-light: #A3B19B;
  --border: #A3B19B;
  --max-w: 1440px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

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

a {
  color: var(--accent-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover { color: var(--text); }

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

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

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

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

.site-logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.site-logo:hover { color: var(--accent-dark); }

.nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-list a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-list a:hover { color: var(--accent-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: all 0.2s ease;
}

/* MAIN CONTENT */
.page-body {
  margin-top: 60px;
}

/* HERO */
.hero {
  position: relative;
  height: 92vh;
  min-height: 500px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(41,41,41,0.72) 0%, rgba(41,41,41,0.1) 70%, transparent 100%);
}

.hero-content {
  position: absolute;
  bottom: 14%;
  left: 0;
  padding: 0 2rem;
  max-width: 680px;
}

.hero-content h1 {
  color: #F4F6F0;
  font-size: clamp(2rem, 4.5vw, 4rem);
  margin-bottom: 1.2rem;
}

.hero-content p {
  color: rgba(244, 246, 240, 0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.8rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #F4F6F0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(244,246,240,0.5);
  padding-bottom: 2px;
  text-decoration: none;
}

.hero-cta:hover { color: var(--accent-light); border-color: var(--accent-light); }
.hero-cta .arrow { font-size: 1rem; }

/* EDITORIAL INTRO */
.editorial-intro {
  padding: 7rem 2rem;
  border-bottom: 1px solid var(--border);
}

.editorial-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.editorial-dropcap {
  font-family: 'DM Serif Display', serif;
  font-size: 6rem;
  line-height: 0.85;
  color: var(--accent-dark);
  float: left;
  margin-right: 1rem;
  margin-top: 0.1rem;
}

.editorial-lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text);
}

.editorial-secondary {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #555;
  border-left: 1px solid var(--border);
  padding-left: 2rem;
}

/* TOPIC OVERVIEW */
.topic-overview {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
}

.topic-overview-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 3rem;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}

.topic-block {
  padding: 2.5rem 2rem 2.5rem 0;
  border-right: 1px solid var(--border);
}

.topic-block:last-child { border-right: none; }
.topic-block:not(:first-child) { padding-left: 2rem; }

.topic-index {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent-light);
  margin-bottom: 1rem;
  display: block;
}

.topic-block h3 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.topic-block p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.65;
}

.topic-photo {
  margin-top: 4rem;
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}

.topic-photo img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

/* CONTEXTUAL ANALYSIS */
.contextual-analysis {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
}

.contextual-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

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

.contextual-text h2 {
  margin-bottom: 1.5rem;
}

.contextual-text p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.75;
}

/* MYTH MATRIX */
.myth-matrix {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--text);
}

.myth-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.myth-inner .section-label {
  color: var(--accent-light);
}

.myth-inner h2 {
  color: var(--bg);
  margin-bottom: 2.5rem;
}

.myth-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.myth-table th {
  text-align: left;
  padding: 0.9rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  border-bottom: 1px solid #444;
}

.myth-table td {
  padding: 1.2rem 1rem;
  border-bottom: 1px solid #333;
  line-height: 1.5;
}

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

.myth-table .col-myth { color: rgba(244,246,240,0.6); font-style: italic; }
.myth-table .col-context { color: var(--bg); }

/* KNOWLEDGE BLOCK */
.knowledge-block {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
}

.knowledge-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: 4rem;
}

.knowledge-main h2 {
  margin-bottom: 1.5rem;
}

.knowledge-main p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.75;
}

.knowledge-main img {
  margin: 2.5rem 0;
  width: 100%;
  max-height: 340px;
  object-fit: cover;
}

.margin-notes {
  padding-top: 0.3rem;
}

.margin-note {
  border-left: 2px solid var(--accent-dark);
  padding: 0.8rem 0 0.8rem 1rem;
  margin-bottom: 2rem;
  font-size: 0.82rem;
  color: #555;
  line-height: 1.6;
}

.margin-note strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.4rem;
}

/* FAQ */
.faq-block {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
}

.faq-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}

.faq-item {
  padding: 1.8rem 2rem 1.8rem 0;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.faq-item:nth-child(even) {
  padding-left: 2rem;
  padding-right: 0;
  border-right: none;
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.faq-item p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.65;
}

/* CONTACT PREVIEW */
.contact-preview {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
}

.contact-preview-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-preview-photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.contact-info h2 { margin-bottom: 1.5rem; }

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  color: #444;
}

.contact-detail-label {
  font-weight: 600;
  min-width: 80px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.text-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--accent-light);
  padding-bottom: 2px;
  margin-top: 1.5rem;
  text-decoration: none;
}

.text-link-arrow:hover { color: var(--text); border-color: var(--text); }

/* FINAL CTA */
.final-cta {
  padding: 3rem 2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.final-cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.final-cta-text {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
}

.final-cta img.cta-strip-photo {
  width: 140px;
  height: 80px;
  object-fit: cover;
  flex-shrink: 0;
}

/* FOOTER */
.site-footer {
  background: var(--text);
  color: var(--bg);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #444;
}

.footer-brand-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 1rem;
  display: block;
  letter-spacing: 0.04em;
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(244,246,240,0.55);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.footer-compliance {
  font-size: 0.78rem;
  color: var(--accent-light);
  font-style: italic;
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.2rem;
}

.footer-nav-list {
  list-style: none;
}

.footer-nav-list li { margin-bottom: 0.6rem; }

.footer-nav-list a {
  font-size: 0.85rem;
  color: rgba(244,246,240,0.75);
  text-decoration: none;
}

.footer-nav-list a:hover { color: var(--bg); }

.footer-contact-detail {
  font-size: 0.85rem;
  color: rgba(244,246,240,0.75);
  line-height: 1.7;
}

.footer-hours {
  font-size: 0.82rem;
  color: rgba(244,246,240,0.55);
  margin-top: 0.6rem;
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(244,246,240,0.4);
}

.footer-bottom a {
  color: rgba(244,246,240,0.4);
}

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

/* ABOUT PAGE */
.about-hero {
  padding: 7rem 2rem 4rem;
  border-bottom: 1px solid var(--border);
}

.about-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.about-hero-inner h1 { margin-bottom: 1.5rem; }

.about-hero-photo {
  margin: 3rem 0;
}

.about-hero-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-body {
  padding: 4rem 2rem 6rem;
}

.about-body-inner {
  max-width: 800px;
  margin: 0 auto;
}

.about-body h2 {
  margin: 3rem 0 1rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.about-body h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.about-body p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
}

.about-timeline {
  margin: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.timeline-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(163,177,155,0.3);
}

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

.timeline-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  padding-top: 0.1rem;
}

.timeline-desc {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.65;
}

/* CONTACT PAGE */
.contact-page {
  padding: 6rem 2rem 6rem;
}

.contact-page-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.contact-page-intro {
  max-width: 600px;
  margin-bottom: 4rem;
}

.contact-page-intro h1 { margin-bottom: 1rem; }

.contact-page-intro p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
}

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

.contact-left {
  padding: 3rem;
  border-right: 1px solid var(--border);
}

.contact-right {
  padding: 3rem;
}

.contact-page-photo {
  margin-bottom: 2.5rem;
}

.contact-page-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.contact-info-block {
  margin-bottom: 2rem;
}

.contact-info-block h3 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.6rem;
}

.contact-info-block p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.7;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 0.8rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}

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

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

.form-btn {
  background: var(--accent-dark);
  color: var(--bg);
  border: none;
  padding: 0.9rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 0;
}

.form-btn:hover { background: var(--text); }

/* THANK YOU PAGE */
.thankyou-wrap {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: flex-start;
  padding: 8rem 2rem 4rem;
}

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

.thankyou-inner h1 {
  margin-bottom: 1.2rem;
}

.thankyou-inner p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.75;
}

.thankyou-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--accent-light);
  padding-bottom: 2px;
  text-decoration: none;
}

.thankyou-link:hover { color: var(--text); border-color: var(--text); }

/* LEGAL PAGES */
.legal-page {
  padding: 6rem 2rem 6rem;
}

.legal-inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal-inner h1 {
  margin-bottom: 0.5rem;
}

.legal-date {
  font-size: 0.8rem;
  color: var(--accent-light);
  letter-spacing: 0.06em;
  margin-bottom: 3rem;
  display: block;
}

.legal-inner h2 {
  font-size: 1.15rem;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.legal-inner h2:first-of-type {
  padding-top: 0;
  border-top: none;
}

.legal-inner p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.8;
}

/* BLOGS PAGE */
.blogs-header {
  padding: 6rem 2rem 3rem;
  border-bottom: 1px solid var(--border);
}

.blogs-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}

.blogs-header-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.blogs-header-text h1 { margin-bottom: 1rem; }

.blogs-header-text p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
}

.blogs-list {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.blog-list-item {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  text-decoration: none;
  color: inherit;
}

.blog-list-item:hover .blog-list-title { color: var(--accent-dark); }

.blog-list-photo img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.blog-list-meta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 0.8rem;
}

.blog-list-title {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.8rem;
  transition: color 0.2s;
  line-height: 1.3;
}

.blog-list-excerpt {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
}

.blog-list-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  border-bottom: 1px solid var(--accent-light);
  padding-bottom: 1px;
}

/* BLOG ARTICLE */
.article-hero {
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem 0;
}

.article-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.article-breadcrumb {
  font-size: 0.75rem;
  color: var(--accent-light);
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}

.article-breadcrumb a {
  color: var(--accent-dark);
  text-decoration: none;
}

.article-breadcrumb a:hover { text-decoration: underline; }

.article-hero h1 {
  max-width: 820px;
  margin-bottom: 1.2rem;
}

.article-meta {
  font-size: 0.78rem;
  color: var(--accent-light);
  letter-spacing: 0.08em;
  margin-bottom: 3rem;
}

.article-hero-photo {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
}

/* ARTICLE BODY with margin notes */
.article-body {
  padding: 4rem 2rem 6rem;
}

.article-body-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
}

.article-body-inner.no-aside {
  grid-template-columns: 1fr;
  max-width: 820px;
}

.article-content h2 {
  margin: 2.5rem 0 1rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  font-size: 1.5rem;
}

.article-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.article-content h3 {
  margin: 1.8rem 0 0.6rem;
  font-size: 1.1rem;
}

.article-content p {
  font-size: 0.95rem;
  color: #3a3a3a;
  line-height: 1.8;
}

.article-aside {
  padding-top: 0.2rem;
}

.article-aside .margin-note {
  margin-bottom: 1.8rem;
}

/* SIGNATURE ELEMENTS */

/* Matrix Table */
.matrix-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin: 2rem 0;
}

.matrix-table th {
  text-align: left;
  padding: 0.7rem 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent-dark);
  border-right: 1px solid rgba(244,246,240,0.2);
}

.matrix-table th:last-child { border-right: none; }

.matrix-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  color: #3a3a3a;
  vertical-align: top;
}

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

/* Timeline Seasons */
.season-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  margin: 2rem 0;
}

.season-col {
  padding: 1.5rem;
  border-right: 1px solid var(--border);
}

.season-col:last-child { border-right: none; }

.season-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.8rem;
  display: block;
}

.season-items {
  list-style: none;
  font-size: 0.85rem;
  color: #444;
  line-height: 1.9;
}

/* Stat Strip */
.stat-strip {
  background: var(--accent-dark);
  padding: 2rem;
  display: flex;
  gap: 0;
  margin: 2.5rem 0;
}

.stat-item {
  flex: 1;
  border-right: 1px solid rgba(244,246,240,0.2);
  padding: 0 2rem;
  text-align: center;
}

.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }

.stat-value {
  font-size: 2rem;
  font-weight: 600;
  color: var(--bg);
  line-height: 1;
  margin-bottom: 0.4rem;
  display: block;
}

.stat-desc {
  font-size: 0.78rem;
  color: rgba(244,246,240,0.7);
  letter-spacing: 0.06em;
  line-height: 1.4;
}

/* Glossary Rail */
.glossary-rail {
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin: 2rem 0;
}

.glossary-rail-title {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}

.glossary-term {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(163,177,155,0.3);
}

.glossary-term:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.glossary-term dt {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.glossary-term dd {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.55;
  margin: 0;
}

/* Season Timeline Row layout */
.season-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.season-row:first-child { border-top: 1px solid var(--border); }
.season-row:last-child { border-bottom: none; }

.season-row .season-label {
  padding-top: 0.05rem;
  display: block;
}

.season-content {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.65;
}

.season-content strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.season-content p {
  margin-bottom: 0;
}

/* Glossary Rail Block (inline in article content) */
.glossary-rail-block {
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin: 2rem 0;
  background: rgba(82,110,90,0.04);
}

.glossary-rail-block .glossary-rail-title {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}

/* Historical Timeline */
.history-timeline {
  margin: 2rem 0;
}

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

.history-item:first-child { border-top: 1px solid var(--border); }
.history-item:last-child { border-bottom: none; }

.history-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.history-row:first-child { border-top: 1px solid var(--border); }

.history-year {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-dark);
  line-height: 1;
  padding-top: 0.1rem;
}

.history-text {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.7;
}

.history-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.history-text p {
  margin-bottom: 0;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin: 2rem 0;
}

.comparison-table th {
  text-align: left;
  padding: 0.8rem 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: rgba(82,110,90,0.08);
  border-bottom: 2px solid var(--accent-dark);
  border-right: 1px solid var(--border);
}

.comparison-table th:last-child { border-right: none; }

.comparison-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  vertical-align: top;
  color: #3a3a3a;
}

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

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--text);
  border-top: 1px solid #444;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.cookie-text {
  font-size: 0.82rem;
  color: rgba(244,246,240,0.8);
  line-height: 1.5;
  max-width: 700px;
}

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

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

.cookie-btn {
  padding: 0.55rem 1.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid rgba(244,246,240,0.3);
  background: transparent;
  color: rgba(244,246,240,0.7);
  transition: all 0.2s;
  border-radius: 0;
}

.cookie-btn.accept {
  background: var(--accent-dark);
  color: var(--bg);
  border-color: var(--accent-dark);
}

.cookie-btn:hover { opacity: 0.8; }

/* 404 */
.error-page {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.error-inner { max-width: 500px; }

.error-code {
  font-size: 5rem;
  font-weight: 600;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 1rem;
}

.error-inner h1 { margin-bottom: 0.8rem; }

.error-inner p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* MOBILE */
@media (max-width: 1024px) {
  .editorial-inner { grid-template-columns: 1fr; gap: 3rem; }
  .editorial-secondary { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 2rem; }
  .topic-grid { grid-template-columns: 1fr; }
  .topic-block { border-right: none; border-bottom: 1px solid var(--border); padding: 2rem 0; }
  .topic-block:last-child { border-bottom: none; }
  .contextual-inner { grid-template-columns: 1fr; }
  .knowledge-inner { grid-template-columns: 1fr; }
  .margin-notes { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item { border-right: none; padding-left: 0; }
  .faq-item:nth-child(even) { padding-left: 0; }
  .contact-preview-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .blogs-header-inner { grid-template-columns: 1fr; }
  .article-body-inner { grid-template-columns: 1fr; }
  .article-aside { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-left { border-right: none; border-bottom: 1px solid var(--border); }
  .season-timeline { grid-template-columns: 1fr 1fr; }
  .stat-strip { flex-wrap: wrap; }
  .stat-item { flex-basis: 50%; border-right: none; border-bottom: 1px solid rgba(244,246,240,0.2); padding: 1rem 0; }
  .stat-item:last-child { border-bottom: none; }
  .final-cta-inner { flex-direction: column; align-items: flex-start; }
  .blog-list-item { grid-template-columns: 1fr; }
  .blog-list-photo img { height: 220px; }
}

@media (max-width: 768px) {
  .nav-list { display: none; }
  .nav-toggle { display: flex; }
  .nav-list.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    gap: 1.2rem;
    z-index: 999;
  }
  .hero-content { max-width: 100%; padding: 0 1.5rem; }
  .hero-content h1 { font-size: 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .editorial-dropcap { font-size: 4rem; }
  .season-timeline { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .about-timeline .timeline-row { grid-template-columns: 1fr; gap: 0.4rem; }
  .history-row { grid-template-columns: 1fr; gap: 0.3rem; }
  .history-item { grid-template-columns: 1fr; gap: 0.3rem; }
  .season-row { grid-template-columns: 1fr; gap: 0.3rem; }
  .blogs-header-inner { gap: 2rem; }
  .contact-left, .contact-right { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .container, .editorial-intro, .topic-overview, .contextual-analysis,
  .myth-matrix, .knowledge-block, .faq-block, .contact-preview,
  .final-cta, .about-hero, .about-body, .contact-page, .legal-page,
  .blogs-header, .blogs-list, .article-hero, .article-body {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .header-inner { padding: 0 1rem; }
  .hero-content { padding: 0 1rem; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.25rem; }
}
