@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300;400;600;700;900&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
  --color-primary: #3d5a73;
  --color-primary-dark: #2a3f52;
  --color-primary-deeper: #1c2c3a;
  --color-olive: #7a8c5e;
  --color-olive-light: #9aaa7a;
  --color-copper: #8c6a4a;
  --color-copper-light: #b08a6a;
  --color-cream: #f5f0e8;
  --color-cream-dark: #e8e0d0;
  --color-text: #2c2c2c;
  --color-text-muted: #5a5a5a;
  --color-text-light: #888;
  --color-white: #ffffff;
  --color-border: #d8d0c0;
  --font-heading: 'Source Sans 3', sans-serif;
  --font-body: 'Lora', serif;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 32px;
  --spacing-lg: 64px;
  --spacing-xl: 96px;
  --spacing-xxl: 128px;
  --max-width: 1440px;
  --transition: 0.3s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-olive);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-copper);
  text-decoration: underline;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-family: var(--font-body); font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 1.2rem;
}

p:last-child { margin-bottom: 0; }

.container-site {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section-pad {
  padding: var(--spacing-xl) 0;
}

.section-pad-lg {
  padding: var(--spacing-xxl) 0;
}

.section-pad-sm {
  padding: var(--spacing-lg) 0;
}

/* ─── HEADER ─── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-primary-deeper);
  border-bottom: 2px solid var(--color-olive);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--spacing-md);
  max-width: var(--max-width);
  margin: 0 auto;
  height: 70px;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--color-cream);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color var(--transition);
}

.site-logo span {
  color: var(--color-olive-light);
}

.site-logo:hover {
  color: var(--color-white);
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  list-style: none;
}

.site-nav a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-cream-dark);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 2px;
  transition: all var(--transition);
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background-color: var(--color-olive-light);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--color-cream);
  text-decoration: none;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-cream-dark);
  color: var(--color-cream);
  padding: 6px 10px;
  cursor: pointer;
  font-size: 1.2rem;
  border-radius: 2px;
}

/* ─── HERO ─── */
.hero-section {
  position: relative;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28, 44, 58, 0.82) 0%,
    rgba(61, 90, 115, 0.55) 50%,
    rgba(28, 44, 58, 0.70) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: var(--spacing-md);
  animation: heroFadeIn 1.4s ease forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
  color: var(--color-cream);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  margin-bottom: var(--spacing-md);
}

.hero-content h1 span {
  color: var(--color-olive-light);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(245, 240, 232, 0.88);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
  font-style: italic;
}

.hero-ripple {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(122, 140, 94, 0.12) 0%, transparent 70%);
  animation: ripplePulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ripplePulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

.hero-badge {
  display: inline-block;
  background-color: rgba(122, 140, 94, 0.2);
  border: 1px solid rgba(154, 170, 122, 0.5);
  color: var(--color-olive-light);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 2px;
  margin-bottom: var(--spacing-sm);
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-cream);
  background-color: transparent;
  border: 2px solid var(--color-olive-light);
  padding: 14px 36px;
  border-radius: 2px;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--color-olive);
  border-color: var(--color-olive);
  color: var(--color-cream);
  text-decoration: none;
}

.btn-secondary {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  background-color: transparent;
  border: 2px solid var(--color-primary);
  padding: 12px 32px;
  border-radius: 2px;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-cream);
  text-decoration: none;
}

.btn-outline-cream {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-cream);
  background-color: transparent;
  border: 2px solid rgba(245, 240, 232, 0.6);
  padding: 12px 32px;
  border-radius: 2px;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-outline-cream:hover {
  background-color: rgba(245, 240, 232, 0.12);
  border-color: var(--color-cream);
  color: var(--color-white);
  text-decoration: none;
}

/* ─── SECTION LABELS ─── */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-copper);
  border-left: 3px solid var(--color-copper);
  padding-left: 10px;
  margin-bottom: var(--spacing-sm);
}

.section-label-olive {
  color: var(--color-olive);
  border-left-color: var(--color-olive);
}

/* ─── DIVIDERS ─── */
.section-divider {
  width: 60px;
  height: 3px;
  background-color: var(--color-olive);
  margin: var(--spacing-sm) 0 var(--spacing-md);
}

.section-divider-center {
  margin-left: auto;
  margin-right: auto;
}

.section-divider-copper {
  background-color: var(--color-copper);
}

hr.styled {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: var(--spacing-md) 0;
}

