@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Georgia:ital,wght@0,400;0,700;1,400&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --deep-slate: #2F3C4C;
  --deep-slate-dark: #222e3c;
  --deep-slate-light: #3a4a5c;
  --ochre: #D4AA7D;
  --ochre-dark: #bf9560;
  --sage: #8DA399;
  --sage-dark: #6e8880;
  --off-white: #F2E9E4;
  --off-white-dim: #e0d5ce;
  --text-dark: #1a2530;
  --text-mid: #4a5a6a;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: Georgia, 'Times New Roman', serif;
  --container-max: 1200px;
  --section-pad-v: 80px;
  --section-pad-v-lg: 120px;
  --border-radius: 2px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--deep-slate);
  color: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 992px) {
  .container {
    padding: 0 32px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--ochre);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--ochre-dark);
}

ul, ol {
  padding-left: 1.5em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--off-white);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--off-white);
  margin-bottom: 1.2em;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 700;
  color: var(--off-white);
}

section {
  padding: var(--section-pad-v) 0;
}

.section-lg {
  padding: var(--section-pad-v-lg) 0;
}

.section-ochre {
  background-color: var(--ochre);
  color: var(--deep-slate);
}

.section-ochre h1,
.section-ochre h2,
.section-ochre h3,
.section-ochre h4,
.section-ochre p,
.section-ochre strong {
  color: var(--deep-slate);
}

.section-sage {
  background-color: var(--sage);
  color: var(--deep-slate);
}

.section-sage h1,
.section-sage h2,
.section-sage h3,
.section-sage h4,
.section-sage p,
.section-sage strong {
  color: var(--deep-slate);
}

.section-off-white {
  background-color: var(--off-white);
  color: var(--deep-slate);
}

.section-off-white h1,
.section-off-white h2,
.section-off-white h3,
.section-off-white h4,
.section-off-white p,
.section-off-white strong {
  color: var(--deep-slate);
}

.section-dark {
  background-color: var(--deep-slate-dark);
}

.section-mid {
  background-color: var(--deep-slate-light);
}

.text-ochre { color: var(--ochre) !important; }
.text-sage { color: var(--sage) !important; }
.text-off-white { color: var(--off-white) !important; }
.text-dark-bg { color: var(--deep-slate) !important; }

.label-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 16px;
}

.section-dark .label-tag,
.section-mid .label-tag {
  color: var(--ochre);
}

.section-ochre .label-tag {
  color: var(--deep-slate);
  opacity: 0.7;
}

.section-sage .label-tag {
  color: var(--deep-slate);
  opacity: 0.7;
}

.section-off-white .label-tag {
  color: var(--deep-slate);
  opacity: 0.6;
}

.section-divider {
  width: 48px;
  height: 3px;
  background-color: var(--ochre);
  margin: 20px 0 28px 0;
  border: none;
}

.section-divider.sage {
  background-color: var(--sage);
}

.section-divider.dark {
  background-color: var(--deep-slate);
}

.section-title-block {
  margin-bottom: 48px;
}

.section-title-block.centered {
  text-align: center;
}

.section-title-block.centered .section-divider {
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--border-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  text-decoration: none;
  line-height: 1;
}

.btn-ochre {
  background-color: var(--ochre);
  color: var(--deep-slate);
  border-color: var(--ochre);
  box-shadow: 0 4px 16px rgba(212, 170, 125, 0.2);
}

.btn-ochre:hover {
  background-color: var(--ochre-dark);
  border-color: var(--ochre-dark);
  color: var(--deep-slate);
  box-shadow: 0 6px 24px rgba(212, 170, 125, 0.35);
}

.btn-outline {
  background-color: transparent;
  color: var(--off-white);
  border-color: var(--off-white);
}

.btn-outline:hover {
  background-color: var(--off-white);
  color: var(--deep-slate);
}

.btn-outline-ochre {
  background-color: transparent;
  color: var(--ochre);
  border-color: var(--ochre);
}

.btn-outline-ochre:hover {
  background-color: var(--ochre);
  color: var(--deep-slate);
}

.btn-dark {
  background-color: var(--deep-slate);
  color: var(--off-white);
  border-color: var(--deep-slate);
}

