@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Lato:wght@300;400;700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #1A344A;
  --accent-gold: #F0A500;
  --accent-green: #5FAD56;
  --neutral-grey: #E0E0E0;
  --white: #FFFFFF;
  --primary-light: #243f5a;
  --primary-dark: #11222f;
  --text-body: #2d2d2d;
  --text-muted: #6c6c6c;
  --border: #d0d0d0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  line-height: 1.3;
  color: var(--primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 700; }

p { margin-bottom: 1.2rem; }
a { color: var(--accent-gold); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--primary); text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

.container-max {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container-max { padding: 0 20px; }
}

.section-pad {
  padding: 96px 0;
}

@media (max-width: 768px) {
  .section-pad { padding: 56px 0; }
}

.text-gold { color: var(--accent-gold); }
.text-green { color: var(--accent-green); }
.text-white { color: var(--white) !important; }
.text-muted-custom { color: var(--text-muted); }
.bg-primary { background-color: var(--primary); }
.bg-grey-light { background-color: var(--neutral-grey); }
.bg-white-custom { background-color: var(--white); }

.btn-gold {
  display: inline-block;
  background-color: var(--accent-gold);
  color: var(--primary-dark) !important;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 2px solid var(--accent-gold);
  border-radius: 2px;
  text-decoration: none !important;
  transition: background-color 0.25s, color 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.btn-gold:hover {
  background-color: transparent;
  color: var(--accent-gold) !important;
  box-shadow: 0 4px 18px rgba(240,165,0,0.18);
}

.btn-outline-gold {
  display: inline-block;
  background-color: transparent;
  color: var(--accent-gold) !important;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 34px;
  border: 2px solid var(--accent-gold);
  border-radius: 2px;
  text-decoration: none !important;
  transition: background-color 0.25s, color 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.btn-outline-gold:hover {
  background-color: var(--accent-gold);
  color: var(--primary-dark) !important;
  box-shadow: 0 4px 18px rgba(240,165,0,0.18);
}

.btn-primary-dark {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white) !important;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 2px solid var(--primary);
  border-radius: 2px;
  text-decoration: none !important;
  transition: background-color 0.25s, box-shadow 0.25s;
}

.btn-primary-dark:hover {
  background-color: var(--primary-light);
  box-shadow: 0 4px 18px rgba(26,52,74,0.22);
}

.divider-gold {
  width: 56px;
  height: 3px;
  background-color: var(--accent-gold);
  margin: 20px 0 28px 0;
}

.divider-gold-center {
  width: 56px;
  height: 3px;
  background-color: var(--accent-gold);
  margin: 20px auto 28px auto;
}

.divider-green {
  width: 56px;
  height: 3px;
  background-color: var(--accent-green);
  margin: 20px 0 28px 0;
}

.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 12px;
  display: block;
}

.section-label-gold {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
  display: block;
}

.thin-border-top {
  border-top: 1px solid var(--border);
}

.thin-border-bottom {
  border-bottom: 1px solid var(--border);
}

/* ===== HEADER ===== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--primary-dark);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background-color 0.3s, box-shadow 0.3s;
}

#site-header.scrolled {
  background-color: var(--primary);
  box-shadow: 0 4px 24px rgba(0,0,0,0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-link {
  font-family: 'Merriweather', serif;
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--white) !important;
  text-decoration: none !important;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.logo-link span {
  color: var(--accent-gold);
}

.logo-link:hover {
  color: var(--neutral-grey) !important;
  text-decoration: none !important;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75) !important;
  text-decoration: none !important;
  padding: 8px 18px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  display: block;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--accent-gold) !important;
  border-bottom-color: var(--accent-gold);
  text-decoration: none !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: var(--primary);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0 24px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8) !important;
  text-decoration: none !important;
  padding: 12px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, background-color 0.2s;
}

.mobile-nav a:hover {
  color: var(--accent-gold) !important;
  background-color: rgba(255,255,255,0.04);
}

@media (max-width: 992px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--primary-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,34,47,0.82) 0%, rgba(26,52,74,0.6) 60%, rgba(17,34,47,0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 120px 0 80px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}

.hero-content .hero-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1rem, 2vw, 1.22rem);
  color: var(--neutral-grey);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 640px;
}

.hero-edu-badge {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-green);
  background-color: rgba(95,173,86,0.1);
  border: 1px solid rgba(95,173,86,0.3);
  border-radius: 2px;
  padding: 6px 14px;
  margin-bottom: 28px;
}

/* ===== SECTION: TWO-COL ===== */
.two-col-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

@media (max-width: 768px) {
  .two-col-section {
    grid-template-columns: 1fr;
  }
}

.two-col-img {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.two-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 768px) {
  .two-col-img { min-height: 300px; }
}

