/* ============================================================
   VARIABLES GLOBALES
============================================================ */

:root {
  --sepia-ink: #4a3b2a;
  --sepia-paper: #fdf6e3;
  --vintage-white: #fffaf3;
  --accent-gold: #d4a373;
  --accent-brown: #6b4a3a;
  --accent-dark: #5a3b2a;
  --font-title: 'Playfair Display', serif;
  --font-body: 'Lora', serif;
  --editorial-bg: rgba(255, 248, 235, 0.85);
  --editorial-border: rgba(120, 90, 60, 0.45);
  --editorial-paper: url("img/texture-papier-vintage-globale.webp");
  --font-hand: 'La Belle Aurore', 'Handlee', cursive;
}


/* ============================================================
   RESET + FOND GLOBAL
============================================================ */

body {
  margin: 0;
  padding: 0;
  background-color: #fffdf9; /* cocon doux */
  background-image: url("img/fond-chat.webp");
  color: var(--sepia-ink);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  background-attachment: fixed;
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  opacity: 0.98;
}
/* Grain vintage global */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("img/grain-vintage.webp");
  background-size: 18px;
  background-repeat: repeat;
  opacity: 0.06;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

/* Texture douce sur les sections */
section {
  position: relative;
}

section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: none;
  background-size: 280px;
  background-repeat: repeat;
  opacity: 0.12;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: -1;
}

.hero-adele::after,
.scene-adele::after {
  pointer-events: none;
}

section.scene-adele::after {
  display: none !important;
}

/* ============================================================
   HEADER POLAROID — VERSION ORIGINALE
============================================================ */

header.header-polaroid {
  width: 100%;
  background-color: var(--vintage-white);
  position: relative;
  z-index: 50;
  margin-bottom: 30px;
  overflow: visible;
}

header.header-polaroid img {
  width: 100%;
  height: 680px !important;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.96) contrast(1.05);
}

/* Bandeau texte sur l’image */
.header-texte {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  background: rgba(255, 248, 235, 0.55);
  backdrop-filter: blur(1px);
  padding: 12px 0;
  border-radius: 6px;
  z-index: 60;
  box-shadow: 0 6px 12px rgba(0,0,0,0.18);
}

/* Date du jour */
.header-texte .jour {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--accent-brown);
  letter-spacing: 0.5px;
}

/* Phrase du jour */
.header-texte .phrase {
  margin: 4px 0 0 !important;
  display: block !important;
  color: var(--sepia-ink);
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-style: italic;
  letter-spacing: 0.4px;
}

/* Effet polaroid sur le header */
header.header-polaroid::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: none;
  background-size: cover, 18px;
  background-repeat: repeat, repeat;
  opacity: 0.18;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 40;
}

/* Ruban adhésif premium */
header.header-polaroid::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 180px;
  height: 55px;
  background-image: url("img/ruban-beige-destructure.webp");
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.75;
  z-index: 70;
}
.header::before {
  opacity: 0.35;
  filter: sepia(0.4) contrast(0.9);
}
header.site-header::before,
header::before {
  display: none !important;
  content: none !important;
}


/* ============================================================
   NAV ULTRA PREMIUM — STYLE MAGAZINE FINAL
============================================================ */

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 32px 0; /* respiration éditoriale */
  background: rgba(255, 185, 210, 0.95);
  background-image: url("img/texture-papier-vintage-globale.webp");
  background-size: cover;
  border-top: 6px double rgba(190, 70, 110, 0.65);
  border-bottom: 6px double rgba(190, 70, 110, 0.65);
  box-shadow: 0 14px 28px rgba(0,0,0,0.15);
  position: relative;
  z-index: 40;
}