.btn-dark:hover {
  background-color: var(--deep-slate-dark);
  border-color: var(--deep-slate-dark);
  color: var(--off-white);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.two-col.gap-md {
  gap: 48px;
}

.two-col.align-start {
  align-items: start;
}

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 900px) {
  .three-col {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .three-col {
    grid-template-columns: 1fr;
  }
}

.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .four-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .four-col {
    grid-template-columns: 1fr;
  }
}

.card {
  background-color: var(--deep-slate-light);
  border-radius: var(--border-radius);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border-color: rgba(141,163,153,0.3);
  transform: scale(1.01);
}

.card-dark {
  background-color: var(--deep-slate-dark);
}

.card-off-white {
  background-color: var(--off-white);
}

.card-off-white h3,
.card-off-white h4,
.card-off-white p {
  color: var(--deep-slate);
}

.card-off-white .card-icon {
  color: var(--ochre);
}

.card-ochre-border {
  border-left: 4px solid var(--ochre);
}

.card-sage-border {
  border-left: 4px solid var(--sage);
}

.card-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
  color: var(--ochre);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 24px;
  display: block;
}

.section-image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.section-image.tall {
  min-height: 500px;
}

.image-caption {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 10px;
}

.full-width-image-wrap {
  width: 100%;
  overflow: hidden;
  margin: 48px 0;
}

.full-width-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--off-white);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  line-height: 1.6;
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list .list-bullet {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--ochre);
  margin-top: 8px;
}

.info-list .list-bullet.sage {
  background-color: var(--sage);
}

.nutrient-card {
  background-color: var(--deep-slate-dark);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 3px solid var(--ochre);
  padding: 24px;
  border-radius: var(--border-radius);
  transition: box-shadow 0.3s ease;
}

.nutrient-card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.3);
}

.nutrient-card h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ochre);
  margin-bottom: 8px;
}

.nutrient-card p {
  font-size: 0.92rem;
  color: var(--off-white-dim);
  margin: 0;
  line-height: 1.6;
}

.nutrient-card.sage-top {
  border-top-color: var(--sage);
}

.nutrient-card.sage-top h4 {
  color: var(--sage);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--off-white);
}

.data-table th {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ochre);
  text-align: left;
  padding: 16px 20px;
  border-bottom: 2px solid var(--ochre);
  background-color: rgba(0,0,0,0.2);
}

.data-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  vertical-align: top;
  line-height: 1.6;
}

.data-table tr:hover td {
  background-color: rgba(255,255,255,0.03);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table td:first-child {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--border-radius);
}

.timeline {
  position: relative;
  padding: 0;
  list-style: none;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--ochre), var(--sage));
}

.timeline-item {
  position: relative;
  padding: 0 0 48px 72px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 15px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--ochre);
  border: 3px solid var(--deep-slate);
  z-index: 1;
}

.timeline-dot.sage {
  background-color: var(--sage);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 6px;
}

.timeline-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--off-white);
}

.timeline-item p {
  font-size: 0.95rem;
  color: var(--off-white-dim);
  margin: 0;
  line-height: 1.65;
}

.myth-fact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.myth-fact-header {
  padding: 16px 24px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.myth-fact-header.myth-h {
  background-color: rgba(212,170,125,0.12);
  color: var(--ochre);
}

.myth-fact-header.fact-h {
  background-color: rgba(141,163,153,0.12);
  color: var(--sage);
}

.myth-cell {
  padding: 20px 24px;
  background-color: rgba(212,170,125,0.06);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.fact-cell {
  padding: 20px 24px;
  background-color: rgba(141,163,153,0.06);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.myth-cell p, .fact-cell p {
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.65;
}

.myth-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 8px;
  display: block;
}

.fact-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
  display: block;
}

@media (max-width: 768px) {
  .myth-fact-grid {
    grid-template-columns: 1fr;
  }
}

.glossary-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
}

.glossary-item {
  display: contents;
}

.glossary-term {
  padding: 16px 24px 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ochre);
  align-self: start;
}

.glossary-def {
  padding: 16px 0 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-left: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--off-white);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .glossary-grid {
    grid-template-columns: 1fr;
  }
  .glossary-def {
    border-left: none;
    padding: 0 0 16px 0;
  }
  .glossary-term {
    padding-bottom: 6px;
  }
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  text-align: left;
  gap: 24px;
}

.faq-question-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--off-white);
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--ochre);
  font-family: var(--font-heading);
  font-weight: 700;
  transition: background-color 0.25s ease, border-color 0.25s ease;
  line-height: 1;
}