.two-col-text {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 992px) {
  .two-col-text { padding: 56px 40px; }
}

@media (max-width: 768px) {
  .two-col-text { padding: 48px 24px; }
}

/* ===== INFOGRAPHIC BLOCK ===== */
.infographic-ring-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.infographic-ring-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 10px 16px;
  flex: 1 1 calc(50% - 6px);
  min-width: 120px;
}

.infographic-ring-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-gold { background-color: var(--accent-gold); }
.dot-green { background-color: var(--accent-green); }
.dot-blue { background-color: var(--primary); }
.dot-grey { background-color: #9e9e9e; }

.infographic-ring-item span {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ===== FULL-WIDTH IMAGE SECTION ===== */
.fullwidth-img-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.fullwidth-img-section img.bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fullwidth-img-section .fw-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,34,47,0.72);
}

.fullwidth-img-section .fw-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ===== ACTIVITY CARDS (no photo) ===== */
.activity-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .activity-cards { grid-template-columns: 1fr; }
}

.activity-card {
  background-color: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  padding: 32px 28px;
  transition: background-color 0.25s, box-shadow 0.25s;
}

.activity-card:hover {
  background-color: rgba(255,255,255,0.12);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

.activity-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.activity-icon svg {
  width: 40px;
  height: 40px;
}

.activity-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.activity-card p {
  color: rgba(255,255,255,0.68);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ===== HYDRATION CARDS ===== */
.hydration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .hydration-grid { grid-template-columns: 1fr; gap: 20px; }
}

.hydration-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent-green);
  border-radius: 3px;
  padding: 36px 28px;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s;
}

.hydration-card:hover {
  box-shadow: 0 8px 28px rgba(26,52,74,0.12);
  transform: translateY(-2px);
}

.hydration-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hydration-icon svg {
  width: 48px;
  height: 48px;
}

.hydration-card h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.hydration-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ===== STAT STRIP ===== */
.stat-strip {
  background-color: var(--primary);
  padding: 32px 0;
  margin: 56px 0;
}

.stat-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}

.stat-strip-item {
  text-align: center;
  padding: 0 24px;
}

.stat-number {
  font-family: 'Merriweather', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent-gold);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(255,255,255,0.15);
}

@media (max-width: 576px) {
  .stat-divider { display: none; }
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  margin: 32px 0;
  padding-left: 32px;
  border-left: 2px solid var(--accent-gold);
}

.timeline-step {
  position: relative;
  margin-bottom: 28px;
}

.timeline-step:last-child { margin-bottom: 0; }

.timeline-step::before {
  content: '';
  position: absolute;
  left: -39px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent-gold);
}

.timeline-step h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.timeline-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ===== CUSTOM BULLET LIST ===== */
.custom-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.custom-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}

.custom-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-green);
}

.custom-list-gold li::before {
  background-color: var(--accent-gold);
}

/* ===== REST SECTION ===== */
.rest-three-col {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 992px) {
  .rest-three-col {
    grid-template-columns: 1fr;
  }
}

.rest-img-col {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.rest-img-col img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 992px) {
  .rest-img-col img { height: 260px; }
}

.glossary-rail {
  background-color: var(--neutral-grey);
  border-left: 3px solid var(--accent-green);
  border-radius: 2px;
  padding: 24px 20px;
  margin-top: 24px;
}

.glossary-rail h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 16px;
}

.glossary-term {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.glossary-term:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.glossary-term dt {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 3px;
}

.glossary-term dd {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-left: 0;
}

/* ===== INGREDIENT CARDS ===== */
.ingredient-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 992px) {
  .ingredient-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .ingredient-cards { grid-template-columns: 1fr; }
}

.ingredient-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}

.ingredient-card:hover {
  box-shadow: 0 8px 28px rgba(26,52,74,0.12);
  transform: translateY(-3px);
}

.ingredient-card-img {
  height: 200px;
  overflow: hidden;
  background-color: var(--neutral-grey);
}

.ingredient-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ingredient-card-body {
  padding: 24px 20px;
}

.ingredient-card-body h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.ingredient-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.ingredient-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ingredient-tag {
  font-family: 'Lato', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent-green);
  background-color: rgba(95,173,86,0.1);
  border: 1px solid rgba(95,173,86,0.25);
  border-radius: 2px;
  padding: 4px 9px;
}

/* ===== PROPERTY MATRIX ===== */
.property-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .property-matrix { grid-template-columns: repeat(2, 1fr); }
}