.main-nav a {
  font-family: var(--font-title);
  font-size: 1.36rem;        /* plus chic, moins massif */
  letter-spacing: 1.12px;     /* sommaire magazine */
  font-weight: 600;
  text-transform: uppercase;
  color: #5a1f33;
  padding: 0 34px;           /* respiration premium */
  position: relative;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

/* Hover premium magazine */
.main-nav a:hover {
  color: #b03055;            /* framboise profond */
  transform: translateY(-2px);
}

/* Séparateur losange premium magazine */
.main-nav a::after {
  content: "♦";
  position: absolute;
  right: -26px;              /* centrage parfait */
  top: 44%;                  /* alignement éditorial */
  transform: translateY(-50%);
  font-size: 1.42rem;        /* plus grand, plus noble */
  color: #7a4a4a;
  opacity: 0.85;
}

/* Pas de losange après le dernier */
.main-nav a:last-child::after {
  content: "";
}

/* ============================================================
   HEADER POLAROÏD — VERSION STABLE
============================================================ */

.header-polaroid {
  width: 100%;
  margin: 0;
  padding: 60px 0 30px;
  background: rgba(255, 248, 235, 0.95);
  background-image: var(--editorial-paper);
  background-size: 340px;
  background-repeat: repeat;
  border-bottom: 6px double rgba(120, 90, 60, 0.45);
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.10),
    inset 0 0 12px rgba(0,0,0,0.08);
  position: relative;
  z-index: 100;
}

/* ================
  background: rgba(190, 70, 110, 0.75);
  transition: width 0.25s ease;
}

.main-nav a:hover::after {
  width: 80%;
}

/* ============================================================
   BANDEAU EDITORIAL
============================================================ */

.bandeau-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.bandeau-editorial {
  background: rgba(255, 248, 235, 0.92);
  background-image: none;
  background-size: cover;
  background-repeat: repeat;
  padding: 40px 0 38px;
  border-top: 6px double rgba(120, 90, 60, 0.45);
  border-bottom: 6px double rgba(120, 90, 60, 0.45);
  box-shadow: 0 18px 36px rgba(0,0,0,0.12);
  margin-bottom: 50px;
  position: relative;
  text-align: center;
  overflow: visible !important;
}

