@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Fira+Sans:wght@300;400;500;600&display=swap');

:root {
  --deep-ocean-blue: #0A1F3C;
  --warm-gold: #D4A63A;
  --soft-sage: #8DAF9E;
  --stone-grey: #B0B7BF;
  --off-white: #F8F8F8;
  --light-grey: #EEEEEE;
  --charcoal: #333333;
  --white: #ffffff;
  --section-pad: 96px 0;
  --section-pad-sm: 64px 0;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Fira Sans', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--off-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--deep-ocean-blue);
}

h1 { font-size: clamp(40px, 5vw, 72px); }
h2 { font-size: clamp(28px, 3.5vw, 48px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: 20px; }

p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--charcoal);
}

a {
  color: var(--warm-gold);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--deep-ocean-blue);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-pad {
  padding: var(--section-pad);
}

.section-pad-sm {
  padding: var(--section-pad-sm);
}

.bg-navy { background-color: var(--deep-ocean-blue); }
.bg-off-white { background-color: var(--off-white); }
.bg-light { background-color: var(--light-grey); }
.bg-sage { background-color: var(--soft-sage); }
.bg-white { background-color: var(--white); }

.text-navy { color: var(--deep-ocean-blue) !important; }
.text-gold { color: var(--warm-gold) !important; }
.text-white { color: var(--white) !important; }
.text-stone { color: var(--stone-grey) !important; }
.text-charcoal { color: var(--charcoal) !important; }

/* =========================================================
   SITE HEADER
   ========================================================= */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--deep-ocean-blue);
  border-bottom: 2px solid rgba(212, 166, 58, 0.3);
  transition: box-shadow 0.3s ease;
}

#site-header.scrolled {
  box-shadow: 0 4px 24px rgba(10, 31, 60, 0.4);
}

#site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

#site-header .logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
}

#site-header .logo span {
  color: var(--warm-gold);
}

#site-header nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

#site-header nav a {
  font-family: 'Fira Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.85);
  padding: 6px 14px;
  border-radius: 3px;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}

#site-header nav a:hover {
  color: var(--warm-gold);
  background-color: rgba(212,166,58,0.08);
  text-decoration: none;
}

#site-header nav a.active {
  color: var(--warm-gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: var(--deep-ocean-blue);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 32px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: 'Fira Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--warm-gold); }

body {
  padding-top: 72px;
}

/* =========================================================
   SITE FOOTER
   ========================================================= */
#site-footer {
  background-color: var(--deep-ocean-blue);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}

#site-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 56px;
}

#site-footer .footer-brand .logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
}

#site-footer .footer-brand .logo span { color: var(--warm-gold); }

#site-footer .footer-brand p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-top: 16px;
  line-height: 1.65;
}

#site-footer .footer-brand .edu-note {
  margin-top: 20px;
  padding: 14px 16px;
  border-left: 3px solid var(--warm-gold);
  background-color: rgba(212,166,58,0.08);
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

#site-footer h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--stone-grey);
  margin-bottom: 20px;
}

#site-footer ul {
  list-style: none;
}

#site-footer ul li {
  margin-bottom: 10px;
}

#site-footer ul li a {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

#site-footer ul li a:hover { color: var(--warm-gold); text-decoration: none; }

#site-footer .footer-contact p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 6px;
}

#site-footer .footer-contact a {
  color: var(--warm-gold);
  font-size: 15px;
  text-decoration: none;
}

#site-footer .footer-contact a:hover { text-decoration: underline; }

#site-footer .footer-hours {
  margin-top: 16px;
}

#site-footer .footer-hours p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

#site-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 32px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

#site-footer .footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

#site-footer .footer-bottom-full {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 32px;
  text-align: center;
}

#site-footer .footer-bottom-full p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-primary {
  display: inline-block;
  background-color: var(--deep-ocean-blue);
  color: var(--warm-gold);
  font-family: 'Fira Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: 3px;
  border: 2px solid var(--deep-ocean-blue);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.btn-primary:hover {
  background-color: #0d2a50;
  color: var(--warm-gold);
  text-decoration: none;
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--deep-ocean-blue);
  font-family: 'Fira Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: 3px;
  border: 2px solid var(--deep-ocean-blue);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.btn-outline:hover {
  background-color: var(--deep-ocean-blue);
  color: var(--warm-gold);
  text-decoration: none;
}

