@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');

/* =============================
   CSS VARIABLES / PALETTE
   ============================= */
:root {
  --cream:        #F8F5EF;
  --white:        #FFFFFF;
  --charcoal:     #2C2C2C;
  --charcoal-mid: #4A4A4A;
  --charcoal-light:#7A7A7A;
  --navy:         #1C2B4A;
  --navy-mid:     #2E4270;
  --ochre:        #C9A96E;
  --ochre-light:  #E2C999;
  --border:       #E0DBD2;
  --border-dark:  #C5BFB4;
  --bg-section:   #F2EDE5;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --transition:   0.28s ease;
  --radius:       4px;
  --shadow-sm:    0 2px 8px rgba(28,43,74,0.06);
  --shadow-md:    0 6px 24px rgba(28,43,74,0.10);
  --shadow-lg:    0 16px 48px rgba(28,43,74,0.13);
}

/* =============================
   RESET & BASE
   ============================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--ochre); }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* =============================
   TYPOGRAPHY
   ============================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }
p { margin-bottom: 1.1rem; color: var(--charcoal-mid); }
p:last-child { margin-bottom: 0; }
.display-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--charcoal-mid);
  font-weight: 300;
}
.overline {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ochre);
}
.section-title { margin-bottom: 0.6rem; }
.section-lead { font-size: 1.05rem; color: var(--charcoal-mid); max-width: 560px; }

/* =============================
   LAYOUT UTILITIES
   ============================= */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 780px; }
.container--wide { max-width: 1340px; }
.section { padding: 90px 0; }
.section--sm { padding: 60px 0; }
.section--lg { padding: 120px 0; }
.section--dark { background-color: var(--navy); }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }
.section--dark p,
.section--dark .display-text { color: rgba(255,255,255,0.72); }
.section--alt { background-color: var(--bg-section); }
.section--white { background-color: var(--white); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-sm { margin-top: 24px; }
.mt-md { margin-top: 40px; }
.mt-lg { margin-top: 64px; }
.mb-sm { margin-bottom: 24px; }
.mb-md { margin-bottom: 40px; }
.divider {
  width: 56px; height: 2px;
  background: var(--ochre);
  margin: 20px 0;
}
.divider--center { margin: 20px auto; }

/* =============================
   BUTTONS
   ============================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}
.btn--primary {
  background-color: var(--navy);
  color: var(--white);
}
.btn--primary:hover {
  background-color: var(--navy-mid);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background-color: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn--outline:hover {
  background-color: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}
.btn--ochre {
  background-color: var(--ochre);
  color: var(--white);
}
.btn--ochre:hover {
  background-color: #b8904f;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: var(--charcoal-mid);
  border: 1px solid var(--border);
  padding: 10px 22px;
}
.btn--ghost:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.btn--sm { padding: 9px 20px; font-size: 0.75rem; }
.btn--lg { padding: 16px 36px; font-size: 0.87rem; }
.btn--white {
  background: var(--white);
  color: var(--navy);
}
.btn--white:hover {
  background: var(--cream);
  color: var(--navy);
}

/* =============================
   HEADER / NAV
   ============================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background-color: rgba(248,245,239,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.04em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo span { color: var(--ochre); }
.logo-mark {
  width: 34px; height: 34px;
  background: var(--navy);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.05em;
}
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}
.main-nav a:hover,
.main-nav a.active { color: var(--navy); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--ochre);
  border-radius: 1px;
}
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 5px; }
.nav-dropdown-toggle::after {
  content: '';
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--transition);
}
.nav-dropdown:hover .nav-dropdown-toggle::after { transform: rotate(225deg) translateY(0); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 0;
  min-width: 220px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 9px 18px;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--charcoal-mid);
  border-radius: 0;
}
.dropdown-menu a:hover { background: var(--cream); color: var(--navy); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--charcoal); transition: all var(--transition);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 0;
}
.mobile-nav a {
  display: block;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal-mid);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--navy); background: var(--cream); }
.mobile-nav.open { display: flex; }

/* =============================
   HERO SECTION
   ============================= */
.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 80px 100px 0;
}
.hero-image-col {
  position: relative;
  overflow: hidden;
}
.hero-image-col img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--navy);
}
.hero .display-text { margin-bottom: 32px; font-size: 1.15rem; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* =============================
   CARDS
   ============================= */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 24px; }
