/* ==========================================================================
   Tchèque avec Niki — feuille de style
   Reprise fidèle du design original, réorganisée et complétée.

   1. Variables & reset
   2. Navigation
   3. Hero
   4. Sections communes
   5. Je me présente
   6. Pourquoi moi
   7. Première leçon
   8. Tarifs
   9. Contact & formulaire
   10. Pied de page
   11. Apparitions au défilement
   12. Responsive
   13. Accessibilité
   ========================================================================== */

/* ==========================================================================
   1. VARIABLES & RESET
   ========================================================================== */

:root {
  --burg:       #6b1a2a;
  --rose:       #b85470;
  --blush:      #e0a0aa;
  --sand:       #d4c48a;
  --olive:      #6b6e28;
  --cream:      #fdf6ee;
  --ink:        #2e1a1a;
  --light-rose: #f5e6e9;

  /* tons complémentaires */
  --burg-deep:   #a03050;
  --taupe-rose:  #c9a5a0;
  --taupe-warm:  #9b7d60;
  --brown-warm:  #3a2020;
  --plum-muted:  #5a3a42;
  --mauve-dusty: #7a5060;
  --mauve-pale:  #9a7080;

  --nav-h: 68px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 10px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Lora", Georgia, serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* grain de papier */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--burg);
  color: var(--cream);
  padding: .75rem 1.25rem;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ==========================================================================
   2. NAVIGATION
   ========================================================================== */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 2.5rem;
  min-height: var(--nav-h);
  background: rgba(253, 246, 238, 0.93);
  backdrop-filter: blur(6px);
  border-bottom: 2px dashed var(--blush);
}

.nav-logo {
  font-family: "Caveat", cursive;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--burg);
  text-decoration: none;
  white-space: nowrap;
}

.nav-links { display: flex; gap: 1.6rem; list-style: none; }

.nav-links a {
  font-family: "Caveat", cursive;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  transition: color .25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.nav-links a:hover { color: var(--burg); }
.nav-links a:hover::after,
.nav-links a.is-active::after { transform: scaleX(1); }

/* bouton hamburger (mobile uniquement) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0 10px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--burg);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   3. HERO
   ========================================================================== */

#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h);
}

.hero-photo-side { position: relative; overflow: hidden; }

.hero-photo-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: sepia(12%) saturate(88%);
}

/* bord déchiré entre la photo et le texte */
.hero-photo-side::after {
  content: "";
  position: absolute;
  top: 0; right: -2px; bottom: 0;
  width: 56px;
  background: var(--cream);
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 12% 88%, 0 74%, 10% 62%, 0 50%, 9% 38%, 0 25%, 11% 12%, 0 0);
  z-index: 2;
}

.hero-text-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 3rem 3rem 4rem;
  position: relative;
}

/* doodles flottants */
.doodle {
  position: absolute;
  font-size: 2rem;
  opacity: .22;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}
.doodle:nth-child(1) { top: 8%;     left: 4%;   animation-delay: 0s; }
.doodle:nth-child(2) { top: 18%;    right: 7%;  animation-delay: 1.5s; font-size: 1.4rem; }
.doodle:nth-child(3) { bottom: 32%; left: 6%;   animation-delay: 3s;   font-size: 1.6rem; }
.doodle:nth-child(4) { bottom: 14%; right: 10%; animation-delay: 4.5s; font-size: 2rem; }
.doodle:nth-child(5) { top: 55%;    left: 2%;   animation-delay: 2s;   font-size: 1.2rem; }

@keyframes float {
  0%, 100% { transform: translateY(0)     rotate(0deg); }
  33%      { transform: translateY(-10px) rotate(5deg); }
  66%      { transform: translateY(5px)   rotate(-3deg); }
}

.hero-subtitle {
  font-family: "Caveat", cursive;
  font-size: .95rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .9rem;
}

.hero-title {
  font-family: "Caveat", cursive;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  color: var(--burg);
  line-height: 1.05;
  margin-bottom: .5rem;
}

/* soulignement ondulé */
.wavy { display: inline-block; position: relative; }
.wavy::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='6'%3E%3Cpath d='M0,3 C15,0 25,6 40,3 C55,0 65,6 80,3 C95,0 100,3 100,3' stroke='%23b85470' stroke-width='2' fill='none'/%3E%3C/svg%3E") repeat-x center;
}

.hero-tagline {
  font-style: italic;
  font-size: .97rem;
  color: var(--plum-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: .72rem; }

.tile {
  display: block;
  border-radius: 4px;
  padding: 1.1rem 1.2rem;
  text-align: center;
  font-family: "Caveat", cursive;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s;
}
.tile:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(107, 26, 42, .22); }