.btn-gold {
  display: inline-block;
  background-color: var(--warm-gold);
  color: var(--deep-ocean-blue);
  font-family: 'Fira Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px 36px;
  border-radius: 3px;
  border: 2px solid var(--warm-gold);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.btn-gold:hover {
  background-color: #c2952f;
  border-color: #c2952f;
  color: var(--deep-ocean-blue);
  text-decoration: none;
}

.btn-white {
  display: inline-block;
  background-color: transparent;
  color: var(--white);
  font-family: 'Fira Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: 3px;
  border: 2px solid rgba(255,255,255,0.6);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn-white:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: var(--warm-gold);
  color: var(--warm-gold);
  text-decoration: none;
}

/* =========================================================
   SECTION LABEL / EYEBROW
   ========================================================= */
.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 16px;
}

.divider-gold {
  width: 48px;
  height: 3px;
  background-color: var(--warm-gold);
  margin: 20px 0 28px;
}

.divider-gold.centered {
  margin: 20px auto 28px;
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--deep-ocean-blue);
}

.hero-section .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.38;
}

.hero-section .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,31,60,0.82) 0%, rgba(10,31,60,0.55) 60%, rgba(10,31,60,0.78) 100%);
}

.hero-section .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 48px 32px;
}

.hero-section .hero-content h1 {
  color: var(--white);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}

.hero-section .hero-content h1 span {
  color: var(--warm-gold);
}

.hero-section .hero-content p {
  color: rgba(255,255,255,0.82);
  font-size: 20px;
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-quote {
  position: relative;
  display: inline-block;
  margin: 32px auto 0;
  padding: 24px 36px;
  border-left: 4px solid var(--warm-gold);
  background-color: rgba(10,31,60,0.55);
  text-align: left;
  max-width: 560px;
}

.hero-quote p {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.85) !important;
  line-height: 1.6;
  margin: 0;
}

.hero-quote cite {
  display: block;
  margin-top: 12px;
  font-family: 'Fira Sans', sans-serif;
  font-size: 13px;
  font-style: normal;
  color: var(--warm-gold);
  letter-spacing: 0.5px;
}

/* =========================================================
   SECTION: ESSENTIAL NUTRIENTS (two-column text)
   ========================================================= */
.nutrients-section {
  background-color: var(--white);
  padding: var(--section-pad);
}

.nutrients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.key-concepts-box {
  background-color: var(--light-grey);
  border-left: 4px solid var(--soft-sage);
  padding: 32px;
  border-radius: 2px;
}

.key-concepts-box h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone-grey);
  margin-bottom: 18px;
}

.key-concepts-box ul {
  list-style: none;
  padding: 0;
}

.key-concepts-box ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(176,183,191,0.35);
  font-size: 16px;
  color: var(--charcoal);
  padding-left: 20px;
  position: relative;
}

.key-concepts-box ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--soft-sage);
  border-radius: 50%;
}

.key-concepts-box ul li:last-child { border-bottom: none; }

/* =========================================================
   SECTION: LIFESTYLE (image left, text right)
   ========================================================= */
.lifestyle-section {
  background-color: var(--off-white);
  padding: var(--section-pad);
}

.lifestyle-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: center;
}

.lifestyle-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 2px;
}

.wellness-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.pillar-item {
  background-color: var(--white);
  border: 1px solid var(--light-grey);
  border-top: 3px solid var(--soft-sage);
  padding: 20px;
  border-radius: 2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pillar-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10,31,60,0.08);
}

.pillar-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--deep-ocean-blue);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.pillar-item p {
  font-size: 14px;
  color: var(--stone-grey);
  line-height: 1.55;
  margin: 0;
}

/* =========================================================
   SECTION: KEY VITAMINS (card grid)
   ========================================================= */
.vitamins-section {
  background-color: var(--deep-ocean-blue);
  padding: var(--section-pad);
}

.vitamins-section h2 { color: var(--white); }
.vitamins-section .section-label { color: var(--warm-gold); }

