/* =========================================================
   Daisy Kitoyi — Autrice
   Site vitrine + pages legales
   Palette : terre, ocre brule, bleu lac, blanc casse, dore
   ========================================================= */

:root {
  /* Palette caleée sur la couverture du roman :
     sunset, ciel violet-nuit, crème chaude — feeling couché du soleil */
  --ocre: #D44820;            /* sunset rouge-feu, vrai couché du soleil */
  --ocre-dark: #B23414;       /* sunset assombri pour les hovers */
  --sunset-gold: #F0973E;     /* doré-orangé du soleil haut */
  --sunset-pink: #ED7350;     /* corail du soleil bas */
  --bleu-lac: #3D2C5E;        /* violet-nuit, ciel haut du livre */
  --violet-deep: #221645;     /* violet très profond, ciel bord */
  --blanc-casse: #FAF2E5;     /* crème plus chaude */
  --dore: #F3C195;            /* doré peachy, lumière du soleil */
  --dore-clair: #F9DCB7;
  --terre: #2D2057;           /* violet-nuit profond, remplace le marron */
  --noir: #1A1330;
  --gris: #6F6880;
  --gris-clair: #E8E1D5;
  --max-w: 1200px;
  --max-w-lecture: 700px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', Georgia, serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--noir);
  background: var(--blanc-casse);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--bleu-lac); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--ocre); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: var(--terre);
  line-height: 1.2;
}
h1 { font-size: clamp(2.4rem, 5.8vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.3rem, 3vw, 1.7rem); margin-bottom: .8rem; }

p { margin-bottom: 1.1rem; }
.eyebrow {
  font-family: 'Lora', serif;
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ocre);
  font-weight: 600;
  margin-bottom: .8rem;
}

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

/* =================== HEADER STICKY =================== */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(250, 247, 242, .92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--gris-clair);
  z-index: 100;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--terre);
  letter-spacing: .01em;
}
.brand em { color: var(--ocre); font-style: italic; font-weight: 500; }
@media (max-width: 700px) { .brand { font-size: 1.5rem; } }

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.8rem;
  align-items: center;
}
.nav-links a {
  color: var(--noir);
  font-size: .95rem;
  position: relative;
  padding: .25rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--ocre);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* Burger mobile */
.burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: .5rem;
  color: var(--terre);
}
.burger svg { width: 26px; height: 26px; }

/* =================== BOUTON AMAZON =================== */
.btn-amazon {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--ocre) 55%, var(--ocre-dark) 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: .95rem 1.6rem;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(212, 72, 32, .3);
  white-space: nowrap;
}
.btn-amazon:hover {
  transform: scale(1.05);
  color: #fff;
  filter: brightness(1.08) saturate(1.1);
  box-shadow: 0 10px 30px rgba(212, 72, 32, .45);
}
.btn-amazon.btn-large { font-size: 1.15rem; padding: 1.15rem 2rem; }
.btn-amazon.btn-pulse { animation: pulse 4s ease-in-out infinite; }

