/* ============================================
   THE AMERICAN POLITICS — Stylesheet
   v1.0 — Editorial newsroom aesthetic
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .18s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Design Tokens ---------- */
:root {
  --red: #DC0E0E;
  --red-deep: #A00808;
  --red-dark: #6B0303;
  --ink: #0E0E12;
  --ink-soft: #2A2A30;
  --gray: #6B6B72;
  --gray-light: #BFBFC4;
  --bg: #FAFAF8;
  --paper: #FFFFFF;
  --rule: #E8E5E0;
  --highlight: #FFF4E0;

  --font-display: 'Fraunces', Georgia, serif;
  --font-tag: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;

  --container: 1280px;
  --gutter: 24px;

  --shadow-sm: 0 1px 2px rgba(14, 14, 18, 0.06);
  --shadow-md: 0 8px 24px rgba(14, 14, 18, 0.08);
  --shadow-lg: 0 24px 60px rgba(14, 14, 18, 0.12);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); }
.tag, .kicker {
  font-family: var(--font-tag);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 400;
}

/* ---------- Layout helpers ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.grid { display: grid; gap: 32px; }
.flex { display: flex; }

/* ---------- Top Utility Bar ---------- */
.utility-bar {
  background: var(--ink);
  color: #fff;
  font-size: 0.82rem;
  padding: 9px 0;
  border-bottom: 2px solid var(--red);
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.utility-left { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.live-tag {
  background: var(--red);
  color: #fff;
  padding: 3px 10px;
  font-family: var(--font-tag);
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.live-dot {
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.utility-date { color: rgba(255,255,255,0.75); letter-spacing: 0.04em; }
.utility-right { display: flex; align-items: center; gap: 14px; }
.utility-right a { color: rgba(255,255,255,0.75); }
.utility-right a:hover { color: #fff; }
.utility-right svg { width: 16px; height: 16px; }

/* ---------- Header ---------- */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.96);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 32px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-mark {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.logo-text {
  font-family: var(--font-tag);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  line-height: 1;
}
.logo-text span { display: block; color: var(--red); font-size: 0.85rem; letter-spacing: 0.18em; margin-top: 3px; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-family: var(--font-tag);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  padding: 10px 16px;
  color: var(--ink);
  position: relative;
}
.main-nav a:hover { color: var(--red); }
.main-nav a.active { color: var(--red); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 2px;
  background: var(--red);
}

.nav-toggle { display: none; }

/* ---------- AI Disclosure Strip ---------- */
.disclosure-strip {
  background: var(--red);
  color: #fff;
  padding: 10px 0;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-align: center;
}
.disclosure-strip strong { font-family: var(--font-tag); letter-spacing: 0.12em; margin-right: 6px; }
.disclosure-strip a { text-decoration: underline; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #6B0303 0%, #A00808 45%, #DC0E0E 100%);
  color: #fff;
  overflow: hidden;
  padding: 60px 0 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 80px);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.25));
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: end;
  position: relative;
  z-index: 2;
}
.hero-text { padding-bottom: 80px; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--red);
  padding: 8px 14px;
  font-family: var(--font-tag);
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: 24px;
}
.hero-kicker .live-dot { background: var(--red); }
.hero-headline {
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  font-weight: 700;
  line-height: 1.02;
  margin-bottom: 22px;
  color: #fff;
  letter-spacing: -0.02em;
}
.hero-headline em { font-style: italic; color: #FFE5E5; }
.hero-deck {
  font-size: 1.15rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-tag);
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
}
.hero-meta .dot {
  width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.5);
}
.hero-image-wrap {
  position: relative;
  align-self: end;
  height: 540px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-image {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}
.hero-badge {
  position: absolute;
  top: 30px;
  left: 0;
  background: #fff;
  color: var(--ink);
  padding: 12px 18px;
  font-family: var(--font-tag);
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.hero-badge strong { color: var(--red); }

/* ---------- Section base ---------- */
.section { padding: 70px 0; }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 36px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 14px;
  gap: 20px;
}
.section-title {
  font-family: var(--font-tag);
  font-size: 1.4rem;
  letter-spacing: 0.14em;
  color: var(--ink);
  text-transform: uppercase;
}
.section-link {
  font-family: var(--font-tag);
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.section-link:hover { gap: 10px; }

/* ---------- Article Cards ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--ink);
  position: relative;
}
.card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.card:hover .card-image img { transform: scale(1.04); }
.card-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--red);
  color: #fff;
  padding: 5px 10px;
  font-family: var(--font-tag);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}
.card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.card:hover .card-title { color: var(--red-deep); }
.card-deck { color: var(--gray); font-size: 0.95rem; margin-bottom: 16px; flex: 1; }
.card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--gray);
  font-family: var(--font-tag);
  letter-spacing: 0.1em;
}
.card-meta .by { color: var(--ink); }

/* ---------- Featured row (1 large + 2 small) ---------- */
.featured-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 36px;
  margin-bottom: 50px;
}
.feature-main { background: var(--paper); border: 1px solid var(--rule); display: flex; flex-direction: column; }
.feature-main .card-image { aspect-ratio: 16/10; }
.feature-main .card-title { font-size: 2.2rem; }
.feature-side { display: flex; flex-direction: column; gap: 24px; }
.side-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.side-card:last-child { border-bottom: none; padding-bottom: 0; }
.side-card-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ink);
}
.side-card-image img { width: 100%; height: 100%; object-fit: cover; }
.side-card-cat {
  font-family: var(--font-tag);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 6px;
  display: block;
}
.side-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}
.side-card:hover .side-card-title { color: var(--red-deep); }