.vitamins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.vitamin-card {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 32px;
  border-radius: 2px;
  transition: transform 0.2s ease, border-color 0.25s ease;
}

.vitamin-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212,166,58,0.35);
}

.vitamin-card .card-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(212,166,58,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.vitamin-card .card-icon span {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--warm-gold);
}

.vitamin-card h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 12px;
}

.vitamin-card p {
  color: rgba(255,255,255,0.68);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.nutrient-spotlight {
  margin-top: 48px;
  background-color: rgba(141,175,158,0.12);
  border-left: 4px solid var(--soft-sage);
  padding: 32px 40px;
  border-radius: 2px;
}

.nutrient-spotlight h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--soft-sage);
  margin-bottom: 10px;
}

.nutrient-spotlight p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  font-style: italic;
  margin: 0;
  line-height: 1.7;
}

.vitamins-section .vitamins-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  margin-top: 48px;
  opacity: 0.75;
}

/* =========================================================
   SECTION: MINERALS (table)
   ========================================================= */
.minerals-section {
  background-color: var(--off-white);
  padding: var(--section-pad);
}

.mineral-matrix {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  font-size: 16px;
}

.mineral-matrix thead tr {
  background-color: var(--deep-ocean-blue);
  color: var(--white);
}

.mineral-matrix thead th {
  padding: 16px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: left;
  color: var(--white);
  border: none;
}

.mineral-matrix tbody tr:nth-child(even) {
  background-color: var(--light-grey);
}

.mineral-matrix tbody tr:nth-child(odd) {
  background-color: var(--white);
}

.mineral-matrix tbody tr {
  transition: background-color 0.2s ease;
}

.mineral-matrix tbody tr:hover {
  background-color: rgba(141,175,158,0.15);
}

.mineral-matrix tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(176,183,191,0.3);
  color: var(--charcoal);
  vertical-align: top;
}

.mineral-matrix tbody td:first-child {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--deep-ocean-blue);
}

.mineral-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.mineral-summary p {
  font-size: 17px;
  line-height: 1.75;
}

/* =========================================================
   SECTION: PLANT COMPOUNDS (image right, text left)
   ========================================================= */
.botanical-section {
  background-color: var(--white);
  padding: var(--section-pad);
}

.botanical-layout {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  align-items: center;
}

.botanical-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 2px;
}

.botanical-profile {
  background-color: var(--off-white);
  border-left: 4px solid var(--warm-gold);
  padding: 28px 32px;
  border-radius: 2px;
  margin-top: 32px;
}

.botanical-profile h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 12px;
}

.botanical-profile p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  margin: 0;
}

.historical-context {
  margin-top: 28px;
  padding: 20px 0;
  border-top: 1px solid var(--light-grey);
}

.historical-context h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--stone-grey);
  margin-bottom: 10px;
}

.historical-context p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
}

/* =========================================================
   SECTION: DIETARY SOURCES (full-width bg + text center)
   ========================================================= */
.dietary-section {
  position: relative;
  padding: var(--section-pad);
  overflow: hidden;
}

.dietary-section .dietary-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dietary-section .dietary-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(10,31,60,0.82);
}

.dietary-section .dietary-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.dietary-section h2 { color: var(--white); }
.dietary-section .section-label { color: var(--warm-gold); }

.dietary-guidelines {
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 36px 40px;
  border-radius: 2px;
  margin-top: 36px;
  text-align: left;
}

.dietary-guidelines h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 20px;
}

.dietary-guidelines ul {
  list-style: none;
  padding: 0;
}

.dietary-guidelines ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  line-height: 1.6;
}

.dietary-guidelines ul li:last-child { border-bottom: none; }

.dietary-guidelines ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--soft-sage);
  border-radius: 50%;
}

/* =========================================================
   SECTION: HISTORICAL TIMELINE
   ========================================================= */
.history-section {
  background-color: var(--off-white);
  padding: var(--section-pad);
}

.timeline-wrap {
  position: relative;
  margin-top: 56px;
  overflow-x: auto;
  padding-bottom: 16px;
}

.timeline {
  display: flex;
  gap: 0;
  position: relative;
  min-width: 900px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--soft-sage), var(--deep-ocean-blue), var(--warm-gold));
}

