@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=IBM+Plex+Mono:wght@400;500&display=swap');

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

:root {
  --bg: #F4F6F4;
  --green: #2C5A4B;
  --sand: #D4C7A9;
  --ink: #1A1D1C;
  --ink-light: #4A4D4C;
  --line: 1px solid #D4C7A9;
  --max-w: 1300px;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Lora', serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

html {
  background-color: var(--bg);
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

p {
  max-width: 72ch;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink);
}

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

.section-divider {
  border: none;
  border-top: var(--line);
  margin: 0;
}

.index-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--green);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.section-block {
  padding: 140px 0;
  border-top: var(--line);
}

.section-block:first-of-type {
  border-top: none;
}

.section-block--alt {
  background-color: transparent;
}

.mono-text {
  font-family: var(--font-mono);
  font-size: 0.875rem;
}

header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--bg);
  border-bottom: var(--line);
}

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

.site-logo {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--ink);
  text-transform: uppercase;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--green);
  border-bottom-color: var(--green);
}

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

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

.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  background: var(--bg);
  border-bottom: var(--line);
  z-index: 999;
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav a {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
}

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

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

.page-body {
  margin-top: 64px;
}

footer.site-footer {
  background-color: var(--ink);
  color: var(--bg);
  padding: 80px 0 40px;
  margin-top: 140px;
  border-top: var(--line);
}

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

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(212,199,169,0.25);
}

.footer-brand {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bg);
  display: block;
  margin-bottom: 1.25rem;
}

.footer-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(244,246,244,0.65);
  max-width: 26ch;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
  display: block;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(244,246,244,0.7);
  transition: color 0.2s;
}

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

.footer-contact-item {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(244,246,244,0.7);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.footer-contact-item a {
  color: rgba(244,246,244,0.7);
}

.footer-contact-item a:hover {
  color: var(--sand);
}

.footer-hours {
  margin-top: 1rem;
}

.footer-hours-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(244,246,244,0.4);
  letter-spacing: 0.05em;
}

.footer-disclaimer {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(244,246,244,0.4);
  letter-spacing: 0.05em;
  font-style: italic;
}

.hero-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
  border-bottom: var(--line);
}

.hero-text {
  padding: 100px 4rem 80px 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: var(--line);
}

.hero-text h1 {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  max-width: 18ch;
}

.hero-text p {
  color: var(--ink-light);
  font-size: 1.0625rem;
}

.hero-image {
  overflow: hidden;
}

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

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  border-bottom: 1px solid var(--green);
  padding-bottom: 2px;
  margin-top: 2rem;
  transition: color 0.2s, border-color 0.2s;
}

.cta-link:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: var(--line);
}

.three-col-grid .col-item {
  padding: 2.5rem;
  border-right: var(--line);
}

.three-col-grid .col-item:last-child {
  border-right: none;
}

.col-item h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.col-item p {
  font-size: 0.9375rem;
  color: var(--ink-light);
  max-width: none;
}

.col-item .index-label {
  font-size: 0.65rem;
  margin-bottom: 1.25rem;
}

.research-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.research-row--reverse {
  grid-template-columns: 1fr 2fr;
}

.research-row img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.myth-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}

.myth-table th {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 2px solid var(--ink);
  color: var(--ink);
}

.myth-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: var(--line);
  font-size: 0.9375rem;
  vertical-align: top;
  line-height: 1.6;
}

.myth-table td:first-child {
  color: var(--ink-light);
  font-style: italic;
}

.myth-table td:last-child {
  color: var(--ink);
  font-weight: 500;
}

.myth-table tr:last-child td {
  border-bottom: 2px solid var(--ink);
}

.marginal-layout {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 4rem;
}

.marginal-note {
  border-top: 2px solid var(--green);
  padding-top: 1rem;
  margin-bottom: 2rem;
}

.marginal-note p {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--ink-light);
  max-width: none;
}

.marginal-note .note-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  display: block;
  margin-bottom: 0.5rem;
}

.glossary-strip {
  border-left: 3px solid var(--green);
  padding: 2rem 2rem;
  background: rgba(212,199,169,0.12);
}

.glossary-term {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: var(--line);
}

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

.glossary-term dt {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
}

.glossary-term dd {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--ink-light);
  line-height: 1.6;
}

.faq-table {
  width: 100%;
  border-collapse: collapse;
}

.faq-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  border-top: var(--line);
}

.faq-row:last-child {
  border-bottom: var(--line);
}

.faq-q {
  padding: 1.5rem;
  border-right: var(--line);
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
}

.faq-a {
  padding: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink-light);
  line-height: 1.7;
}

.contact-preview-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: var(--line);
}

.contact-preview-img {
  overflow: hidden;
}

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

.contact-preview-info {
  padding: 3rem;
  border-left: var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.contact-preview-info .index-label {
  font-size: 0.65rem;
}

.contact-detail-line {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--ink-light);
  display: flex;
  gap: 1rem;
}

.contact-detail-line span:first-child {
  color: var(--sand);
  min-width: 60px;
}