.matrix-cell {
  padding: 20px 16px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.matrix-cell:nth-child(4n) { border-right: none; }

@media (max-width: 768px) {
  .matrix-cell:nth-child(2n) { border-right: none; }
}

.matrix-cell-header {
  background-color: var(--primary);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 10px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid var(--border);
}

.matrix-prop-name {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}

.matrix-prop-val {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.matrix-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 4px;
}

/* ===== FAQ ===== */
.faq-list {
  margin-top: 48px;
}

.faq-item {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: start;
}

.faq-item:last-child { border-bottom: 1px solid var(--border); }

.faq-num {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
  margin-top: 2px;
}

.faq-content h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.faq-content p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 576px) {
  .faq-item { grid-template-columns: 36px 1fr; gap: 16px; }
  .faq-num { font-size: 1.5rem; }
}

/* ===== SOFT CTA ===== */
.soft-cta {
  background-color: var(--neutral-grey);
  text-align: center;
  padding: 80px 40px;
}

.soft-cta h2 { color: var(--primary); margin-bottom: 16px; }
.soft-cta p { color: var(--text-muted); max-width: 560px; margin: 0 auto 32px; }

/* ===== DISCLAIMER BAR ===== */
.disclaimer-bar {
  background-color: var(--primary);
  border-top: 3px solid var(--accent-gold);
  padding: 24px 0;
  text-align: center;
}

.disclaimer-bar p {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0;
  line-height: 1.6;
}

.disclaimer-bar strong {
  color: var(--accent-gold);
}

/* ===== FOOTER ===== */
#site-footer {
  background-color: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 576px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-top: 16px;
  margin-bottom: 0;
}

.footer-brand .logo-link {
  font-size: 1.35rem;
}

.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6) !important;
  text-decoration: none !important;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--accent-gold) !important;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent-gold);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0;
}

.footer-edu-note {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 16px 0;
  text-align: center;
}

.footer-edu-note strong {
  color: var(--accent-gold);
}

/* ===== INNER PAGE HERO ===== */
.inner-hero {
  background-color: var(--primary);
  padding: 120px 0 64px;
  position: relative;
  overflow: hidden;
}

.inner-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(240,165,0,0.04);
  pointer-events: none;
}

.inner-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.inner-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 680px;
  margin-bottom: 0;
}

/* ===== CATALOG PAGE ===== */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (max-width: 768px) {
  .catalog-grid { grid-template-columns: 1fr; }
}

.product-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}

.product-card:hover {
  box-shadow: 0 10px 36px rgba(26,52,74,0.13);
  transform: translateY(-3px);
}

.product-card-img {
  height: 260px;
  overflow: hidden;
  background-color: var(--neutral-grey);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.03);
}

.product-card-body {
  padding: 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-body h3 {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.product-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.product-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.product-benefits li {
  font-size: 0.85rem;
  color: var(--text-body);
  padding: 6px 0;
  border-bottom: 1px dashed var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-benefits li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent-green);
  flex-shrink: 0;
}

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 992px) {
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}

.contact-form-wrap h2 { color: var(--primary); margin-bottom: 8px; }

.disclaimer-box {
  background-color: rgba(240,165,0,0.07);
  border: 1px solid rgba(240,165,0,0.25);
  border-left: 4px solid var(--accent-gold);
  border-radius: 2px;
  padding: 20px 24px;
  margin-bottom: 32px;
}

.disclaimer-box p {
  font-size: 0.88rem;
  color: var(--primary);
  line-height: 1.65;
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text-body);
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(240,165,0,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-info-panel h3 {
  color: var(--primary);
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background-color: var(--primary);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent-gold);
}

.contact-info-text strong {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-text span, .contact-info-text a {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.5;
}

.contact-info-text a {
  color: var(--primary) !important;
}

.contact-info-text a:hover {
  color: var(--accent-gold) !important;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.hours-table tr:not(:last-child) td {
  border-bottom: 1px solid var(--border);
}

.hours-table td {
  padding: 8px 0;
  color: var(--text-body);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--accent-green);
  font-weight: 700;
}

/* ===== ABOUT PAGE ===== */
.about-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  min-height: 600px;
  align-items: stretch;
}

@media (max-width: 768px) {
  .about-hero-layout { grid-template-columns: 1fr; }
}

.about-img-full {
  overflow: hidden;
  min-height: 500px;
}

.about-img-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 768px) {
  .about-img-full { min-height: 300px; }
}

.about-text-panel {
  background-color: var(--primary);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 992px) {
  .about-text-panel { padding: 56px 40px; }
}

@media (max-width: 768px) {
  .about-text-panel { padding: 48px 24px; }
}

.about-text-panel h1 {
  color: var(--white);
  margin-bottom: 8px;
}

.about-text-panel h2 {
  color: var(--accent-gold);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 32px;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.04em;
}