.timeline-item {
  flex: 1;
  padding-top: 60px;
  padding-right: 24px;
  position: relative;
}

.timeline-item .dot {
  position: absolute;
  top: 20px;
  left: 0;
  width: 18px;
  height: 18px;
  background-color: var(--deep-ocean-blue);
  border: 3px solid var(--warm-gold);
  border-radius: 50%;
  transform: translateX(-50%);
  left: 16px;
}

.timeline-item .year {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--deep-ocean-blue);
  margin-bottom: 8px;
}

.timeline-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--deep-ocean-blue);
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 14px;
  color: var(--stone-grey);
  line-height: 1.6;
}

.history-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  margin-top: 56px;
  opacity: 0.85;
}

/* =========================================================
   SECTION: MISCONCEPTIONS (Myth vs Fact)
   ========================================================= */
.misconceptions-section {
  background-color: var(--deep-ocean-blue);
  padding: var(--section-pad);
}

.misconceptions-section h2 { color: var(--white); }
.misconceptions-section .section-label { color: var(--warm-gold); }

.myth-fact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.myth-fact-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.myth-col {
  background-color: rgba(255,255,255,0.05);
  padding: 24px;
}

.myth-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone-grey);
  margin-bottom: 10px;
}

.myth-col p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

.fact-col {
  background-color: rgba(141,175,158,0.1);
  border-left: 3px solid var(--soft-sage);
  padding: 24px;
}

.fact-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--soft-sage);
  margin-bottom: 10px;
}

.fact-col p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin: 0;
}

.clarification-panel {
  margin-top: 48px;
  background-color: rgba(212,166,58,0.08);
  border: 1px solid rgba(212,166,58,0.2);
  padding: 32px 40px;
  border-radius: 2px;
}

.clarification-panel h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 14px;
}

.clarification-panel p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin: 0;
}

.misconceptions-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  margin-top: 48px;
  opacity: 0.6;
}

/* =========================================================
   SECTION: FAQ
   ========================================================= */
.faq-section {
  background-color: var(--white);
  padding: var(--section-pad);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  margin-top: 48px;
}

.accordion-item {
  border-bottom: 1px solid var(--light-grey);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  gap: 16px;
}

.accordion-header h3 {
  font-family: 'Fira Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--deep-ocean-blue);
  line-height: 1.4;
  margin: 0;
}

.accordion-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background-color: var(--light-grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.25s ease;
}

.accordion-item.open .accordion-toggle {
  background-color: var(--warm-gold);
  transform: rotate(45deg);
}

.accordion-toggle::before,
.accordion-toggle::after {
  content: '';
  position: absolute;
  background-color: var(--deep-ocean-blue);
  border-radius: 1px;
}

.accordion-toggle::before {
  width: 12px;
  height: 2px;
}

.accordion-toggle::after {
  width: 2px;
  height: 12px;
}

.accordion-item.open .accordion-toggle::before,
.accordion-item.open .accordion-toggle::after {
  background-color: var(--deep-ocean-blue);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 0;
}

.accordion-body.open {
  max-height: 400px;
  padding-bottom: 20px;
}

.accordion-body p {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.7;
  margin: 0;
}

/* =========================================================
   SECTION: SOFT CTA
   ========================================================= */
.cta-section {
  background-color: var(--off-white);
  padding: var(--section-pad);
  text-align: center;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta-inner h2 {
  margin-bottom: 20px;
}

.cta-inner p {
  color: var(--stone-grey);
  font-size: 18px;
  margin-bottom: 36px;
}

/* =========================================================
   INFORMATION DISCLAIMER BAR
   ========================================================= */
.info-bar {
  background-color: var(--deep-ocean-blue);
  padding: 14px 32px;
  text-align: center;
  border-bottom: 1px solid rgba(212,166,58,0.2);
}

.info-bar p {
  font-family: 'Fira Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

.info-bar p span {
  color: var(--warm-gold);
}

/* =========================================================
   CONTENT LIMITATION BLOCK
   ========================================================= */
.content-limits {
  background-color: rgba(141,175,158,0.1);
  border: 1px solid rgba(141,175,158,0.3);
  border-radius: 2px;
  padding: 40px 48px;
  margin: 48px 0;
}

.content-limits h3 {
  font-size: 18px;
  color: var(--deep-ocean-blue);
  margin-bottom: 20px;
}

.content-limits ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
  list-style: none;
  padding: 0;
}

.content-limits ul li {
  font-size: 15px;
  color: var(--charcoal);
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
}

.content-limits ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  background-color: var(--soft-sage);
  border-radius: 50%;
}