.card-body h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--navy); }
.card-body p { font-size: 0.88rem; color: var(--charcoal-light); margin-bottom: 16px; }
.card-meta {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.73rem; color: var(--charcoal-light);
  letter-spacing: 0.04em;
}
.card-tag {
  display: inline-block;
  background: var(--bg-section);
  color: var(--navy);
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.card--featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.card--featured .card-img { aspect-ratio: unset; min-height: 280px; }
.card--featured .card-body { padding: 36px; display: flex; flex-direction: column; justify-content: center; }

/* =============================
   ARTICLE LAYOUT
   ============================= */
.article-header { padding: 80px 0 60px; }
.article-body { padding: 0 0 80px; }
.article-content { max-width: 720px; }
.article-content h2 { font-size: 1.9rem; margin: 48px 0 18px; }
.article-content h3 { font-size: 1.4rem; margin: 36px 0 14px; }
.article-content p { font-size: 1.02rem; line-height: 1.85; margin-bottom: 1.4rem; color: var(--charcoal-mid); }
.article-content ul, .article-content ol { margin: 1rem 0 1.4rem 1.5rem; }
.article-content li { margin-bottom: 0.6rem; font-size: 1rem; color: var(--charcoal-mid); }
.article-content ul li { list-style: disc; }
.article-content ol li { list-style: decimal; }
.article-content blockquote {
  border-left: 3px solid var(--ochre);
  margin: 36px 0;
  padding: 20px 28px;
  background: var(--bg-section);
  border-radius: 0 6px 6px 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
}
.article-content img {
  width: 100%;
  border-radius: 6px;
  margin: 32px 0;
  border: 1px solid var(--border);
}
.article-sidebar { padding-left: 48px; }
.article-layout { display: grid; grid-template-columns: 1fr 340px; gap: 64px; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px;
  margin-bottom: 28px;
}
.sidebar-widget h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sidebar-links a {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--charcoal-mid);
}
.sidebar-links a:last-child { border-bottom: none; }
.sidebar-links a:hover { color: var(--navy); }
.sidebar-links a::before {
  content: '→'; color: var(--ochre); font-size: 0.8rem;
}

/* =============================
   TABLE OF CONTENTS
   ============================= */
.toc {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px 28px;
  margin: 32px 0;
}
.toc h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-bottom: 14px;
}
.toc ol { margin-left: 0; counter-reset: toc-counter; }
.toc li { counter-increment: toc-counter; list-style: none; padding: 5px 0; font-size: 0.88rem; }
.toc a { color: var(--navy); font-weight: 500; }
.toc a:hover { color: var(--ochre); }

/* =============================
   STATS / NUMBERS
   ============================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.stat-item {
  background: var(--white);
  padding: 36px 28px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number sup { font-size: 1.2rem; vertical-align: super; }
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  font-weight: 600;
}

/* =============================
   TIMELINE
   ============================= */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 12px; top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item { position: relative; margin-bottom: 48px; }
.timeline-dot {
  position: absolute;
  left: -40px; top: 6px;
  width: 14px; height: 14px;
  background: var(--ochre);
  border-radius: 50%;
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--ochre);
}
.timeline-year {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.timeline-title { font-size: 1rem; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; }
.timeline-text { font-size: 0.9rem; color: var(--charcoal-mid); line-height: 1.7; }

/* =============================
   FORMS
   ============================= */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 7px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--navy); }
