/* ============================================================
   Triops & Prehistoric Creatures — Modern Redesign 2026
   Fonts: Fraunces (display serif) + Inter (body sans)
   Palette: deep ocean teal + warm copper accent + soft cream
   Mobile-first, progressive enhancement
   ============================================================ */

/* --- Google Fonts (loaded via <link> in HTML head) --- */

/* --- Design Tokens --- */
:root {
  /* Core palette — fresher, deeper teal instead of near-black navy */
  --color-ocean: #0d4f6c;
  --color-ocean-deep: #06283d;
  --color-ocean-light: #1a7fa8;
  --color-ocean-soft: #e8f1f5;

  /* Warm copper accent (replaces muddy mustard gold) */
  --color-accent: #e8944a;
  --color-accent-strong: #d17f2e;
  --color-accent-soft: #fdf0e3;

  /* Surfaces */
  --color-cream: #fbf7ef;
  --color-white: #ffffff;
  --color-sand: #e5d5b8;

  /* Text */
  --color-text: #22333f;
  --color-text-light: #eef4f7;
  --color-muted: #5a6b76;

  /* Semantic */
  --color-success: #2e9e6b;
  --color-danger: #d64545;

  /* Typography */
  --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-width: 1100px;
  --content-width: 850px;
  --gutter: 1.25rem;

  /* Elevation */
  --shadow-sm: 0 1px 3px rgba(6, 40, 61, 0.08), 0 1px 2px rgba(6, 40, 61, 0.06);
  --shadow-md: 0 4px 12px rgba(6, 40, 61, 0.10), 0 2px 4px rgba(6, 40, 61, 0.06);
  --shadow-lg: 0 12px 28px rgba(6, 40, 61, 0.14), 0 4px 8px rgba(6, 40, 61, 0.08);

  /* Motion */
  --ease: cubic-bezier(0.25, 0.8, 0.35, 1);
  --duration: 0.22s;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

@media (min-width: 900px) {
  :root { --gutter: 2rem; }
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* --- Links --- */
a {
  color: var(--color-ocean-light);
  transition: color var(--duration) var(--ease);
}
a:hover { color: var(--color-accent-strong); }
a:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* --- Skip Link (Accessibility) --- */
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 1000;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--color-accent);
  color: var(--color-ocean-deep);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

/* --- Header & Navigation --- */
.site-header {
  background: rgba(6, 40, 61, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--color-text-light);
  padding: 0.85rem var(--gutter);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 12px rgba(6, 40, 61, 0.25);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.site-logo {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--color-accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  letter-spacing: -0.01em;
  transition: color var(--duration) var(--ease);
}
.site-logo:hover { color: #f2b368; }

/* CSS triops icon — refined shield shape */
.logo-icon {
  position: relative;
  width: 34px;
  height: 26px;
  flex-shrink: 0;
}
.logo-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  border-radius: 50% 50% 46% 46% / 62% 62% 38% 38%;
  box-shadow: inset 0 -2px 4px rgba(6, 40, 61, 0.25);
}
.logo-icon::after {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--color-ocean-deep);
  border-radius: 50%;
  top: 8px;
  left: 8px;
  box-shadow: 12px 0 0 var(--color-ocean-deep), 6px 8px 0 -1px var(--color-ocean-deep);
}

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  list-style: none;
}
.main-nav a {
  color: var(--color-text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease);
}
.main-nav a:hover {
  color: var(--color-accent);
  background: rgba(232, 148, 74, 0.12);
}
.main-nav a[aria-current="page"] {
  color: var(--color-accent);
  background: rgba(232, 148, 74, 0.14);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-text-light);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: background var(--duration) var(--ease);
}
.nav-toggle:hover { background: rgba(255,255,255,0.08); }

/* --- Hero Section --- */
.hero {
  background:
    radial-gradient(ellipse 60% 80% at 70% 20%, rgba(26, 127, 168, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 90%, rgba(232, 148, 74, 0.10) 0%, transparent 55%),
    linear-gradient(160deg, var(--color-ocean-deep) 0%, var(--color-ocean) 55%, #106080 100%);
  color: var(--color-white);
  padding: 5rem var(--gutter) 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  top: -60px; left: 8%;
  animation: float 9s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 148, 74, 0.07) 0%, transparent 70%);
  bottom: -120px; right: 4%;
  animation: float 12s ease-in-out infinite reverse;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  max-width: 620px;
  margin: 0 auto 2rem;
  opacity: 0.94;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.hero-cta {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-ocean-deep);
  padding: 0.85rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.02rem;
  position: relative;
  z-index: 1;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), background var(--duration) var(--ease);
  box-shadow: 0 4px 14px rgba(232, 148, 74, 0.35);
}
.hero-cta:hover {
  background: #f2a55e;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(232, 148, 74, 0.45);
  color: var(--color-ocean-deep);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

/* --- Section Styles --- */
.section {
  padding: 3.5rem var(--gutter);
}
.section-inner {
  max-width: var(--content-width);
  margin: 0 auto;
}
.section-inner--wide {
  max-width: 1400px;
}

.section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--color-ocean-deep);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.65rem;
}
.section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-soft));
  border-radius: 2px;
}