/* =========================================================
   INNER PAGE HERO
   ========================================================= */
.page-hero {
  background-color: var(--deep-ocean-blue);
  padding: 72px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.01) 40px,
    rgba(255,255,255,0.01) 80px
  );
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.page-hero .divider-gold { margin: 24px auto; }

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-narrative {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  align-items: start;
  padding: var(--section-pad);
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 2px;
}

.philosophy-sidebar {
  background-color: var(--deep-ocean-blue);
  padding: 36px;
  border-radius: 2px;
  margin-top: 40px;
}

.philosophy-sidebar h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--soft-sage);
  margin-bottom: 16px;
}

.philosophy-sidebar p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.7;
}

.mission-panel {
  background-color: var(--light-grey);
  padding: 48px;
  text-align: center;
  margin: 0 0 80px;
  border-radius: 2px;
}

.mission-panel h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-style: italic;
  font-weight: 600;
  color: var(--deep-ocean-blue);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.45;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
  padding: var(--section-pad);
}

.inquiry-guidelines {
  background-color: rgba(141,175,158,0.1);
  border-left: 3px solid var(--soft-sage);
  padding: 28px 32px;
  margin-bottom: 32px;
  border-radius: 2px;
}

.inquiry-guidelines h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--soft-sage);
  margin-bottom: 14px;
}

.inquiry-guidelines ul {
  list-style: none;
  padding: 0;
}

.inquiry-guidelines ul li {
  font-size: 15px;
  color: var(--charcoal);
  padding: 6px 0 6px 20px;
  position: relative;
  border-bottom: 1px solid rgba(141,175,158,0.2);
  line-height: 1.5;
}

.inquiry-guidelines ul li:last-child { border-bottom: none; }

.inquiry-guidelines ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 7px;
  height: 7px;
  background-color: var(--soft-sage);
  border-radius: 50%;
}

.contact-address h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--stone-grey);
  margin-bottom: 12px;
}

.contact-address p {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 6px;
}

.contact-address a {
  color: var(--warm-gold);
  text-decoration: none;
  font-size: 16px;
}

.contact-address a:hover { text-decoration: underline; }

.contact-form-wrap {
  background-color: var(--white);
  border: 1px solid var(--light-grey);
  padding: 40px;
  border-radius: 2px;
}

.form-disclaimer {
  background-color: var(--off-white);
  border-left: 3px solid var(--stone-grey);
  padding: 16px 20px;
  margin-bottom: 28px;
  border-radius: 2px;
}

.form-disclaimer p {
  font-size: 14px;
  color: var(--stone-grey);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: 'Fira Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--deep-ocean-blue);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Fira Sans', sans-serif;
  font-size: 16px;
  color: var(--charcoal);
  background-color: var(--off-white);
  border: 1px solid var(--stone-grey);
  border-radius: 3px;
  transition: border-color 0.2s ease, outline 0.2s ease;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--deep-ocean-blue);
  box-shadow: 0 0 0 3px rgba(10,31,60,0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 160px;
}

/* =========================================================
   CATALOG PAGE
   ========================================================= */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: var(--section-pad);
}

.catalog-card {
  background-color: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.catalog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(10,31,60,0.1);
  border-color: var(--stone-grey);
}

.catalog-card .card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.catalog-card .card-body {
  padding: 28px;
}

.catalog-card .card-body h3 {
  font-size: 19px;
  color: var(--deep-ocean-blue);
  margin-bottom: 12px;
  line-height: 1.3;
}

.catalog-card .card-body p {
  font-size: 15px;
  color: var(--stone-grey);
  line-height: 1.65;
  margin-bottom: 20px;
}