.faq-item.open .faq-icon {
  background-color: var(--ochre);
  border-color: var(--ochre);
  color: var(--deep-slate);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
  padding: 0 0 24px 0;
}

.faq-answer-inner p {
  font-size: 0.97rem;
  color: var(--off-white-dim);
  margin: 0;
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.pull-quote {
  border-left: 4px solid var(--ochre);
  padding: 24px 32px;
  margin: 32px 0;
  background-color: rgba(212,170,125,0.07);
}

.pull-quote p {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  color: var(--ochre);
  margin: 0;
  line-height: 1.5;
}

.pull-quote.sage {
  border-left-color: var(--sage);
  background-color: rgba(141,163,153,0.07);
}

.pull-quote.sage p {
  color: var(--sage);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 3px solid var(--ochre);
}

.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--ochre);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off-white-dim);
  line-height: 1.4;
}

@media (max-width: 600px) {
  .stat-strip {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
}

.disclaimer-box {
  background-color: rgba(141,163,153,0.1);
  border: 1px solid rgba(141,163,153,0.25);
  border-left: 4px solid var(--sage);
  padding: 24px 28px;
  border-radius: var(--border-radius);
  margin-top: 32px;
}

.disclaimer-box p {
  font-size: 0.88rem;
  color: var(--off-white-dim);
  margin: 0;
  line-height: 1.7;
}

.disclaimer-box strong {
  color: var(--sage);
}

.educational-banner {
  background-color: rgba(212,170,125,0.1);
  border-top: 2px solid var(--ochre);
  border-bottom: 2px solid var(--ochre);
  padding: 16px 0;
  text-align: center;
}

.educational-banner p {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ochre);
  margin: 0;
}

.context-limitation-section {
  background-color: var(--deep-slate-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0;
}

.context-limitation-inner {
  border: 1px solid rgba(141,163,153,0.2);
  border-left: 4px solid var(--sage);
  padding: 32px;
  border-radius: var(--border-radius);
}

.context-limitation-inner h3 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage);
  margin-bottom: 16px;
}

.context-limitation-inner p {
  font-size: 0.88rem;
  color: var(--off-white-dim);
  margin-bottom: 10px;
  line-height: 1.7;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 900px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }
}

.catalog-card {
  background-color: var(--deep-slate-light);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.catalog-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
  transform: translateY(-3px);
}

.catalog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.catalog-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.catalog-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--off-white);
}

.catalog-card-body p {
  font-size: 0.9rem;
  color: var(--off-white-dim);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.catalog-aspects {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.catalog-aspects li {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sage);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 8px;
}

.catalog-aspects li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--ochre);
  flex-shrink: 0;
}

.catalog-aspects li:last-child {
  border-bottom: none;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--deep-slate-dark);
  border-top: 3px solid var(--ochre);
  z-index: 9999;
  padding: 20px 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 260px;
}

.cookie-banner-text p {
  font-size: 0.88rem;
  color: var(--off-white-dim);
  margin: 0;
  line-height: 1.6;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.cookie-btn-accept {
  background-color: var(--ochre);
  color: var(--deep-slate);
  border-color: var(--ochre);
}

.cookie-btn-accept:hover {
  background-color: var(--ochre-dark);
  border-color: var(--ochre-dark);
}

.cookie-btn-decline {
  background-color: transparent;
  color: var(--off-white);
  border-color: rgba(255,255,255,0.3);
}

.cookie-btn-decline:hover {
  border-color: var(--off-white);
}

.cookie-btn-learn {
  background-color: transparent;
  color: var(--sage);
  border-color: rgba(141,163,153,0.4);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.cookie-btn-learn:hover {
  border-color: var(--sage);
  color: var(--sage);
}

.contact-form-wrap {
  background-color: var(--deep-slate-dark);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 40px;
  border-radius: var(--border-radius);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--border-radius);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--off-white);
  transition: border-color 0.25s ease, background-color 0.25s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  background-color: rgba(255,255,255,0.08);
}

.form-group textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.65;
}

.form-disclaimer {
  background-color: rgba(141,163,153,0.08);
  border: 1px solid rgba(141,163,153,0.2);
  padding: 16px 20px;
  border-radius: var(--border-radius);
  margin-bottom: 24px;
}

.form-disclaimer p {
  font-size: 0.82rem;
  color: var(--off-white-dim);
  margin: 0;
  font-style: italic;
  line-height: 1.65;
}