/* ─── BACKGROUNDS ─── */
.bg-primary-deep {
  background-color: var(--color-primary-deeper);
}

.bg-primary {
  background-color: var(--color-primary);
}

.bg-cream {
  background-color: var(--color-cream);
}

.bg-cream-dark {
  background-color: var(--color-cream-dark);
}

.bg-white {
  background-color: var(--color-white);
}

.bg-olive-subtle {
  background-color: rgba(122, 140, 94, 0.06);
}

/* ─── TEXT COLORS ─── */
.text-olive { color: var(--color-olive); }
.text-copper { color: var(--color-copper); }
.text-cream { color: var(--color-cream); }
.text-primary { color: var(--color-primary); }
.text-muted-site { color: var(--color-text-muted); }
.text-white { color: var(--color-white); }

/* ─── STAT STRIP ─── */
.stat-strip {
  background-color: var(--color-primary-deeper);
  padding: var(--spacing-md) 0;
  border-top: 3px solid var(--color-olive);
  border-bottom: 3px solid var(--color-olive);
}

.stat-strip-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: var(--spacing-md) var(--spacing-sm);
  border-right: 1px solid rgba(245, 240, 232, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.stat-item:last-child { border-right: none; }

.stat-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(122, 140, 94, 0.18);
  border: 1px solid rgba(154, 170, 122, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-olive-light);
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--color-olive-light);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.3;
}

/* ─── TWO-COLUMN LAYOUT ─── */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.two-col-layout.reverse { direction: rtl; }
.two-col-layout.reverse > * { direction: ltr; }

.two-col-text { padding: var(--spacing-md) 0; }

.two-col-image {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.two-col-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.two-col-image:hover img { transform: scale(1.03); }

.image-frame {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(245, 240, 232, 0.2);
  pointer-events: none;
  z-index: 1;
}

/* ─── CARDS ─── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.info-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  transition: all 0.35s ease;
  cursor: default;
}

.info-card:hover {
  box-shadow: 0 12px 40px rgba(61, 90, 115, 0.16);
  transform: translateY(-4px);
}

.info-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.info-card:hover .info-card-image { transform: scale(1.04); }

.info-card-body {
  padding: var(--spacing-md);
}

.info-card-number {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-copper);
  margin-bottom: 8px;
}

.info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 10px;
}

.info-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.card-hover-tip {
  position: absolute;
  inset: 0;
  background-color: rgba(28, 44, 58, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.info-card:hover .card-hover-tip { opacity: 1; }

.card-hover-tip p {
  color: var(--color-cream);
  font-style: italic;
  text-align: center;
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

/* ─── BLOG CARDS ─── */
.blog-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.35s ease;
}

.blog-card:hover {
  box-shadow: 0 10px 35px rgba(61, 90, 115, 0.14);
  transform: translateY(-3px);
}

.blog-card-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image { transform: scale(1.04); }

.blog-card-body { padding: 28px; }

.blog-card-meta {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-copper);
  margin-bottom: 10px;
}

.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.blog-card-link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-olive);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.blog-card-link:hover {
  color: var(--color-copper);
  border-bottom-color: var(--color-copper);
  text-decoration: none;
}

/* ─── GLOSSARY RAIL ─── */
.glossary-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--spacing-lg);
  align-items: start;
}

.glossary-rail {
  position: sticky;
  top: 90px;
  background-color: var(--color-cream);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-primary);
  border-radius: 2px;
  padding: var(--spacing-md);
}

.glossary-rail h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-copper);
  margin-bottom: var(--spacing-sm);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}

.glossary-term {
  margin-bottom: var(--spacing-sm);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid rgba(216, 208, 192, 0.5);
}

.glossary-term:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.glossary-term dt {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 4px;
}

.glossary-term dd {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ─── TIMELINE ─── */
.timeline {
  position: relative;
  padding-left: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-olive), var(--color-copper), var(--color-primary));
}

.timeline-item {
  position: relative;
  margin-bottom: var(--spacing-lg);
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-marker {
  position: absolute;
  left: -49px;
  top: 4px;
  width: 20px;
  height: 20px;
  background-color: var(--color-olive);
  border: 3px solid var(--color-white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--color-olive);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-copper);
  margin-bottom: 6px;
}

.timeline-item h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 0.97rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ─── MYTH / TRUTH TOGGLE ─── */
.myth-item {
  border: 1px solid var(--color-border);
  border-radius: 2px;
  margin-bottom: var(--spacing-md);
  overflow: hidden;
}