.bandeau-editorial::after {
  content: "";
  display: block;
  width: 100%;
  height: 42px;
  margin: 40px auto 0;
  background-image: url("img/ligne-usure-vintage.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.92;
}

.bandeau-titre {
  font-family: var(--font-title);
  font-size: 2.8rem;
  color: var(--accent-dark);
  letter-spacing: 1px;
  margin: 0;
  transform: rotate(-0.6deg);
}

.bandeau-sous-titre {
  font-size: 1.9rem;
  font-weight: 600;
  border-bottom: 6px solid rgba(255, 192, 203, 0.75);
  padding-bottom: 12px;
  display: inline-block;
  color: var(--accent-dark);
  letter-spacing: 0.6px;
}
.separateur-etoiles {
  width: 100%;
  text-align: center;
  margin: 40px auto;
  font-size: 2.2rem;
  letter-spacing: 12px;
  color: rgba(120, 90, 60, 0.75);
  font-family: var(--font-title);
  transform: rotate(-0.4deg);
}

.separateur-etoiles::before {
  content: "✦ ✦ ✦";
}
/* ============================================================
   HERO GAUCHE — TEXTE
============================================================ */

.hero-magazine-gauche {
  position: relative;
  padding: 20px 20px;
  border: 2px solid rgba(120, 90, 60, 0.25);
  box-shadow: inset 0 0 12px rgba(0,0,0,0.08);
  background: rgba(255, 248, 235, 0.55);
  border-radius: 18px;
  backdrop-filter: none;
  background-image: none;
}

.hero-mag-title {
  text-align: center;
  margin: 0 auto 20px;
  font-family: var(--font-title);
  font-size: 2.6rem;
  line-height: 1.15;
  color: var(--accent-dark);
  letter-spacing: 1.4px;
  text-shadow: 0 2px 0 rgba(255,255,255,0.9);
  transform: rotate(-0.6deg);
}
/* ============================================================
   ACCROCHE — VERSION PREMIUM
============================================================ */

.accroche-adele {
  position: relative;
  margin: 15px auto 18px;
  max-width: 480px;
}

.accroche-adele p {
  font-family: var(--font-title);
  font-size: 1.85rem;
  font-weight: 700;
  color: rgba(80, 55, 40, 0.95);
  line-height: 1.55;
  border-left: 12px solid rgba(255, 192, 203, 0.85);
  padding-left: 26px;
  background: rgba(255, 248, 240, 0.55);
  border-radius: 8px;
  text-shadow: 0 1px 0 rgba(255,255,255,0.8);
}

.accroche-adele::after {
  content: "";
  display: block;
  width: 100%;
  height: 32px;
  margin: 40px auto 0;
  background-image: url("img/ligne-usure-vintage.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.92;
}
/* ============================================================
   SIGNATURE — PREMIUM
============================================================ */

.hero-mag-signature {
  font-family: 'Lora', serif;
  font-size: 1.28rem;
  font-weight: 400;
  color: var(--sepia-ink);
  text-align: center;
  margin: 40px auto 45px;
  max-width: 700px;
  line-height: 1.55;
  opacity: 0.92;
  background: rgba(255, 248, 235, 0.75);
  padding: 18px 22px;
  border-radius: 10px;
  border: 2px solid rgba(120, 90, 60, 0.35);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15), inset 0 0 6px rgba(0,0,0,0.12);
  background-image: url("img/texture-papier-vintage-globale.webp");
  background-size: cover;
  background-repeat: repeat;
}

/* ============================================================
   HERO MAGAZINE — STRUCTURE PREMIUM
============================================================ */

.hero-magazine {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
  max-width: 1150px;
  margin: 0 auto 60px;
  background: rgba(255, 250, 240, 0.82);
  border-radius: 22px;
  border: 3px double rgba(120, 90, 60, 0.35);
  box-shadow: 0 18px 36px rgba(0,0,0,0.10);
  position: relative;
  z-index: 1;
}


/* ============================================================
   HERO DROITE — POLAROID
============================================================ */

.hero-img-container {
  position: relative;
  background: #fff7de;
  padding: 18px 18px 28px;
  border-radius: 14px;
  box-shadow: 0 12px 22px rgba(0,0,0,0.15), inset 0 0 8px rgba(0,0,0,0.12);
  transform: rotate(-1.2deg);
  max-width: 330px;
  margin: 0 auto;
}

.hero-img-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("img/bordure-usee.webp");
  background-size: cover;
  opacity: 0.28;
  mix-blend-mode: multiply;
  border-radius: 14px;
}

.hero-img-container::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 150px;
  height: 48px;
  background-image: url("img/ruban-beige-destructure.webp");
  background-size: cover;
  opacity: 0.70;
}

.hero-img-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("img/texture-papier-vintage-globale.webp"), url("img/grain-vintage.webp");
  background-size: cover, 18px;
  background-repeat: repeat, repeat;
  mix-blend-mode: multiply;
  opacity: 0.18;
  pointer-events: none;
  border-radius: 12px;
}

.hero-img {
  width: 100%;
  max-width: 310px;
  border-radius: 12px;
  filter: brightness(0.92) contrast(1.08) saturate(0.85);
}
/* ============================================================
   HERO MAGAZINE — COMPLÉMENT
============================================================ */

.hero-mag-droite {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 20px;
}

/* ============================================================
   INTRO — PARCHEMIN VINTAGE
============================================================ */

.intro-wrapper {
  max-width: 1150px;
  margin: 0 auto 60px;
  padding: 0 20px;
  position: relative;
  z-index: 0;
  background: none;
  overflow: visible;
}

.intro-editoriale {
  background-image: url("img/texture-parchemin-vintage.webp");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 60px;
  margin: 40px auto;
  max-width: 900px;
  position: relative;
  transform: rotate(-0.8deg);
}

