/* ===================================================================
   Agir Ensemble — Feuille de style principale
   Thème : Rose & Or — Élégance & Chaleur
   =================================================================== */

/* ── Variables ─────────────────────────────────────────────────── */
:root {
  --rose-deep:    #8B1A4A;
  --rose-mid:     #B5305A;
  --rose-warm:    #C94E78;
  --rose-light:   #E8A0B4;
  --rose-pale:    #FDE8EF;
  --rose-blush:   #FFF4F7;
  --rose-border:  #F0C8D8;
  --gold:         #C9924A;
  --gold-light:   #F5E6D0;
  --white:        #FFFFFF;
  --text:         #2C1320;
  --text-body:    #4A2D3B;
  --text-muted:   #9B7080;
  --text-light:   #BFA0AA;
  --bg:           #FFF8FB;
  --bg-alt:       #FFF0F5;
  --surface:      #FFFFFF;
  --border:       #F0D0DC;
  --shadow-sm:    0 2px 8px rgba(139,26,74,.06);
  --shadow:       0 4px 20px rgba(139,26,74,.10);
  --shadow-md:    0 8px 40px rgba(139,26,74,.13);
  --shadow-lg:    0 16px 64px rgba(139,26,74,.16);
  --radius-sm:    10px;
  --radius:       18px;
  --radius-lg:    28px;
  --radius-xl:    40px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Nunito', system-ui, sans-serif;
  --transition:   .3s cubic-bezier(.4,0,.2,1);
  --max-w:        1200px;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--rose-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--rose-deep); }
ul { list-style: none; }

/* ── Typographie ───────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.2;
  font-weight: 600;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose-warm);
  background: var(--rose-pale);
  padding: .35rem 1rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}
.section-title {
  margin-bottom: .75rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Header ────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rose-border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .01em;
}
.logo:hover { color: var(--rose-deep); }

/* Logo image header — fond supprimé par mix-blend-mode */
.logo-img-header {
  height: 58px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;   /* rend le fond crème invisible sur fond blanc */
  transition: transform var(--transition), opacity var(--transition);
  filter: drop-shadow(0 2px 6px rgba(139,26,74,.10));
}
.logo:hover .logo-img-header {
  transform: scale(1.04);
  opacity: .88;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.nav-link {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-body);
  padding: .45rem .9rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: .9rem; right: .9rem;
  height: 2px;
  background: var(--rose-mid);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover { color: var(--rose-mid); background: var(--rose-pale); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--rose-deep); }

.nav-cta {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white) !important;
  background: var(--rose-mid);
  padding: .55rem 1.4rem;
  border-radius: 99px;
  transition: all var(--transition);
  margin-left: .5rem;
}
.nav-cta:hover { background: var(--rose-deep); transform: translateY(-1px); box-shadow: var(--shadow); }
.nav-cta.active { background: var(--rose-deep); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 9rem 0 6rem;
  overflow: hidden;
  background: linear-gradient(135deg, #6B1035 0%, #9B2A52 35%, #C2436E 65%, #F9A8C9 100%);
}
.hero-bg-decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-bg-decor::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
}
.hero-bg-decor::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
  bottom: -80px; left: 5%;
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  color: white;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,.3);
}
.hero-badge svg { width: 14px; height: 14px; }
.hero h1 {
  color: white;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: #FFD6E8;
}
.hero-desc {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: white;
  color: var(--rose-deep) !important;
  font-weight: 700;
  font-size: .95rem;
  padding: .8rem 2rem;
  border-radius: 99px;
  transition: all var(--transition);
  border: 2px solid white;
}
.btn-primary:hover {
  background: var(--rose-pale);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: white !important;
  font-weight: 600;
  font-size: .95rem;
  padding: .8rem 2rem;
  border-radius: 99px;
  border: 2px solid rgba(255,255,255,.6);
  transition: all var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: white;
  transform: translateY(-2px);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Hero logo */
.hero-logo-wrap {
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.22), 0 0 0 8px rgba(255,255,255,.2);
  animation: floatRibbon 4s ease-in-out infinite;
  flex-shrink: 0;
}
.hero-logo-img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
@keyframes floatRibbon {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-14px) scale(1.02); }
}

