@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&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 {
  --navy: #0A1C3C;
  --navy-mid: #0e2448;
  --navy-light: #132d5e;
  --ocher: #E0B34F;
  --ocher-dark: #c99b38;
  --moss: #5A7A6F;
  --moss-light: #6d9085;
  --beige: #D1D1CB;
  --beige-light: #eaeae6;
  --beige-dark: #b8b8b2;
  --white: #F4F4F0;
  --text-dark: #0A1C3C;
  --text-mid: #3a4a5c;
  --text-muted: #7a8898;
  --divider: #c8c8c2;
  --radius: 4px;
  --shadow-sm: 0 2px 8px rgba(10,28,60,0.08);
  --shadow-md: 0 6px 24px rgba(10,28,60,0.12);
  --shadow-lg: 0 16px 48px rgba(10,28,60,0.18);
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', Georgia, serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.nav-link, .btn, .footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.35;
}

p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.75;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--ocher);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--ocher-dark);
  text-decoration: underline;
}

ul, ol {
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.container--narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}

.container--wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ========================
   HEADER
======================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(10, 28, 60, 0.97);
  border-bottom: 1px solid rgba(224, 179, 79, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background-color: var(--ocher);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.logo-mark span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: -0.05em;
}

.logo-text {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header-logo:hover .logo-text {
  color: var(--ocher);
  text-decoration: none;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-nav li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 244, 240, 0.75);
  padding: 8px 14px;
  display: block;
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.header-nav li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background-color: var(--ocher);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.header-nav li a:hover,
.header-nav li a.active {
  color: var(--white);
  text-decoration: none;
}

.header-nav li a:hover::after,
.header-nav li a.active::after {
  transform: scaleX(1);
}

.header-nav li a.active {
  color: var(--ocher);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  transition: all var(--transition);
}

/* ========================
   FOOTER
======================== */

.site-footer {
  background-color: var(--navy);
  color: rgba(209, 209, 203, 0.8);
  padding-top: 72px;
  padding-bottom: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(209, 209, 203, 0.12);
}

.footer-brand .logo-text {
  color: var(--white);
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(209, 209, 203, 0.7);
  margin-bottom: 0;
}

.footer-brand .edu-note {
  margin-top: 20px;
  padding: 12px 16px;
  border-left: 3px solid var(--ocher);
  background-color: rgba(224, 179, 79, 0.07);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ocher);
  text-transform: uppercase;
}

.footer-col h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--beige-dark);
  margin-bottom: 20px;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(209, 209, 203, 0.65);
  text-decoration: none;
  transition: color var(--transition);
  font-family: 'Lora', Georgia, serif;
}

.footer-nav a:hover {
  color: var(--ocher);
  text-decoration: none;
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 14px;
}

.footer-contact-item .label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--beige-dark);
  font-weight: 600;
}

.footer-contact-item .value {
  font-size: 0.875rem;
  color: rgba(209, 209, 203, 0.75);
  line-height: 1.5;
}

.footer-contact-item a {
  color: rgba(209, 209, 203, 0.75);
}

.footer-contact-item a:hover {
  color: var(--ocher);
  text-decoration: none;
}

.footer-hours {
  margin-top: 8px;
}

.footer-hours .hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(209, 209, 203, 0.6);
  padding: 4px 0;
  border-bottom: 1px solid rgba(209, 209, 203, 0.07);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(209, 209, 203, 0.4);
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(209, 209, 203, 0.4);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal-links a:hover {
  color: var(--ocher);
  text-decoration: none;
}

/* ========================
   COOKIE BANNER
======================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: var(--navy);
  border-top: 2px solid var(--ocher);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.88rem;
  color: rgba(209, 209, 203, 0.85);
  line-height: 1.6;
  font-family: 'Lora', Georgia, serif;
  min-width: 260px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ========================
   BUTTONS
======================== */

.btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  border-radius: var(--radius);
  line-height: 1;
}

.btn-primary {
  background-color: var(--ocher);
  color: var(--navy);
  border-color: var(--ocher);
}

.btn-primary:hover {
  background-color: var(--ocher-dark);
  border-color: var(--ocher-dark);
  color: var(--navy);
  text-decoration: none;
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(244, 244, 240, 0.4);
}

