@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400&family=Open+Sans:wght@300;400;500;600;700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #2C3E50;
  --accent-gold: #F39C12;
  --accent-green: #27AE60;
  --light-bg: #ECF0F1;
  --white: #ffffff;
  --text-dark: #2C3E50;
  --text-mid: #4a5568;
  --text-light: #718096;
  --border: #dde2e8;
  --shadow: 0 2px 16px rgba(44,62,80,0.10);
  --shadow-card: 0 4px 24px rgba(44,62,80,0.12);
  --radius: 4px;
  --container: 1200px;
  --font-serif: 'Merriweather', Georgia, serif;
  --font-sans: 'Open Sans', 'Roboto', Arial, sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--accent-green);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--primary);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-bottom: 0.875rem; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.45rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1.25rem; font-size: 1rem; color: var(--text-mid); line-height: 1.75; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
li { margin-bottom: 0.5rem; color: var(--text-mid); line-height: 1.7; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }
.section--light { background: var(--light-bg); }
.section--dark { background: var(--primary); color: var(--white); }
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.82); }

.divider {
  width: 56px;
  height: 3px;
  background: var(--accent-gold);
  margin: 1rem 0 1.75rem;
  border: none;
  display: block;
}

.divider--center { margin-left: auto; margin-right: auto; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 0.5rem;
}

.text-center { text-align: center; }
.text-lead { font-size: 1.15rem; line-height: 1.8; color: var(--text-mid); }

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.28s ease, color 0.28s ease, transform 0.18s ease;
  text-decoration: none;
}

.btn--primary {
  background: var(--accent-gold);
  color: var(--white);
}

.btn--primary:hover {
  background: #d68910;
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}

.btn--outline-light:hover {
  background: var(--white);
  color: var(--primary);
}

/* ===== HEADER / NAV ===== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(44,62,80,0.07);
  height: 72px;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.site-logo {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.01em;
  text-decoration: none;
}

.site-logo span {
  color: var(--accent-gold);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.02em;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--light-bg);
  color: var(--accent-gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s;
}

.page-body {
  margin-top: 72px;
}

/* ===== HERO ===== */

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(44,62,80,0.88) 45%, rgba(44,62,80,0.35) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px;
}

.hero__content h1 {
  color: var(--white);
  max-width: 640px;
  margin-bottom: 1.25rem;
}

.hero__content .text-lead {
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero--inner {
  min-height: 44vh;
}

.hero--inner .hero__content h1 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
}

/* ===== EDITORIAL INTRO ===== */

.editorial-intro {
  padding: 72px 0;
  background: var(--white);
}

.editorial-intro__text {
  max-width: 860px;
  margin: 0 auto;
}

.editorial-intro__text p:first-of-type {
  font-size: 1.2rem;
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--primary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.editorial-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 3rem 0;
}

.intro-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 3rem;
}

.intro-two-col img {
  border-radius: var(--radius);
  width: 100%;
  height: 340px;
  object-fit: cover;
}

/* ===== TOPIC CARDS ===== */

.topic-cards {
  padding: 80px 0;
  background: var(--light-bg);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 2.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(44,62,80,0.16);
}

.card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card__body {
  padding: 24px;
}

.card__body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.card__body p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.card__link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card__link:hover {
  color: var(--accent-green);
}

/* ===== MISCONCEPTIONS ACCORDION ===== */

.misconceptions {
  padding: 80px 0;
  background: var(--white);
}

.misconceptions-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: start;
  margin-top: 2.5rem;
}

.accordion-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.accordion-btn h3 {
  font-size: 1rem;
  margin: 0;
  color: var(--primary);
}

.accordion-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.accordion-icon svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2.5;
  transition: transform 0.3s;
}

.accordion-btn[aria-expanded="true"] .accordion-icon {
  background: var(--accent-green);
}

.accordion-btn[aria-expanded="true"] .accordion-icon svg {
  transform: rotate(180deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-panel p {
  padding-bottom: 20px;
  font-size: 0.95rem;
}

.misconceptions-imgs {
  display: grid;
  gap: 20px;
  position: sticky;
  top: 100px;
}

.misconceptions-imgs img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ===== KNOWLEDGE BLOCK ===== */

.knowledge-block {
  padding: 80px 0;
  background: var(--light-bg);
}

.knowledge-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 2.5rem;
}

.glossary-rail {
  background: var(--white);
  border-left: 4px solid var(--accent-gold);
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 2rem;
}

.glossary-rail h4 {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-family: var(--font-sans);
  font-weight: 700;
}

.glossary-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.glossary-item:last-child { border-bottom: none; }

.glossary-item dt {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 3px;
}

.glossary-item dd {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.knowledge-imgs {
  display: grid;
  gap: 20px;
}

.knowledge-imgs img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}

.accent-panel {
  background: var(--primary);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius);
  margin-top: 1.5rem;
}