.myth-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  background-color: var(--color-cream);
  cursor: pointer;
  transition: background-color var(--transition);
}

.myth-header:hover { background-color: var(--color-cream-dark); }

.myth-badge {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  flex-shrink: 0;
}

.myth-badge.myth {
  background-color: rgba(140, 106, 74, 0.15);
  color: var(--color-copper);
  border: 1px solid rgba(140, 106, 74, 0.3);
}

.myth-badge.truth {
  background-color: rgba(122, 140, 94, 0.15);
  color: var(--color-olive);
  border: 1px solid rgba(122, 140, 94, 0.3);
}

.myth-question {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  flex: 1;
}

.myth-toggle-icon {
  font-size: 1.2rem;
  color: var(--color-primary);
  transition: transform 0.3s ease;
  font-style: normal;
}

.myth-item.open .myth-toggle-icon { transform: rotate(45deg); }

.myth-body {
  padding: 0 var(--spacing-md);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background-color: var(--color-white);
}

.myth-item.open .myth-body {
  max-height: 400px;
  padding: var(--spacing-md);
}

.myth-body p {
  font-size: 0.97rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ─── FAQ ACCORDION ─── */
.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md) 0;
  cursor: pointer;
  gap: var(--spacing-sm);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  transition: color var(--transition);
  user-select: none;
}

.faq-question:hover { color: var(--color-olive); }

.faq-icon {
  width: 28px;
  height: 28px;
  background-color: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--color-primary);
  transition: all var(--transition);
  font-style: normal;
}

.faq-item.open .faq-icon {
  background-color: var(--color-primary);
  color: var(--color-cream);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
  padding: 0 0 var(--spacing-md) 0;
}

.faq-answer-inner p {
  font-size: 0.97rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ─── CTA SECTION ─── */
.cta-section {
  position: relative;
  background-color: var(--color-primary-deeper);
  padding: var(--spacing-xxl) 0;
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.015) 40px,
      rgba(255,255,255,0.015) 41px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.015) 40px,
      rgba(255,255,255,0.015) 41px
    );
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.cta-content h2 {
  color: var(--color-cream);
  margin-bottom: var(--spacing-sm);
}

.cta-content p {
  color: rgba(245, 240, 232, 0.72);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-md);
}

/* ─── PULL QUOTE ─── */
.pull-quote {
  border-left: 4px solid var(--color-olive);
  padding: var(--spacing-sm) var(--spacing-md);
  margin: var(--spacing-md) 0;
  background-color: rgba(122, 140, 94, 0.05);
}

.pull-quote p {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-primary-dark);
  margin: 0;
  line-height: 1.7;
}

.pull-quote-copper {
  border-left-color: var(--color-copper);
  background-color: rgba(140, 106, 74, 0.05);
}

/* ─── FULL-WIDTH IMAGE SECTION ─── */
.full-image-section {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.full-image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 44, 58, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.full-image-text {
  text-align: center;
  color: var(--color-cream);
  max-width: 600px;
  padding: var(--spacing-md);
}

.full-image-text h2 {
  color: var(--color-cream);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: var(--spacing-sm);
}

.full-image-text p {
  color: rgba(245, 240, 232, 0.85);
  font-style: italic;
}

/* ─── DISCLAIMER / NOTICE ─── */
.content-notice {
  background-color: rgba(122, 140, 94, 0.08);
  border: 1px solid rgba(122, 140, 94, 0.25);
  border-left: 4px solid var(--color-olive);
  border-radius: 2px;
  padding: var(--spacing-md);
  margin: var(--spacing-md) 0;
}

.content-notice h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-olive);
  margin-bottom: 8px;
}

.content-notice p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

.content-notice.copper-notice {
  background-color: rgba(140, 106, 74, 0.07);
  border-color: rgba(140, 106, 74, 0.25);
  border-left-color: var(--color-copper);
}

.content-notice.copper-notice h4 { color: var(--color-copper); }

/* ─── HEALTH DISCLAIMER BOX ─── */
.health-disclaimer-box {
  background-color: var(--color-primary-deeper);
  border: 2px solid var(--color-olive);
  border-radius: 2px;
  padding: var(--spacing-lg);
  text-align: center;
  margin: var(--spacing-md) 0;
}

.health-disclaimer-box h2 {
  color: var(--color-cream);
  margin-bottom: var(--spacing-sm);
}

.health-disclaimer-box p {
  color: rgba(245, 240, 232, 0.82);
}