.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { display: block; width: 100%; }

/* ── Boutons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .9rem;
  padding: .7rem 1.8rem;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn-rose {
  background: var(--rose-mid);
  color: white;
}
.btn-rose:hover { background: var(--rose-deep); color: white; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-rose-outline {
  background: transparent;
  color: var(--rose-mid);
  border: 2px solid var(--rose-border);
}
.btn-rose-outline:hover { background: var(--rose-pale); border-color: var(--rose-light); }
.btn-sm { padding: .5rem 1.2rem; font-size: .85rem; }
.btn-lg { padding: .9rem 2.2rem; font-size: 1rem; }
.btn svg { width: 16px; height: 16px; }

/* ── Cards ─────────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}
.cards-grid-2 {
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-light);
}

.card-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--rose-pale);
}
.card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.card:hover .card-image img { transform: scale(1.04); }
.card-image-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-light);
}
.card-image-placeholder svg { width: 48px; height: 48px; }

.card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-tag {
  display: inline-block;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rose-warm);
  background: var(--rose-pale);
  padding: .25rem .75rem;
  border-radius: 99px;
  margin-bottom: .85rem;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .75rem;
  line-height: 1.3;
  flex: 1;
}
.card-title a { color: inherit; }
.card-title a:hover { color: var(--rose-deep); }
.card-excerpt {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.card-date {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: var(--text-muted);
}
.card-date svg { width: 13px; height: 13px; }
.card-link {
  font-size: .85rem;
  font-weight: 700;
  color: var(--rose-mid);
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: gap var(--transition);
}
.card-link:hover { gap: .6rem; color: var(--rose-deep); }
.card-link svg { width: 14px; height: 14px; }

/* ── Event card spécifique ────────────────────────────────────── */
.event-card .card-date-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: white;
  border-radius: var(--radius-sm);
  padding: .5rem .75rem;
  text-align: center;
  box-shadow: var(--shadow);
  line-height: 1.2;
}
.date-badge-day {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rose-deep);
  line-height: 1;
}
.date-badge-month {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
}
.event-lieu {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: .75rem;
}
.event-lieu svg { width: 13px; height: 13px; color: var(--rose-warm); flex-shrink: 0; }

/* ── Stats / Chiffres ──────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--rose-deep) 0%, var(--rose-mid) 100%);
  padding: 4rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-label {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}

/* ── CTA Banner ────────────────────────────────────────────────── */
.cta-banner {
  background: var(--rose-pale);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  text-align: center;
  border: 1px solid var(--rose-border);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--rose-light) 0%, transparent 70%);
  top: -100px; right: -50px;
  opacity: .4;
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p { color: var(--text-muted); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-banner .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Article Hero ──────────────────────────────────────────────── */
.article-hero {
  background: linear-gradient(135deg, var(--rose-deep) 0%, var(--rose-warm) 100%);
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.article-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.article-hero-inner {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.article-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.25rem;
}

.article-hero-breadcrumb a {
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}

.article-hero-breadcrumb a:hover { color: white; }
.article-hero-breadcrumb span { color: rgba(255,255,255,.4); }

.article-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  color: white;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .38rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255,255,255,.3);
}

.article-hero-text {
  animation: fadeUp .7s ease both;
}

.article-hero-visual {
  animation: fadeUp .7s ease .15s both;
}

.article-hero-text h1 {
  color: white;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.article-hero-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.75);
  font-size: .88rem;
}

/* Logo flottant */
.article-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.article-hero-logo-wrap {
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  width: 220px;
  height: 220px;
  min-width: 220px;
  min-height: 220px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.2), 0 0 0 6px rgba(255,255,255,.18);
  animation: floatRibbon 4s ease-in-out infinite;
}

.article-hero-logo-img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  mix-blend-mode: multiply;
  display: block;
  flex-shrink: 0;
}

.article-hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}

.article-hero-wave svg { display: block; width: 100%; }

/* ── Article Body — composants riches ──────────────────────────── */