.btn-outline:hover {
  border-color: var(--ocher);
  color: var(--ocher);
  text-decoration: none;
}

.btn-ghost {
  background-color: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-ghost:hover {
  background-color: var(--navy);
  color: var(--white);
  text-decoration: none;
}

.btn-moss {
  background-color: var(--moss);
  color: var(--white);
  border-color: var(--moss);
}

.btn-moss:hover {
  background-color: var(--moss-light);
  border-color: var(--moss-light);
  color: var(--white);
  text-decoration: none;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.72rem;
}

/* ========================
   PAGE OFFSET (fixed header)
======================== */

.page-body {
  padding-top: 72px;
}

/* ========================
   SECTION COMMONS
======================== */

.section {
  padding: 96px 0;
}

.section--dark {
  background-color: var(--navy);
  color: var(--white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section--dark p {
  color: rgba(209, 209, 203, 0.85);
}

.section--beige {
  background-color: var(--beige-light);
}

.section--navy-mid {
  background-color: var(--navy-mid);
  color: var(--white);
}

.section--navy-mid h2,
.section--navy-mid h3 {
  color: var(--white);
}

.section--navy-mid p {
  color: rgba(209, 209, 203, 0.85);
}

.section-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ocher);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  margin-bottom: 20px;
  color: var(--navy);
}

.section-title--light {
  color: var(--white);
}

.section-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 640px;
  margin-bottom: 48px;
}

.section-intro--light {
  color: rgba(209, 209, 203, 0.8);
}

.divider-line {
  width: 48px;
  height: 3px;
  background-color: var(--ocher);
  margin: 20px 0 32px;
}

.divider-line--center {
  margin: 20px auto 32px;
}

/* ========================
   HERO SECTION
======================== */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(10, 28, 60, 0.95) 0%,
    rgba(10, 28, 60, 0.65) 50%,
    rgba(10, 28, 60, 0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 96px 0;
}

.hero-content .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: 64px;
}

.hero-left {
  max-width: 680px;
}

.hero-left .section-label {
  margin-bottom: 24px;
}

.hero-left h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(209, 209, 203, 0.85);
  margin-bottom: 40px;
  font-family: 'Lora', Georgia, serif;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-self: flex-end;
}

.hero-stat-block {
  border-left: 3px solid var(--ocher);
  padding: 16px 20px;
  background-color: rgba(10, 28, 60, 0.5);
  backdrop-filter: blur(4px);
}

.hero-stat-block .stat-num {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--ocher);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-block .stat-label {
  font-size: 0.85rem;
  color: rgba(209, 209, 203, 0.75);
  line-height: 1.4;
  font-family: 'Lora', Georgia, serif;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(209, 209, 203, 0.4);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--ocher), transparent);
}

/* ========================
   INTRO STRIP
======================== */

.intro-strip {
  background-color: var(--ocher);
  padding: 24px 0;
}

.intro-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.intro-strip p {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0;
}

.intro-strip-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(10, 28, 60, 0.35);
}

/* ========================
   CONTENT SECTIONS
======================== */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

.two-col-text {
  padding: 16px 0;
}

.two-col-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.two-col-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.two-col-image:hover img {
  transform: scale(1.02);
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(10,28,60,0.8), transparent);
}

.image-caption span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(209, 209, 203, 0.7);
}

.definition-block {
  background-color: var(--beige-light);
  border-left: 4px solid var(--moss);
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.definition-block .def-term {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 8px;
}

.definition-block p {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 0;
}

.pullquote {
  border-top: 2px solid var(--ocher);
  border-bottom: 2px solid var(--ocher);
  padding: 28px 0;
  margin: 40px 0;
}

.pullquote p {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
  margin: 0;
  font-family: 'Lora', Georgia, serif;
}

/* ========================
   TIMELINE
======================== */

.timeline {
  position: relative;
  padding: 16px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--ocher), var(--moss), transparent);
}

.timeline-item {
  display: flex;
  gap: 40px;
  padding-left: 64px;
  margin-bottom: 56px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 16px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--ocher);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--ocher);
  flex-shrink: 0;
  z-index: 1;
}

.timeline-year {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ocher);
  white-space: nowrap;
  padding-top: 4px;
  min-width: 100px;
}