.tile-moi     { background: var(--rose); }
.tile-cours   { background: var(--olive); }
.tile-tarifs  { background: var(--sand); color: var(--ink); }
.tile-dispo   { background: var(--taupe-rose); }
.tile-avis    { background: var(--taupe-warm); }
.tile-contact { background: var(--burg); }

/* ==========================================================================
   4. SECTIONS COMMUNES
   ========================================================================== */

section { padding: 5rem 2.5rem; position: relative; }

.section-inner { max-width: 900px; margin: 0 auto; }

.section-title {
  font-family: "Caveat", cursive;
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--burg);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.section-title .icon { font-size: 2.2rem; }

/* ==========================================================================
   5. JE ME PRÉSENTE
   ========================================================================== */

#moi {
  background: #fff;
  border-top: 3px dashed var(--blush);
  border-bottom: 3px dashed var(--blush);
}

.moi-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.8rem;
  align-items: start;
}

.moi-photo-wrap { position: relative; }
.moi-photo-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 6px;
  filter: sepia(10%) saturate(88%);
  box-shadow: 8px 8px 0 var(--blush);
}
.moi-photo-wrap::before {
  content: "🌿";
  position: absolute;
  top: -16px; right: -16px;
  font-size: 2.4rem;
  transform: rotate(30deg);
  animation: float 5s ease-in-out infinite;
}

.moi-text p {
  margin-bottom: 1.1rem;
  line-height: 1.8;
  font-size: 1rem;
  color: var(--brown-warm);
}
.moi-text em { color: var(--rose); font-style: italic; }

/* boutade déplacée depuis « Pourquoi moi » */
.joke-note {
  background: var(--light-rose);
  border-left: 4px solid var(--rose);
  border-radius: 8px;
  padding: 1rem 1.3rem;
  margin: 0 0 1.1rem;
  font-family: "Caveat", cursive;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--burg);
  line-height: 1.5;
  position: relative;
}
.joke-note::before {
  content: "😄";
  position: absolute;
  top: -14px; right: 14px;
  font-size: 1.6rem;
}
.joke-note em { color: var(--rose); font-style: italic; }

.badge-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.3rem; }

.badge {
  background: var(--light-rose);
  border: 1.5px solid var(--blush);
  border-radius: 20px;
  padding: .3rem .9rem;
  font-family: "Caveat", cursive;
  font-size: .95rem;
  font-weight: 600;
  color: var(--burg);
}

/* ==========================================================================
   6. POURQUOI MOI
   ========================================================================== */

#pourquoi { background: var(--light-rose); }

.pourquoi-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }

.pourquoi-item {
  background: #fff;
  border-radius: 8px;
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  box-shadow: 3px 3px 0 var(--blush);
  transition: transform .2s;
}
.pourquoi-item:hover { transform: translateY(-3px); }
.pourquoi-item .pi-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: .1rem; }
.pourquoi-item p { font-size: .95rem; line-height: 1.65; color: var(--brown-warm); }
.pourquoi-item strong {
  color: var(--burg);
  font-family: "Caveat", cursive;
  font-size: 1.05rem;
}

/* ==========================================================================
   7. PREMIÈRE LEÇON
   ========================================================================== */

#premiere { background: #fff; }

.premiere-box {
  background: var(--light-rose);
  border-radius: 10px;
  padding: 2rem 2.4rem;
  border: 2px dashed var(--blush);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.premiere-text h3 {
  font-family: "Caveat", cursive;
  font-size: 2rem;
  font-weight: 700;
  color: var(--burg);
  margin-bottom: 1rem;
}
.premiere-text .is-free { color: var(--olive); }
.premiere-text p { font-size: .97rem; line-height: 1.75; color: var(--brown-warm); margin-bottom: .6rem; }
.premiere-text .premiere-meta { color: var(--mauve-dusty); font-size: .9rem; }

.gratuit {
  display: inline-block;
  background: var(--olive);
  color: #fff;
  font-family: "Caveat", cursive;
  font-size: 1.1rem;
  font-weight: 700;
  padding: .4rem 1.2rem;
  border-radius: 20px;
  margin-top: .8rem;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.gratuit:hover { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(107, 110, 40, .3); }

.premiere-steps { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.premiere-steps li {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .95rem;
  color: var(--brown-warm);
  line-height: 1.5;
}
.premiere-steps li::before { content: "✦"; color: var(--rose); font-size: .85rem; flex-shrink: 0; }

/* ==========================================================================
   8. TARIFS
   ========================================================================== */

#tarifs { background: var(--light-rose); }

.tarifs-intro { margin-bottom: 1.8rem; color: var(--plum-muted); font-style: italic; }

.tarifs-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }

.tarif-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  box-shadow: 4px 4px 0 var(--blush);
  transition: transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.tarif-card:hover { transform: translateY(-4px); box-shadow: 6px 8px 0 var(--blush); }
.tarif-card.popular { border-top: 4px solid var(--rose); }

.tarif-card .popular-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--rose);
  color: #fff;
  font-family: "Caveat", cursive;
  font-size: .85rem;
  font-weight: 700;
  padding: .2rem .8rem;
  border-radius: 0 0 0 8px;
}