/* Paragraphe d'accroche */
.article-body .lead,
.article-body p.lead {
  font-family: var(--font-display);
  font-size: 1.22rem;
  line-height: 1.7;
  color: var(--rose-deep);
  margin-bottom: 2.5rem;
  padding-left: 1.4rem;
  border-left: 3px solid var(--rose-mid);
  font-style: italic;
}

/* Pull quote */
.article-body .pull-quote {
  margin: 3rem -1rem;
  padding: 2.4rem 2.8rem;
  background: linear-gradient(135deg, var(--rose-pale) 0%, #fce8f0 100%);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}

.article-body .pull-quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 9rem;
  line-height: .7;
  color: var(--rose-mid);
  opacity: .13;
  position: absolute;
  top: -.3rem; left: 1rem;
  pointer-events: none;
}

.article-body .pull-quote p {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--rose-deep);
  margin-bottom: .85rem;
  position: relative;
}

.article-body .pull-quote cite {
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
}

/* Bande de statistiques */
.article-body .stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rose-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 3rem 0;
}

.article-body .stats-strip .stat {
  background: var(--rose-pale);
  padding: 1.8rem 1rem;
  text-align: center;
  transition: background var(--transition);
}

.article-body .stats-strip .stat:hover { background: #fce8f0; }

.article-body .stats-strip .stat .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--rose-mid);
  display: block;
  line-height: 1;
  margin-bottom: .4rem;
}

.article-body .stats-strip .stat .label {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Encadré ruban (ribbon) */
.article-body .ribbon {
  background: var(--rose-pale);
  border-left: 4px solid var(--rose-mid);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.6rem 2rem;
  margin: 2.5rem 0;
}

.article-body .ribbon h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: .85rem;
  color: var(--rose-deep);
}

.article-body .ribbon p {
  margin: 0;
  font-size: .96rem;
  color: var(--text-body);
}

