/* ============================================================
   GAUFRE TOI — style.css
   Direction artistique : Rose #ffb6b9, Brun #3d1a0e, Crème #fff8f0
   Mobile-first, responsive, premium artisanal
   ============================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --rose:       #ffb6b9;
  --rose-dark:  #e8949a;
  --rose-light: #fff0f1;
  --brun:       #3d1a0e;
  --brun-light: #6b3020;
  --creme:      #fff8f0;
  --blanc:      #ffffff;
  --gris-clair: #f5f5f5;
  --texte:      #2c1a0e;
  --texte-light:#7a5a4e;
  --magenta:    #cc0066;

  --font-titre: 'Playfair Display', Georgia, serif;
  --font-corps: 'Montserrat', Arial, sans-serif;

  --radius:     16px;
  --radius-sm:  8px;
  --shadow:     0 8px 32px rgba(61,26,14,.10);
  --shadow-lg:  0 16px 48px rgba(61,26,14,.16);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-corps);
  color: var(--texte);
  background: var(--blanc);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- TYPOGRAPHIE ---- */
h1, h2, h3, h4 { font-family: var(--font-titre); line-height: 1.2; }

/* ---- BOUTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-corps);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--rose);
  color: var(--brun);
  border-color: var(--rose);
}
.btn--primary:hover {
  background: var(--magenta);
  border-color: var(--magenta);
  color: var(--blanc);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204,0,102,.25);
}

.btn--outline {
  background: transparent;
  color: var(--brun);
  border-color: var(--brun);
}
.btn--outline:hover {
  background: var(--brun);
  color: var(--blanc);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--blanc);
  color: var(--brun);
  border-color: var(--blanc);
}
.btn--white:hover {
  background: var(--rose);
  border-color: var(--rose);
}

.btn--large { padding: 18px 36px; font-size: 1.05rem; }

.btn--full { width: 100%; justify-content: center; }

.btn--social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn--social svg { width: 20px; height: 20px; }
.btn--instagram { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: #fff; }
.btn--instagram:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(220,39,67,.35); }
.btn--facebook { background: #1877f2; color: #fff; }
.btn--facebook:hover { background: #166fe5; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(24,119,242,.35); }

/* ---- SECTION HEADER COMMUN ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--brun); margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--texte-light); max-width: 600px; margin: 0 auto; }
.text-rose { color: var(--magenta); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,182,185,.3);
  transition: var(--transition);
}

.header--scrolled {
  box-shadow: 0 4px 20px rgba(61,26,14,.10);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 80px;
}

.header__logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.header__nav {
  display: none;
  gap: 32px;
}

.header__nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brun);
  transition: color var(--transition);
  position: relative;
}
.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--rose);
  transition: width var(--transition);
}
.header__nav-link:hover { color: var(--magenta); }
.header__nav-link:hover::after { width: 100%; }

.header__cta { display: none; }

.header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brun);
  transition: var(--transition);
  border-radius: 2px;
}
.header__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger.active span:nth-child(2) { opacity: 0; }
.header__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.header__nav.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--blanc);
  padding: 40px 20px;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
}
.header__nav.open .header__nav-link { font-size: 1.4rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: 80px;
  background: var(--creme);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero__badge {
  display: inline-block;
  background: var(--rose);
  color: var(--brun);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--brun);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--texte-light);
  max-width: 520px;
  margin-bottom: 24px;
}

.hero__stars {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
.stars { color: #f5a623; font-size: 1.1rem; }
.hero__stars-text { font-size: 0.9rem; color: var(--texte-light); font-weight: 500; }

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
}

/* ============================================================
   VALEURS
   ============================================================ */
.valeurs {
  padding: 80px 0;
  background: var(--blanc);
}

.valeurs__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.valeurs__card {
  text-align: center;
  max-width: 320px;
}

.valeurs__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}
.valeurs__icon svg { width: 100%; height: 100%; }

.valeurs__card-title {
  font-size: 1.3rem;
  color: var(--brun);
  margin-bottom: 12px;
}

.valeurs__card-text {
  font-size: 0.95rem;
  color: var(--texte-light);
  line-height: 1.7;
}

.valeurs__center {
  width: 100%;
  max-width: 400px;
}
.valeurs__center img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ============================================================
   MENU
   ============================================================ */
.menu {
  padding: 80px 0;
  background: var(--creme);
}

