/* ============================================================
   FREE HASSAN AKKAD — Campaign Site
   Design System
   ============================================================ */

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

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --navy:       #0D1B2A;
  --navy-mid:   #152336;
  --navy-light: #1E3347;
  --paper:      #F7F5F0;
  --paper-warm: #EDEAE2;
  --steel:      #8FA3B1;
  --steel-light:#C2D0D9;
  --red:        #C0392B;
  --red-dark:   #962D22;
  --gold:       #D4A843;
  --gold-light: #E8C97A;
  --white:      #FFFFFF;
  --text-dark:  #1A1A1A;
  --text-mid:   #4A5568;
  --text-light: #718096;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'IBM Plex Sans', system-ui, sans-serif;
  --font-mono:    'IBM Plex Mono', 'Courier New', monospace;

  --max-w: 1140px;
  --radius: 2px;
  --transition: 0.2s ease;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--text-dark);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Layout ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section--dark { background: var(--navy); color: var(--paper); }
.section--paper { background: var(--paper-warm); }
.section--white { background: var(--white); }

/* ── Typography ─────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 12px;
}
.section--dark .eyebrow { color: var(--gold); }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; }
h3 { font-size: 1.3rem; font-weight: 600; }

.section-title { margin-bottom: 8px; }
.section-lead {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 600px;
  margin-top: 12px;
  line-height: 1.75;
}
.section--dark .section-lead { color: var(--steel-light); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-light {
  background: transparent;
  color: var(--paper);
  border-color: var(--steel);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.08); border-color: var(--paper); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 700;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid var(--navy-light);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.nav__logo span { color: var(--gold); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links a {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--steel-light);
  padding: 8px 15px;
  border-radius: var(--radius);
  transition: color var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--white); }
.nav__links a.active { background: var(--navy-light); }
.nav__cta { margin-left: 12px; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--paper);
  transition: all var(--transition);
}

/* ── Alert Banner ────────────────────────────────────────── */
.alert-banner {
  background: var(--red);
  color: var(--white);
  padding: 10px 24px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.alert-banner__dot {
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}
.alert-banner a { text-decoration: underline; color: var(--white); font-weight: 600; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  color: var(--white);
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(192,57,43,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero__content { padding: 80px 0 80px 0; max-width: 560px; }
.hero__day-count {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--steel);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__day-count::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--red);
}
.hero__title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero__title .accent { color: var(--gold); font-style: italic; }
.hero__summary {
  font-size: 1.15rem;
  color: var(--steel-light);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__photo-col {
  position: relative;
  height: 100%;
  min-height: 88vh;
  overflow: hidden;
}
.hero__photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--navy-light) 0%, #0a1520 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
}
.hero__photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  position: absolute;
  inset: 0;
}
.hero__photo-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, transparent 30%);
}

/* ── Verified / Unverified Facts ──────────────────────────── */
.facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.facts-card {
  border-radius: var(--radius);
  overflow: hidden;
}
.facts-card__header {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.facts-card--verified .facts-card__header {
  background: #1B4332;
  color: #B7E4C7;
}
.facts-card--unverified .facts-card__header {
  background: #5C3317;
  color: #F3C99F;
}
.facts-card__header h3 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.facts-card__body {
  background: var(--navy-light);
  padding: 24px;
}
.fact-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.fact-item:last-child { border-bottom: none; padding-bottom: 0; }
.fact-item__icon { flex-shrink: 0; margin-top: 2px; }
.fact-item__text {
  font-size: 14px;
  color: var(--steel-light);
  line-height: 1.6;
}
.fact-item__text strong { color: var(--white); display: block; margin-bottom: 2px; }
.fact-item__source {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--steel);
  margin-top: 4px;
}
.fact-item__source a { color: var(--gold); text-decoration: underline; }