/* Bandeau de sensibilisation */
.article-body .awareness-banner {
  margin: 3.5rem -1.5rem;
  padding: 2.2rem 3rem;
  background: linear-gradient(135deg, var(--rose-deep) 0%, var(--rose-mid) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.article-body .awareness-banner::before,
.article-body .awareness-banner::after {
  content: '🎀';
  font-size: 2.2rem;
  position: absolute;
  top: 50%; transform: translateY(-50%);
  opacity: .25;
}

.article-body .awareness-banner::before { left: 2rem; }
.article-body .awareness-banner::after  { right: 2rem; }

.article-body .awareness-banner p {
  color: rgba(255,255,255,.9);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto;
}

.article-body .awareness-banner strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: .5rem;
  color: #fff;
}

/* CTA block */
.article-body .cta-block {
  text-align: center;
  margin: 3.5rem 0 0;
  padding: 2.8rem 2rem;
  border: 1.5px solid var(--rose-border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.article-body .cta-block h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: .65rem;
  color: var(--text);
}

.article-body .cta-block p {
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.article-body .cta-block .btn {
  background: var(--rose-mid);
  color: #fff;
  padding: .85rem 2.2rem;
  border-radius: 99px;
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(181,48,90,.3);
  transition: all var(--transition);
}

.article-body .cta-block .btn:hover {
  background: var(--rose-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139,26,74,.38);
}

/* Carte thématique (ex : montagne) */
.article-body .theme-card {
  margin: 2.5rem 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: linear-gradient(135deg, #263e28 0%, #3d5e40 40%, #5a7a5c 100%);
  padding: 2.4rem 2rem;
  position: relative;
  color: #fff;
}

.article-body .theme-card::before {
  content: attr(data-icon);
  position: absolute;
  right: 1.2rem; bottom: -.5rem;
  font-size: 6rem;
  opacity: .1;
}

.article-body .theme-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: .85rem;
  color: #c8e6c9;
}

.article-body .theme-card p {
  color: rgba(255,255,255,.8);
  font-size: .96rem;
  line-height: 1.75;
  margin: 0;
}

.article-body .theme-card .badge {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 99px;
  padding: .25rem .8rem;
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: .9rem;
}

/* H2 dans article body : trait décoratif */
.article-body h2 {
  position: relative;
  padding-bottom: .65rem;
  margin: 2.8rem 0 1.1rem;
}

.article-body h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--rose-mid);
  border-radius: 99px;
}

/* ─── Responsive article-hero ──────────────────────────────────── */
@media (max-width: 1024px) {
  .article-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .article-hero-breadcrumb { justify-content: center; }
  .article-hero-badge { margin-left: auto; margin-right: auto; }
  .article-hero-meta { justify-content: center; }
  .article-hero-visual { order: -1; }
  .article-hero-logo-wrap { width: 160px; height: 160px; }
}

@media (max-width: 768px) {
  .article-hero { padding: 6rem 0 4.5rem; }
  .article-hero-logo-wrap { width: 130px; height: 130px; }
  .article-body .pull-quote { margin: 2.5rem -.5rem; padding: 2rem 1.4rem; }
  .article-body .stats-strip { grid-template-columns: 1fr; }
  .article-body .awareness-banner { margin: 2.5rem -1.2rem; padding: 1.8rem 1.5rem; }
  .article-body .awareness-banner::before,
  .article-body .awareness-banner::after { display: none; }
}

/* ── Page Hero (secondaire) ────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--rose-deep) 0%, var(--rose-warm) 100%);
  padding: 7rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero h1 { color: white; position: relative; z-index: 1; margin-bottom: .75rem; }
.page-hero p  { color: rgba(255,255,255,.8); font-size: 1.1rem; position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }

.page-hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}
.page-hero-wave svg { display: block; width: 100%; }

/* ── Breadcrumb ────────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--text-muted);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
}
.breadcrumb a { color: var(--rose-mid); }
.breadcrumb span { color: var(--text-muted); }
.breadcrumb svg { width: 12px; height: 12px; }

/* ── Article / Page de contenu ─────────────────────────────────── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.article-cover {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/7;
}
.article-cover img { width: 100%; height: 100%; object-fit: cover; }

.article-header { margin-bottom: 2rem; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.article-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-body);
}
.article-body h2 { margin: 2rem 0 1rem; }
.article-body h3 { margin: 1.5rem 0 .75rem; }
.article-body p  { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.article-body li { margin-bottom: .5rem; }
.article-body blockquote {
  border-left: 4px solid var(--rose-light);
  background: var(--rose-pale);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--rose-deep);
}
.article-body img {
  border-radius: var(--radius-sm);
  margin: 1.5rem 0;
  max-width: 100%;
}

/* Sidebar */
.sidebar {}
.sidebar-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-widget h3 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--rose-pale);
  color: var(--rose-deep);
}

/* ── Formulaire de contact ─────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.contact-form-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  color: var(--text);
  margin-bottom: .5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--rose-border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--rose-mid);
  box-shadow: 0 0 0 3px rgba(181,48,90,.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 150px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.contact-info-card {
  background: linear-gradient(145deg, var(--rose-deep) 0%, var(--rose-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: white;
}
.contact-info-card h3 { color: white; margin-bottom: 1.5rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-info-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; color: #FFD6E8; }
.contact-info-text p:first-child { font-weight: 700; font-size: .9rem; color: rgba(255,255,255,.7); margin-bottom: .2rem; }
.contact-info-text p:last-child { color: white; margin: 0; }
.contact-info-text a { color: white; }
.contact-info-text a:hover { text-decoration: underline; }

/* ── Pagination ────────────────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: 3rem 0 1rem;
}
.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px; height: 40px;
  padding: 0 .75rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-body);
  background: var(--surface);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}
.page-btn:hover { border-color: var(--rose-light); color: var(--rose-mid); background: var(--rose-pale); }
.page-btn.active { background: var(--rose-mid); color: white; border-color: var(--rose-mid); }
.page-btn.disabled { opacity: .4; pointer-events: none; }

/* ── Alertes ────────────────────────────────────────────────────── */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.alert-success { background: #F0FDF4; color: #166534; border: 1px solid #BBF7D0; }
.alert-error   { background: #FFF1F2; color: #9B1A4A; border: 1px solid var(--rose-border); }
.alert-info    { background: var(--rose-pale); color: var(--rose-deep); border: 1px solid var(--rose-border); }
.alert svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Footer ────────────────────────────────────────────────────── */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,.75);
  position: relative;
  margin-top: 4rem;
}
.footer-wave {
  position: absolute;
  top: -1px; left: 0; right: 0;
  line-height: 0;
  transform: rotate(180deg);
  overflow: hidden;
}
.footer-wave svg { display: block; width: 100%; height: 80px; }