.tarif-icon     { font-size: 2.2rem; margin-bottom: .8rem; display: block; }
.tarif-name     { font-family: "Caveat", cursive; font-size: 1.4rem; font-weight: 700; color: var(--burg); margin-bottom: .4rem; }
.tarif-duration { font-size: .88rem; color: var(--mauve-dusty); margin-bottom: 1rem; }
.tarif-price    { font-family: "Caveat", cursive; font-size: 2.5rem; font-weight: 700; color: var(--burg); }
.tarif-per      { font-size: .82rem; color: var(--mauve-pale); margin-top: .15rem; }
.tarif-desc {
  font-size: .88rem;
  color: var(--plum-muted);
  line-height: 1.6;
  margin-top: .8rem;
  border-top: 1px dashed var(--blush);
  padding-top: .8rem;
}

.tarifs-note {
  margin-top: 1.4rem;
  font-style: italic;
  color: var(--mauve-dusty);
  font-size: .92rem;
  text-align: center;
}

/* ==========================================================================
   9. CONTACT & FORMULAIRE
   ========================================================================== */

#contact {
  background: linear-gradient(135deg, var(--burg) 0%, var(--burg-deep) 100%);
  color: #fff;
}
#contact .section-title { color: #fff; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

.contact-text { font-size: 1rem; line-height: 1.8; opacity: .92; }
.contact-text p { margin-bottom: .9rem; }
.contact-text strong { color: var(--sand); }

.contact-links { margin-top: 1.4rem; display: flex; flex-direction: column; gap: .75rem; }

.contact-link {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: #fff;
  text-decoration: none;
  font-family: "Caveat", cursive;
  font-size: 1.18rem;
  font-weight: 600;
  opacity: .88;
  transition: opacity .2s;
}
.contact-link:hover { opacity: 1; }
.clink-icon { font-size: 1.3rem; }

.booking-title {
  font-family: "Caveat", cursive;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.contact-form { display: flex; flex-direction: column; gap: .9rem; }

.field { display: flex; flex-direction: column; gap: .35rem; }

.field label {
  font-family: "Caveat", cursive;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
}
.field .req      { color: var(--sand); }
.field .optional { font-weight: 400; opacity: .7; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255, 255, 255, .12);
  border: 1.5px solid rgba(255, 255, 255, .35);
  border-radius: 6px;
  padding: .85rem 1.05rem;
  color: #fff;
  font-family: "Lora", Georgia, serif;
  font-size: .93rem;
  outline: none;
  transition: border-color .2s, background .2s;
  resize: none;
  width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255, 255, 255, .52); }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blush);
  background: rgba(255, 255, 255, .18);
}

.contact-form textarea { min-height: 110px; resize: vertical; }

/* la liste déroulante s'affiche sur fond clair dans le menu natif */
.contact-form select option { background: var(--cream); color: var(--ink); }

.btn-send {
  background: #fff;
  color: var(--burg);
  border: none;
  border-radius: 6px;
  padding: .85rem 1.8rem;
  font-family: "Caveat", cursive;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  align-self: flex-start;
}
.btn-send:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0, 0, 0, .2); }
.btn-send[disabled] { opacity: .65; cursor: progress; transform: none; }
.btn-send.is-sent { background: var(--sand); color: var(--ink); }

.form-status { font-size: .9rem; line-height: 1.5; min-height: 1.3em; margin: 0; }
.form-status.is-success { color: var(--sand); font-weight: 600; }
.form-status.is-error   { color: #ffd9df; }

/* piège à robots, masqué visuellement */
.hp-field {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ==========================================================================
   10. PIED DE PAGE
   ========================================================================== */

footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .58);
  text-align: center;
  padding: 1.6rem 1.4rem;
  font-size: .87rem;
  font-family: "Caveat", cursive;
}
footer .accent { color: var(--blush); }

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-bottom: .5rem;
  font-size: 1.05rem;
}
.footer-contact a { color: rgba(255, 255, 255, .82); text-decoration: none; }
.footer-contact a:hover { color: var(--sand); }