.contact-details-wrap {
  padding: 0 32px 0 0;
}

.contact-detail-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.contact-detail-item:last-child {
  border-bottom: none;
}

.contact-detail-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 6px;
  display: block;
}

.contact-detail-value {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--off-white);
  line-height: 1.6;
}

.policy-page-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.policy-toc {
  background-color: var(--deep-slate-light);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 4px solid var(--ochre);
  padding: 28px 32px;
  margin-bottom: 48px;
  border-radius: var(--border-radius);
}

.policy-toc h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ochre);
  margin-bottom: 16px;
}

.policy-toc ol {
  padding-left: 1.5em;
}

.policy-toc ol li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.policy-toc ol li a {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: var(--off-white-dim);
  transition: color 0.25s ease;
}

.policy-toc ol li a:hover {
  color: var(--ochre);
}

.policy-section {
  margin-bottom: 56px;
  scroll-margin-top: 100px;
}

.policy-section h2 {
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.policy-section h3 {
  margin-top: 28px;
  margin-bottom: 14px;
  color: var(--sage);
}

.policy-section p {
  font-size: 0.97rem;
  margin-bottom: 16px;
}

.policy-section ul,
.policy-section ol {
  margin-bottom: 16px;
}

.policy-section li {
  font-size: 0.95rem;
  margin-bottom: 8px;
  line-height: 1.7;
  color: var(--off-white);
}

.numbered-clause {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  margin-bottom: 32px;
  align-items: start;
}

.clause-number {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ochre);
  line-height: 1;
  padding-top: 4px;
}

.highlight-block {
  background-color: var(--off-white);
  padding: 24px 28px;
  border-radius: var(--border-radius);
  margin: 20px 0;
}

.highlight-block p {
  color: var(--deep-slate);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.7;
}

.highlight-block strong {
  color: var(--deep-slate);
}

.warning-banner {
  background-color: var(--ochre);
  padding: 40px 0;
  margin-bottom: 0;
}

.warning-banner h2 {
  color: var(--deep-slate);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  text-align: center;
}

.thank-you-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
}

.thank-you-inner {
  max-width: 600px;
}

.thank-you-inner h1 {
  margin-bottom: 24px;
  color: var(--ochre);
}

.thank-you-inner p {
  font-size: 1.05rem;
  color: var(--off-white-dim);
  margin-bottom: 32px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ochre);
  text-decoration: none;
  transition: color 0.25s ease;
}

.back-link:hover {
  color: var(--ochre-dark);
}

.page-hero {
  background-color: var(--deep-slate-dark);
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--off-white-dim);
  max-width: 700px;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
}

.cookie-table th {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ochre);
  text-align: left;
  padding: 14px 18px;
  border-bottom: 2px solid var(--ochre);
  background-color: rgba(0,0,0,0.2);
}

.cookie-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
  vertical-align: top;
  line-height: 1.6;
  color: var(--off-white);
}

.cookie-table td:first-child {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage);
}

.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.about-mission-block {
  background-color: var(--deep-slate-dark);
  border-top: 3px solid var(--ochre);
  padding: 36px;
  border-radius: var(--border-radius);
  margin-bottom: 32px;
}

.about-mission-block h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ochre);
  margin-bottom: 12px;
}

.about-mission-block p {
  font-size: 1rem;
  margin: 0;
  line-height: 1.75;
}

.lifestyle-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.lifestyle-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}

.lifestyle-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.lifestyle-card-body {
  padding: 24px;
}

.lifestyle-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.lifestyle-card-body p {
  font-size: 0.92rem;
  color: var(--off-white-dim);
  margin: 0;
  line-height: 1.65;
}

.lifestyle-card.bg-ochre .lifestyle-card-body {
  background-color: rgba(212,170,125,0.1);
}

.lifestyle-card.bg-sage .lifestyle-card-body {
  background-color: rgba(141,163,153,0.1);
}

.lifestyle-card.bg-slate .lifestyle-card-body {
  background-color: var(--deep-slate-dark);
}

@media (max-width: 900px) {
  .contact-details-wrap {
    padding: 0;
  }
  .numbered-clause {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad-v: 56px;
    --section-pad-v-lg: 80px;
  }
  .myth-fact-grid {
    grid-template-columns: 1fr;
  }
}