.footer-body { padding-top: 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: white !important;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.footer-logo strong { color: var(--rose-light); font-weight: 700; }
.footer-tagline { font-size: .9rem; line-height: 1.6; color: rgba(255,255,255,.55); margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .75rem; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7) !important;
  transition: all var(--transition);
}
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover { background: var(--rose-mid); color: white !important; transform: translateY(-2px); }

.footer-col h4 {
  color: white;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul a {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--rose-light); }
.footer-col address { font-style: normal; }
.footer-col address p {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .75rem;
  font-size: .9rem;
}
.footer-col address svg { width: 15px; height: 15px; color: var(--rose-light); flex-shrink: 0; }
.footer-col address a { color: rgba(255,255,255,.7); }
.footer-col address a:hover { color: var(--rose-light); }

.footer-bottom {
  padding: 1.25rem 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .83rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--rose-light); }

/* ── No content placeholder ────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}
.empty-state svg { width: 64px; height: 64px; color: var(--rose-border); margin: 0 auto 1rem; }
.empty-state h3 { font-size: 1.3rem; color: var(--text-muted); margin-bottom: .5rem; }

/* ── Carrousel ─────────────────────────────────────────────────── */
.carousel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2.5rem;
  background: var(--rose-pale);
  user-select: none;
}
.carousel-track {
  display: flex;
  flex-wrap: nowrap;          /* crucial : empêche le retour à la ligne */
  will-change: transform;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
}
.carousel-slide {
  flex: 0 0 100%;             /* chaque slide = exactement 100% de largeur */
  min-width: 0;
  overflow: hidden;
}
.carousel-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;      /* hauteur portée par l'image, pas le conteneur */
  object-fit: cover;
  pointer-events: none;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,.92);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  z-index: 10;
  color: var(--rose-deep);
}
.carousel-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-lg);
}
.carousel-btn.prev { left: 1rem; }
.carousel-btn.next { right: 1rem; }
.carousel-btn svg  { width: 20px; height: 20px; }

.carousel-counter {
  position: absolute;
  top: .85rem;
  right: .85rem;
  background: rgba(0,0,0,.45);
  color: white;
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem .8rem;
  border-radius: 99px;
  backdrop-filter: blur(4px);
  z-index: 10;
  letter-spacing: .05em;
}
.carousel-dots {
  position: absolute;
  bottom: .85rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .45rem;
  z-index: 10;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 99px;
  background: rgba(255,255,255,.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .3s ease;
}
.carousel-dot.active {
  background: white;
  width: 22px;
  box-shadow: 0 1px 4px rgba(0,0,0,.3);
}

/* Mobile */
@media (max-width: 768px) {
  .carousel-slide img { aspect-ratio: 4 / 3; }
  .carousel-btn { width: 36px; height: 36px; }
  .carousel-btn svg { width: 16px; height: 16px; }
}

/* ── Scroll top ────────────────────────────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  background: var(--rose-mid);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 900;
}
#scrollTop.visible { opacity: 1; pointer-events: auto; }
#scrollTop:hover { background: var(--rose-deep); transform: translateY(-3px); }
#scrollTop svg { width: 18px; height: 18px; }

/* ── Animations ────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s ease both; }
.fade-up-delay-1 { animation-delay: .1s; }
.fade-up-delay-2 { animation-delay: .2s; }
.fade-up-delay-3 { animation-delay: .3s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; }
  .contact-layout  { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-content    { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-actions    { justify-content: center; }
  .hero-visual     { display: flex; justify-content: center; order: -1; } /* logo AVANT le texte */
  .hero-logo-wrap  { width: 220px; height: 220px; }
  .hero-logo-img   { width: 180px; height: 180px; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .hero { padding: 7rem 0 4rem; }

  .hamburger { display: flex; }
  .main-nav {
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,.98);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 2rem 1.5rem;
    gap: .5rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(20px);
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .nav-link { padding: .9rem 1rem; border-radius: var(--radius-sm); font-size: 1.05rem; }
  .nav-cta  { margin: .5rem 0 0; text-align: center; border-radius: var(--radius-sm); }

  .cards-grid, .cards-grid-2 { grid-template-columns: 1fr; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; gap: .5rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Témoignages ────────────────────────────────────────────────── */
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-bottom: 4rem;
}

.temoignage-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition);
}

