@import url('https://fonts.googleapis.com/css2?family=Sofia+Sans:wght@400;450;500;700&display=swap');

:root {
  --canvas-cream: #F3F0EE;
  --lifted-cream: #FCFBFA;
  --ink-black: #141413;
  --charcoal: #262627;
  --slate-gray: #696969;
  --signal-orange: #CF4500;
  --light-signal-orange: #F37338;
  --clay-brown: #9A3A0A;
  --white: #FFFFFF;
  --link-blue: #3860BE;
  --dust-taupe: #D1CDC7;
  --shadow-float: rgba(0,0,0,0.04) 0px 4px 24px 0px;
  --shadow-card: rgba(0,0,0,0.08) 0px 24px 48px 0px;
  --radius-btn: 20px;
  --radius-hero: 40px;
  --radius-pill: 999px;
}

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

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

body {
  font-family: 'Sofia Sans', Arial, sans-serif;
  font-weight: 400;
  background: var(--canvas-cream);
  color: var(--ink-black);
  line-height: 1.4;
  overflow-x: hidden;
}

a { color: var(--link-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 24px;
  background: transparent;
  pointer-events: none;
}

.nav-pill {
  background: var(--white);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-float);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
  max-width: 1240px;
  margin: 0 auto;
  pointer-events: all;
  min-height: 64px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink-black);
  flex-shrink: 0;
}

.nav-brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink-black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-brand-logo span {
  color: var(--canvas-cream);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nav-brand-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--ink-black);
  line-height: 1.1;
}

.nav-brand-name small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.4px;
  color: var(--slate-gray);
  text-transform: uppercase;
}

.nav-links {
  display: none;
  gap: 40px;
  list-style: none;
}

.nav-links li a {
  color: var(--ink-black);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.3px;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links li a:hover { color: var(--signal-orange); }
.nav-links li a.active { border-bottom: 2px solid var(--ink-black); }

.nav-burger {
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 50%;
  transition: background 0.2s;
}

.nav-burger:hover { background: var(--canvas-cream); }

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink-black);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.mobile-nav.open { display: flex; }

.mobile-nav ul {
  list-style: none;
  text-align: center;
}

.mobile-nav ul li {
  border-bottom: 1px solid var(--canvas-cream);
}

.mobile-nav ul li a {
  display: block;
  padding: 20px 40px;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink-black);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.mobile-nav ul li a:hover { color: var(--signal-orange); }

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--ink-black);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.mobile-nav-close:hover { background: var(--canvas-cream); }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-burger { display: none; }
}

/* ===== HERO ===== */
.hero {
  padding: 48px 24px 64px;
}

.hero-inner {
  background: var(--lifted-cream);
  border-radius: var(--radius-hero);
  padding: 64px 48px;
  max-width: 1240px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.52px;
  text-transform: uppercase;
  color: var(--light-signal-orange);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--light-signal-orange);
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink-black);
  max-width: 700px;
  margin-bottom: 24px;
}

.hero-tagline {
  font-size: 18px;
  font-weight: 400;
  color: var(--slate-gray);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--ink-black);
  color: var(--canvas-cream);
  border: 1.5px solid var(--ink-black);
  border-radius: var(--radius-btn);
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}

.btn-primary:hover {
  background: var(--charcoal);
  text-decoration: none;
  color: var(--canvas-cream);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink-black);
  border: 1.5px solid var(--ink-black);
  border-radius: var(--radius-btn);
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.btn-secondary:hover {
  background: var(--canvas-cream);
  text-decoration: none;
  color: var(--ink-black);
}

@media (min-width: 768px) {
  .hero-inner { padding: 80px 64px; }
}

/* ===== SECTIONS ===== */
.section {
  padding: 64px 24px;
}

.section-cream {
  background: var(--lifted-cream);
}

.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink-black);
  margin-bottom: 12px;
}

.section-sub {
  font-size: 16px;
  color: var(--slate-gray);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.5;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.52px;
  text-transform: uppercase;
  color: var(--slate-gray);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--light-signal-orange);
  flex-shrink: 0;
}

/* ===== ARTICLE CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 600px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
}

.article-card {
  background: var(--white);
  border-radius: var(--radius-hero);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}

.article-card:hover { transform: translateY(-4px); }

.article-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.article-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.article-card-cat {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: var(--light-signal-orange);
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-card-cat::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--light-signal-orange);
  flex-shrink: 0;
}

.article-card h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink-black);
  line-height: 1.3;
}

.article-card p {
  font-size: 14px;
  color: var(--slate-gray);
  line-height: 1.5;
  flex: 1;
}

.article-card-meta {
  font-size: 12px;
  color: var(--dust-taupe);
  margin-top: auto;
}

.article-card-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-black);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  transition: color 0.2s;
}

.article-card-link:hover { color: var(--signal-orange); text-decoration: none; }

/* ===== CIRCULAR PORTRAIT ===== */
.portrait-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  padding: 40px 0;
}