/* ---------- Category sections ---------- */
.cat-section { padding: 50px 0; border-top: 1px solid var(--rule); }
.cat-section:nth-child(even) { background: var(--paper); }

/* ---------- Meet Darcy strip ---------- */
.meet-darcy {
  background: var(--ink);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.meet-darcy::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--red) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}
.meet-darcy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.meet-darcy-image {
  position: relative;
  height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.meet-darcy-image img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}
.meet-darcy-text .tag { color: var(--red); margin-bottom: 18px; display: block; }
.meet-darcy-text h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 22px;
  font-weight: 700;
}
.meet-darcy-text h2 em { color: var(--red); font-style: italic; }
.meet-darcy-text p {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 26px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--font-tag);
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  background: var(--red);
  color: #fff;
  transition: background .2s ease, transform .2s ease;
}
.btn:hover { background: #fff; color: var(--red); transform: translateX(4px); }
.btn-outline { background: transparent; border: 2px solid #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: var(--ink); }

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--bg);
  padding: 80px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  text-align: center;
}
.newsletter-inner { max-width: 640px; margin: 0 auto; }
.newsletter .tag { display: block; margin-bottom: 16px; }
.newsletter h2 { margin-bottom: 14px; }
.newsletter p { color: var(--gray); font-size: 1.05rem; margin-bottom: 32px; }
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 0 auto;
  border: 2px solid var(--ink);
}
.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--paper);
  outline: none;
}
.newsletter-form button {
  padding: 16px 28px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-tag);
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  transition: background .2s ease;
}
.newsletter-form button:hover { background: var(--red); }
.newsletter-note { font-size: 0.82rem; color: var(--gray); margin-top: 16px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand .logo-text { color: #fff; }
.footer-brand p { margin-top: 18px; font-size: 0.92rem; line-height: 1.7; max-width: 320px; }
.footer-col h4 {
  font-family: var(--font-tag);
  letter-spacing: 0.14em;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.92rem; color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom a { color: rgba(255,255,255,0.6); margin-left: 16px; }
.footer-bottom a:hover { color: #fff; }
.footer-disclosure {
  background: rgba(220, 14, 14, 0.1);
  border-left: 3px solid var(--red);
  padding: 16px 18px;
  margin-bottom: 30px;
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}
.footer-disclosure strong { color: #fff; font-family: var(--font-tag); letter-spacing: 0.1em; }

/* ---------- Inner Page (article, about, privacy) ---------- */
.page-header {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 60px 0 40px;
}
.page-header .tag { margin-bottom: 14px; display: block; }
.page-header h1 { max-width: 900px; margin-bottom: 18px; }
.page-header p { color: var(--gray); font-size: 1.1rem; max-width: 720px; }
.page-content { padding: 60px 0; max-width: 760px; margin: 0 auto; }
.page-content h2 { margin: 40px 0 16px; font-size: 1.7rem; }
.page-content h3 { margin: 30px 0 12px; font-size: 1.3rem; }
.page-content p { margin-bottom: 18px; font-size: 1.05rem; line-height: 1.75; color: var(--ink-soft); }
.page-content ul, .page-content ol { margin: 0 0 22px 24px; }
.page-content li { margin-bottom: 8px; line-height: 1.7; }
.page-content a { color: var(--red); border-bottom: 1px solid currentColor; }
.page-content a:hover { color: var(--red-deep); }
.page-content strong { color: var(--ink); font-weight: 600; }

/* ---------- About page specifics ---------- */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.about-hero-image { position: relative; }
.about-hero-image img { width: 100%; height: auto; }
.about-hero-image::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px; right: 20px; bottom: 20px;
  background: var(--red);
  z-index: -1;
}
.about-hero-text .tag { display: block; margin-bottom: 18px; }
.about-hero-text h1 { margin-bottom: 22px; }
.about-hero-text .lede {
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 24px;
  font-family: var(--font-display);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 60px 0;
}
.value-card {
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-top: 4px solid var(--red);
}
.value-card h3 { margin-bottom: 14px; font-size: 1.3rem; }
.value-card p { color: var(--gray); font-size: 0.95rem; line-height: 1.6; }

/* ---------- Article page specifics ---------- */
.article-hero {
  background: var(--paper);
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--rule);
}
.article-meta-top { display: flex; gap: 16px; align-items: center; margin-bottom: 18px; font-family: var(--font-tag); letter-spacing: 0.1em; font-size: 0.85rem; }
.article-cat { background: var(--red); color: #fff; padding: 5px 12px; }
.article-date { color: var(--gray); }
.article-title { font-size: clamp(2.2rem, 4.5vw, 3.6rem); margin-bottom: 22px; }
.article-deck { font-size: 1.25rem; line-height: 1.5; color: var(--ink-soft); max-width: 800px; margin-bottom: 30px; font-family: var(--font-display); }
.article-byline { display: flex; align-items: center; gap: 14px; padding-top: 24px; border-top: 1px solid var(--rule); }
.byline-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.byline-info { font-size: 0.9rem; line-height: 1.4; }
.byline-info strong { display: block; color: var(--ink); }
.byline-info span { color: var(--gray); }
.article-image { aspect-ratio: 21/9; background: var(--ink); overflow: hidden; }
.article-image img { width: 100%; height: 100%; object-fit: cover; }
.article-image-caption { font-size: 0.82rem; color: var(--gray); padding: 10px 0; max-width: 760px; margin: 0 auto; }
.article-body { max-width: 720px; margin: 50px auto; }
.article-body p { font-size: 1.12rem; line-height: 1.8; margin-bottom: 22px; color: var(--ink-soft); }
.article-body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  float: left;
  line-height: 0.9;
  margin: 8px 12px 0 0;
  color: var(--red);
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px 0;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-block {
  border-left: 3px solid var(--red);
  padding: 4px 0 4px 20px;
  margin-bottom: 28px;
}
.contact-block .tag { display: block; margin-bottom: 6px; font-size: 0.8rem; }
.contact-block p { font-size: 1.05rem; line-height: 1.5; }
.contact-block a { color: var(--red); }

/* ---------- 404 ---------- */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.error-page h1 { font-size: clamp(5rem, 14vw, 11rem); color: var(--red); line-height: 0.9; }
.error-page h2 { margin: 14px 0 18px; }
.error-page p { color: var(--gray); margin-bottom: 30px; }

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { animation: fadeUp .7s ease both; }
.reveal-delay-1 { animation-delay: .1s; }
.reveal-delay-2 { animation-delay: .2s; }
.reveal-delay-3 { animation-delay: .3s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-image-wrap { height: 420px; }
  .meet-darcy-image { height: 400px; }
}

@media (max-width: 720px) {
  :root { --gutter: 18px; }
  .utility-bar { font-size: 0.75rem; }
  .utility-left .utility-date { display: none; }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
  }
  .nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: transform .25s ease;
  }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 0;
    border-bottom: 1px solid var(--rule);
    transform: translateY(-150%);
    transition: transform .3s ease;
    box-shadow: var(--shadow-md);
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 14px 24px; }
  .main-nav a.active::after { display: none; }

  .logo-mark { width: 42px; height: 42px; }
  .logo-text { font-size: 0.95rem; }
  .logo-text span { font-size: 0.72rem; }

  .hero { padding: 40px 0 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-text { padding-bottom: 40px; }
  .hero-image-wrap { height: 360px; margin-top: 20px; }
  .hero-headline { font-size: 2.4rem; }

  .cards-grid { grid-template-columns: 1fr; gap: 28px; }
  .side-card { grid-template-columns: 90px 1fr; }

  .meet-darcy { padding: 50px 0; }
  .meet-darcy-inner { grid-template-columns: 1fr; gap: 30px; }
  .meet-darcy-image { height: 350px; order: 2; }

  .section { padding: 50px 0; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 8px; }

  .newsletter { padding: 50px 0; }
  .newsletter-form { flex-direction: column; gap: 0; }
  .newsletter-form button { padding: 14px; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom a { margin-left: 0; margin-right: 14px; }

  .about-hero { grid-template-columns: 1fr; padding-top: 50px; padding-bottom: 50px; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .article-body p:first-of-type::first-letter { font-size: 3rem; }
}
