@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700&family=Barlow:ital,wght@0,400;0,500;1,400&display=swap');

:root {
  --noir: #0a0a0f;
  --noir-2: #111118;
  --gris: #1a1a24;
  --gris-2: #252533;
  --bleu: #1d428a;
  --bleu-vif: #2a5cc8;
  --rouge: #c8102e;
  --or: #f5b700;
  --or-pale: #ffd04a;
  --blanc: #f0f0f8;
  --texte: #b0b0c8;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--noir);
  color: var(--blanc);
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  padding-bottom: 90px;
}

/* ─── HEADER / NAV ─── */
header {
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--bleu);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: var(--blanc);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span { color: var(--or); }
.logo .ball { font-size: 1.4rem; }

nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

nav a {
  color: var(--texte);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

nav a:hover, nav a.active {
  color: var(--or);
  border-bottom-color: var(--or);
}

.nav-cta {
  background: var(--rouge);
  color: white !important;
  padding: 8px 18px !important;
  border-bottom: none !important;
  border-radius: 3px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: #a50f27 !important; color: white !important; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: linear-gradient(160deg, #0a0a1f 0%, #0d1a3a 40%, #1a0a0a 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(29,66,138,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(200,16,46,0.2) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(245,183,0,0.08) 0%, transparent 60%);
}

.hero-court {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(180deg, transparent 0%, rgba(29,66,138,0.12) 100%);
  border-top: 1px solid rgba(245,183,0,0.15);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem 5rem;
  max-width: 800px;
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--or);
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.92;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  color: var(--or);
  font-style: normal;
  display: block;
}

.hero p {
  font-size: 1.15rem;
  color: var(--texte);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--rouge);
  color: white;
  padding: 14px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  transition: background 0.2s, transform 0.1s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover { background: #a50f27; transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: var(--blanc);
  padding: 13px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(240,240,248,0.3);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  transition: border-color 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover { border-color: var(--or); color: var(--or); }

/* ─── SECTION COMMUNE ─── */
section { padding: 5rem 2rem; }

.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(245,183,0,0.3);
  max-width: 60px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--texte);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 3rem;
}

/* ─── CARDS ARTICLES ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--gris);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bleu), var(--rouge));
  opacity: 0;
  transition: opacity 0.2s;
}

.card:hover { transform: translateY(-4px); border-color: rgba(245,183,0,0.2); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.card:hover::before { opacity: 1; }

.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--rouge);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
}

.card-thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--gris-2), var(--noir-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%);
}

.card-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-cat {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 0.5rem;
}

.card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--blanc);
  margin-bottom: 0.7rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--texte);
  line-height: 1.6;
  flex: 1;
}

.card-link {
  margin-top: 1.2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--or);
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-link::after { content: '→'; transition: transform 0.2s; }
.card:hover .card-link::after { transform: translateX(4px); }

/* ─── FEATURED CARD ─── */
.card-featured {
  grid-column: 1 / -1;
  flex-direction: row;
  max-height: 280px;
}

.card-featured .card-thumb {
  width: 300px;
  min-width: 300px;
  height: auto;
  font-size: 5rem;
}

/* ─── COUNTDOWN / HIGHLIGHT BOX ─── */
.highlight-box {
  background: linear-gradient(135deg, var(--bleu) 0%, rgba(29,66,138,0.6) 100%);
  border: 1px solid rgba(245,183,0,0.3);
  border-left: 4px solid var(--or);
  padding: 2.5rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
}

.highlight-icon { font-size: 3rem; flex-shrink: 0; }

.highlight-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}

.highlight-text p { color: rgba(240,240,248,0.8); font-size: 0.95rem; }

/* ─── STATS BAND ─── */
.stats-band {
  background: var(--gris);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--or);
  line-height: 1;
  display: block;
}

.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--texte);
  margin-top: 4px;
  display: block;
}

/* ─── STICKY FOOTER ─── */
.sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: linear-gradient(90deg, var(--bleu) 0%, #0d2060 100%);
  border-top: 2px solid var(--or);
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.5);
}

.sticky-footer-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.sticky-footer-text .bell { font-size: 1.4rem; animation: ring 3s ease-in-out infinite; }

@keyframes ring {
  0%, 90%, 100% { transform: rotate(0); }
  92% { transform: rotate(-15deg); }
  94% { transform: rotate(15deg); }
  96% { transform: rotate(-10deg); }
  98% { transform: rotate(10deg); }
}

.sticky-footer-text strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  line-height: 1.2;
}

.sticky-footer-text span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  display: block;
}

.sticky-form {
  display: flex;
  gap: 0.5rem;
  flex: 1;
  max-width: 480px;
}

.sticky-form input {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 0 16px;
  height: 44px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  border-radius: 3px;
  outline: none;
  transition: border-color 0.2s;
}

.sticky-form input::placeholder { color: rgba(255,255,255,0.45); }
.sticky-form input:focus { border-color: var(--or); }

.sticky-form button {
  background: var(--or);
  color: var(--noir);
  border: none;
  padding: 0 20px;
  height: 44px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.2s;
  white-space: nowrap;
}

.sticky-form button:hover { background: var(--or-pale); }

.sticky-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px;
  transition: color 0.2s;
  flex-shrink: 0;
}

.sticky-close:hover { color: white; }

/* ─── PAGE INTÉRIEURE ─── */
.page-hero {
  background: linear-gradient(160deg, var(--noir-2) 0%, var(--gris) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: attr(data-emoji);
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12rem;
  opacity: 0.06;
  pointer-events: none;
}

.page-hero .breadcrumb {
  font-size: 0.8rem;
  color: var(--texte);
  margin-bottom: 1.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 1px;
}

.page-hero .breadcrumb a { color: var(--or); text-decoration: none; }
.page-hero .breadcrumb a:hover { text-decoration: underline; }

.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 2px;
  line-height: 0.95;
  max-width: 800px;
  margin-bottom: 1.2rem;
}

