@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+3:wght@300;400;600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #1a2744;
  --navy-dark: #111c35;
  --navy-light: #223360;
  --gray-warm: #f2efe9;
  --gray-warm-dark: #e8e4dc;
  --gray-warm-mid: #c8c2b8;
  --gray-warm-text: #7a7468;
  --forest: #3a5c3e;
  --forest-light: #4d7a52;
  --forest-pale: #eaf2eb;
  --ocre: #c8a84b;
  --ocre-light: #e8c96a;
  --ocre-pale: #faf4e4;
  --white: #ffffff;
  --text-dark: #1a2744;
  --text-body: #3a3832;
  --text-light: #6a6560;
  --border-light: #ddd8d0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  color: var(--text-body);
  background-color: var(--gray-warm);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.8rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.6rem); letter-spacing: -0.005em; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { line-height: 1.75; color: var(--text-body); }

a { text-decoration: none; color: inherit; transition: color 0.25s ease; }

img { display: block; max-width: 100%; height: auto; }

ul, ol { padding-left: 1.5rem; }
li { line-height: 1.75; margin-bottom: 0.4rem; }

.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
}

.container--narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

section { position: relative; }

.section-pad { padding: 96px 0; }
.section-pad--sm { padding: 64px 0; }
.section-pad--lg { padding: 120px 0; }

.text-balance { text-wrap: balance; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* SITE HEADER */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background-color: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.header-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.header-logo:hover { color: var(--ocre); }

.header-logo span {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--ocre);
  border-radius: 50%;
  margin-left: 3px;
  vertical-align: super;
}

.site-nav { display: flex; align-items: center; gap: 0; }

.site-nav a {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.site-nav a:hover { color: var(--white); border-bottom-color: var(--ocre); }
.site-nav a.active { color: var(--white); border-bottom-color: var(--forest-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* FOOTER */
.site-footer {
  background-color: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 300px;
}

.footer-edu-notice {
  margin-top: 20px;
  padding: 12px 16px;
  background: rgba(200,168,75,0.12);
  border-left: 3px solid var(--ocre);
  font-size: 0.82rem;
  color: var(--ocre-light);
  font-style: italic;
}

.footer-col h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.25s ease;
}

.footer-col ul li a:hover { color: var(--ocre-light); }

.footer-contact-info { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.55); }
.footer-contact-info a { color: rgba(255,255,255,0.7); }
.footer-contact-info a:hover { color: var(--ocre-light); }

.footer-hours {
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.25s ease;
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--navy-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(17,28,53,0.92) 0%, rgba(17,28,53,0.6) 55%, rgba(17,28,53,0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: 120px;
}

.hero-eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ocre);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px; height: 1px;
  background: var(--ocre);
}

.hero h1 {
  color: var(--white);
  max-width: 720px;
  margin-bottom: 28px;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
}

.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--forest-light);
  border-radius: 50%;
}

.hero-edu-notice {
  padding: 14px 24px;
  background: rgba(200,168,75,0.15);
  border-left: 3px solid var(--ocre);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
  max-width: 640px;
  margin-top: 20px;
}

/* SECTIONS */
.section-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ocre);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--ocre);
}

.section-divider {
  width: 60px; height: 3px;
  background: var(--forest);
  margin: 20px 0;
}

.section-divider--light {
  background: rgba(255,255,255,0.3);
}

/* TWO-COLUMN LAYOUT */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.two-col--60-40 { grid-template-columns: 3fr 2fr; }
.two-col--40-60 { grid-template-columns: 2fr 3fr; }

.two-col-text {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.two-col-img {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.two-col-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.two-col-img:hover img { transform: scale(1.03); }

.two-col-text p { color: var(--text-body); margin-bottom: 16px; font-size: 1.02rem; }

/* BG VARIANTS */
.bg-navy { background-color: var(--navy); }
.bg-navy-dark { background-color: var(--navy-dark); }
.bg-gray-warm { background-color: var(--gray-warm); }
.bg-gray-warm-dark { background-color: var(--gray-warm-dark); }
.bg-forest { background-color: var(--forest); }
.bg-ocre-pale { background-color: var(--ocre-pale); }
.bg-forest-pale { background-color: var(--forest-pale); }
.bg-white { background-color: var(--white); }

.text-white { color: var(--white) !important; }
.text-white h1, .text-white h2, .text-white h3, .text-white h4 { color: var(--white); }
.text-white p { color: rgba(255,255,255,0.78); }

/* CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 40px rgba(26,39,68,0.1);
  transform: translateY(-3px);
}

.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.05); }

.card-body { padding: 28px 28px 32px; }
.card-body h3 { font-size: 1.2rem; margin-bottom: 12px; }
.card-body p { font-size: 0.93rem; color: var(--text-light); line-height: 1.7; }

.card-tag {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--forest);
  margin-bottom: 10px;
  display: block;
}

/* FULL-WIDTH OVERLAY SECTION */
.fw-overlay {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.fw-overlay-bg {
  position: absolute;
  inset: 0;
}

.fw-overlay-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.fw-overlay-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17,28,53,0.88) 0%, rgba(17,28,53,0.5) 70%, transparent 100%);
}