.portrait-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 280px;
}

.portrait-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
}

.portrait-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-satellite {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-decoration: none;
  color: var(--ink-black);
  font-size: 18px;
  transition: background 0.2s;
}

.portrait-satellite:hover { background: var(--canvas-cream); }

.portrait-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: var(--slate-gray);
  display: flex;
  align-items: center;
  gap: 5px;
}

.portrait-eyebrow::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--light-signal-orange);
}

.portrait-title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink-black);
  text-align: center;
}

@media (min-width: 768px) {
  .portrait-circle { width: 260px; height: 260px; }
}

/* ===== IMAGE GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-item {
  border-radius: var(--radius-hero);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-card);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-caption {
  font-size: 12px;
  color: var(--slate-gray);
  padding: 8px 0;
  line-height: 1.4;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 16px 24px;
  max-width: 1240px;
  margin: 0 auto;
  font-size: 13px;
  color: var(--slate-gray);
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}

.breadcrumbs a { color: var(--slate-gray); text-decoration: none; }
.breadcrumbs a:hover { color: var(--ink-black); text-decoration: underline; }
.breadcrumbs .sep { color: var(--dust-taupe); margin: 0 4px; }

/* ===== ARTICLE PAGE ===== */
.article-layout {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.article-header { margin-bottom: 40px; }

.article-cat {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.52px;
  text-transform: uppercase;
  color: var(--light-signal-orange);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-cat::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--light-signal-orange);
}

.article-header h1 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink-black);
  margin-bottom: 20px;
}

.article-summary {
  font-size: 17px;
  color: var(--charcoal);
  line-height: 1.6;
  font-weight: 400;
  border-left: 3px solid var(--light-signal-orange);
  padding-left: 16px;
  margin: 24px 0;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--slate-gray);
  border-top: 1px solid var(--dust-taupe);
  border-bottom: 1px solid var(--dust-taupe);
  padding: 12px 0;
  margin: 24px 0;
}

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

.article-hero-img {
  border-radius: var(--radius-hero);
  overflow: hidden;
  margin: 32px 0;
}

.article-hero-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.article-hero-img figcaption {
  font-size: 12px;
  color: var(--slate-gray);
  padding: 8px 0;
  line-height: 1.4;
}

/* ===== TOC ===== */
.toc {
  background: var(--lifted-cream);
  border-radius: var(--radius-btn);
  padding: 24px 28px;
  margin: 32px 0;
}

.toc-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.52px;
  text-transform: uppercase;
  color: var(--slate-gray);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.toc-title::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--light-signal-orange);
}

.toc ol {
  padding-left: 20px;
}

.toc ol li {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--ink-black);
  line-height: 1.4;
}

.toc ol li a {
  color: var(--link-blue);
  text-decoration: none;
}

.toc ol li a:hover { text-decoration: underline; }

/* ===== ARTICLE BODY ===== */
.article-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-black);
}

.article-body h2 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink-black);
  margin: 40px 0 16px;
  scroll-margin-top: 100px;
}

.article-body h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin: 28px 0 12px;
  scroll-margin-top: 100px;
}

.article-body p { margin-bottom: 20px; }

.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.article-body li { margin-bottom: 8px; }

.article-body blockquote {
  border-left: 3px solid var(--light-signal-orange);
  padding: 16px 20px;
  margin: 24px 0;
  background: var(--lifted-cream);
  border-radius: 0 var(--radius-btn) var(--radius-btn) 0;
  font-size: 17px;
  color: var(--charcoal);
  font-style: italic;
}

.key-context-box {
  background: var(--lifted-cream);
  border-radius: var(--radius-hero);
  padding: 28px 32px;
  margin: 32px 0;
}

.key-context-box .eyebrow {
  margin-bottom: 12px;
}

.key-context-box ul {
  list-style: none;
  padding: 0;
}

.key-context-box ul li {
  padding: 8px 0;
  padding-left: 16px;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  border-bottom: 1px solid var(--dust-taupe);
  color: var(--charcoal);
}

.key-context-box ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--light-signal-orange);
}

.key-context-box ul li:last-child { border-bottom: none; }

.not-covered-box {
  background: var(--canvas-cream);
  border: 1px solid var(--dust-taupe);
  border-radius: var(--radius-btn);
  padding: 24px 28px;
  margin: 40px 0;
}