.intro-editoriale::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("img/texture-parchemin-vintage.webp"), url("img/grain-vintage.webp");
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.45;
  border-radius: 18px;
  z-index: 2;
}
.intro-inner {
  position: relative;
  z-index: 2;
}
.intro-titre,
.intro-text-p{
  font-family: 'La Belle Aurore', 'Petit Formal Script', cursive !important;
  color: #3b2718;
  text-align: center;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 0 rgba(255,255,255,0.75), 0 0 3px rgba(255,255,255,0.45);
}

.intro-titre {
  font-size: 2.7rem;
  margin-bottom: 32px;
  transform: rotate(-1.2deg);
}

.intro-text-p {
  font-size: 1.85rem;
  line-height: 1.75;
  font-weight: 500;
  color: #3a1f1f;
  font-family: var(--font-hand);
  text-shadow: 0 2px 3px rgba(255,255,255,0.65);
}

.tampon-parchemin {
  display: block;
  position: absolute !important;
  bottom: 8px !important;
  right: 15px !important;
  top: auto !important;
  width: 130px !important;
  height: 130px !important;
  background-image: url("img/tampon-adele-chaussette.webp") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  opacity: 0.75 !important;
  transform: rotate(-4deg) !important;
  z-index: 50 !important;
}

/* ============================================================
   LIGNE ÉDITORIALE — VERSION ORIGINALE
============================================================ */

.ligne-editoriale {
  width: 100%;
  height: 38px;
  margin: 40px auto 60px;
  background: rgba(255, 248, 235, 0.92);
  background-image: var(--editorial-paper);
  background-size: cover;
  border-top: 6px double var(--editorial-border);
  border-bottom: 6px double var(--editorial-border);
  box-shadow:
    0 10px 22px rgba(0,0,0,0.12),
    inset 0 0 6px rgba(0,0,0,0.12);
  position: relative;
  z-index: 30;
}
.ligne-editoriale,
.ligne-editoriale::before,
.ligne-editoriale::after {
  display: block !important;
  background: rgba(255, 248, 235, 0.92) !important;
  background-image: var(--editorial-paper) !important;
  background-size: cover !important;
  border-top: 6px double var(--editorial-border) !important;
  border-bottom: 6px double var(--editorial-border) !important;
  height: 38px !important;
  margin: 40px auto 60px !important;
  box-shadow:
    0 10px 22px rgba(0,0,0,0.12),
    inset 0 0 6px rgba(0,0,0,0.12) !important;
  content: none !important;
  pointer-events: none !important;
  z-index: 50 !important;
}


/* ============================================================
   FOND RENAULT 5 — VERSION ORIGINALE
============================================================ */

section.accueil-articles {
  position: relative;
  background-image:
    linear-gradient(rgba(252, 249, 242, 0.55), rgba(252, 249, 242, 0.55)),
    url("img/fond-calle-sanchez-r5.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 160vh;
  padding-top: 20px;
  padding-bottom: 80px;
  z-index: 1;
}

/* Texture vintage par-dessus le fond */
section.accueil-articles::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("img/texture-papier-vintage-globale.webp");
  background-size: 280px;
  background-repeat: repeat;
  opacity: 0.18;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2;
}

/* ============================================================
   GRILLE POLAROID
============================================================ */
.grille-polaroids {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 70px 55px;
  padding: 60px 40px;
  align-items: start;
}

.grille-polaroids article:nth-child(1) {
  margin-top: -20px;
  transform: translateY(-14px);
}

.grille-polaroids article:nth-child(4) {
  margin-top: 40px;
  transform: translateY(20px);
}

/* ============================================================
   EFFETS POLAROID — VERSION ORIGINALE
============================================================ */