/* ── Stats Bar ───────────────────────────────────────────── */
.stats-bar {
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-light);
  border-bottom: 1px solid var(--navy-light);
  padding: 32px 0;
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid var(--navy-light);
}
.stat-item:last-child { border-right: none; }
.stat-item__number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
}

/* ── Timeline ────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 0; }
.timeline__line {
  position: absolute;
  left: 120px;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--steel-light);
}
.timeline-entry {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0 40px;
  position: relative;
  padding-bottom: 48px;
}
.timeline-entry:last-child { padding-bottom: 0; }
.timeline-entry__date {
  text-align: right;
  padding-top: 2px;
}
.timeline-entry__date-day {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.timeline-entry__date-month {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
}
.timeline-entry__dot {
  position: absolute;
  left: 120px;
  top: 6px;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--steel);
  z-index: 1;
  transition: border-color var(--transition);
}
.timeline-entry--key .timeline-entry__dot {
  background: var(--red);
  border-color: var(--red);
  width: 16px; height: 16px;
  top: 4px;
  left: 119px;
}
.timeline-entry__content {
  padding-left: 40px;
  padding-bottom: 8px;
}
.timeline-entry__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 8px;
}
.tag--arrest   { background: rgba(192,57,43,0.12); color: var(--red); }
.tag--legal    { background: rgba(212,168,67,0.15); color: #8B6914; }
.tag--statement{ background: rgba(26,82,118,0.12); color: #1A5276; }
.tag--intl     { background: rgba(27,67,50,0.15); color: #1B4332; }
.tag--court    { background: rgba(88,28,135,0.12); color: #581C87; }

.timeline-entry__title { font-size: 1.1rem; margin-bottom: 8px; color: var(--text-dark); }
.timeline-entry__body { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.timeline-entry__source {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--steel);
  display: flex;
  align-items: center;
  gap: 6px;
}
.timeline-entry__source a { color: var(--navy); text-decoration: underline; }
.timeline-entry__source a:hover { color: var(--red); }

/* ── Cards ───────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.card {
  background: var(--white);
  border: 1px solid var(--paper-warm);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: 0 8px 32px rgba(13,27,42,0.10); transform: translateY(-2px); }
.card__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 10px;
}
.card__body { padding: 24px; }
.card__date { font-family: var(--font-mono); font-size: 11px; color: var(--steel); margin-bottom: 8px; }
.card__title { font-size: 1rem; font-weight: 600; line-height: 1.4; margin-bottom: 10px; }
.card__excerpt { font-size: 13px; color: var(--text-mid); line-height: 1.65; }
.card__footer {
  padding: 14px 24px;
  border-top: 1px solid var(--paper-warm);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card__source { font-family: var(--font-mono); font-size: 11px; color: var(--steel); }
.card__link { font-size: 12px; font-weight: 600; color: var(--red); }
.card__link:hover { text-decoration: underline; }

/* ── Media Kit ───────────────────────────────────────────── */
.mediakit-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}
.mediakit-photo {
  position: relative;
  background: var(--navy-light);
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mediakit-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.photo-placeholder-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--steel);
  text-align: center;
  padding: 24px;
  line-height: 1.6;
}
.mediakit-bio h2 { margin-bottom: 16px; }
.mediakit-bio p { color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; font-size: 15px; }

.downloads-list { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.download-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--paper-warm);
  border: 1px solid #DDD9CE;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.download-item:hover { background: #E4E0D6; }
.download-item__info { display: flex; align-items: center; gap: 12px; }
.download-item__icon {
  width: 36px; height: 36px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
}
.download-item__name { font-weight: 600; font-size: 14px; }
.download-item__meta { font-family: var(--font-mono); font-size: 11px; color: var(--steel); }
.download-item__btn {
  font-size: 12px; font-weight: 600;
  color: var(--navy); padding: 6px 14px;
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.download-item__btn:hover { background: var(--navy); color: var(--white); }

/* ── Petition ─────────────────────────────────────────────── */
.petition-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.petition-embed {
  background: var(--white);
  border: 1px solid var(--paper-warm);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}
.petition-counter {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}
.petition-counter__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
}
.petition-counter__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 4px;
}
.progress-bar {
  height: 6px;
  background: var(--navy-light);
  border-radius: 3px;
  overflow: hidden;
  margin: 16px 0 8px;
}
.progress-bar__fill {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
  width: 68%;
  transition: width 1s ease;
}
.progress-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--steel);
  display: flex;
  justify-content: space-between;
}