.menu__bloc {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 64px;
}

.menu__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.menu__image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .5s ease;
}
.menu__image:hover img { transform: scale(1.04); }

.menu__tag {
  display: inline-block;
  background: var(--rose);
  color: var(--brun);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.menu__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--brun);
  margin-bottom: 16px;
}

.menu__text {
  font-size: 0.95rem;
  color: var(--texte-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.menu__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.menu__list li {
  font-size: 0.9rem;
  color: var(--texte);
  padding-left: 20px;
  position: relative;
}
.menu__list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--rose-dark);
  font-size: 0.7rem;
  top: 3px;
}

.menu__cta-center {
  text-align: center;
  margin-top: 16px;
}

/* ============================================================
   GALERIE
   ============================================================ */
.galerie {
  padding: 80px 0;
  background: var(--blanc);
}

.galerie__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.galerie__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
}
.galerie__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.galerie__item:hover img { transform: scale(1.06); }

.galerie__item--large {
  grid-column: 1 / -1;
  aspect-ratio: 16/7;
}

/* ============================================================
   ARTISAN
   ============================================================ */
.artisan {
  padding: 80px 0;
  background: var(--creme);
}

.artisan__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.artisan__image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.artisan__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.artisan__image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--blanc);
  color: var(--brun);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: var(--shadow);
}

.artisan__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--magenta);
  margin-bottom: 12px;
}

.artisan__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--brun);
  margin-bottom: 20px;
}

.artisan__text {
  font-size: 0.95rem;
  color: var(--texte-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.artisan__stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(61,26,14,.1);
}

.artisan__stat { text-align: center; }
.artisan__stat-number {
  display: block;
  font-family: var(--font-titre);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brun);
}
.artisan__stat-label {
  font-size: 0.8rem;
  color: var(--texte-light);
  font-weight: 500;
}

/* ============================================================
   SOCIAL
   ============================================================ */
.social {
  padding: 80px 0;
  background: var(--rose-light);
}

.social__image-feature {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}
.social__image-feature img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.social__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

/* ============================================================
   COMMANDER (CTA SECTION)
   ============================================================ */
.commander {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--brun) 0%, var(--brun-light) 100%);
}

.commander__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.commander__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--blanc);
  margin-bottom: 16px;
}

.commander__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  padding: 80px 0;
  background: var(--creme);
}

.newsletter__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
}

.newsletter__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--brun);
  margin-bottom: 12px;
}

.newsletter__text {
  font-size: 0.95rem;
  color: var(--texte-light);
  max-width: 480px;
}

.newsletter__form { width: 100%; max-width: 520px; }

.newsletter__form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}

.newsletter__input {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid rgba(61,26,14,.15);
  border-radius: 50px;
  font-family: var(--font-corps);
  font-size: 0.95rem;
  color: var(--texte);
  background: var(--blanc);
  outline: none;
  transition: border-color var(--transition);
}
.newsletter__input:focus { border-color: var(--rose); }
.newsletter__input::placeholder { color: var(--texte-light); }

.newsletter__btn { width: 100%; justify-content: center; }

.newsletter__privacy {
  font-size: 0.8rem;
  color: var(--texte-light);
  text-align: center;
}

.newsletter__success {
  margin-top: 16px;
  padding: 12px 20px;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--brun);
  color: var(--blanc);
  padding: 64px 0 0;
}

.footer__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer__tagline {
  font-family: var(--font-titre);
  font-size: 1.1rem;
  color: var(--rose);
  margin-bottom: 8px;
}

.footer__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}

.footer__heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rose);
  margin-bottom: 16px;
}

.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,.75);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--rose); }

.footer__social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__social-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,.75);
  transition: color var(--transition);
}
.footer__social-links a svg { width: 18px; height: 18px; fill: currentColor; }
.footer__social-links a:hover { color: var(--rose); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,.5); }

.footer__legal {
  display: flex;
  gap: 16px;
}
.footer__legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer__legal a:hover { color: var(--rose); }

/* ============================================================
   STICKY CTA MOBILE
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 12px 20px;
  background: var(--blanc);
  border-top: 1px solid rgba(255,182,185,.4);
  box-shadow: 0 -4px 20px rgba(61,26,14,.12);
  z-index: 999;
}

/* ============================================================
   RESPONSIVE — TABLET (≥ 768px)
   ============================================================ */