.accent-panel p {
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  font-style: italic;
  margin: 0;
  line-height: 1.7;
}

/* ===== FAQ PREVIEW ===== */

.faq-preview {
  padding: 80px 0;
  background: var(--white);
}

.faq-preview-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 2.5rem;
}

.faq-list {
  list-style: none;
  padding: 0;
}

.faq-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.faq-list li strong {
  display: block;
  color: var(--primary);
  font-family: var(--font-serif);
  margin-bottom: 4px;
}

.faq-preview__img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ===== CONTACT PREVIEW ===== */

.contact-preview {
  padding: 80px 0;
  background: var(--light-bg);
}

.contact-preview-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 2.5rem;
}

.contact-info-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  width: 36px;
  height: 36px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent-gold);
  fill: none;
  stroke-width: 2;
}

.contact-info-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.contact-preview__img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ===== SOFT CTA ===== */

.soft-cta {
  padding: 100px 0;
  background: var(--primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.soft-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.soft-cta__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

.soft-cta__content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.soft-cta__content p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ===== BLOG GRID ===== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 2.5rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.blog-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__meta {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.blog-card__body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card__body p {
  font-size: 0.9rem;
  flex: 1;
  margin-bottom: 1rem;
}

.read-more {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.read-more:hover { color: var(--accent-green); }

/* ===== ARTICLE LAYOUT ===== */

.article-hero {
  min-height: 50vh;
}

.article-body {
  padding: 72px 0;
}

.article-body .container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}

.article-content h2 {
  margin-top: 2.5rem;
}

.article-content h3 {
  margin-top: 2rem;
}

.article-content p + h2,
.article-content p + h3 { margin-top: 2rem; }

.article-meta {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-widget h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.sidebar-widget ul {
  list-style: none;
  padding: 0;
}

.sidebar-widget ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

.sidebar-widget ul li:last-child { border-bottom: none; }

.sidebar-widget ul li a {
  color: var(--primary);
  font-weight: 500;
}

.sidebar-widget ul li a:hover { color: var(--accent-gold); }

.key-takeaway {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 2.5rem 0;
}

.key-takeaway h4 {
  color: var(--accent-gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-family: var(--font-sans);
}

.key-takeaway p {
  color: rgba(255,255,255,0.9);
  margin: 0;
  font-size: 0.95rem;
}

.article-img-full {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 2.5rem 0;
}

.article-img-half {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

.two-col-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin: 2rem 0;
}

.two-col-article img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--light-bg);
  border-radius: var(--radius);
  margin: 2.5rem 0;
  overflow: hidden;
}

.stat-item {
  padding: 24px 20px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.stat-item:last-child { border-right: none; }

.stat-item .stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  display: block;
}

.stat-item .stat-val {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--accent-gold);
}

/* ===== MYTH MATRIX ===== */

.myth-matrix {
  width: 100%;
  margin: 2.5rem 0;
  border-collapse: collapse;
}

.myth-matrix th {
  background: var(--primary);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.myth-matrix th:first-child { border-radius: 4px 0 0 0; }
.myth-matrix th:last-child { border-radius: 0 4px 0 0; }

.myth-matrix td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  vertical-align: top;
  color: var(--text-mid);
  line-height: 1.65;
}

.myth-matrix tr:last-child td { border-bottom: none; }
.myth-matrix tr:nth-child(even) { background: var(--light-bg); }

.myth-tag {
  display: inline-block;
  background: #fde8c8;
  color: #b7680a;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 4px;
}

.reality-tag {
  display: inline-block;
  background: #d4edda;
  color: #1a6b38;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 4px;
}

/* ===== TIMELINE ===== */

.timeline {
  position: relative;
  padding: 2rem 0;
  margin: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent-gold);
}

.timeline-item {
  position: relative;
  padding: 0 0 2.5rem 60px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--accent-gold);
}