/* ── Contact ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--paper-warm);
  border-radius: var(--radius);
  padding: 28px;
}
.contact-card__role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 8px;
}
.contact-card__name { font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }
.contact-card__email {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--red);
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 48px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--paper-warm);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: var(--text-dark);
  gap: 16px;
}
.faq-question__icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border: 1px solid var(--steel-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--steel);
  transition: all var(--transition);
}
.faq-item.open .faq-question__icon { border-color: var(--red); color: var(--red); transform: rotate(45deg); }
.faq-answer {
  display: none;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  padding-bottom: 22px;
  max-width: 680px;
}
.faq-item.open .faq-answer { display: block; }

/* ── Page Header ─────────────────────────────────────────── */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0 60px;
  border-bottom: 3px solid var(--red);
}
.page-header__breadcrumb {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--steel);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-header__breadcrumb a { color: var(--steel); }
.page-header__breadcrumb a:hover { color: var(--white); }
.page-header h1 { color: var(--white); margin-bottom: 12px; }
.page-header p {
  font-size: 1.05rem;
  color: var(--steel-light);
  max-width: 580px;
  line-height: 1.7;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: #080F17;
  color: var(--steel);
  padding: 56px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
}
.footer__brand-name span { color: var(--gold); }
.footer__tagline { font-size: 13px; line-height: 1.65; max-width: 260px; }
.footer__col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 14px;
}
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links a { font-size: 13px; color: var(--steel); transition: color var(--transition); }
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid var(--navy-light);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
}
.footer__disclaimer {
  font-size: 11px;
  line-height: 1.6;
  color: #4A5568;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--navy-light);
}

/* ── Stamp / Verified Badge ──────────────────────────────── */
.verified-stamp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #276749;
  background: rgba(39,103,73,0.1);
  padding: 4px 10px;
  border-radius: 2px;
  border: 1px solid rgba(39,103,73,0.25);
}
.unverified-stamp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C05621;
  background: rgba(192,86,33,0.1);
  padding: 4px 10px;
  border-radius: 2px;
  border: 1px solid rgba(192,86,33,0.25);
}

/* ── Utility ─────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--paper-warm);
  border: none;
  margin: 0;
}
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0 !important; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__photo-col { display: none; }
  .hero__content { padding: 64px 0; max-width: 100%; }
  .facts-grid { grid-template-columns: 1fr; }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .mediakit-grid { grid-template-columns: 1fr; }
  .petition-layout { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--navy);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--navy-light);
    gap: 4px;
    z-index: 99;
  }
  .nav__hamburger { display: flex; }
  .nav__cta { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .stats-bar__inner { grid-template-columns: 1fr 1fr; }
  .timeline { padding-left: 0; }
  .timeline__line { left: 80px; }
  .timeline-entry { grid-template-columns: 80px 1fr; gap: 0 24px; }
  .timeline-entry__content { padding-left: 24px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── Revamp layout helpers ───────────────────────────────── */
.asks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
/* Ensure the hero portrait fills its column cleanly */
.hero__photo-placeholder img { object-position: center 20%; }

@media (max-width: 960px) {
  .two-col   { grid-template-columns: 1fr !important; gap: 32px !important; }
  .asks-grid { grid-template-columns: 1fr; }
  .photo-grid{ grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 640px) {
  .photo-grid { grid-template-columns: 1fr !important; }
}

/* ── Reduced Motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
