/* ============================================================
   Animation Mariage — Design System Ardoise & Or
   ============================================================ */

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

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --primary:       #3D3D4E;
  --primary-light: #5C5C70;
  --primary-dark:  #27273A;
  --gold:          #BFA06A;
  --gold-light:    #D4C5A3;
  --gold-bright:   #C8A84B;
  --sage:          #8BA888;
  --sage-light:    #B5CCAD;
  --violet:        #8B5CF6;
  --coral:         #E07B54;
  --rose:          #D4849F;
  --bg:            #FAFAF8;
  --bg-alt:        #F3F2EE;
  --bg-dark:       #27273A;
  --txt:           #2A2A36;
  --txt-sec:       #5C5C70;
  --txt-white:     #FAFAF8;
  --border:        #E2DED6;
  --border-gold:   rgba(191,160,106,.3);
  --sp-xs: .5rem; --sp-sm: 1rem; --sp-md: 2rem; --sp-lg: 4rem; --sp-xl: 6rem;
  --r-sm: 4px; --r-md: 8px; --r-lg: 16px; --r-xl: 24px; --r-full: 9999px;
  --ease: cubic-bezier(.4,0,.2,1);
  --dur: .3s; --dur-slow: .6s;
  --shadow-sm: 0 1px 2px rgba(39,39,58,.07), 0 2px 6px rgba(39,39,58,.05);
  --shadow-md: 0 1px 3px rgba(39,39,58,.08), 0 4px 12px rgba(39,39,58,.06), 0 8px 24px rgba(39,39,58,.04);
  --shadow-gold: 0 2px 8px rgba(191,160,106,.15), 0 8px 32px rgba(191,160,106,.12);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--txt);
  background: var(--bg);
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--gold-bright); }
ul, ol { padding-left: 1.5rem; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  line-height: 1.2;
  color: var(--primary-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 600; margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; margin-bottom: .75rem; }
h4 { font-size: 1.15rem; font-weight: 600; margin-bottom: .5rem; }
p { margin-bottom: 1.25rem; }
.citation, .stat-number, .pull-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

/* ── Layout ────────────────────────────────────────────────── */
.container       { max-width: 1200px; margin: 0 auto; padding: 0 var(--sp-md); }
.container-narrow { max-width: 780px; margin: 0 auto; padding: 0 var(--sp-md); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-md); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-md); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-md); }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--sp-md); }

/* ── Section variants ─────────────────────────────────────── */
.section      { padding: var(--sp-lg) 0; }
.section-alt  { padding: var(--sp-lg) 0; background: var(--bg-alt); }
.section-dark { padding: var(--sp-lg) 0; background: var(--bg-dark); color: var(--txt-white); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--txt-white); }
.section-title { text-align: center; margin-bottom: var(--sp-md); }
.section-title .gold-line {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  margin: var(--sp-sm) auto 0;
}

/* ── Header ────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(39,39,58,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(191,160,106,.15);
  transition: box-shadow var(--dur) var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--txt-white);
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
}
.logo:hover { color: var(--gold-light); }
.logo-icon { color: var(--gold); font-size: 1.5rem; }
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-nav a {
  color: rgba(250,250,248,.8);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  padding: .4rem 0;
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--dur) var(--ease);
}
.site-nav a:hover { color: var(--txt-white); }
.site-nav a:hover::after { width: 100%; }

/* Dropdown nav */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-dark);
  border: 1px solid rgba(191,160,106,.2);
  border-radius: var(--r-md);
  padding: var(--sp-sm);
  min-width: 220px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
  z-index: 200;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; }