/* Structure de base */
.polaroid {
  position: relative;
  background: #fffdf7;
  border-radius: 12px;
  padding: 18px 18px 32px;
  box-shadow:
    0 12px 26px rgba(0,0,0,0.15),
    0 6px 14px rgba(0,0,0,0.12);
  border: 2px solid rgba(160, 115, 80, 0.25);
  overflow: visible;
  z-index: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Texture papier */
.polaroid-texture {
  position: absolute;
  inset: 0;
  background-image: url("img/texture-papier-vintage-globale.webp");
  background-size: cover;
  opacity: 0.18;
  mix-blend-mode: multiply;
  z-index: 1;
}

/* Bordure déchirée */
.polaroid-bordure {
  position: absolute;
  inset: 0;
  background-image: url("img/papier-dechire-carte.webp");
  background-size: 100% 100%;
  opacity: 0.35;
  mix-blend-mode: multiply;
  z-index: 2;
  pointer-events: none;
}

/* Timbre */
.polaroid-timbre {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 60px;
  height: 60px;
  background-image: url("img/calle-carte.webp");
  background-size: contain;
  opacity: 0.65;
  transform: rotate(-5deg);
  z-index: 8;
  pointer-events: none;
}

/* Punaise */
.polaroid-punaise {
  position: absolute;
  top: -8px;
  left: 44%;
  transform: translateX(-50%) rotate(-6deg);
  width: 28px;
  height: 28px;
  background-image: url("img/punaise-rouge.webp");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 9999;
  pointer-events: none;
}

/* Rotations individuelles */
.polaroid:nth-child(1) { transform: rotate(-1.4deg); }
.polaroid:nth-child(2) { transform: rotate(0.9deg); }
.polaroid:nth-child(3) { transform: rotate(1.6deg); }
.polaroid:nth-child(4) { transform: rotate(-0.8deg); }

/* Décalages verticaux */
.grille-polaroids article:nth-child(1) {
  margin-top: -20px;
  transform: translateY(-14px) rotate(-1.4deg);
}

.grille-polaroids article:nth-child(4) {
  margin-top: 40px;
  transform: translateY(20px) rotate(-0.8deg);
}

/* Hover premium */
.polaroid:hover {
  transform: scale(1.015) rotate(0deg);
  box-shadow:
    0 16px 32px rgba(0,0,0,0.18),
    0 6px 14px rgba(0,0,0,0.14);
}
.quote-top {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 600;
  color: rgba(80, 55, 40, 0.95);
  text-align: center;
  letter-spacing: 0.5px;
  margin: 0 0 12px;
  transform: rotate(-0.4deg);
  text-shadow: 0 1px 0 rgba(255,255,255,0.8);
}
.quote-middle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: rgba(80, 55, 40, 0.9);
  line-height: 1.55;
  text-align: center;
  margin: 0 0 16px;
  transform: rotate(-0.3deg);
}
.card-body {
  padding: 12px 14px;
  position: relative;
  z-index: 5;
  background: rgba(255, 248, 235, 0.65);
  border-radius: 10px;
  box-shadow: inset 0 0 8px rgba(0,0,0,0.08);
  transform: rotate(-0.4deg);
}

.card-footer {
  font-family: var(--font-title);
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: rgba(80, 55, 40, 0.95);
  text-align: center;
  margin-top: 14px;
  transform: rotate(-0.4deg);
  text-shadow: 0 1px 0 rgba(255,255,255,0.8);
}
.card-footer {
  font-family: var(--font-title);
  font-size: 1.25rem;                 /* ← plus grand */
  font-weight: 600;                   /* ← plus affirmé */
  color: rgba(80, 55, 40, 0.95);      /* ← plus visible */
  text-align: center;
  letter-spacing: 1.5px;              /* ← effet éditorial */
  margin-top: 18px;
  transform: rotate(-0.4deg);
  text-shadow:
    0 1px 0 rgba(255,255,255,0.9),    /* ← lisibilité premium */
    0 0 3px rgba(255,255,255,0.45);   /* ← effet vintage */
}
.card-footer::before {
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  margin: 0 auto 10px;
  background: rgba(120, 90, 60, 0.35);
  border-radius: 2px;
}