/* ─── DEFINITION LIST ─── */
.definition-list { margin: 0; }

.definition-list dt {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 4px;
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--color-border);
}

.definition-list dt:first-child { border-top: none; padding-top: 0; }

.definition-list dd {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0 0 var(--spacing-xs) 0;
  padding-left: var(--spacing-sm);
}

/* ─── CONTACT FORM ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: start;
}

.form-group { margin-bottom: var(--spacing-sm); }

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  margin-bottom: 6px;
}

.form-input,
.form-textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--color-text);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 12px 16px;
  transition: all var(--transition);
  outline: none;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(61, 90, 115, 0.1);
}

.form-textarea { min-height: 160px; }

.form-disclaimer {
  font-size: 0.84rem;
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.55;
  padding: var(--spacing-sm);
  background-color: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  margin-bottom: var(--spacing-md);
}

.contact-details { padding: var(--spacing-md) 0; }

.contact-detail-item {
  display: flex;
  gap: 14px;
  margin-bottom: var(--spacing-md);
  align-items: flex-start;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  background-color: rgba(61, 90, 115, 0.08);
  border: 1px solid rgba(61, 90, 115, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--color-primary);
}

.contact-detail-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-copper);
  display: block;
  margin-bottom: 3px;
}

.contact-detail-value {
  font-size: 0.97rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ─── MAP PLACEHOLDER ─── */
.map-placeholder {
  width: 100%;
  height: 240px;
  background-color: var(--color-cream-dark);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: var(--spacing-md);
}

/* ─── COOKIE BANNER ─── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: var(--color-primary-deeper);
  border-top: 2px solid var(--color-olive);
  padding: var(--spacing-sm) var(--spacing-md);
  display: none;
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.85);
  line-height: 1.5;
  min-width: 220px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  display: inline-block;
  line-height: 1.4;
}

.cookie-btn-accept {
  background-color: var(--color-olive);
  color: var(--color-cream);
  border-color: var(--color-olive);
}

.cookie-btn-accept:hover {
  background-color: var(--color-olive-light);
  border-color: var(--color-olive-light);
  text-decoration: none;
  color: var(--color-white);
}

.cookie-btn-reject {
  background-color: transparent;
  color: rgba(245, 240, 232, 0.7);
  border-color: rgba(245, 240, 232, 0.3);
}

.cookie-btn-reject:hover {
  border-color: rgba(245, 240, 232, 0.6);
  color: var(--color-cream);
  text-decoration: none;
}

.cookie-btn-policy {
  background-color: transparent;
  color: var(--color-copper-light);
  border-color: rgba(140, 106, 74, 0.4);
}

.cookie-btn-policy:hover {
  border-color: var(--color-copper-light);
  text-decoration: none;
  color: var(--color-copper-light);
}

/* ─── FOOTER ─── */
#site-footer {
  background-color: var(--color-primary-deeper);
  border-top: 2px solid var(--color-olive);
  padding-top: var(--spacing-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.footer-brand p {
  font-size: 0.92rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-olive-light);
  border-top: 1px solid rgba(245, 240, 232, 0.12);
  padding-top: var(--spacing-sm);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-cream-dark);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.12);
}

.footer-links {
  list-style: none;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-olive-light);
  text-decoration: none;
}

.footer-contact-item {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-contact-item strong {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-cream-dark);
  display: block;
  margin-bottom: 2px;
}

.footer-hours {
  font-size: 0.88rem;
  color: rgba(245, 240, 232, 0.5);
  margin-top: var(--spacing-sm);
  padding-top: var(--spacing-sm);
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  line-height: 1.7;
}

.footer-bottom {
  padding: var(--spacing-md) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.footer-copy {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.38);
  letter-spacing: 0.05em;
}

.footer-edu-note {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(154, 170, 122, 0.6);
}

/* ─── LEGAL PAGES ─── */
.legal-hero {
  background-color: var(--color-primary-deeper);
  padding: var(--spacing-xl) 0;
  border-bottom: 2px solid var(--color-olive);
}

.legal-hero h1 {
  color: var(--color-cream);
  margin-bottom: var(--spacing-xs);
}

.legal-hero p {
  color: rgba(245, 240, 232, 0.65);
  font-style: italic;
}

.legal-body {
  max-width: 840px;
}

.legal-body h2 {
  color: var(--color-primary-dark);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}