.not-covered-box .eyebrow { margin-bottom: 12px; }

.not-covered-box ul {
  list-style: none;
  padding: 0;
}

.not-covered-box ul li {
  font-size: 14px;
  color: var(--slate-gray);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
}

.not-covered-box ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--dust-taupe);
}

.article-inline-img {
  border-radius: var(--radius-hero);
  overflow: hidden;
  margin: 32px 0;
}

.article-inline-img img {
  width: 100%;
  object-fit: cover;
  max-height: 380px;
}

.article-inline-img figcaption {
  font-size: 12px;
  color: var(--slate-gray);
  padding: 8px 0;
}

/* ===== RELATED ARTICLES ===== */
.related-articles {
  border-top: 1px solid var(--dust-taupe);
  padding-top: 40px;
  margin-top: 40px;
}

.related-articles .eyebrow { margin-bottom: 24px; }

.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

.related-card {
  background: var(--lifted-cream);
  border-radius: var(--radius-btn);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  transition: box-shadow 0.2s;
}

.related-card:hover { box-shadow: var(--shadow-card); text-decoration: none; }

.related-card-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.44px;
  text-transform: uppercase;
  color: var(--light-signal-orange);
}

.related-card h4 {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-black);
  line-height: 1.35;
}

.related-card p {
  font-size: 13px;
  color: var(--slate-gray);
  line-height: 1.4;
}

/* ===== PAGE SECTIONS ===== */
.page-hero {
  padding: 48px 24px 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink-black);
  line-height: 1.15;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 17px;
  color: var(--slate-gray);
  line-height: 1.55;
  max-width: 600px;
}

.page-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 32px 24px 80px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-black);
}

.page-content h2 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 36px 0 14px;
  color: var(--ink-black);
}

.page-content h3 {
  font-size: 17px;
  font-weight: 500;
  margin: 24px 0 10px;
}

.page-content p { margin-bottom: 18px; }

.page-content ul, .page-content ol {
  padding-left: 24px;
  margin-bottom: 18px;
}

.page-content li { margin-bottom: 6px; }

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
  max-width: 580px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--charcoal);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  border: 1px solid var(--dust-taupe);
  border-radius: var(--radius-btn);
  padding: 12px 18px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink-black);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

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

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

.form-submit {
  background: var(--ink-black);
  color: var(--canvas-cream);
  border: none;
  border-radius: var(--radius-btn);
  padding: 14px 32px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.form-submit:hover { background: var(--charcoal); }

.form-confirmation {
  display: none;
  background: var(--lifted-cream);
  border-radius: var(--radius-btn);
  padding: 24px 28px;
  text-align: center;
  font-size: 16px;
  color: var(--ink-black);
  margin-top: 24px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink-black);
  color: var(--white);
  padding: 64px 24px 48px;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.footer-headline {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 48px;
  line-height: 1.2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: var(--slate-gray);
  margin-bottom: 16px;
}

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

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-col ul li a:hover { opacity: 1; text-decoration: underline; }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin: 0 0 24px;
}

.footer-bottom {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 680px;
  background: var(--ink-black);
  color: var(--white);
  border-radius: var(--radius-hero);
  padding: 24px 28px;
  box-shadow: var(--shadow-card);
  z-index: 999;
  display: none;
}

.cookie-banner.visible { display: block; }

.cookie-banner p {
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.85);
}

.cookie-banner p a {
  color: var(--light-signal-orange);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-cookie-accept {
  background: var(--signal-orange);
  color: var(--white);
  border: none;
  border-radius: 24px;
  padding: 8px 24px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-cookie-accept:hover { background: var(--clay-brown); }

.btn-cookie-reject {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 24px;
  padding: 8px 24px;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  transition: border-color 0.2s;
}

.btn-cookie-reject:hover { border-color: var(--white); }

.btn-cookie-settings {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: none;
  padding: 8px 12px;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  font-family: inherit;
}

.btn-cookie-settings:hover { color: var(--white); }

/* ===== COVERAGE PAGE ===== */
.coverage-list {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.featured-article {
  background: var(--lifted-cream);
  border-radius: var(--radius-hero);
  overflow: hidden;
  display: grid;
  gap: 0;
  margin-bottom: 48px;
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .featured-article { grid-template-columns: 1fr 1fr; }
}

.featured-article-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.featured-article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-article-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.featured-article-body .eyebrow { margin-bottom: 0; }

.featured-article-body h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink-black);
}

.featured-article-body p {
  font-size: 15px;
  color: var(--slate-gray);
  line-height: 1.55;
}

/* ===== UTILITY ===== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