.timeline-text h3 {
  margin-bottom: 10px;
  color: var(--white);
}

.timeline-text p {
  font-size: 0.92rem;
  color: rgba(209, 209, 203, 0.75);
  margin: 0;
}

/* ========================
   STAT STRIP
======================== */

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: rgba(209, 209, 203, 0.2);
  border: 1px solid rgba(209, 209, 203, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 48px 0;
}

.stat-strip-item {
  padding: 32px 24px;
  background-color: var(--beige-light);
  text-align: center;
}

.stat-strip-item .s-num {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-strip-item .s-label {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.45;
}

/* ========================
   CARDS
======================== */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.cards-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.cards-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card-dark {
  background-color: var(--navy-light);
}

.card-dark .card-body h3 {
  color: var(--white);
}

.card-dark .card-body p {
  color: rgba(209, 209, 203, 0.75);
}

.card-beige {
  background-color: var(--beige-light);
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon-svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: var(--ocher);
  stroke-width: 1.5;
}

.card-img {
  height: 220px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img img {
  transform: scale(1.04);
}

.card-body {
  padding: 28px;
}

.card-body h3 {
  margin-bottom: 12px;
}

.card-body p {
  font-size: 0.92rem;
  margin-bottom: 0;
  color: var(--text-mid);
}

.card-tag {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 12px;
}

/* ========================
   MYTH/REALITY TABLE
======================== */

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  font-size: 0.95rem;
}

.comparison-table thead tr {
  background-color: var(--navy);
}

.comparison-table thead th {
  padding: 16px 24px;
  text-align: left;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ocher);
  border: none;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--divider);
  transition: background-color var(--transition);
}

.comparison-table tbody tr:hover {
  background-color: var(--beige-light);
}

.comparison-table tbody td {
  padding: 20px 24px;
  vertical-align: top;
  line-height: 1.65;
}

.comparison-table .myth-col {
  color: var(--text-mid);
  font-style: italic;
}

.comparison-table .fact-col {
  color: var(--navy);
  font-weight: 500;
}

.myth-badge {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  background-color: rgba(90, 122, 111, 0.1);
  color: var(--moss);
  margin-bottom: 6px;
  display: block;
}

.fact-badge {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  background-color: rgba(224, 179, 79, 0.15);
  color: var(--ocher-dark);
  margin-bottom: 6px;
  display: block;
}

/* ========================
   GLOSSARY RAIL
======================== */

.glossary-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}

.glossary-rail {
  position: sticky;
  top: 96px;
  background-color: var(--navy);
  padding: 32px;
  border-radius: var(--radius);
}

.glossary-rail h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocher);
  margin-bottom: 24px;
  color: var(--ocher);
}

.glossary-term {
  padding: 14px 0;
  border-bottom: 1px solid rgba(209, 209, 203, 0.1);
}

.glossary-term:last-child {
  border-bottom: none;
}

.glossary-term .g-term {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--beige);
  margin-bottom: 4px;
}

.glossary-term .g-def {
  font-size: 0.82rem;
  color: rgba(209, 209, 203, 0.6);
  line-height: 1.5;
  margin: 0;
}

/* ========================
   QA BLOCKS
======================== */

.qa-block {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--divider);
}

.qa-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.qa-question {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.qa-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--ocher);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--navy);
  flex-shrink: 0;
  margin-top: 4px;
}

.qa-question h3 {
  margin: 0;
  padding-top: 4px;
}

.key-findings {
  background-color: var(--navy);
  border-left: 4px solid var(--moss);
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}

.key-findings .kf-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moss-light);
  margin-bottom: 12px;
}

.key-findings ul {
  margin: 0;
  padding-left: 20px;
}

.key-findings li {
  font-size: 0.92rem;
  color: rgba(209, 209, 203, 0.85);
  margin-bottom: 8px;
}

/* ========================
   MATRIX
======================== */

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background-color: var(--divider);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 40px 0;
}

.matrix-cell {
  background-color: var(--white);
  padding: 28px 24px;
}

.matrix-cell--header {
  background-color: var(--navy);
  color: var(--white);
}

.matrix-cell--accent {
  background-color: var(--beige-light);
}