.legal-body h3 {
  color: var(--color-primary);
  margin-top: var(--spacing-md);
  margin-bottom: 10px;
}

.legal-body p,
.legal-body li {
  font-size: 0.97rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.legal-body ul,
.legal-body ol {
  padding-left: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

.legal-body li { margin-bottom: 6px; }

.legal-body blockquote {
  border-left: 4px solid var(--color-copper);
  padding: var(--spacing-sm) var(--spacing-md);
  background-color: rgba(140, 106, 74, 0.06);
  margin: var(--spacing-md) 0;
  border-radius: 2px;
}

.legal-body blockquote p {
  font-style: italic;
  margin: 0;
}

.legal-sticky-nav {
  position: sticky;
  top: 90px;
  background-color: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: var(--spacing-md);
  max-height: calc(100vh - 110px);
  overflow-y: auto;
}

.legal-sticky-nav h4 {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-copper);
  margin-bottom: 14px;
}

.legal-sticky-nav ul {
  list-style: none;
  padding: 0;
}

.legal-sticky-nav li { margin-bottom: 8px; }

.legal-sticky-nav a {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.legal-sticky-nav a:hover { color: var(--color-primary); }

.legal-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: var(--spacing-lg);
  align-items: start;
}

/* ─── NUMBERED CLAUSE ─── */
.clause {
  counter-increment: clause;
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--color-border);
}

.clause:last-of-type { border-bottom: none; }

.clause h2::before {
  content: counter(clause) ". ";
  color: var(--color-copper);
  font-weight: 900;
}

.clauses-list { counter-reset: clause; }

/* ─── COOKIE TABLE ─── */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--spacing-md) 0;
  font-size: 0.92rem;
}

.cookie-table th {
  background-color: var(--color-primary-deeper);
  color: var(--color-cream-dark);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
  border: 1px solid rgba(245, 240, 232, 0.08);
}

.cookie-table td {
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  vertical-align: top;
  line-height: 1.55;
}

.cookie-table tr:nth-child(even) td {
  background-color: rgba(245, 240, 232, 0.4);
}

/* ─── PROGRESS BAR (TERMS) ─── */
#reading-progress {
  position: fixed;
  top: 70px;
  left: 0;
  height: 3px;
  background-color: var(--color-olive);
  width: 0%;
  z-index: 999;
  transition: width 0.1s linear;
}

/* ─── THANK YOU ─── */
.thank-you-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-cream);
  position: relative;
  overflow: hidden;
}

.thank-you-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(122, 140, 94, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(61, 90, 115, 0.06) 0%, transparent 50%);
}

.thank-you-box {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  padding: var(--spacing-xl) var(--spacing-md);
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(122, 140, 94, 0.15);
  border: 2px solid var(--color-olive);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  font-size: 2rem;
  color: var(--color-olive);
}

.thank-you-box h1 {
  color: var(--color-primary-dark);
  margin-bottom: var(--spacing-sm);
}

.thank-you-box p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

/* ─── HEALTH DISCLAIMER PAGE ─── */
.health-page-hero {
  background-color: var(--color-primary-deeper);
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--color-olive);
}

.health-shield {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.shield-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(122, 140, 94, 0.2);
  border: 2px solid rgba(154, 170, 122, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

/* ─── ABOUT PAGE ─── */
.vision-quote {
  border: 2px solid var(--color-olive);
  padding: var(--spacing-lg);
  text-align: center;
  position: relative;
  margin: var(--spacing-lg) 0;
  background-color: rgba(122, 140, 94, 0.04);
}

.vision-quote::before {
  content: '"';
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 5rem;
  color: var(--color-olive);
  line-height: 1;
  background-color: var(--color-white);
  padding: 0 10px;
}

.vision-quote p {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-primary-dark);
  line-height: 1.7;
  margin: 0;
}

.principle-item {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  align-items: flex-start;
}

.principle-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(122, 140, 94, 0.1);
  border: 1px solid rgba(122, 140, 94, 0.25);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--color-olive);
}

/* ─── BLOG POST ─── */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--spacing-lg);
  align-items: start;
}

.post-sidebar {
  position: sticky;
  top: 90px;
}

.sidebar-widget {
  background-color: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.sidebar-widget h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-copper);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}

.sidebar-link-list {
  list-style: none;
  padding: 0;
}

.sidebar-link-list li {
  border-bottom: 1px solid rgba(216, 208, 192, 0.5);
  padding: 8px 0;
}

.sidebar-link-list li:last-child { border-bottom: none; }