/* ==========================================================================
   11. APPARITIONS AU DÉFILEMENT
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .32s; }

/* ==========================================================================
   12. RESPONSIVE
   ========================================================================== */

@media (max-width: 820px) {
  #hero { grid-template-columns: 1fr; }
  .hero-photo-side { height: 60vw; max-height: 370px; }
  .hero-photo-side::after { display: none; }
  .hero-text-side { padding: 2rem; }

  .moi-grid,
  .contact-grid,
  .premiere-box { grid-template-columns: 1fr; }

  .tarifs-cards,
  .pourquoi-list { grid-template-columns: 1fr; }

  .moi-photo-wrap { max-width: 260px; }

  nav { padding: .7rem 1.2rem; }
}

/* le menu passe en burger avant que les libellés ne se coupent en deux lignes */
@media (max-width: 700px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    padding: .5rem 1.2rem 1.2rem;
    background: var(--cream);
    border-bottom: 2px dashed var(--blush);
    box-shadow: 0 12px 22px rgba(107, 26, 42, .12);
  }
  .nav-links.is-open { display: flex; }

  .nav-links li + li { border-top: 1px dashed var(--light-rose); }
  .nav-links a { display: block; padding: .85rem 0; font-size: 1.25rem; }
  .nav-links a::after { display: none; }

  section { padding: 3.5rem 1.4rem; }
  .section-title { font-size: 2.1rem; }
  .premiere-box { padding: 1.5rem 1.4rem; }
  .btn-send { align-self: stretch; }
}

/* ==========================================================================
   13. ACCESSIBILITÉ
   ========================================================================== */

:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 3px;
  border-radius: 4px;
}
#contact :focus-visible { outline-color: var(--sand); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .doodle { animation: none; }
}

@media print {
  nav, .nav-toggle, .contact-form, .hero-tiles, .doodle { display: none; }
  body { background: #fff; color: #000; }
  body::before { display: none; }
}

/* ==========================================================================
   14. INVITATION À PRENDRE CONTACT (encart glissant)
   ========================================================================== */

.nudge {
  position: fixed;
  z-index: 200;
  right: 1.5rem;
  bottom: 1.5rem;
  width: min(340px, calc(100vw - 3rem));
  background: var(--cream);
  border: 2px dashed var(--blush);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(107, 26, 42, .28);
  padding: 1.5rem 1.4rem 1.3rem;
  text-align: center;

  /* état fermé : hors écran, non cliquable */
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
  transition: transform .5s cubic-bezier(.22, 1, .36, 1), opacity .4s ease;
}
.nudge.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }

.nudge-close {
  position: absolute;
  top: .35rem; right: .6rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--mauve-dusty);
  cursor: pointer;
  padding: .2rem .4rem;
  transition: color .2s;
}
.nudge-close:hover { color: var(--burg); }

.nudge-emoji { font-size: 1.9rem; line-height: 1; margin-bottom: .4rem; }

.nudge-title {
  font-family: "Caveat", cursive;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--burg);
  margin-bottom: .35rem;
}

.nudge-text {
  font-size: .89rem;
  line-height: 1.6;
  color: var(--brown-warm);
  margin-bottom: 1.1rem;
}
.nudge-text strong { color: var(--olive); }

.nudge-actions { display: flex; flex-direction: column; gap: .5rem; }

.nudge-cta {
  background: var(--burg);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: .75rem 1.2rem;
  font-family: "Caveat", cursive;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.nudge-cta:hover {
  background: var(--burg-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(107, 26, 42, .3);
}

.nudge-later {
  background: none;
  border: none;
  color: var(--mauve-dusty);
  font-family: "Lora", Georgia, serif;
  font-size: .82rem;
  cursor: pointer;
  padding: .3rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.nudge-later:hover { color: var(--burg); }

/* sur mobile : bandeau collé en bas, pleine largeur */
@media (max-width: 560px) {
  .nudge {
    right: .75rem; left: .75rem; bottom: .75rem;
    width: auto;
    padding: 1.3rem 1.2rem 1.1rem;
  }
  .nudge-actions { flex-direction: row-reverse; align-items: center; justify-content: center; gap: 1rem; }
  .nudge-cta { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .nudge { transition: opacity .01ms; transform: none; }
  .nudge.is-visible { transform: none; }
}

/* mention RGPD sous le formulaire */
.form-privacy {
  font-size: .78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, .62);
  margin: 0;
}

/* lien mentions légales dans le pied de page */
.footer-legal { margin-top: .4rem; font-size: .95rem; }
.footer-legal a { color: rgba(255, 255, 255, .55); text-decoration: underline; text-underline-offset: 3px; }
.footer-legal a:hover { color: var(--blush); }