.form-control::placeholder { color: var(--charcoal-light); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-success {
  display: none;
  background: #EAF4EC;
  border: 1.5px solid #5CB875;
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-top: 16px;
  color: #2D6E3E;
  font-size: 0.92rem;
  font-weight: 500;
}
.form-success.visible { display: block; }
.form-error {
  display: none;
  background: #FBEAEA;
  border: 1.5px solid #D95C5C;
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-top: 10px;
  color: #8B2020;
  font-size: 0.85rem;
}
.form-error.visible { display: block; }
.form-hint { font-size: 0.78rem; color: var(--charcoal-light); margin-top: 5px; }

/* =============================
   QUOTE / PULLOUT
   ============================= */
.pullquote {
  text-align: center;
  padding: 60px 40px;
  background: var(--navy);
  border-radius: 8px;
  margin: 48px 0;
}
.pullquote p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto 16px;
}
.pullquote cite { font-size: 0.82rem; color: var(--ochre-light); letter-spacing: 0.1em; text-transform: uppercase; }

/* =============================
   BREADCRUMB
   ============================= */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem;
  color: var(--charcoal-light);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--charcoal-mid); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span { color: var(--ochre); }

/* =============================
   TAGS
   ============================= */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  display: inline-block;
  padding: 5px 13px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--charcoal-mid);
  transition: all var(--transition);
  cursor: pointer;
}
.tag:hover, .tag.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* =============================
   GLOSSARY
   ============================= */