.full-width-image {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.section-number {
  font-family: var(--font-head);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 700;
  color: rgba(212,199,169,0.35);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
  letter-spacing: -0.05em;
}

.page-hero {
  padding: 100px 0 80px;
  border-bottom: var(--line);
}

.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
}

.page-hero-index {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding-top: 0.5rem;
}

.page-hero h1 {
  margin-bottom: 1.25rem;
}

.page-hero .sub {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--ink-light);
  max-width: 60ch;
  line-height: 1.7;
}

.text-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 100px 2rem 140px;
}

.text-page h1 {
  margin-bottom: 2rem;
}

.text-page h2 {
  font-size: 1.35rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-top: 2rem;
  border-top: var(--line);
}

.text-page p {
  max-width: none;
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
}

.text-page ul {
  margin: 1rem 0 1.25rem 1.25rem;
}

.text-page ul li {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.blog-list-item {
  display: grid;
  grid-template-columns: 60px 1fr 240px;
  gap: 2rem;
  align-items: start;
  padding: 3rem 0;
  border-top: var(--line);
}

.blog-list-item:last-child {
  border-bottom: var(--line);
}

.blog-list-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--sand);
  padding-top: 4px;
}

.blog-list-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.blog-list-content p {
  font-size: 0.9375rem;
  color: var(--ink-light);
  max-width: none;
  line-height: 1.65;
}

.blog-list-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}

.blog-list-meta .meta-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.blog-list-meta img {
  width: 220px;
  height: 140px;
  object-fit: cover;
}

.blog-article {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 2rem;
}

.article-header {
  padding: 80px 0 60px;
  border-bottom: var(--line);
}

.article-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.article-meta span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.article-body {
  padding: 60px 0 100px;
}

.article-body p {
  max-width: none;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.article-body h2 {
  font-size: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  padding-top: 2.5rem;
  border-top: var(--line);
}

.article-body h3 {
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 0.875rem;
}

.article-body img {
  width: 100%;
  margin: 3rem 0;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: var(--line);
  margin: 3rem 0;
}

.stat-item {
  padding: 2rem 1.5rem;
  border-right: var(--line);
  text-align: center;
}

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

.stat-num {
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--green);
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.timeline-block {
  position: relative;
  padding-left: 3rem;
  border-left: 2px solid var(--sand);
  margin: 2rem 0;
}

.timeline-entry {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-entry::before {
  content: '';
  position: absolute;
  left: -3.375rem;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--green);
}

.timeline-year {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--green);
  display: block;
  margin-bottom: 0.35rem;
}

.timeline-entry h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.timeline-entry p {
  font-size: 0.9375rem;
  color: var(--ink-light);
  max-width: none;
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.matrix-table th {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 2px solid var(--ink);
  background: rgba(212,199,169,0.15);
}

.matrix-table td {
  padding: 1rem 1.25rem;
  border-bottom: var(--line);
  font-size: 0.9375rem;
  vertical-align: top;
  font-family: var(--font-body);
  line-height: 1.6;
}

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

.two-col-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.two-col-text p {
  max-width: none;
}

.drop-cap::first-letter {
  float: left;
  font-family: var(--font-head);
  font-size: 4.5em;
  line-height: 0.75;
  margin-right: 0.1em;
  margin-top: 0.1em;
  color: var(--green);
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: var(--line);
}

.contact-form-panel {
  padding: 4rem;
  border-right: var(--line);
}

.contact-info-panel {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-field {
  margin-bottom: 1.75rem;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  display: block;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ink);
  padding: 0.75rem 0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}

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

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

.form-btn {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--ink);
  border: none;
  padding: 1rem 2.5rem;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 0;
}

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

.thank-you-center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 64px);
  padding: 4rem 2rem;
}

.thank-you-box {
  max-width: 560px;
  text-align: center;
  border: var(--line);
  padding: 4rem;
}

.thank-you-box .index-label {
  justify-content: center;
  display: flex;
  margin-bottom: 1.5rem;
}

.thank-you-box h1 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.thank-you-box p {
  max-width: none;
  font-size: 0.9375rem;
  color: var(--ink-light);
  margin-bottom: 1rem;
}

.thank-you-note {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-light);
  border-top: var(--line);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  line-height: 1.6;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.breadcrumb a,
.breadcrumb span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
}

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

.breadcrumb .sep {
  color: var(--sand);
}

.glossary-rail-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  align-items: start;
}

.about-layout {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 3rem;
  align-items: start;
}

.about-side-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-side-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--green);
  letter-spacing: 0.12em;
}

.blog-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  margin: 3rem 0 0;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.compare-table th {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 2px solid var(--ink);
}

.compare-table th:first-child {
  color: var(--ink-light);
}

.compare-table th:last-child {
  color: var(--green);
}

.compare-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: var(--line);
  font-size: 0.9375rem;
  vertical-align: top;
  line-height: 1.6;
  font-family: var(--font-body);
}

.compare-table td:first-child {
  font-style: italic;
  color: var(--ink-light);
  border-right: var(--line);
}