.fw-overlay-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 80px 40px 80px 0;
}

.fw-overlay-content h2 { color: var(--white); margin-bottom: 20px; }
.fw-overlay-content p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 12px; }

/* NUMBERED PANELS */
.panels-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.panel-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  align-items: start;
  padding: 32px;
  background: var(--white);
  border-left: 4px solid var(--forest);
  box-shadow: 0 2px 16px rgba(26,39,68,0.06);
}

.panel-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--forest);
  opacity: 0.35;
  line-height: 1;
}

.panel-text h3 { margin-bottom: 10px; }
.panel-text p { font-size: 0.97rem; color: var(--text-light); }

/* FAQ / ACCORDION */
.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 28px 0;
}

.faq-item:first-child { border-top: 1px solid var(--border-light); }

.faq-question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  flex: 1;
}

.faq-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gray-warm-text);
  flex-shrink: 0;
  margin-top: 2px;
  transition: background 0.25s, color 0.25s;
}

.faq-item.open .faq-icon {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.faq-answer {
  display: none;
  padding-top: 16px;
}

.faq-item.open .faq-answer { display: block; }

.faq-answer p {
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* CTA SECTION */
.cta-section {
  background-color: var(--forest);
  padding: 96px 0;
  text-align: center;
}

.cta-section h2 { color: var(--white); margin-bottom: 20px; }
.cta-section p { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 520px; margin: 0 auto 36px; }

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--ocre);
  color: var(--navy-dark);
}

.btn-primary:hover {
  background: var(--ocre-light);
  box-shadow: 0 4px 20px rgba(200,168,75,0.3);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.45);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-forest {
  background: var(--forest);
  color: var(--white);
}

.btn-forest:hover {
  background: var(--forest-light);
  box-shadow: 0 4px 20px rgba(58,92,62,0.3);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-light);
  box-shadow: 0 4px 20px rgba(26,39,68,0.25);
}

/* SUPPLEMENTS ICONS (CSS) */
.suppl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.suppl-item {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border-light);
  text-align: center;
}

.suppl-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.suppl-icon svg {
  width: 40px; height: 40px;
  stroke: var(--forest);
  fill: none;
  stroke-width: 1.5;
}

.suppl-item h3 { font-size: 1rem; margin-bottom: 8px; }
.suppl-item p { font-size: 0.85rem; color: var(--text-light); line-height: 1.65; }

/* PAGE HERO (inner pages) */
.page-hero {
  background-color: var(--navy);
  padding: 140px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--forest) 0%, var(--ocre) 50%, transparent 100%);
}

.page-hero-eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ocre);
  margin-bottom: 16px;
}

.page-hero h1 { color: var(--white); max-width: 780px; }
.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 600px;
  margin-top: 20px;
  line-height: 1.75;
}

/* DISCLAIMER BOX */
.disclaimer-box {
  padding: 24px 28px;
  background: var(--ocre-pale);
  border-left: 4px solid var(--ocre);
  margin: 32px 0;
}

.disclaimer-box p {
  font-size: 0.92rem;
  color: var(--text-body);
  font-style: italic;
  line-height: 1.7;
}

/* INFO STRIP */
.info-strip {
  background: var(--navy-dark);
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.info-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* FACT BOX */
.fact-box {
  background: var(--navy);
  color: var(--white);
  padding: 28px 32px;
  margin: 32px 0;
}

.fact-box h4 {
  color: var(--ocre);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.fact-box p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }

/* STAT STRIP */
.stat-strip {
  background: var(--gray-warm-dark);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 28px 0;
  display: flex;
  align-items: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border-light);
}

.stat-item:last-child { border-right: none; }

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
}

.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-top: 4px;
  display: block;
}