/* =================== FORMATS DISPONIBLES (broche + Kindle) =================== */
.dispo-formats {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  flex-wrap: wrap;
  margin-top: 1.1rem;
  font-family: 'Lora', serif;
  font-size: .95rem;
  color: var(--terre);
}
.dispo-formats strong { color: var(--ocre-dark); }
.badge-new {
  background: var(--ocre);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2rem .55rem;
  border-radius: 20px;
}
.bandeau-cta .dispo-formats { display: flex; justify-content: center; color: #fff; margin-top: 1.2rem; }
.bandeau-cta .dispo-formats strong { color: #fff; }
.bandeau-cta .badge-new { background: #fff; color: var(--ocre-dark); }

/* =================== BANDEAU D'ANNONCE (haut de page) =================== */
.top-banner {
  display: block;
  text-align: center;
  background: linear-gradient(90deg, var(--ocre) 0%, var(--sunset-gold) 100%);
  color: #fff;
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 500;
  padding: .78rem 1.2rem;
  line-height: 1.4;
}
.top-banner strong { font-weight: 800; }
.top-banner .arrow { font-weight: 700; }
.top-banner:hover { color: #fff; filter: brightness(1.06); }
@media (max-width: 600px) {
  .top-banner { font-size: .85rem; padding: .65rem .9rem; }
}
@keyframes pulse {
  0%, 60%, 100% { transform: scale(1); box-shadow: 0 6px 20px rgba(212, 72, 32, .3); }
  70% { transform: scale(1.04); box-shadow: 0 10px 30px rgba(212, 72, 32, .55); }
  80% { transform: scale(1); box-shadow: 0 6px 20px rgba(212, 72, 32, .3); }
}

/* =================== BANDE-ANNONCE VIDEO =================== */
.bande-annonce {
  padding: 5rem 1.5rem;
  position: relative;
  background:
    radial-gradient(ellipse 50% 60% at 85% 50%, rgba(212, 72, 32, .25), transparent 65%),
    radial-gradient(ellipse 60% 40% at 15% 70%, rgba(61, 44, 94, .15), transparent 70%),
    linear-gradient(135deg, #2D2057 0%, #3D2C5E 50%, #4A3070 100%);
  color: var(--blanc-casse);
  overflow: hidden;
}
.bande-annonce::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(240, 151, 62, .18), transparent 50%);
  pointer-events: none;
}
.bande-annonce-text { position: relative; z-index: 1; }
.bande-annonce-text h2 { color: var(--blanc-casse); }
.bande-annonce-text p { color: rgba(250, 242, 229, .85); }
.bande-annonce-text .eyebrow { color: var(--sunset-gold); }
.video-wrap { position: relative; z-index: 1; }
.bande-annonce-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.bande-annonce-text h2 { margin-top: .5rem; margin-bottom: 1.5rem; }
.bande-annonce-text p { font-size: 1.05rem; line-height: 1.7; color: rgba(250, 242, 229, .88); }
.video-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(45, 32, 87, .3), 0 0 80px rgba(212, 72, 32, .15);
  position: relative;
  background: var(--terre);
}
.video-wrap video {
  width: 100%;
  height: auto;
  display: block;
  background: var(--terre);
}
/* Vignette video cliquable (bande-annonce) */
.video-card {
  position: relative;
  display: block;
  width: 100%;
  max-width: 330px;
  margin: 1.25rem auto;
  aspect-ratio: 9 / 16;
  border-radius: 6px;
  overflow: hidden;
  background: var(--terre);
}
.video-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,32,87,.6), rgba(45,32,87,.05) 45%);
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(212,72,32,.92);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  padding-left: 4px;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  transition: transform .2s ease, background .2s ease;
}
.video-card:hover .play-btn { transform: translate(-50%, -50%) scale(1.08); background: var(--ocre); }
.video-card-label {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  z-index: 2;
}
.video-card.wide { max-width: 100%; aspect-ratio: 16 / 9; }
@media (max-width: 900px) {
  .bande-annonce-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.btn-amazon-nav { padding: .65rem 1.1rem; font-size: .9rem; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1.5px solid var(--terre);
  color: var(--terre);
  padding: .9rem 1.5rem;
  border-radius: 10px;
  font-weight: 500;
  transition: all .25s ease;
}
.btn-ghost:hover { background: var(--terre); color: var(--blanc-casse); }

/* =================== HERO =================== */
.hero {
  position: relative;
  padding: 6rem 1.5rem 5rem;
  min-height: 78vh;
  display: flex;
  align-items: center;
  /* Ciel de couché du soleil : violet profond en haut, sunset éclatant, crème en bas */
  background:
    radial-gradient(ellipse 70% 50% at 75% 55%, rgba(212, 72, 32, .25), transparent 70%),
    radial-gradient(ellipse 60% 45% at 80% 75%, rgba(240, 151, 62, .28), transparent 70%),
    linear-gradient(180deg, #E5D2B6 0%, #F4E5D0 35%, var(--blanc-casse) 70%, #FAEFE0 100%);
  overflow: hidden;
}
/* Fine bande sunset décorative en haut */
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--sunset-gold) 30%, var(--ocre) 60%, var(--ocre-dark) 80%, transparent 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: -10%;
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(226, 86, 56, .12), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  z-index: 1;
}
.hero-content .accroche {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  color: var(--ocre);
  margin: 1.2rem 0 2rem;
  max-width: 30ch;
}
.hero-content p.intro { font-size: 1.05rem; margin-bottom: 2rem; color: #4a4258; max-width: 50ch; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-cover {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-cover::before {
  /* Halo de coucher de soleil derrière le livre */
  content: '';
  position: absolute;
  inset: -20% -10%;
  background: radial-gradient(circle at center, rgba(226, 86, 56, .35), rgba(240, 134, 96, .15) 40%, transparent 70%);
  filter: blur(20px);
  z-index: 0;
}
.hero-cover img {
  position: relative;
  z-index: 1;
  border-radius: 6px;
  box-shadow:
    0 40px 80px rgba(45, 32, 87, .4),
    0 15px 30px rgba(212, 72, 32, .25),
    0 0 100px rgba(212, 72, 32, .18);
  max-width: 440px;
  width: 100%;
  transform: rotate(-2deg);
  transition: transform .5s ease;
}
.hero-cover img:hover { transform: rotate(0deg) scale(1.02); }