.sidebar-link-list a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition);
  line-height: 1.45;
  display: block;
}

.sidebar-link-list a:hover { color: var(--color-primary); }

.post-hero-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: var(--spacing-lg);
}

.post-meta {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-md);
}

.post-meta-item {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.post-meta-item span {
  color: var(--color-copper);
}

.post-content h2 {
  color: var(--color-primary-dark);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
}

.post-content h3 {
  color: var(--color-primary);
  margin-top: var(--spacing-md);
  margin-bottom: 10px;
}

.post-content p { margin-bottom: var(--spacing-sm); }

.post-content ul,
.post-content ol {
  padding-left: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

.post-content li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.7;
}

.callout-box {
  background-color: rgba(61, 90, 115, 0.06);
  border: 1px solid rgba(61, 90, 115, 0.15);
  border-left: 4px solid var(--color-primary);
  border-radius: 2px;
  padding: var(--spacing-md);
  margin: var(--spacing-md) 0;
}

.callout-box h4 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.callout-box p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0;
}

.post-divider {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin: var(--spacing-lg) 0;
}

.post-divider::before,
.post-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--color-border);
}

.post-divider span {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

/* ─── DATA HIGHLIGHT ─── */
.data-highlight {
  display: inline-block;
  background-color: var(--color-primary-deeper);
  color: var(--color-cream);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  padding: 6px 18px;
  border-radius: 2px;
  margin: 4px 0;
}

.data-block {
  background-color: var(--color-cream);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-copper);
  border-radius: 2px;
  padding: var(--spacing-md);
  text-align: center;
  margin: var(--spacing-sm) 0;
}

.data-block .data-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-copper);
  line-height: 1;
  margin-bottom: 6px;
}

.data-block .data-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ─── BLOG HERO ─── */
.blog-hero {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.blog-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 44, 58, 0.65);
  display: flex;
  align-items: flex-end;
  padding: var(--spacing-lg) var(--spacing-md);
}

.blog-hero-content { max-width: var(--max-width); margin: 0 auto; width: 100%; }

.blog-hero-content h1 { color: var(--color-cream); margin-bottom: 10px; }

.blog-hero-content p { color: rgba(245, 240, 232, 0.8); font-style: italic; margin: 0; }

/* ─── ALTERNATING IMAGE-TEXT (BLOG2) ─── */
.alt-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
  margin-bottom: var(--spacing-xl);
}

.alt-section.reverse { direction: rtl; }
.alt-section.reverse > * { direction: ltr; }

.alt-section img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 2px;
}

/* ─── STUDY SECTIONS (BLOG3) ─── */
.study-section {
  background-color: var(--color-cream);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-primary);
  border-radius: 2px;
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.study-section h2 {
  color: var(--color-primary-dark);
  margin-bottom: var(--spacing-sm);
}

/* ─── MISC UTILITIES ─── */
.mb-xs { margin-bottom: var(--spacing-xs); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }

.text-center { text-align: center; }
.text-right { text-align: right; }

.fw-light { font-weight: 300; }
.fw-normal { font-weight: 400; }
.fw-bold { font-weight: 700; }

.italic { font-style: italic; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .glossary-layout { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-sticky-nav { position: static; }
}

@media (max-width: 900px) {
  .two-col-layout { grid-template-columns: 1fr; }
  .two-col-layout.reverse { direction: ltr; }
  .contact-layout { grid-template-columns: 1fr; }
  .alt-section { grid-template-columns: 1fr; }
  .alt-section.reverse { direction: ltr; }
  .stat-strip-inner { gap: var(--spacing-sm); }
}

@media (max-width: 768px) {
  .header-inner { padding: 0 var(--spacing-sm); }
  .site-nav { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background-color: var(--color-primary-deeper); padding: var(--spacing-sm); gap: 4px; border-top: 1px solid rgba(245,240,232,0.1); }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .card-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-section { height: 80vh; }
  .two-col-image img { height: 300px; }
  .blog-hero { height: 280px; }
  .section-pad { padding: var(--spacing-lg) 0; }
  .section-pad-lg { padding: var(--spacing-xl) 0; }
  .cta-section { padding: var(--spacing-xl) 0; }
  .container-site { padding: 0 var(--spacing-sm); }
  .full-image-section { height: 320px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stat-item { min-width: 130px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2rem; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  .cookie-inner { flex-direction: column; }
  .post-hero-image { height: 260px; }
}