.section h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-ocean);
  margin-top: 1.75rem;
  margin-bottom: 0.6rem;
}
.section p {
  margin-bottom: 1.1rem;
  max-width: none;
  color: var(--color-text);
}

/* Alternating section backgrounds */
.section--alt { background: var(--color-white); }
.section--ocean {
  background: linear-gradient(170deg, var(--color-ocean-deep) 0%, var(--color-ocean) 100%);
  color: var(--color-text-light);
}
.section--ocean h2 { color: var(--color-accent); }
.section--ocean p { color: var(--color-text-light); }

/* --- Feature Cards (Homepage) --- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  margin-top: 1.5rem;
}
.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(6, 40, 61, 0.06);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card h3 {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--color-ocean-deep);
  margin-bottom: 0.4rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card p { font-size: 0.95rem; color: #3d4d58; }
.card p[style*="opacity"] {
  font-size: 0.85rem;
  opacity: 1 !important;
  color: var(--color-muted);
}
.card p[style*="font-size:0.8rem"] {
  opacity: 1 !important;
  color: var(--color-muted);
}
.card p[style*="font-size:0.8rem"] {
  opacity: 1 !important;
  color: var(--color-muted);
}
.card a.card-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-ocean-light);
  text-decoration: none;
}
.card a.card-link:hover {
  color: var(--color-accent-strong);
  text-decoration: underline;
}

/* Card layout with thumbnail */
.card-flex {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.card-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--color-ocean-soft);
  box-shadow: var(--shadow-sm);
}
.card-text { flex: 1; min-width: 0; }

/* --- Creature Profile Cards --- */
.creature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 1rem;
}
.creature-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(6, 40, 61, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.creature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.creature-card .creature-flex {
  display: flex;
  gap: 0.9rem;
  padding: 0.9rem;
}
.creature-card .creature-img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--color-ocean-soft);
}
.creature-card:hover .creature-img {
  transform: scale(1.04);
}
.creature-card .card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.creature-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-ocean-deep);
  margin-bottom: 0.3rem;
}
.creature-card .taxonomy {
  font-style: italic;
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}
.creature-card p {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--color-text);
}
.creature-card .era-badge {
  display: inline-block;
  margin-top: 0.7rem;
  padding: 0.25rem 0.7rem;
  background: var(--color-accent-soft);
  color: var(--color-accent-strong);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  align-self: flex-start;
  white-space: nowrap;
}

/* --- Related Articles Accordion --- */
.related-articles { margin-top: 1.1rem; }
.related-articles details {
  border: 1px solid rgba(6, 40, 61, 0.10);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--duration) var(--ease);
}
.related-articles details[open] {
  border-color: rgba(232, 148, 74, 0.4);
}
.related-articles summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-ocean-light);
  padding: 0.55rem 0.85rem;
  list-style-position: inside;
  transition: background var(--duration) var(--ease);
}
.related-articles summary:hover {
  background: var(--color-accent-soft);
  color: var(--color-accent-strong);
}
.related-articles ul {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0.85rem 0.6rem;
}
.related-articles li {
  margin-bottom: 0.3rem;
  font-size: 0.87rem;
}
.related-articles li a {
  color: var(--color-ocean-light);
  text-decoration: none;
}
.related-articles li a:hover {
  color: var(--color-accent-strong);
  text-decoration: underline;
}

/* --- Deep Dive Content --- */
.content-block { margin-bottom: 2rem; }
.content-block h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-ocean);
  margin-top: 1.6rem;
  margin-bottom: 0.55rem;
}

/* --- Article Images --- */
.hero-img {
  display: block;
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  margin: 1rem auto 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.article-img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  margin: 1.5rem auto;
}
.article-img.float-right {
  float: right;
  max-width: 280px;
  margin: 0 0 1.5rem 1.5rem;
}
@media (max-width: 700px) {
  .article-img.float-right {
    float: none;
    max-width: 100%;
    margin: 1.5rem auto;
  }
}

/* --- Image Captions --- */
figure.image-figure {
  display: block;
  margin: 1.5rem 0 2rem;
  padding-bottom: 0.5rem;
}
figure.image-figure.float-right {
  float: right;
  max-width: 280px;
  margin: 0 0 1.5rem 1.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 700px) {
  figure.image-figure.float-right {
    float: none;
    max-width: 100%;
    margin: 1.5rem auto 2rem;
  }
}
.image-caption {
  display: block;
  font-size: 0.84rem;
  font-style: italic;
  color: var(--color-muted);
  text-align: center;
  margin: 0.25rem 0 0;
  padding-bottom: 0.25rem;
  line-height: 1.4;
}