.matrix-cell h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ocher);
  margin-bottom: 8px;
}

.matrix-cell--header h4 {
  color: var(--ocher);
}

.matrix-cell p {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.55;
}

.matrix-cell--header p {
  color: rgba(209, 209, 203, 0.75);
}

/* ========================
   INFO BOXES
======================== */

.info-box {
  padding: 28px 32px;
  border-radius: var(--radius);
  margin: 32px 0;
}

.info-box--ocher {
  background-color: rgba(224, 179, 79, 0.1);
  border: 1px solid rgba(224, 179, 79, 0.3);
}

.info-box--moss {
  background-color: rgba(90, 122, 111, 0.1);
  border: 1px solid rgba(90, 122, 111, 0.3);
}

.info-box--navy {
  background-color: var(--navy);
  border: 1px solid rgba(209, 209, 203, 0.1);
}

.info-box--warning {
  background-color: rgba(180, 60, 60, 0.07);
  border: 1.5px solid rgba(180, 60, 60, 0.3);
  border-left: 4px solid #b43c3c;
}

.info-box .ib-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocher);
  margin-bottom: 12px;
}

.info-box--navy .ib-label {
  color: var(--ocher);
}

.info-box--warning .ib-label {
  color: #b43c3c;
}

.info-box p {
  font-size: 0.92rem;
  margin-bottom: 0;
  line-height: 1.65;
}

.info-box--navy p {
  color: rgba(209, 209, 203, 0.8);
}

/* ========================
   ACCORDION (FAQ)
======================== */

.accordion-item {
  border-bottom: 1px solid var(--divider);
}

.accordion-item:first-child {
  border-top: 1px solid var(--divider);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.accordion-trigger h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  text-align: left;
}

.accordion-arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.accordion-arrow svg {
  width: 12px;
  height: 12px;
  stroke: var(--text-mid);
  fill: none;
  stroke-width: 2;
  transition: transform var(--transition);
}

.accordion-item.open .accordion-arrow {
  background-color: var(--ocher);
  border-color: var(--ocher);
}

.accordion-item.open .accordion-arrow svg {
  stroke: var(--navy);
  transform: rotate(180deg);
}

.accordion-body {
  display: none;
  padding-bottom: 24px;
}

.accordion-body p {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 12px;
  line-height: 1.75;
}

.accordion-body p:last-child {
  margin-bottom: 0;
}

.accordion-item.open .accordion-body {
  display: block;
}

.faq-category-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moss);
  padding: 32px 0 8px;
  display: block;
}

.faq-search-wrap {
  position: relative;
  max-width: 480px;
  margin-bottom: 48px;
}

.faq-search {
  width: 100%;
  padding: 14px 48px 14px 20px;
  border: 1.5px solid var(--divider);
  border-radius: var(--radius);
  font-family: 'Lora', Georgia, serif;
  font-size: 0.95rem;
  color: var(--navy);
  background-color: var(--white);
  outline: none;
  transition: border-color var(--transition);
}

.faq-search:focus {
  border-color: var(--ocher);
}

.faq-search-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
}

/* ========================
   CONTACT FORM
======================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--divider);
  border-radius: var(--radius);
  font-family: 'Lora', Georgia, serif;
  font-size: 0.95rem;
  color: var(--navy);
  background-color: var(--white);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--ocher);
}

textarea.form-control {
  resize: vertical;
  min-height: 160px;
}

.form-disclaimer {
  background-color: var(--beige-light);
  border: 1px solid var(--divider);
  padding: 20px 24px;
  border-radius: var(--radius);
  margin-bottom: 28px;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.contact-info-block {
  background-color: var(--navy);
  padding: 40px;
  border-radius: var(--radius);
  color: var(--white);
  position: sticky;
  top: 96px;
}

.contact-info-block h3 {
  color: var(--white);
  margin-bottom: 32px;
  font-size: 1rem;
}

.contact-info-item {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(209, 209, 203, 0.1);
}

.contact-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-info-item .ci-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocher);
  margin-bottom: 6px;
}

.contact-info-item p {
  font-size: 0.88rem;
  color: rgba(209, 209, 203, 0.75);
  margin: 0;
  line-height: 1.6;
}

.contact-info-item a {
  color: rgba(209, 209, 203, 0.75);
}

.contact-info-item a:hover {
  color: var(--ocher);
  text-decoration: none;
}

/* ========================
   LEGAL PAGES
======================== */