.nav-dropdown a {
  display: block;
  padding: .4rem .75rem;
  border-radius: var(--r-sm);
  font-size: .88rem;
  color: rgba(250,250,248,.75);
}
.nav-dropdown a:hover { background: rgba(191,160,106,.1); color: var(--txt-white); }
.nav-dropdown a:hover::after { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  color: var(--txt-white);
  font-size: 1.5rem;
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 300;
  flex-direction: column;
  padding: var(--sp-lg) var(--sp-md);
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--txt-white);
  font-size: 1.8rem;
  cursor: pointer;
  margin-bottom: var(--sp-md);
}
.mobile-nav a {
  color: rgba(250,250,248,.85);
  font-size: 1.1rem;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  display: block;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-title {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: var(--sp-sm) 0 .5rem;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .4;
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.03); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(39,39,58,.92) 0%, rgba(39,39,58,.7) 60%, rgba(191,160,106,.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--sp-lg) 0;
}
.hero-kicker {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-sm);
}
.hero h1 { color: var(--txt-white); margin-bottom: var(--sp-sm); max-width: 750px; }
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(250,250,248,.75);
  max-width: 600px;
  margin-bottom: var(--sp-md);
  line-height: 1.7;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  color: rgba(250,250,248,.5);
  font-size: .85rem;
  margin-bottom: var(--sp-md);
}
.hero-meta .sep { color: var(--gold); }
.scroll-indicator {
  position: absolute;
  bottom: var(--sp-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(250,250,248,.4);
  font-size: .75rem;
  letter-spacing: .08em;
}
.scroll-indicator-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(250,250,248,.5);
  margin-bottom: var(--sp-sm);
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(250,250,248,.6); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  text-decoration: none;
  border: 2px solid transparent;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--bg-dark);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(191,160,106,.35);
  color: var(--bg-dark);
}
.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-gold-outline:hover { background: rgba(191,160,106,.1); color: var(--gold-bright); }
.btn-outline {
  background: transparent;
  color: var(--txt-white);
  border-color: rgba(250,250,248,.3);
}
.btn-outline:hover { background: rgba(250,250,248,.05); border-color: rgba(250,250,248,.6); color: var(--txt-white); }

/* ── Cards ─────────────────────────────────────────────────── */
.blog-card-wrapper { display: contents; }
.blog-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.blog-card-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  background: var(--bg-alt);
}
.blog-card-body { padding: var(--sp-sm) var(--sp-sm) var(--sp-md); flex: 1; display: flex; flex-direction: column; }
.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: .5rem 0 .4rem;
  line-height: 1.35;
}
.blog-card-desc { font-size: .9rem; color: var(--txt-sec); margin: 0; flex: 1; }
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--sp-sm);
  font-size: .8rem;
  color: var(--txt-sec);
}
.blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.guide-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: var(--sp-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: var(--border-gold);
}
.guide-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(191,160,106,.15), rgba(191,160,106,.05));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
}
.guide-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-dark);
}
.guide-card-desc { font-size: .88rem; color: var(--txt-sec); margin: 0; line-height: 1.6; }
.guide-card-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: auto;
}
.guide-card-link:hover { color: var(--gold-bright); }
.guide-card.is-new .guide-card-title::after {
  content: 'Nouveau';
  display: inline-block;
  margin-left: .5rem;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--bg-dark);
  padding: .1rem .4rem;
  border-radius: var(--r-full);
  font-family: 'Inter', sans-serif;
  vertical-align: middle;
}

/* ── Category blocks ───────────────────────────────────────── */
.cat-block {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: var(--sp-md);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.cat-block:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cat-icon { font-size: 2.5rem; margin-bottom: var(--sp-sm); }
.cat-name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin-bottom: .25rem;
}
.cat-count { font-size: .8rem; color: var(--txt-sec); }

/* ── Badges ────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .2rem .7rem;
  border-radius: var(--r-full);
  border: 1px solid;
}
.badge--animation-soiree  { background: rgba(191,160,106,.15); color: var(--gold); border-color: var(--border-gold); }
.badge--magie-spectacle   { background: rgba(139,92,246,.12);  color: var(--violet); border-color: rgba(139,92,246,.25); }
.badge--ceremonie-musique { background: rgba(139,168,136,.15); color: #5A8A58; border-color: rgba(139,168,136,.3); }
.badge--jeux-animations   { background: rgba(224,123,84,.12);  color: var(--coral); border-color: rgba(224,123,84,.25); }
.badge--animation-enfants { background: rgba(212,132,159,.12); color: #B0607A; border-color: rgba(212,132,159,.25); }

/* ── Stats ─────────────────────────────────────────────────── */
.stats-grid {
  display: flex;
  justify-content: center;
  gap: var(--sp-lg);
  flex-wrap: wrap;
}
.stat-card { text-align: center; }
.stat-number {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .9rem;
  color: var(--txt-sec);
  margin-top: .25rem;
}

/* ── Article body ─────────────────────────────────────────── */
.article-layout { display: grid; grid-template-columns: 1fr 280px; gap: var(--sp-lg); align-items: start; }
.article-body { min-width: 0; }
.article-body h2 {
  border-left: 3px solid var(--gold);
  padding-left: var(--sp-sm);
  margin: var(--sp-lg) 0 var(--sp-sm);
}
.article-body h3 {
  margin: var(--sp-md) 0 var(--sp-sm);
  color: var(--primary);
}
.article-body p { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { margin-bottom: 1.25rem; }
.article-body li { margin-bottom: .5rem; }
.article-body a { color: var(--gold); border-bottom: 1px solid var(--border-gold); }
.article-body a:hover { color: var(--gold-bright); border-bottom-color: var(--gold-bright); }

.article-summary {
  background: linear-gradient(135deg, rgba(191,160,106,.08), rgba(191,160,106,.03));
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  padding: var(--sp-md);
  margin-bottom: var(--sp-md);
  font-style: italic;
  color: var(--primary);
  position: relative;
}
.article-summary::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: .2;
  position: absolute;
  top: -1rem;
  left: 1rem;
  line-height: 1;
}