/* GLOSSARY RAIL */
.glossary-rail {
  position: sticky;
  top: 90px;
  background: var(--gray-warm-dark);
  border: 1px solid var(--border-light);
  padding: 24px;
}

.glossary-rail h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-light);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.glossary-rail ul { list-style: none; padding: 0; }
.glossary-rail ul li { margin-bottom: 8px; }

.glossary-rail ul li a {
  font-size: 0.88rem;
  color: var(--navy);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.glossary-rail ul li a:hover {
  color: var(--forest);
  border-bottom-color: var(--forest);
}

/* BLOG GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 8px 40px rgba(26,39,68,0.1);
  transform: translateY(-4px);
}

.blog-card-img {
  height: 240px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-body { padding: 28px; }

.blog-card-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--forest);
  margin-bottom: 12px;
  display: block;
}

.blog-card-body h3 { font-size: 1.15rem; margin-bottom: 12px; line-height: 1.35; }
.blog-card-body p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }

.blog-card-link {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}

.blog-card-link:hover { color: var(--forest); border-color: var(--forest); }

.blog-card-link::after {
  content: '→';
  transition: transform 0.25s;
}

.blog-card:hover .blog-card-link::after { transform: translateX(4px); }

/* ARTICLE PAGE */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}

.article-content h2 { font-size: 1.75rem; margin: 40px 0 16px; color: var(--navy); }
.article-content h3 { font-size: 1.25rem; margin: 28px 0 12px; color: var(--navy); }
.article-content p { margin-bottom: 20px; font-size: 1.02rem; line-height: 1.8; }
.article-content ul, .article-content ol { margin-bottom: 20px; }
.article-content ul li, .article-content ol li { font-size: 1rem; line-height: 1.78; }
.article-content img { width: 100%; margin: 32px 0; border: 1px solid var(--border-light); }

.article-sidebar {
  position: sticky;
  top: 90px;
}

.side-panel {
  background: var(--gray-warm-dark);
  border: 1px solid var(--border-light);
  padding: 24px;
  margin-bottom: 24px;
}

.side-panel h4 {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-light);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.side-panel ul { list-style: none; padding: 0; }
.side-panel ul li { font-size: 0.88rem; color: var(--text-body); padding: 8px 0; border-bottom: 1px solid var(--border-light); }
.side-panel ul li:last-child { border-bottom: none; }

/* POLICY PAGES */
.policy-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 64px;
  align-items: start;
}

.policy-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
  padding-top: 40px;
  border-top: 1px solid var(--border-light);
}

.policy-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }

.policy-content h3 { font-size: 1.1rem; margin: 24px 0 10px; }
.policy-content p { font-size: 0.97rem; line-height: 1.8; margin-bottom: 16px; color: var(--text-body); }
.policy-content ul, .policy-content ol { margin-bottom: 16px; }
.policy-content li { font-size: 0.95rem; line-height: 1.75; }

/* MATRIX GRID */
.matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.matrix-item {
  padding: 28px;
  border: 1px solid var(--border-light);
  background: var(--white);
}

.matrix-item h3 { font-size: 1rem; margin-bottom: 10px; }
.matrix-item p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

.matrix-accent {
  background: var(--navy);
}

.matrix-accent h3 { color: var(--ocre); }
.matrix-accent p { color: rgba(255,255,255,0.7); }

/* MYTH/REALITY */
.myth-reality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 32px 0;
  border: 1px solid var(--border-light);
}

.myth-col {
  padding: 28px;
}

.myth-col--myth {
  background: var(--gray-warm-dark);
  border-right: 2px solid var(--border-light);
}

.myth-col--reality {
  background: var(--forest-pale);
}

.myth-col-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
  display: block;
}

.myth-col--myth .myth-col-label { color: var(--gray-warm-text); }
.myth-col--reality .myth-col-label { color: var(--forest); }

.myth-col p { font-size: 0.93rem; line-height: 1.75; }

/* CONTACT FORM */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 48px;
}

.form-group { margin-bottom: 24px; }

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  display: block;
  width: 100%;
  padding: 14px 18px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--gray-warm);
  border: 1px solid var(--border-light);
  border-radius: 0;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,39,68,0.08);
}

.form-textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.6;
}

.form-disclaimer {
  padding: 20px 24px;
  background: var(--ocre-pale);
  border-left: 3px solid var(--ocre);
  margin-bottom: 28px;
  font-size: 0.85rem;
  color: var(--text-body);
  font-style: italic;
  line-height: 1.7;
}