.timeline-era {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.timeline-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

/* ===== ROUTINE BLOCKS ===== */

.routine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 2.5rem 0;
}

.routine-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--accent-gold);
}

.routine-card.evening { border-top-color: var(--accent-green); }

.routine-card h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.routine-card ul {
  padding-left: 1.25rem;
}

.routine-card ul li {
  font-size: 0.9rem;
}

/* ===== CONTEXT CARDS ===== */

.context-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 2.5rem 0;
}

.context-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-bottom: 3px solid var(--accent-gold);
}

.context-card h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

/* ===== CONTACT PAGE ===== */

.contact-page {
  padding: 80px 0;
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 2.5rem;
}

.contact-form-block h2 { margin-bottom: 0.5rem; }

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--primary);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-gold);
}

.form-group textarea { min-height: 140px; }

/* ===== FOOTER ===== */

.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.82);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand .site-logo {
  color: var(--white);
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
  color: rgba(255,255,255,0);
}

.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--accent-gold); }

.footer-contact-info p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.footer-disclaimer {
  width: 100%;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 8px;
  text-align: center;
}

.footer-disclaimer p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.42);
  margin: 0;
}

/* ===== LEGAL PAGES ===== */

.legal-page {
  padding: 80px 0;
  background: var(--white);
}

.legal-page h1 {
  margin-bottom: 0.5rem;
}

.legal-page .updated {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.legal-page h2 {
  margin-top: 2.5rem;
  font-size: 1.3rem;
}

.legal-page p, .legal-page li {
  font-size: 0.95rem;
}

/* ===== ABOUT PAGE ===== */

.about-section {
  padding: 80px 0;
}

.about-section .container--narrow p:first-of-type {
  font-size: 1.15rem;
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--primary);
  line-height: 1.8;
}

/* ===== THANK YOU PAGE ===== */

.thankyou-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.thankyou-card {
  max-width: 520px;
  width: 100%;
  text-align: center;
  background: var(--white);
  padding: 56px 48px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.thankyou-card .icon {
  width: 56px;
  height: 56px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.thankyou-card .icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent-green);
  fill: none;
  stroke-width: 2.5;
}

.thankyou-card h1 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.thankyou-card p {
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  color: var(--text-light);
}

/* ===== COOKIE BANNER ===== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--primary);
  color: var(--white);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  margin: 0;
  max-width: 700px;
}

.cookie-banner p a {
  color: var(--accent-gold);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-accept {
  background: var(--accent-gold);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.cookie-accept:hover { background: #d68910; }

.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-decline:hover {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}

/* ===== BREADCRUMB ===== */

.breadcrumb {
  padding: 16px 0;
  background: var(--light-bg);
  border-bottom: 1px solid var(--border);
}

.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb li {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb li a {
  color: var(--accent-gold);
  text-decoration: none;
}

.breadcrumb li a:hover { color: var(--accent-green); }

.breadcrumb li + li::before {
  content: '/';
  color: var(--border);
}

/* ===== SECTION HEADERS ===== */

.section-header {
  margin-bottom: 0;
}

.section-header.centered {
  text-align: center;
}

/* ===== 404 PAGE ===== */

.page-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.page-404 .code {
  font-family: var(--font-serif);
  font-size: 8rem;
  font-weight: 900;
  color: var(--light-bg);
  line-height: 1;
  margin-bottom: 0;
}

/* ===== SCHEDULES ===== */

.hours-list {
  list-style: none;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.hours-list li:last-child { border-bottom: none; }

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .misconceptions-layout { grid-template-columns: 1fr; }
  .misconceptions-imgs { position: static; grid-template-columns: 1fr 1fr; }
  .article-body .container { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .context-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .main-nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 4px; }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero { min-height: 55vh; }
  .cards-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .intro-two-col { grid-template-columns: 1fr; }
  .knowledge-layout { grid-template-columns: 1fr; }
  .faq-preview-layout { grid-template-columns: 1fr; }
  .contact-preview-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .two-col-article { grid-template-columns: 1fr; }
  .routine-grid { grid-template-columns: 1fr; }
  .context-cards { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-banner-actions { width: 100%; }
}

@media (max-width: 480px) {
  .hero__content h1 { font-size: 1.7rem; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  .thankyou-card { padding: 36px 24px; }
  .misconceptions-imgs { grid-template-columns: 1fr; }
}