@media (min-width: 768px) {
  .hero__container { flex-direction: row; align-items: center; gap: 60px; padding: 80px 20px; }
  .hero__content { flex: 1; }
  .hero__image { flex: 1; }
  .hero__image img { height: 480px; }
  .hero__actions { flex-direction: row; }

  .valeurs__grid { flex-direction: row; justify-content: center; gap: 40px; }
  .valeurs__card { flex: 1; }
  .valeurs__center { flex: 1.2; }

  .menu__bloc { flex-direction: row; align-items: center; gap: 60px; }
  .menu__bloc--reverse { flex-direction: row-reverse; }
  .menu__image { flex: 1; }
  .menu__image img { height: 380px; }
  .menu__content { flex: 1; }

  .galerie__grid { grid-template-columns: repeat(3, 1fr); }
  .galerie__item--large { grid-column: 1 / -1; }

  .artisan__grid { flex-direction: row; align-items: center; gap: 60px; }
  .artisan__image { flex: 1; }
  .artisan__image img { height: 480px; }
  .artisan__content { flex: 1; }

  .social__actions { flex-direction: row; justify-content: center; }

  .newsletter__form-group { flex-direction: row; }
  .newsletter__input { flex: 1; }
  .newsletter__btn { width: auto; }

  .footer__grid { flex-direction: row; justify-content: space-between; }
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ============================================================
   RESPONSIVE — DESKTOP (≥ 1024px)
   ============================================================ */
@media (min-width: 1024px) {
  .header__nav { display: flex; }
  .header__cta { display: inline-flex; }
  .header__hamburger { display: none; }

  .sticky-cta { display: none !important; }

  .hero__title { font-size: 3.5rem; }
  .hero__image img { height: 560px; }

  .newsletter__inner { flex-direction: row; text-align: left; gap: 80px; }
  .newsletter__content { flex: 1; }
  .newsletter__form { flex: 1; }
}

/* ============================================================
   RESPONSIVE — MOBILE (< 768px) — Sticky CTA
   ============================================================ */
@media (max-width: 767px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 72px; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__content { animation: fadeInUp .8s ease both; }
.hero__image   { animation: fadeInUp .8s .2s ease both; }

/* ============================================================
   ACCESSIBILITÉ
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   SECTION ÉVÉNEMENTS & PRESTATIONS
   ============================================================ */
.evenements {
  padding: 90px 0;
  background: var(--blanc);
}

.evenements__label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  background: rgba(255, 182, 185, 0.15);
  border: 1px solid rgba(255, 182, 185, 0.5);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.evenements__intro {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.evenements__intro p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--brun);
  opacity: 0.85;
}

/* Grille 3 cartes */
.evenements__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .evenements__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.evenements__card {
  background: var(--creme);
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.evenements__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(61, 26, 14, 0.1);
}

.evenements__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.evenements__icon svg {
  width: 100%;
  height: 100%;
}

.evenements__card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brun);
  margin-bottom: 12px;
}

.evenements__card-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--brun);
  opacity: 0.8;
}

/* Bloc Live — image + texte */
.evenements__live-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: var(--creme);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 60px;
}

@media (min-width: 900px) {
  .evenements__live-block {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}

.evenements__live-content {
  flex: 1;
  padding: 48px 40px;
}

.evenements__live-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blanc);
  background: var(--rose);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.evenements__live-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brun);
  line-height: 1.35;
  margin-bottom: 18px;
}

.evenements__live-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--brun);
  opacity: 0.82;
  margin-bottom: 12px;
}

.evenements__live-image {
  flex: 0 0 42%;
  max-height: 420px;
  overflow: hidden;
}

.evenements__live-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Bloc CTA final */
.evenements__cta-block {
  text-align: center;
  padding: 48px 24px;
  background: linear-gradient(135deg, var(--brun) 0%, #5a2a18 100%);
  border-radius: 24px;
}

.evenements__cta-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  color: rgba(255, 248, 240, 0.9);
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.evenements__cta-email {
  margin-top: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 248, 240, 0.7);
}

.evenements__email-link {
  color: var(--rose);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}

.evenements__email-link:hover {
  opacity: 0.8;
}

/* Logo header — ajustement taille pour nouveau logo carré */
.header__logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* Logo footer — ajustement */
.footer__logo {
  height: 64px !important;
  width: auto !important;
  object-fit: contain;
}