.catalog-card .benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  border-top: 1px solid var(--light-grey);
  padding-top: 16px;
}

.catalog-card .benefits-list li {
  font-size: 14px;
  color: var(--charcoal);
  padding: 5px 0 5px 20px;
  position: relative;
  line-height: 1.5;
}

.catalog-card .benefits-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 7px;
  background-color: var(--soft-sage);
  border-radius: 50%;
}

.nutrient-comparison {
  background-color: var(--off-white);
  padding: 80px 0;
}

.nutrient-comparison .comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  font-size: 15px;
}

.nutrient-comparison .comparison-table thead tr {
  background-color: var(--deep-ocean-blue);
}

.nutrient-comparison .comparison-table thead th {
  padding: 14px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  text-align: left;
}

.nutrient-comparison .comparison-table tbody tr:nth-child(even) {
  background-color: var(--light-grey);
}

.nutrient-comparison .comparison-table tbody tr:nth-child(odd) {
  background-color: var(--white);
}

.nutrient-comparison .comparison-table tbody td {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(176,183,191,0.3);
  color: var(--charcoal);
}

.nutrient-comparison .comparison-table tbody td:first-child {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--deep-ocean-blue);
}

/* =========================================================
   POLICY PAGES
   ========================================================= */
.policy-content {
  max-width: 840px;
  margin: 0 auto;
  padding: var(--section-pad);
}

.policy-content h2 {
  font-size: 28px;
  color: var(--deep-ocean-blue);
  margin-bottom: 16px;
  margin-top: 48px;
  padding-top: 16px;
  border-top: 1px solid var(--light-grey);
}

.policy-content h2:first-of-type {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.policy-content h3 {
  font-size: 20px;
  color: var(--deep-ocean-blue);
  margin-bottom: 12px;
  margin-top: 32px;
}

.policy-content p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 18px;
  color: var(--charcoal);
}

.policy-content ul {
  margin-bottom: 18px;
  padding-left: 0;
  list-style: none;
}

.policy-content ul li {
  font-size: 16px;
  color: var(--charcoal);
  padding: 6px 0 6px 22px;
  position: relative;
  line-height: 1.6;
}

.policy-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 7px;
  height: 7px;
  background-color: var(--soft-sage);
  border-radius: 50%;
}

.key-principles-box {
  background-color: rgba(141,175,158,0.12);
  border: 1px solid rgba(141,175,158,0.3);
  padding: 36px 40px;
  border-radius: 2px;
  margin-bottom: 48px;
}

.key-principles-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--deep-ocean-blue);
  margin-bottom: 20px;
  margin-top: 0;
}

.cookie-card {
  background-color: var(--white);
  border: 1px solid var(--light-grey);
  border-top: 3px solid var(--deep-ocean-blue);
  padding: 28px 32px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.cookie-card h3 {
  font-size: 18px;
  color: var(--deep-ocean-blue);
  margin-bottom: 12px;
  margin-top: 0;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  font-size: 15px;
}

.cookie-table thead tr { background-color: var(--deep-ocean-blue); }
.cookie-table thead th {
  padding: 12px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  text-align: left;
}

.cookie-table tbody tr:nth-child(even) { background-color: var(--light-grey); }
.cookie-table tbody tr:nth-child(odd) { background-color: var(--off-white); }
.cookie-table tbody td {
  padding: 11px 16px;
  border-bottom: 1px solid rgba(176,183,191,0.3);
  color: var(--charcoal);
  font-size: 14px;
}

.tos-two-col {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 32px;
  padding: 24px;
  background-color: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 2px;
}

.tos-two-col .clause-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--deep-ocean-blue);
  line-height: 1.4;
  padding-top: 4px;
}

.tos-two-col .clause-text {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.7;
}

.definitions-rail {
  background-color: var(--light-grey);
  border: 1px solid var(--stone-grey);
  padding: 28px;
  border-radius: 2px;
  margin-bottom: 32px;
}

.definitions-rail h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone-grey);
  margin-bottom: 16px;
}

.definitions-rail dl dt {
  font-family: 'Fira Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--deep-ocean-blue);
  margin-bottom: 4px;
  margin-top: 12px;
}