.glossary-letter {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ochre);
  padding: 12px 0 8px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 24px;
  margin-top: 40px;
}
.glossary-term { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.glossary-term:last-child { border-bottom: none; }
.term-word { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.term-pos { font-size: 0.72rem; color: var(--ochre); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.term-def { font-size: 0.92rem; color: var(--charcoal-mid); line-height: 1.75; }
.alpha-nav { display: flex; flex-wrap: wrap; gap: 6px; margin: 24px 0; }
.alpha-nav a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.82rem; font-weight: 600;
  color: var(--charcoal-mid);
  transition: all var(--transition);
}
.alpha-nav a:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* =============================
   QUIZ
   ============================= */
.quiz-container { max-width: 700px; margin: 0 auto; }
.quiz-question { margin-bottom: 32px; }
.quiz-question-text { font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 16px; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-option {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.92rem;
  color: var(--charcoal-mid);
}
.quiz-option:hover { border-color: var(--navy); background: var(--bg-section); color: var(--navy); }
.quiz-option.correct { border-color: #5CB875; background: #EAF4EC; color: #2D6E3E; }
.quiz-option.incorrect { border-color: #D95C5C; background: #FBEAEA; color: #8B2020; }
.quiz-option input { display: none; }
.quiz-result { padding: 28px; background: var(--bg-section); border-radius: 6px; text-align: center; display: none; }
.quiz-result.visible { display: block; }
.quiz-score { font-family: var(--font-serif); font-size: 3rem; font-weight: 700; color: var(--navy); }

/* =============================
   FOOTER
   ============================= */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand .logo span { color: var(--ochre); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.65); }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.86rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links a:hover { color: var(--white); }
.footer-address { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-top: 16px; }
.footer-address strong { color: rgba(255,255,255,0.8); }

/* =============================
   COOKIE BANNER
   ============================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  color: var(--white);
  padding: 20px 24px;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
}
.cookie-banner.show { display: flex; }
.cookie-text { font-size: 0.85rem; color: rgba(255,255,255,0.85); flex: 1; }
.cookie-text a { color: var(--ochre); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* =============================
   SEARCH
   ============================= */
.search-bar {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.search-bar:focus-within { border-color: var(--navy); }
.search-bar input {
  flex: 1; padding: 12px 16px;
  border: none; outline: none;
  font-size: 0.92rem; color: var(--charcoal);
  background: transparent;
}
.search-bar button {
  padding: 12px 18px;
  background: var(--navy);
  color: var(--white);
  border: none; cursor: pointer;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: background var(--transition);
}
.search-bar button:hover { background: var(--navy-mid); }

/* =============================
   FEATURED FONT SHOWCASE
   ============================= */
.font-specimen {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px;
  margin-bottom: 24px;
}
.font-specimen-name {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--charcoal-light); margin-bottom: 12px;
}
.specimen-display {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.specimen-alphabet {
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--charcoal-mid);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  word-spacing: 0.3em;
}

/* =============================
   PAGE HERO (subpages)
   ============================= */
.page-hero {
  background: var(--navy);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 400px; height: 400px;
  background: rgba(201,169,110,0.07);
  border-radius: 50%;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .display-text { color: rgba(255,255,255,0.7); max-width: 560px; }
.page-hero .overline { margin-bottom: 14px; }

/* =============================
   INFO BOXES
   ============================= */
.info-box {
  border-radius: 6px;
  padding: 20px 24px;
  margin: 24px 0;
  display: flex; gap: 14px;
}
.info-box--note { background: #EEF3FA; border-left: 3px solid var(--navy-mid); }
.info-box--tip { background: #FBF5E9; border-left: 3px solid var(--ochre); }
.info-box--warn { background: #FDF1E9; border-left: 3px solid #D4824E; }
.info-box-icon { font-size: 1.2rem; margin-top: 2px; }
.info-box-text { font-size: 0.9rem; color: var(--charcoal-mid); line-height: 1.7; }
.info-box-text strong { color: var(--charcoal); }

/* =============================
   TABLE
   ============================= */
.data-table-wrap { overflow-x: auto; margin: 28px 0; }
.data-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.9rem;
}
.data-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 18px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.data-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--charcoal-mid);
  vertical-align: top;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--bg-section); }
.data-table tr:hover td { background: #EDE9E0; }

/* =============================
   NEWSLETTER
   ============================= */
.newsletter-strip {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.newsletter-form { display: flex; gap: 12px; max-width: 480px; }
.newsletter-form input {
  flex: 1;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input:focus { border-color: var(--navy); }

/* =============================
   PAGINATION
   ============================= */
.pagination { display: flex; align-items: center; gap: 6px; margin-top: 48px; }
.page-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--charcoal-mid);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.page-btn:hover, .page-btn.active {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}
.page-btn--prev, .page-btn--next { width: auto; padding: 0 14px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

/* =============================
   POLICY PAGES
   ============================= */
.policy-content { max-width: 820px; }
.policy-content h2 { font-size: 1.5rem; margin: 42px 0 14px; padding-top: 42px; border-top: 1px solid var(--border); }
.policy-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.policy-content h3 { font-size: 1.15rem; margin: 28px 0 10px; }
.policy-content p { font-size: 0.95rem; line-height: 1.85; }
.policy-content ul, .policy-content ol { margin: 1rem 0 1.4rem 1.5rem; }
.policy-content li { font-size: 0.95rem; list-style: disc; margin-bottom: 8px; color: var(--charcoal-mid); }
.policy-meta {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 18px 22px;
  margin-bottom: 40px;
  font-size: 0.85rem;
  color: var(--charcoal-mid);
  display: flex; gap: 28px; flex-wrap: wrap;
}
.policy-meta strong { color: var(--charcoal); }

/* =============================
   RESPONSIVE
   ============================= */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { padding-left: 0; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 80px 0 48px; }
  .hero-image-col { height: 380px; }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .card--featured { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .main-nav, .header-cta .btn { display: none; }
  .hamburger { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .newsletter-form { flex-direction: column; }
  .section { padding: 60px 0; }
  .section--lg { padding: 80px 0; }
  .cookie-banner { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}

/* =============================
   PRINT
   ============================= */
@media print {
  .site-header, .site-footer, .cookie-banner { display: none; }
  body { background: white; color: #000; }
  a { color: #000; }
}