.legal-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 96px;
}

.legal-toc h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.legal-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-toc li {
  margin-bottom: 8px;
}

.legal-toc a {
  font-size: 0.82rem;
  color: var(--text-mid);
  text-decoration: none;
  transition: color var(--transition);
}

.legal-toc a:hover {
  color: var(--ocher);
  text-decoration: none;
}

.legal-content h2 {
  margin-top: 56px;
  margin-bottom: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--divider);
  font-size: 1.3rem;
}

.legal-content h2:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.legal-content h3 {
  margin-top: 32px;
  margin-bottom: 14px;
  font-size: 1rem;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 1.25rem;
}

.legal-content strong {
  font-weight: 600;
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: rgba(10, 28, 60, 0.3);
  text-underline-offset: 3px;
}

.important-box {
  border: 1.5px solid var(--navy);
  background-color: var(--beige-light);
  padding: 20px 24px;
  border-radius: var(--radius);
  margin: 24px 0;
}

.important-box .ib-head {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}

.important-box p {
  font-size: 0.9rem;
  margin: 0;
}

/* ========================
   COOKIE TABLE
======================== */

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin: 24px 0;
}

.cookie-table thead {
  background-color: var(--navy);
}

.cookie-table thead th {
  padding: 14px 20px;
  text-align: left;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ocher);
  white-space: nowrap;
}

.cookie-table tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--divider);
  vertical-align: top;
  line-height: 1.6;
  color: var(--text-mid);
}

.cookie-type-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--moss);
}

.cookie-type-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--moss);
  fill: none;
  stroke-width: 2;
}

/* ========================
   HEALTH DISCLAIMER
======================== */

.disclaimer-hero {
  background-color: var(--navy);
  padding: 80px 0;
  text-align: center;
}

.disclaimer-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.warning-block {
  border: 2px solid #c0392b;
  border-left: 6px solid #c0392b;
  background-color: rgba(192, 57, 43, 0.05);
  padding: 32px 40px;
  border-radius: var(--radius);
  margin: 40px 0;
}

.warning-block .wb-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c0392b;
  margin-bottom: 14px;
}

.warning-block p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin: 0;
}

.warning-block p + p {
  margin-top: 12px;
}

.disclaimer-core-text {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #c0392b;
  text-align: center;
  line-height: 1.4;
  padding: 40px 0;
  border-top: 1px solid rgba(192, 57, 43, 0.2);
  border-bottom: 1px solid rgba(192, 57, 43, 0.2);
  margin: 48px 0;
}

/* ========================
   THANK YOU
======================== */

.thankyou-wrap {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 32px;
}

.thankyou-card {
  text-align: center;
  max-width: 520px;
  padding: 64px 48px;
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.thankyou-check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--moss);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.thankyou-check svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
  stroke-width: 2.5;
  fill: none;
}

.thankyou-card h1 {
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.thankyou-card p {
  color: var(--text-mid);
  margin-bottom: 32px;
}

/* ========================
   ABOUT PAGE
======================== */

.mission-quote {
  background-color: var(--navy);
  padding: 56px 64px;
  position: relative;
  overflow: hidden;
}

.mission-quote::before {
  content: '\201C';
  font-family: 'Lora', Georgia, serif;
  font-size: 12rem;
  color: rgba(224, 179, 79, 0.08);
  position: absolute;
  top: -20px;
  left: 32px;
  line-height: 1;
}

.mission-quote p {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--beige);
  line-height: 1.65;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.mission-quote .mq-source {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ocher);
  position: relative;
  z-index: 1;
}

/* ========================
   METHODOLOGY COMPARISON
======================== */

.methodology-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 40px 0;
}

.methodology-table thead {
  background-color: var(--navy);
}

.methodology-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ocher);
}

.methodology-table tbody tr {
  border-bottom: 1px solid var(--divider);
}

.methodology-table tbody tr:hover {
  background-color: var(--beige-light);
}