.pull-quote {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--primary);
  border-left: 3px solid var(--gold);
  padding: var(--sp-sm) var(--sp-md);
  margin: var(--sp-md) 0;
  background: rgba(191,160,106,.05);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  line-height: 1.5;
}

/* TOC sticky */
.toc {
  position: sticky;
  top: 80px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-md);
}
.toc-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: var(--sp-sm);
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}
.toc-list { list-style: none; padding: 0; margin: 0; }
.toc-list li { margin-bottom: .4rem; }
.toc-list a {
  font-size: .87rem;
  color: var(--txt-sec);
  display: block;
  padding: .25rem .5rem;
  border-radius: var(--r-sm);
  transition: all var(--dur) var(--ease);
}
.toc-list a:hover { color: var(--gold); background: rgba(191,160,106,.08); }
.toc-list a.active { color: var(--gold); font-weight: 600; }

/* Interview block */
.interview-block {
  background: var(--bg-alt);
  border-radius: var(--r-lg);
  padding: var(--sp-md) var(--sp-lg);
  margin: var(--sp-md) 0;
  border-left: 4px solid var(--gold);
}

/* ── Blog filters ─────────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: var(--sp-md);
  justify-content: center;
}
.filter-btn {
  padding: .45rem 1.1rem;
  border-radius: var(--r-full);
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--txt-sec);
  transition: all var(--dur) var(--ease);
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active {
  background: var(--primary-dark);
  color: var(--txt-white);
  border-color: var(--primary-dark);
}
.card-hidden { display: none !important; }

/* ── FAQ accordion ─────────────────────────────────────────── */
.faq-section { margin: var(--sp-lg) 0; }
.faq-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: var(--sp-md);
  color: var(--primary-dark);
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: .5rem;
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--sp-md);
  cursor: pointer;
  background: var(--bg);
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary-dark);
  gap: var(--sp-sm);
  transition: background var(--dur) var(--ease);
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question:hover { background: var(--bg-alt); }
.faq-question.open { background: var(--bg-alt); color: var(--gold-bright); }
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
  color: var(--gold);
}
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: .75rem var(--sp-md) var(--sp-md);
  color: var(--txt-sec);
  font-size: .95rem;
  line-height: 1.75;
  border-top: 1px solid var(--border);
}
.faq-answer.open { display: block; }

/* ── Wedding Quote ─────────────────────────────────────────── */
.wedding-quote {
  background: var(--bg-dark);
  padding: var(--sp-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.wedding-quote::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 20rem;
  color: var(--gold);
  opacity: .04;
  position: absolute;
  top: -5rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}
.wedding-quote blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--txt-white);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}
.wedding-quote cite {
  display: block;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: .85rem;
  color: var(--gold);
  margin-top: var(--sp-sm);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Gold divider ornament */
.gold-divider {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  margin: var(--sp-md) auto;
  max-width: 300px;
}
.gold-divider::before, .gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.gold-divider::after { background: linear-gradient(90deg, var(--gold), transparent); }
.gold-divider-icon { color: var(--gold); font-size: 1rem; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(191,160,106,.15);
  padding: var(--sp-lg) 0 var(--sp-md);
  color: rgba(250,250,248,.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-lg);
  margin-bottom: var(--sp-lg);
}
.footer-brand .logo { margin-bottom: var(--sp-sm); font-size: 1.1rem; }
.footer-brand p { font-size: .88rem; line-height: 1.6; }
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: var(--sp-sm);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .4rem; }
.footer-col a { color: rgba(250,250,248,.55); font-size: .87rem; transition: color var(--dur) var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: var(--sp-md);
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom p { margin: 0; }

/* ── Reveal animations ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; }
  .toc { position: static; margin-bottom: var(--sp-md); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .site-nav { display: none; }
  .hamburger { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-md); }
  .hero { min-height: 65vh; }
  .stats-grid { gap: var(--sp-md); }
}
@media (max-width: 480px) {
  .grid-5 { grid-template-columns: 1fr; }
  .container, .container-narrow { padding: 0 var(--sp-sm); }
  .btn { padding: .65rem 1.25rem; font-size: .9rem; }
}