/* --- Spacing: headings & article typography --- */
article h2,
article h3,
.article-body h2,
.article-body h3,
section h2,
section h3 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
article h2 { margin-top: 2.75rem; }
article p,
.article-body p,
section p {
  margin-top: 0;
  margin-bottom: 1.25rem;
  line-height: 1.75;
}
article ul,
article ol {
  margin: 0 0 1.25rem;
  padding-left: 1.5rem;
}
article li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

/* --- Info Table (Quick Facts) --- */
.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.info-table th {
  background: var(--color-ocean-deep);
  color: var(--color-text-light);
  text-align: left;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
}
.info-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(6, 40, 61, 0.07);
  font-size: 0.93rem;
  color: var(--color-text);
}
.info-table tr:nth-child(even) { background: var(--color-ocean-soft); }
.info-table td:first-child { font-weight: 600; color: var(--color-ocean-deep); }
.info-table tr:last-child td { border-bottom: none; }

/* --- Pet Care Steps --- */
.care-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.care-step {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-accent);
}
.care-step h4 {
  color: var(--color-ocean-deep);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 600;
}
.care-step p { color: #3d4d58; }

/* --- Timeline --- */
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-ocean-light) 100%);
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.75rem;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--color-accent);
  border: 3px solid var(--color-cream);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--color-accent);
}
.timeline-item .era {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.timeline-item .desc { font-size: 0.95rem; }

/* --- About Page --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(6, 40, 61, 0.06);
}
.avatar-placeholder {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-white);
}
.avatar-placeholder--1 { background: linear-gradient(135deg, var(--color-ocean) 0%, var(--color-ocean-light) 100%); }
.avatar-placeholder--2 { background: linear-gradient(135deg, var(--color-accent) 0%, #f2b368 100%); }
.avatar-placeholder--3 { background: linear-gradient(135deg, #2e9e6b 0%, #4ecda0 100%); }

/* --- CSS-generated creature silhouettes (legacy creatures.html visuals) --- */
.creature-visual {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  position: relative;
}
.creature-visual .silhouette {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 50px;
  height: 30px;
  background: var(--color-white);
  border-radius: 50% 50% 45% 45% / 60% 60% 40% 40%;
}
.creature-visual--triops { background: linear-gradient(135deg, #1a7fa8, #0d4f6c); }
.creature-visual--trilobite { background: linear-gradient(135deg, #8b7355, #6b5340); }
.creature-visual--ammonite { background: linear-gradient(135deg, #d17f2e, #a35f1a); }
.creature-visual--anomalocaris { background: linear-gradient(135deg, #c94f4f, #9e3535); }
.creature-visual--eurypterus { background: linear-gradient(135deg, #2e9e6b, #1d7048); }
.creature-visual--hallucigenia { background: linear-gradient(135deg, #7b5ea7, #5a3f80); }
.creature-visual--opabinia { background: linear-gradient(135deg, #e8944a, #c46f28); }

/* --- Footer --- */
.site-footer {
  background: linear-gradient(180deg, var(--color-ocean-deep) 0%, #041c2c 100%);
  color: var(--color-text-light);
  padding: 3rem var(--gutter) 1.5rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.footer-col h4 {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
}
.footer-col ul { list-style: none; }
.footer-col a {
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color var(--duration) var(--ease);
}
.footer-col a:hover { color: var(--color-accent); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.75;
}

/* --- Responsive Breakpoints --- */
@media (min-width: 600px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .care-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .section-inner--wide .card-grid { grid-template-columns: repeat(4, 1fr); }
  .card-grid--dense { grid-template-columns: repeat(4, 1fr); }
  .hero { padding: 7rem var(--gutter) 5.5rem; }
  .section { padding: 4.5rem var(--gutter); }
}
@media (min-width: 1400px) {
  .hero { padding: 8rem var(--gutter) 6.5rem; }
  .hero h1 { font-size: clamp(2.6rem, 4.5vw, 4.2rem); }
}
@media (max-width: 640px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    width: 100%;
    flex-basis: 100%;
  }
  .main-nav.open { display: block; }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    margin-top: 0.75rem;
  }
  .main-nav a {
    display: block;
    padding: 0.7rem 1rem;
  }
  .hero { padding: 3.5rem var(--gutter) 3rem; }
  .card-thumb { width: 76px; height: 76px; }
}
@media (max-width: 480px) {
  .card-flex { flex-direction: column; }
  .card-thumb { width: 100%; height: 150px; }
}

/* --- Print --- */
@media print {
  .site-header, .site-footer, .hero-cta, .related-articles { display: none; }
  .hero { background: none; color: #000; padding: 1rem; }
  body { background: #fff; color: #000; }
}