.methodology-table tbody td {
  padding: 18px 20px;
  vertical-align: top;
  line-height: 1.6;
  color: var(--text-mid);
}

.methodology-table .method-name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.88rem;
}

/* ========================
   WISSEN IM FOKUS
======================== */

.wissen-box {
  background-color: var(--navy);
  border-top: 3px solid var(--ocher);
  padding: 28px 32px;
  margin: 32px 0;
  border-radius: 0 0 var(--radius) var(--radius);
}

.wissen-box .wib-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocher);
  margin-bottom: 10px;
}

.wissen-box p {
  font-size: 0.92rem;
  color: rgba(209, 209, 203, 0.85);
  margin: 0;
  line-height: 1.65;
}

/* ========================
   ADVICES BLOCKS
======================== */

.advice-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--divider);
}

.advice-block:last-child {
  border-bottom: none;
}

.advice-block--reverse {
  direction: rtl;
}

.advice-block--reverse > * {
  direction: ltr;
}

.advice-block-img {
  height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
}

.advice-block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================
   INLINE DISCLAIMER
======================== */

.inline-disclaimer {
  background-color: var(--beige-light);
  border: 1px solid var(--divider);
  border-left: 4px solid var(--moss);
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 48px 0;
}

.inline-disclaimer .id-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 10px;
}

.inline-disclaimer p {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.7;
}

.inline-disclaimer p + p {
  margin-top: 8px;
}

/* ========================
   PAGE HEADER (inner pages)
======================== */

.page-header {
  background-color: var(--navy);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--ocher), var(--moss));
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-header p {
  color: rgba(209, 209, 203, 0.75);
  max-width: 600px;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  list-style: none;
  padding: 0;
}

.breadcrumb li {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(209, 209, 203, 0.45);
  margin: 0;
}

.breadcrumb li a {
  color: rgba(209, 209, 203, 0.45);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb li a:hover {
  color: var(--ocher);
  text-decoration: none;
}

.breadcrumb li.active {
  color: var(--ocher);
}

.breadcrumb-sep {
  color: rgba(209, 209, 203, 0.25);
}

/* ========================
   WIDE SECTION
======================== */

.wide-statement {
  padding: 80px 0;
  background-color: var(--navy-mid);
  text-align: center;
}

.wide-statement h2 {
  color: var(--white);
  max-width: 860px;
  margin: 0 auto 24px;
}

.wide-statement p {
  color: rgba(209, 209, 203, 0.75);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ========================
   RESPONSIVE
======================== */

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .two-col {
    gap: 48px;
  }

  .cards-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-info-block {
    position: static;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
    display: none;
  }

  .glossary-layout {
    grid-template-columns: 1fr;
  }

  .glossary-rail {
    position: static;
  }
}

@media (max-width: 900px) {
  .hero-content .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-right {
    flex-direction: row;
    gap: 16px;
  }

  .hero-stat-block {
    flex: 1;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-col--reverse {
    direction: ltr;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .matrix-grid {
    grid-template-columns: 1fr;
  }

  .advice-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .advice-block--reverse {
    direction: ltr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .container, .container--narrow, .container--wide {
    padding: 0 20px;
  }

  .section {
    padding: 64px 0;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-right {
    flex-direction: column;
  }

  .cards-grid,
  .cards-grid--2,
  .cards-grid--4 {
    grid-template-columns: 1fr;
  }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-toggle {
    display: flex;
  }

  .header-nav {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background-color: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 32px;
    transform: translateY(-110%);
    transition: transform 0.35s ease;
    border-bottom: 1px solid rgba(224, 179, 79, 0.15);
    gap: 0;
  }

  .header-nav.open {
    transform: translateY(0);
  }

  .header-nav li a {
    padding: 12px 0;
    font-size: 0.9rem;
  }

  .header-inner {
    padding: 0 20px;
  }

  .cookie-inner {
    padding: 0 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .two-col-image img {
    height: 280px;
  }

  .mission-quote {
    padding: 36px 28px;
  }

  .mission-quote p {
    font-size: 1.1rem;
  }

  .thankyou-card {
    padding: 40px 28px;
  }

  .disclaimer-core-text {
    font-size: 1.1rem;
  }

  .warning-block {
    padding: 24px 20px;
  }
}