.page-hero .meta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--texte);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 1px;
}

.meta-tag {
  background: var(--rouge);
  color: white;
  padding: 3px 10px;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ─── ARTICLE CONTENT ─── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
  align-items: start;
}

.article-body h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 1px;
  color: var(--blanc);
  margin: 2.5rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.article-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 1px;
  color: var(--or-pale);
  margin: 2rem 0 0.8rem;
}

.article-body p { color: var(--texte); margin-bottom: 1.2rem; }

.article-body strong { color: var(--blanc); }

.article-body ul, .article-body ol {
  color: var(--texte);
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.article-body li { margin-bottom: 0.4rem; }

.article-body a { color: var(--or); text-decoration: none; border-bottom: 1px solid rgba(245,183,0,0.3); }
.article-body a:hover { border-bottom-color: var(--or); }

.article-body blockquote {
  border-left: 3px solid var(--or);
  padding: 1rem 1.5rem;
  background: var(--gris);
  margin: 2rem 0;
  font-style: italic;
  color: var(--blanc);
  font-size: 1.05rem;
}

.info-box {
  background: linear-gradient(135deg, rgba(29,66,138,0.3), rgba(29,66,138,0.1));
  border: 1px solid rgba(29,66,138,0.5);
  border-left: 4px solid var(--bleu-vif);
  padding: 1.5rem;
  border-radius: 3px;
  margin: 2rem 0;
}

.info-box h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 0.8rem;
}

.info-box p { color: rgba(240,240,248,0.8); font-size: 0.9rem; margin: 0; }

/* ─── SIDEBAR ─── */
.sidebar { position: sticky; top: 80px; }

.sidebar-box {
  background: var(--gris);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-box h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: var(--or);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sidebar-links { list-style: none; }

.sidebar-links li {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0.6rem 0;
}

.sidebar-links li:last-child { border-bottom: none; }

.sidebar-links a {
  color: var(--texte);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.3;
}

.sidebar-links a::before { content: '→'; color: var(--rouge); flex-shrink: 0; font-size: 0.8rem; margin-top: 2px; }
.sidebar-links a:hover { color: var(--or); }

.sidebar-cta {
  background: linear-gradient(135deg, var(--rouge), #8b0c1f);
  padding: 1.5rem;
  border-radius: 4px;
  text-align: center;
}

.sidebar-cta h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.sidebar-cta p { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-bottom: 1rem; }

.sidebar-form input {
  width: 100%;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 10px 12px;
  font-size: 0.88rem;
  border-radius: 3px;
  margin-bottom: 0.5rem;
  outline: none;
}

.sidebar-form input::placeholder { color: rgba(255,255,255,0.4); }

.sidebar-form button {
  width: 100%;
  background: var(--or);
  color: var(--noir);
  border: none;
  padding: 11px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.2s;
}

.sidebar-form button:hover { background: var(--or-pale); }

/* ─── RELATED ARTICLES ─── */
.related-section {
  background: var(--gris);
  padding: 4rem 2rem;
  margin-top: 2rem;
}

/* ─── FOOTER ─── */
footer {
  background: var(--noir-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 2rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand .logo { margin-bottom: 1rem; }

.footer-brand p {
  font-size: 0.88rem;
  color: var(--texte);
  line-height: 1.7;
  max-width: 300px;
}

footer h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1rem;
}

footer ul { list-style: none; }

footer li { margin-bottom: 0.5rem; }

footer a {
  color: var(--texte);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

footer a:hover { color: var(--blanc); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(176,176,200,0.5);
}

/* ─── HISTORY PAGE ─── */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--bleu), var(--rouge));
}

.timeline-item {
  display: grid;
  grid-template-columns: 100px 40px 1fr;
  gap: 0 1rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.timeline-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--or);
  letter-spacing: 1px;
  text-align: right;
  padding-top: 2px;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  background: var(--rouge);
  border-radius: 50%;
  border: 3px solid var(--noir);
  margin: 4px auto 0;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px var(--rouge);
}

.timeline-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  color: var(--blanc);
  margin-bottom: 0.4rem;
}

.timeline-content p { font-size: 0.9rem; color: var(--texte); margin: 0; }

/* ─── TABLE ─── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 1.5rem 0;
}

.data-table th {
  background: var(--gris-2);
  color: var(--or);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--bleu);
}

.data-table td {
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--texte);
}

.data-table tr:hover td { background: rgba(255,255,255,0.02); color: var(--blanc); }

.data-table td strong { color: var(--blanc); }

/* ─── SUCCESS MESSAGE ─── */
.success-msg {
  display: none;
  background: rgba(29,66,138,0.3);
  border: 1px solid var(--bleu-vif);
  color: var(--blanc);
  padding: 10px 16px;
  font-size: 0.88rem;
  border-radius: 3px;
  margin-top: 8px;
  text-align: center;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .card-featured { flex-direction: column; max-height: none; }
  .card-featured .card-thumb { width: 100%; height: 160px; min-width: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { left: 70px; }
  .timeline-item { grid-template-columns: 55px 30px 1fr; }
  .timeline-year { font-size: 1.1rem; }
}

@media (max-width: 640px) {
  header { padding: 0 1rem; }
  nav { display: none; }
  .sticky-footer { padding: 0 1rem; }
  .sticky-footer-text span { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