/* =================== SECTIONS =================== */
section.section { padding: 5rem 1.5rem; }
section.section.alt { background: linear-gradient(180deg, #F5E5CE 0%, #FAEFE0 100%); }
.section-head { text-align: center; margin-bottom: 3rem; max-width: 700px; margin-left: auto; margin-right: auto; }

/* Roman section preview */
.roman-pitch p { max-width: 65ch; margin-left: auto; margin-right: auto; text-align: center; font-size: 1.05rem; color: #333; }
.roman-pitch p + p { margin-top: 1rem; }

/* Autrice card on index */
.autrice-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.autrice-card img { border-radius: 6px; box-shadow: 0 20px 40px rgba(43, 27, 13, .18); }
.autrice-card a.link-en-savoir-plus {
  display: inline-block;
  margin-top: 1rem;
  color: var(--ocre);
  font-weight: 600;
  border-bottom: 1px solid var(--ocre);
  padding-bottom: 2px;
}

/* Galerie univers */
.galerie {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}
.galerie figure { margin: 0; overflow: hidden; border-radius: 6px; }
.galerie img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform .6s ease;
}
.galerie figure:hover img { transform: scale(1.05); }

/* Bandeau reseaux */
.socials-banner {
  background: var(--bleu-lac);
  color: var(--blanc-casse);
  padding: 3rem 1.5rem;
  text-align: center;
}
.socials-banner h2 { color: var(--blanc-casse); margin-bottom: 1rem; }
.socials-banner .socials a {
  color: var(--dore-clair);
  margin: 0 1rem;
  font-weight: 600;
  font-size: 1.05rem;
}
.socials-banner .socials a:hover { color: #fff; }

/* =================== ROMAN.HTML =================== */
.roman-title { text-align: center; padding: 4rem 1.5rem 2rem; }
.roman-title h1 { font-style: italic; color: var(--ocre); }
.roman-title .sub { color: var(--gris); margin-top: .5rem; }

.synopsis { max-width: var(--max-w-lecture); margin: 0 auto; padding: 0 1.5rem 3rem; }
.synopsis p { font-size: 1.05rem; }

.personnages { padding: 4rem 1.5rem; background: linear-gradient(180deg, #F5E5CE 0%, #FAEFE0 100%); }
.personnages h2 { text-align: center; margin-bottom: 3rem; }
.personnages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.persona { text-align: center; }
.persona img { border-radius: 6px; aspect-ratio: 3/4; object-fit: cover; margin-bottom: 1rem; box-shadow: 0 15px 30px rgba(43, 27, 13, .15); }
.persona h3 { color: var(--bleu-lac); }
.persona .role { color: var(--ocre); font-style: italic; font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .8rem; }

.extraits { padding: 4rem 1.5rem; }
.extrait {
  max-width: var(--max-w-lecture);
  margin: 0 auto 3rem;
  padding: 2.5rem;
  background: #fff;
  border-left: 3px solid var(--ocre);
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(43, 27, 13, .06);
}
.extrait blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--bleu-lac);
  line-height: 1.4;
  margin-bottom: 1.2rem;
}
.extrait p { color: #444; }

.bandeau-cta {
  background: linear-gradient(135deg, var(--terre), var(--ocre));
  color: #fff;
  padding: 4rem 1.5rem;
  text-align: center;
}
.bandeau-cta h2 { color: #fff; font-style: italic; }
.bandeau-cta p { margin: 1rem auto 2rem; max-width: 50ch; opacity: .95; }
.bandeau-cta .btn-amazon { background: #fff; color: var(--ocre); }
.bandeau-cta .btn-amazon:hover { background: var(--blanc-casse); color: var(--ocre-dark); }

/* =================== AUTRICE.HTML =================== */
.autrice-hero {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 5rem 1.5rem 2rem;
}
.autrice-hero img { border-radius: 6px; box-shadow: 0 25px 50px rgba(43, 27, 13, .2); }
.autrice-hero h1 { margin-bottom: .3rem; }
.autrice-hero .sous-titre { font-style: italic; color: var(--ocre); font-size: 1.1rem; margin-bottom: 1.5rem; }
.autrice-hero .bio-courte { color: var(--gris); line-height: 1.7; }

.bloc-litt {
  max-width: var(--max-w-lecture);
  margin: 0 auto;
  padding: 3rem 1.5rem;
  border-top: 1px solid var(--dore);
}
.bloc-litt h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.bloc-litt p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: #2a2a2a;
  margin-bottom: 1.6rem;
}
.bloc-litt em { color: var(--bleu-lac); }

.citation-finale {
  text-align: center;
  padding: 5rem 1.5rem;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(226, 86, 56, .15), transparent 70%),
    linear-gradient(180deg, #F5E5CE 0%, var(--blanc-casse) 100%);
}
.citation-finale blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--ocre);
  line-height: 1.4;
  max-width: 22ch;
  margin: 0 auto 1.5rem;
}
.citation-finale .src {
  color: var(--gris);
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.bloc-cta-autrice { text-align: center; padding: 3rem 1.5rem 5rem; }

/* =================== CONTACT.HTML =================== */
.contact-wrap { max-width: 700px; margin: 0 auto; padding: 5rem 1.5rem; }
.contact-intro { text-align: center; margin-bottom: 3rem; }
form.contact-form { display: grid; gap: 1.2rem; }
form.contact-form label { font-size: .85rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ocre); font-weight: 600; }
form.contact-form input,
form.contact-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: .9rem 1rem;
  border: 1px solid var(--gris-clair);
  border-radius: 6px;
  background: #fff;
  width: 100%;
  transition: border-color .25s ease;
}
form.contact-form input:focus,
form.contact-form textarea:focus { outline: none; border-color: var(--ocre); }
form.contact-form textarea { min-height: 160px; resize: vertical; }
form.contact-form button { justify-self: start; }
.form-mention { font-size: .85rem; color: var(--gris); text-align: center; margin-top: 1.5rem; }

.contact-socials { text-align: center; padding: 2rem 1.5rem; }
.contact-socials a { margin: 0 1rem; font-weight: 600; }

/* =================== PAGES LEGALES =================== */
.legal-wrap { max-width: 800px; margin: 0 auto; padding: 4rem 1.5rem; }
.legal-wrap h1 { font-size: 2rem; margin-bottom: .5rem; }
.legal-wrap .legal-meta { color: var(--gris); font-size: .9rem; margin-bottom: 2.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--gris-clair); }
.legal-wrap h2 { font-size: 1.4rem; color: var(--bleu-lac); margin-top: 2.5rem; margin-bottom: 1rem; }
.legal-wrap ul { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.legal-wrap li { margin-bottom: .4rem; }

/* =================== FOOTER =================== */
.site-footer {
  background: var(--terre);
  color: var(--gris-clair);
  padding: 3rem 1.5rem 1.5rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  max-width: var(--max-w);
  margin: 0 auto 2rem;
}
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--dore-clair); margin-bottom: .6rem; }
.footer-brand-line { font-size: .85rem; line-height: 1.7; opacity: .85; }
.footer-grid h4 { color: var(--dore-clair); font-size: .85rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1rem; font-family: 'Lora', serif; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: .5rem; }
.footer-grid a { color: var(--gris-clair); font-size: .92rem; }
.footer-grid a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.5rem;
  text-align: center;
  font-size: .8rem;
  opacity: .7;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* =================== REVEAL ANIMATION =================== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =================== RESPONSIVE =================== */
@media (max-width: 900px) {
  .hero-grid,
  .autrice-card,
  .autrice-hero,
  .personnages-grid { grid-template-columns: 1fr; }
  .galerie { grid-template-columns: repeat(2, 1fr); }
  .autrice-hero img,
  .autrice-card img { max-width: 280px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links {
    position: fixed;
    inset: 70px 0 0 0;
    background: var(--blanc-casse);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform .35s ease;
    border-top: 1px solid var(--gris-clair);
  }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 1.3rem; font-family: 'Playfair Display', serif; }
  .burger { display: block; }
  .btn-amazon-nav { display: none; }
  .nav-links .btn-amazon { margin-top: 1rem; }
  .hero { padding-top: 3rem; }
  section.section { padding: 3.5rem 1.5rem; }
  .bloc-litt p { font-size: 1rem; }
}

@media (max-width: 480px) {
  .galerie { grid-template-columns: 1fr; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.7rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-amazon,
  .hero-actions .btn-ghost { justify-content: center; }
}

/* =================== ACCESSIBILITE =================== */
*:focus-visible { outline: 2px solid var(--ocre); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