.temoignage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-light);
}

.temoignage-stars { display: flex; gap: 2px; }
.star { font-size: 1.15rem; }
.star-on  { color: #D4A017; }
.star-off { color: var(--border); }

.temo-section-label {
  font-weight: 700;
  font-size: .9rem;
  color: var(--rose-mid);
  margin: 0 0 .4rem;
  font-family: var(--font-body);
}

.temoignage-message {
  font-size: .97rem;
  line-height: 1.7;
  color: var(--text-body);
  margin: 0;
  font-style: normal;
}

.temoignage-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: .9rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: auto;
}

.temoignage-date {
  font-size: .8rem;
  color: var(--text-muted);
}

.temoignage-brand {
  font-size: .85rem;
  color: var(--rose-mid);
  font-weight: 600;
}

/* Formulaire témoignage */
.temoignage-form-wrap {
  max-width: 640px;
}

.temoignage-form { display: flex; flex-direction: column; gap: 1.25rem; }

.star-picker {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
}

.star-picker input[type="radio"] { display: none; }

.star-picker label {
  font-size: 1.8rem;
  color: var(--border);
  cursor: pointer;
  transition: color var(--transition);
  line-height: 1;
}

.star-picker label:hover,
.star-picker label:hover ~ label,
.star-picker input:checked ~ label { color: #D4A017; }

/* Section témoignages homepage */
.temoignages-home-section {
  padding: 5rem 0;
  background: var(--bg-alt);
}

.temoignages-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0 1.5rem;
}

.temoignages-carousel-viewport {
  overflow: hidden;
  flex: 1;
  border-radius: var(--radius);
}

.temoignages-carousel-track {
  display: flex;
  transition: transform .42s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.temoignage-card-home {
  flex: 0 0 100%;
  min-width: 0;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2.4rem 2.8rem;
  border-top: 3px solid var(--rose-mid);
  box-shadow: var(--shadow);
}

.temo-section {
  margin-bottom: 1rem;
}

.temoignage-message-home {
  font-size: .97rem;
  line-height: 1.7;
  color: var(--text-body);
  margin: .3rem 0 0;
}

.temoignage-footer-home {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.temoignage-author-home {
  font-weight: 700;
  color: var(--rose-deep);
  font-size: .92rem;
}

.temoignage-brand {
  font-size: .85rem;
  color: var(--rose-mid);
  font-weight: 600;
}

.temo-arrow {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--rose-deep);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.temo-arrow:hover {
  background: var(--rose-pale);
  border-color: var(--rose-light);
  transform: scale(1.08);
  box-shadow: var(--shadow);
}

.temo-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1rem;
}

.temo-dot {
  width: 8px; height: 8px;
  border-radius: 99px;
  background: var(--rose-border);
  border: none; cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}

.temo-dot-active {
  background: var(--rose-mid);
  width: 22px;
}

@media (max-width: 768px) {
  .temoignages-grid { grid-template-columns: 1fr; }
  .temoignage-card-home { padding: 1.8rem 1.4rem; }
  .temo-arrow { width: 38px; height: 38px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-logo-wrap { width: 170px; height: 170px; }
  .hero-logo-img  { width: 140px; height: 140px; }
  .logo-img-header { height: 46px; }
}