.about-text-panel p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.mission-quote {
  background-color: rgba(240,165,0,0.08);
  border-left: 4px solid var(--accent-gold);
  border-radius: 2px;
  padding: 24px 28px;
  margin: 32px 0 0;
}

.mission-quote p {
  font-family: 'Merriweather', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 0;
}

.about-section-panel {
  padding: 80px 0;
}

.about-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 768px) {
  .about-panel-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== LEGAL PAGES ===== */
.legal-layout {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 768px) {
  .legal-layout { grid-template-columns: 1fr; gap: 40px; }
}

.legal-nav {
  position: sticky;
  top: 96px;
}

.legal-nav h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.legal-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-nav ul li {
  margin-bottom: 4px;
}

.legal-nav ul li a {
  font-size: 0.88rem;
  color: var(--text-body) !important;
  text-decoration: none !important;
  padding: 6px 0;
  display: block;
  border-left: 2px solid transparent;
  padding-left: 12px;
  transition: border-color 0.2s, color 0.2s;
}

.legal-nav ul li a:hover {
  color: var(--accent-gold) !important;
  border-left-color: var(--accent-gold);
}

.legal-content h2 {
  color: var(--primary);
  font-size: 1.45rem;
  margin: 48px 0 16px;
  padding-top: 8px;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin: 28px 0 12px;
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.legal-content ul li {
  font-size: 0.95rem;
  color: var(--text-body);
  padding: 6px 0 6px 20px;
  position: relative;
  line-height: 1.65;
  border-bottom: 1px dotted var(--border);
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent-gold);
}

.legal-disclaimer-block {
  background-color: var(--primary);
  color: var(--white);
  border-radius: 3px;
  padding: 32px 36px;
  margin: 40px 0;
}

.legal-disclaimer-block h3 {
  color: var(--accent-gold);
  margin-bottom: 12px;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-disclaimer-block p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.responsibility-clause {
  background-color: var(--neutral-grey);
  border-left: 4px solid var(--accent-gold);
  border-radius: 2px;
  padding: 24px 28px;
  margin: 32px 0;
}

.responsibility-clause p {
  font-size: 0.92rem;
  color: var(--primary);
  line-height: 1.7;
  margin-bottom: 0;
}

.warning-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: var(--neutral-grey);
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent-gold);
  border-radius: 3px;
  padding: 28px 32px;
  margin: 40px 0;
}

.warning-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--accent-gold);
}

.warning-box-text h3 {
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.warning-box-text p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ===== COOKIE TABLE ===== */
.cookie-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.cookie-table th {
  background-color: var(--primary);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
}

.cookie-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
  line-height: 1.55;
}

.cookie-table tr:last-child td { border-bottom: none; }

.cookie-table tr:nth-child(even) td {
  background-color: rgba(224,224,224,0.35);
}

.quote-block {
  background-color: var(--neutral-grey);
  border-left: 4px solid var(--accent-green);
  border-radius: 2px;
  padding: 20px 24px;
  margin: 24px 0;
}

.quote-block p {
  font-family: 'Merriweather', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--primary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ===== THANK YOU PAGE ===== */
.thankyou-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px;
}

.thankyou-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  color: var(--accent-green);
}

.thankyou-wrap h1 {
  color: var(--primary);
  margin-bottom: 16px;
}

.thankyou-wrap p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: var(--primary-dark);
  border-top: 3px solid var(--accent-gold);
  padding: 20px 0;
  display: none;
}

#cookie-banner.visible {
  display: block;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  flex: 1 1 280px;
}

.cookie-banner-text a {
  color: var(--accent-gold) !important;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background-color 0.2s, color 0.2s;
}

.cookie-btn-accept {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
}

.cookie-btn-accept:hover {
  background-color: #d9940a;
}

.cookie-btn-decline {
  background-color: transparent;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.25);
}

.cookie-btn-decline:hover {
  background-color: rgba(255,255,255,0.07);
}

.cookie-btn-learn {
  background-color: transparent;
  color: var(--accent-gold);
  border: 1px solid rgba(240,165,0,0.4);
  text-decoration: none;
}

.cookie-btn-learn:hover {
  background-color: rgba(240,165,0,0.08);
}

/* ===== SECTION BACKGROUNDS ===== */
.bg-primary-dark-section {
  background-color: var(--primary-dark);
}

.bg-primary-section {
  background-color: var(--primary);
}

/* ===== MISC ===== */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-0 { margin-bottom: 0; }

.page-body-offset {
  padding-top: 72px;
}

.highlight-text {
  color: var(--accent-gold);
  font-style: italic;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.75;
}

.narrow-text {
  max-width: 680px;
}

.full-width-divider {
  width: 100%;
  height: 1px;
  background-color: var(--border);
  margin: 56px 0;
}