.definitions-rail dl dt:first-child { margin-top: 0; }

.definitions-rail dl dd {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.6;
  margin-left: 0;
}

.notice-panel {
  border: 2px solid var(--warm-gold);
  background-color: rgba(141,175,158,0.08);
  padding: 32px 40px;
  border-radius: 2px;
  margin: 32px 0;
}

.notice-panel h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 14px;
}

.notice-panel p {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.7;
  margin: 0;
}

/* =========================================================
   HEALTH DISCLAIMER PAGE
   ========================================================= */
.disclaimer-hero {
  background-color: var(--deep-ocean-blue);
  padding: 80px 0;
  text-align: center;
}

.disclaimer-hero h1 { color: var(--white); }

.important-notice {
  border: 2px solid var(--warm-gold);
  background-color: rgba(141,175,158,0.1);
  padding: 40px 48px;
  border-radius: 2px;
  margin: 48px 0;
  text-align: center;
}

.important-notice .notice-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 16px;
  display: block;
}

.important-notice h2 {
  font-size: clamp(22px, 3vw, 36px);
  color: var(--deep-ocean-blue);
  margin-bottom: 20px;
  line-height: 1.3;
}

.important-notice p {
  font-size: 17px;
  color: var(--charcoal);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.75;
}

/* =========================================================
   THANK YOU PAGE
   ========================================================= */
.thankyou-section {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--off-white);
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
}

.thankyou-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 60px,
    rgba(176,183,191,0.06) 60px,
    rgba(176,183,191,0.06) 61px
  );
}

.thankyou-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 560px;
}

.thankyou-inner h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--deep-ocean-blue);
  margin-bottom: 20px;
}

.thankyou-inner p {
  font-size: 18px;
  color: var(--stone-grey);
  line-height: 1.7;
  margin-bottom: 36px;
}

.thankyou-inner .divider-gold { margin: 24px auto; }

/* =========================================================
   COOKIE CONSENT BANNER
   ========================================================= */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: var(--deep-ocean-blue);
  border-top: 3px solid var(--warm-gold);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookie-banner.visible {
  transform: translateY(0);
}

#cookie-banner .cookie-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
  margin: 0;
}

#cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

#cookie-banner .cookie-btn {
  font-family: 'Fira Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

#cookie-banner .cookie-btn:hover { opacity: 0.85; }

#cookie-banner .btn-accept {
  background-color: var(--warm-gold);
  color: var(--deep-ocean-blue);
}

#cookie-banner .btn-decline {
  background-color: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.3) !important;
}

#cookie-banner .btn-learn {
  background-color: transparent;
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
  border: none !important;
  padding: 9px 10px;
}

/* =========================================================
   FADE-IN ANIMATION
   ========================================================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .nutrients-grid,
  .lifestyle-layout,
  .botanical-layout,
  .about-narrative,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lifestyle-img,
  .botanical-img,
  .about-img {
    height: 360px;
  }

  .vitamins-grid {
    grid-template-columns: 1fr 1fr;
  }

  .catalog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .myth-fact-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .mineral-summary {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .content-limits ul {
    grid-template-columns: 1fr;
  }

  .tos-two-col {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px 0;
  }

  body { font-size: 16px; }
  p { font-size: 16px; }

  #site-header nav { display: none; }
  .hamburger { display: flex; }

  .vitamins-grid { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr; }
  .wellness-pillars { grid-template-columns: 1fr; }

  .dietary-guidelines ul li { font-size: 15px; }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  #site-footer .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .container { padding: 0 20px; }
  .container-wide { padding: 0 20px; }

  .info-bar p { font-size: 12px; }

  .contact-form-wrap { padding: 28px 20px; }

  .policy-content { padding: 48px 20px; }

  .key-principles-box { padding: 24px; }
  .important-notice { padding: 28px 24px; }

  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .myth-fact-item {
    grid-template-columns: 1fr;
  }

  .timeline {
    min-width: 700px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }

  .hero-section { min-height: 80vh; }

  .about-narrative {
    padding: 48px 20px;
  }

  .contact-layout {
    padding: 48px 20px;
  }

  .catalog-grid {
    padding: 48px 20px;
  }
}