.compare-table tr:last-child td {
  border-bottom: 2px solid var(--ink);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--ink);
  border-top: 1px solid rgba(212,199,169,0.3);
  z-index: 9999;
  padding: 1.25rem 2rem;
  display: none;
}

.cookie-banner.visible {
  display: block;
}

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

.cookie-text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(244,246,244,0.8);
  max-width: 64ch;
  line-height: 1.6;
}

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

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

.cookie-btn {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  border: none;
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
}

.cookie-btn--accept {
  background: var(--bg);
  color: var(--ink);
}

.cookie-btn--accept:hover {
  background: var(--sand);
}

.cookie-btn--reject {
  background: transparent;
  color: rgba(244,246,244,0.6);
  border: 1px solid rgba(244,246,244,0.2);
}

.cookie-btn--reject:hover {
  background: rgba(244,246,244,0.05);
  color: rgba(244,246,244,0.9);
}

.back-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 4rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--green);
}

.section-header {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 4rem;
}

.section-header .section-number {
  font-size: clamp(3rem, 7vw, 6rem);
  margin-bottom: 0;
}

.section-header-text .index-label {
  margin-bottom: 0.75rem;
}

.section-header-text h2 {
  margin-bottom: 1rem;
}

.section-header-text p {
  color: var(--ink-light);
  font-size: 1rem;
}

.editorial-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 2rem;
}

.editorial-intro .index-label {
  display: block;
  text-align: center;
  margin-bottom: 1.5rem;
}

.editorial-intro h2 {
  margin-bottom: 1.5rem;
}

.editorial-intro p {
  max-width: 60ch;
  margin: 0 auto;
  color: var(--ink-light);
}

.full-section-img {
  margin: 0;
  line-height: 0;
}

.full-section-img img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

.contact-info-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-info-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
  display: block;
  margin-bottom: 0.25rem;
}

.contact-info-value {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.5;
}

.contact-info-value a {
  color: var(--ink);
}

.contact-info-value a:hover {
  color: var(--green);
}

.highlight-quote {
  border-left: 3px solid var(--green);
  padding: 1.25rem 1.75rem;
  margin: 2rem 0;
  background: rgba(44,90,75,0.04);
}

.highlight-quote p {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--green);
  max-width: none;
  line-height: 1.65;
}

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

.error-box {
  max-width: 560px;
  text-align: left;
  border-left: 3px solid var(--green);
  padding-left: 2rem;
}

.error-box .section-number {
  font-size: 6rem;
  color: rgba(44,90,75,0.2);
  margin-bottom: 0.5rem;
}

.error-box h1 {
  margin-bottom: 1rem;
}

.error-box p {
  color: var(--ink-light);
  margin-bottom: 2rem;
  max-width: none;
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .hero-text {
    padding: 80px 2.5rem 60px 2rem;
  }

  .three-col-grid {
    grid-template-columns: 1fr 1fr;
  }

  .three-col-grid .col-item:nth-child(2) {
    border-right: none;
  }

  .three-col-grid .col-item:nth-child(3) {
    border-top: var(--line);
    grid-column: 1 / -1;
    border-right: none;
  }

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

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3) {
    border-top: var(--line);
  }

  .marginal-layout,
  .glossary-rail-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .two-col-text {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .research-row,
  .research-row--reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-block {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-text {
    padding: 60px 2rem 40px;
    border-right: none;
    border-bottom: var(--line);
  }

  .hero-image {
    height: 280px;
  }

  .section-block {
    padding: 80px 0;
  }

  .three-col-grid {
    grid-template-columns: 1fr;
  }

  .three-col-grid .col-item {
    border-right: none;
    border-bottom: var(--line);
  }

  .three-col-grid .col-item:last-child {
    border-bottom: none;
  }

  .three-col-grid .col-item:nth-child(3) {
    grid-column: 1;
    border-top: none;
  }

  .contact-preview-block,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-preview-img {
    height: 240px;
  }

  .contact-preview-info {
    padding: 2rem;
  }

  .contact-form-panel,
  .contact-info-panel {
    padding: 2rem;
  }

  .contact-form-panel {
    border-right: none;
    border-bottom: var(--line);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .stat-strip {
    grid-template-columns: 1fr 1fr;
  }

  .faq-row {
    grid-template-columns: 1fr;
  }

  .faq-q {
    border-right: none;
    border-bottom: var(--line);
  }

  .blog-list-item {
    grid-template-columns: 40px 1fr;
    gap: 1rem;
  }

  .blog-list-meta {
    grid-column: 1 / -1;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .blog-list-meta img {
    width: 100%;
    height: 180px;
  }

  .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .page-hero-index {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .text-page {
    padding: 60px 1.5rem 80px;
  }

  .blog-article {
    padding: 0 1.5rem;
  }

  .article-body img {
    margin: 2rem 0;
  }

  .myth-table,
  .matrix-table,
  .compare-table {
    display: block;
    overflow-x: auto;
  }

  .glossary-strip {
    padding: 1.5rem;
  }

  .editorial-intro {
    padding: 60px 1.5rem;
  }

  .thank-you-box {
    padding: 2.5rem 1.5rem;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }

  .stat-strip {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: var(--line);
  }

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