/* CONTACT INFO SIDE */
.contact-info-side {
  padding: 0;
}

.contact-info-block {
  margin-bottom: 32px;
}

.contact-info-block h4 {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-light);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}

.contact-info-block p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
}

.contact-info-block a { color: var(--navy); border-bottom: 1px solid transparent; }
.contact-info-block a:hover { border-bottom-color: var(--navy); }

/* THANK YOU */
.thankyou-wrap {
  text-align: center;
  padding: 80px 40px;
}

.thankyou-icon {
  width: 80px; height: 80px;
  border: 2px solid var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.thankyou-icon svg {
  width: 32px; height: 32px;
  stroke: var(--forest);
  fill: none;
  stroke-width: 2;
}

/* TABLE */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 0.93rem;
}

.data-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 18px;
  text-align: left;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.data-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-body);
  vertical-align: top;
}

.data-table tr:nth-child(even) td { background: var(--gray-warm); }
.data-table tr:hover td { background: var(--gray-warm-dark); }

/* TIMELINE (decorative) */
.timeline {
  position: relative;
  padding-left: 40px;
  margin: 32px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 0; bottom: 0;
  width: 2px;
  background: var(--forest);
  opacity: 0.3;
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-light);
}

.timeline-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--forest);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--forest);
}

.timeline-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.timeline-item p { font-size: 0.9rem; color: var(--text-light); }

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--navy-dark);
  border-top: 3px solid var(--ocre);
  padding: 20px 0;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.cookie-banner.hidden { transform: translateY(100%); }

.cookie-banner-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 260px;
}

.cookie-banner-text p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}

.cookie-btn-accept {
  background: var(--forest);
  color: var(--white);
}

.cookie-btn-accept:hover { background: var(--forest-light); }

.cookie-btn-reject {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
}

.cookie-btn-reject:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.cookie-btn-learn {
  font-size: 0.78rem;
  color: var(--ocre);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 10px 0;
}

.cookie-btn-learn:hover { color: var(--ocre-light); }

/* ABOUT PAGE */
.about-hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
  margin-bottom: 0;
}

.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.values-list { list-style: none; padding: 0; margin-top: 24px; }
.values-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
  align-items: start;
}

.values-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--forest);
  border-radius: 50%;
  margin-top: 8px;
}

.values-list li span { font-size: 0.97rem; color: var(--text-body); line-height: 1.7; }

/* INFODISCLAIMER SECTION */
.info-disclaimer-section {
  background: var(--gray-warm-dark);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 48px 0;
}

.info-disclaimer-section p {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.8;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

/* ABOUT page */
.page-body-offset { padding-top: 72px; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .policy-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .glossary-rail { position: static; }
  .two-col-text { padding: 56px 40px; }
}

@media (max-width: 800px) {
  .container { padding: 0 20px; }
  .container--narrow { padding: 0 20px; }
  .section-pad { padding: 64px 0; }
  .section-pad--lg { padding: 80px 0; }
  .two-col, .two-col--60-40, .two-col--40-60 { grid-template-columns: 1fr; }
  .two-col-text { padding: 40px 20px; }
  .two-col-img { min-height: 300px; }
  .cards-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .suppl-grid { grid-template-columns: 1fr; }
  .matrix-grid { grid-template-columns: 1fr; }
  .myth-reality-grid { grid-template-columns: 1fr; }
  .myth-col--myth { border-right: none; border-bottom: 2px solid var(--border-light); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .site-nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--navy-dark); padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.08); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 32px; border-bottom: none; border-left: 2px solid transparent; }
  .site-nav a.active { border-left-color: var(--forest-light); }
  .nav-toggle { display: flex; }
  .header-inner { flex-wrap: wrap; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 16px; }
  .panel-item { grid-template-columns: 1fr; }
  .panel-number { font-size: 1.4rem; opacity: 0.25; }
  .about-two-col { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .cookie-banner-inner { flex-direction: column; }
  .cookie-banner-actions { width: 100%; }
  .fw-overlay-content { padding: 60px 20px; }
  h1 { font-size: clamp(1.7rem, 8vw, 2.8rem); }
  h2 { font-size: clamp(1.3rem, 6vw, 2rem); }
}

@media (max-width: 500px) {
  .hero-content { padding: 0 20px; padding-top: 100px; }
  .page-hero { padding: 120px 0 56px; }
  .stat-strip { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-light); padding: 16px 0; width: 100%; }
}