/* Image */
.card-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.18);
  transform: rotate(-1deg);
  filter: contrast(0.95) saturate(1.1);
}
.banner-inspirations a {
    display: inline-block;
    background: #ffe7ef; /* rose framboise vintage */
    padding: 10px 18px;
    border: 1px solid #e4b6c4;
    font-family: 'Playflair Diplay', monospace;
    font-size: 24px;
    font-weight: 600;
    color: #3b2f2f;
    letter-spacing: 0.6px;
    text-decoration: none;
    box-shadow: 3px 3px 0px #d8a8b6;
    transition: all 0.25s ease;
}

.banner-inspirations a:hover {
    background: #fff0f6;
    transform: translateY(-2px);
    box-shadow: 5px 5px 0px #c995a8;
}
.grille-polaroids::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 42px;
  margin: 40px auto 0;
  background-image: url("img/ligne-usure-vintage.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.92;
}
/* ============================================================
   FOOTER PREMIUM — VERSION ORIGINALE
============================================================ */

.site-footer {
  background-image: url("img/texture-papier-vintage-globale.webp");
  background-size: cover;
  background-repeat: repeat;
  background: #f7f3e9; /* beige doux */
  border-top: 6px solid #e4b6c4; /* bandeau rose framboise vintage */
  padding-top: 35px; /* espace pour respirer */
  padding: 45px 0 55px;
  text-align: center;
  border-top: 3px solide #e4b6c4;
  border-bottom: 6px double rgba(120, 90, 60, 0.45);
  box-shadow: 0 -12px 26px rgba(0,0,0,0.12);
  position: relative;
  margin-top: 80px;
  padding-top: 30px;
  background: linear-gradient(to top, #ffe7ef 0%, #f7f3e9 40%);
}

.site-footer::after {
  content: "";
  display: block;
  width: 100%;
  height: 32px;
  margin: 40px auto 0;
  background-image: url("img/ligne-usure-vintage.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.92;
  bottom: 10px!important;
  right:22px;
}

/* Titre du footer */
.footer-title {
  font-family: var(--font-title);
  font-size: 2.2rem;
  color: #4a3f3f;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
  border-bottom: 2px solid #e4b6c4;
  display: inline-block;
  padding-bottom: 4px;
}

/* Patte */
.footer-patte-img {
  width: 115px;
  height: auto;
  filter: hue-rotate(330deg) saturate(1.2); 
  opacity: 0.9; /* léger rappel rose sur la patte */
  margin: 10px auto 18px;
  display: block;
}

/* Note */
.footer-note {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: #4a3f3f;
  margin-bottom: 6px;
  font-style: italic;
  font-weight: 500;
}

/* Copyright */
.footer-copy {
  font-size: 1.1rem;
  color: #4a3f3f;
  opacity: 0.85;
}

/* Tampon vintage */
.footer-tampon {
  position: absolute;
  right: 40px;
  bottom: 25px;
  transform: rotate(-6deg);
  opacity: 0.85;
  margin-top: 45px;
  filter: hue-rotate(330deg) saturate(1.3); /* léger rose sur le tampon */
}

.footer-tampon img {
  width: 90px;
  height: 90px;
  filter: sepia(0.4) contrast(1.1);
}
/* ============================================================
   MOBILE — FINAL
============================================================ */

@media (max-width: 768px) {

  .hero-accueil {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 20px 16px;
  }

  .hero-img-container {
    max-width: 92%;
    margin: 0 auto;
    transform: rotate(0deg);
  }

  .accroche-adele {
    max-width: 85%;
    margin: 0 auto;
    transform: rotate(0deg);
    padding: 18px 24px;
  }

  .accroche-adele p {
    font-size: 1.3rem;
  }

  .intro-editoriale {
    padding: 40px;
  }

  .intro-text-p {
    font-size: 1.25rem;
    line-height: 1.75;
  }

  .grille-polaroids {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 40px 20px;
  }

  .polaroid {
    transform: rotate(0deg);
  }
}
