/* ================================================================
   ALLÔ SOUVENIRS — Feuille de styles principale
   Palette : Crème · Bordeaux · Sauge · Ardoise
================================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --creme:          #F5F0E8;
  --creme-dark:     #ECE6DA;
  --bordeaux:       #8B1A1A;
  --bordeaux-dk:    #6D1414;
  --bordeaux-pale:  #F9EAEA;
  --sage:           #B5CFC7;
  --sage-dk:        #8FADA5;
  --sage-lt:        #E0F0EC;
  --slate:          #3D4A5A;
  --slate-lt:       #6B7A8A;
  --white:          #FFFFFF;
  --shadow-sm:      0 2px 12px rgba(109,20,20,.07);
  --shadow:         0 6px 28px rgba(109,20,20,.10);
  --shadow-lg:      0 12px 48px rgba(109,20,20,.14);
  --r:              16px;
  --r-sm:           10px;
  --ease:           cubic-bezier(.4,0,.2,1);
  --t:              .3s var(--ease);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--creme);
  color: var(--slate);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.18;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.35rem); }
em { font-style: italic; color: var(--bordeaux); }

/* ── Layout utilities ───────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 0; }

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-head.aligned-left { text-align: left; }
.section-head.light h2 { color: var(--white); }
.section-head.light .section-sub { color: rgba(255,255,255,.75); }

.section-sub {
  margin-top: .75rem;
  font-size: 1.05rem;
  color: var(--slate-lt);
  font-weight: 300;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary,
.btn-outline,
.btn-ghost,
.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .04em;
  border-radius: 50px;
  transition: var(--t);
  white-space: nowrap;
}

.btn-primary {
  background: var(--bordeaux);
  color: var(--white);
  padding: .85rem 2rem;
  border: 2px solid var(--bordeaux);
}
.btn-primary:hover {
  background: var(--bordeaux-dk);
  border-color: var(--bordeaux-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,26,26,.35);
}

.btn-outline {
  background: transparent;
  color: var(--bordeaux);
  padding: .85rem 2rem;
  border: 2px solid var(--bordeaux);
}
.btn-outline:hover {
  background: var(--bordeaux);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--slate);
  padding: .4rem 0;
  border: none;
  border-bottom: 1.5px solid transparent;
  border-radius: 0;
}
.btn-ghost:hover { border-bottom-color: var(--slate); }

.btn-nav {
  background: var(--bordeaux);
  color: var(--white);
  padding: .55rem 1.4rem;
  border: 2px solid var(--bordeaux);
  font-size: .88rem;
}
.btn-nav:hover { background: var(--bordeaux-dk); }

.btn-lg { padding: 1rem 2.4rem; font-size: .98rem; }
.btn-block { width: 100%; }


/* ════════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(245,240,232,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
#navbar.scrolled {
  border-bottom-color: var(--creme-dark);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: .5rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo img { height: 80px; width: auto; }
.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--slate);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--bordeaux);
  transform: scaleX(0);
  transition: transform .25s var(--ease);
}
.nav-links a:hover,
.nav-links a.active-page { color: var(--bordeaux); }
.nav-links a:hover::after,
.nav-links a.active-page::after { transform: scaleX(1); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bordeaux);
  border-radius: 2px;
  transition: var(--t);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  background: var(--creme);
  border-top: 1px solid var(--creme-dark);
  padding: 1.5rem 2rem;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 1rem; }
.nav-mobile a {
  font-weight: 500;
  font-size: 1rem;
  color: var(--slate);
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--bordeaux); }


/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
#hero {
  min-height: 100dvh;
  background: var(--creme);
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(181,207,199,.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1140px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-content { position: relative; z-index: 1; }

.hero-location {
  display: inline-block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--sage-dk);
  background: var(--sage-lt);
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-content h1 {
  margin-bottom: 1.25rem;
  color: var(--slate);
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--slate-lt);
  font-weight: 400;
  max-width: 500px;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.hero-motto {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  color: var(--bordeaux);
  margin-bottom: 2.25rem;
}

.hero-ctas {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-price-hint {
  font-size: .85rem;
  color: var(--slate-lt);
}
.hero-price-hint strong { color: var(--bordeaux); font-weight: 700; }

/* Phone visual */
.hero-visual { display: flex; justify-content: center; align-items: center; }

.hero-phone-wrap {
  position: relative;
  display: inline-block;
}

.hero-phone {
  width: min(420px, 90%);
  border-radius: 24px;
  filter: drop-shadow(0 20px 50px rgba(139,26,26,.18));
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

.bubble {
  position: absolute;
  background: var(--white);
  color: var(--slate);
  font-size: .8rem;
  font-weight: 500;
  padding: .65rem 1rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  white-space: nowrap;
  animation: float 5s ease-in-out infinite;
}
.bubble::after {
  content: '';
  position: absolute;
  bottom: -7px;
  width: 14px; height: 14px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.bubble-left  { bottom: 30%; left: -10%; animation-delay: .8s; }
.bubble-left::after  { left: 24px; }
.bubble-right { top: 25%; right: -8%; animation-delay: 2s; }
.bubble-right::after { right: 24px; }

/* Scroll hint */
.hero-scroll-hint {
  display: flex;
  justify-content: center;
  padding: 1.5rem 0 2rem;
}
.hero-scroll-hint span {
  display: block;
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, var(--bordeaux), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { opacity: 0; transform: scaleY(0) translateY(-100%); }
  40%  { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1) translateY(0); }
}


/* ════════════════════════════════════════════════════════════
   COMMENT ÇA MARCHE
════════════════════════════════════════════════════════════ */
#comment-ca-marche {
  background: var(--bordeaux);
}
#comment-ca-marche .section-head h2 { color: var(--white); }
#comment-ca-marche .section-sub     { color: rgba(255,255,255,.7); }

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

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r);
  position: relative;
  transition: background var(--t), transform var(--t);
}
.step:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-4px);
}

.step-num {
  font-family: 'Dancing Script', cursive;
  font-size: 3rem;
  color: rgba(255,255,255,.15);
  position: absolute;
  top: 1rem; right: 1.25rem;
  line-height: 1;
}

.step-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1.25rem;
  color: rgba(255,255,255,.85);
}
.step-icon svg { width: 100%; height: 100%; }

.step h3 {
  color: var(--white);
  margin-bottom: .75rem;
  font-size: 1.1rem;
}
.step p {
  font-size: .9rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}


/* ════════════════════════════════════════════════════════════
   MESSAGES INVITÉS
════════════════════════════════════════════════════════════ */
#messages { background: var(--creme); }

.messages-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.messages-photo-col img {
  width: 100%;
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 1;
}

/* Voicemail UI */
.voicemail-ui {
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-top: 2rem;
}

.vm-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.25rem;
  background: var(--bordeaux);
  color: var(--white);
}
.vm-led {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 6px rgba(245,158,11,.8);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}
.vm-title { font-size: .85rem; font-weight: 600; flex: 1; }
.vm-badge {
  font-size: .75rem;
  background: rgba(255,255,255,.2);
  padding: .2rem .6rem;
  border-radius: 50px;
}

.vm-item {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: .6rem 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--creme-dark);
  cursor: default;
  transition: background var(--t);
}
.vm-item:last-child { border-bottom: none; }
.vm-item:hover { background: var(--creme); }
.vm-item.playing { background: var(--bordeaux-pale); }

.vm-play {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bordeaux);
  color: var(--white);
  border: none;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
  flex-shrink: 0;
}
.vm-play svg { width: 14px; height: 14px; margin-left: 2px; }
.vm-play .icon-pause { margin-left: 0; }
.vm-play:hover { background: var(--bordeaux-dk); transform: scale(1.05); }

.vm-meta {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.vm-meta strong { font-size: .88rem; color: var(--slate); }
.vm-meta span   { font-size: .75rem; color: var(--slate-lt); }

.vm-play { grid-row: 1 / 3; }

.vm-wave {
  overflow: hidden;
  grid-column: 2;
  grid-row: 1;
}

.wave-bars {
  display: flex;
  align-items: center;
  gap: 2.5px;
  height: 24px;
}
.wave-bars span {
  display: block;
  width: 3px;
  border-radius: 3px;
  background: var(--sage-dk);
  transition: height .12s ease, background .2s;
}
.vm-item.playing .wave-bars span { background: var(--bordeaux); }

/* Barre de progression + temps */
.vm-time {
  grid-column: 2 / 4;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.vm-current,
.vm-duration {
  font-size: .72rem;
  color: var(--slate-lt);
  font-variant-numeric: tabular-nums;
  min-width: 2.2rem;
  flex-shrink: 0;
}
.vm-duration { text-align: right; }

.vm-progress-bar {
  flex: 1;
  height: 3px;
  background: var(--creme-dark);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
}
.vm-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--bordeaux);
  border-radius: 3px;
  transition: width .1s linear;
}

.vm-disclaimer {
  font-size: .78rem;
  color: var(--slate-lt);
  margin-top: 1rem;
  font-style: italic;
}


/* ════════════════════════════════════════════════════════════
   PARFAIT POUR
════════════════════════════════════════════════════════════ */
#parfait-pour {
  background: var(--sage);
}
#parfait-pour .section-head h2 { color: var(--white); }

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.event-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform var(--t), box-shadow var(--t);
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,.12);
}

.ev-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.event-card h3 {
  font-size: 1.1rem;
  color: var(--bordeaux);
  margin-bottom: .6rem;
}
.event-card p { font-size: .88rem; color: var(--slate-lt); line-height: 1.7; }


/* ════════════════════════════════════════════════════════════
   GALERIE
════════════════════════════════════════════════════════════ */
#galerie {
  background: #1E0A0A;
  padding: 6rem 0;
}
#galerie .section-head h2 { color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 240px);
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--r-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }

.g-main {
  grid-row: 1 / 3;
}

.g-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: .75rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .g-caption { opacity: 1; }

.g-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bordeaux);
  cursor: default;
}
.g-quote:hover img { transform: none; }

.g-quote-inner {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}
.quote-mark { width: 40px; margin: 0 auto .75rem; color: var(--white); }
.g-quote blockquote {
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1.5;
}


/* ════════════════════════════════════════════════════════════
   TARIFS
════════════════════════════════════════════════════════════ */
#tarifs { background: var(--creme); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 820px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow var(--t), transform var(--t);
  border: 2px solid transparent;
}
.pricing-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.pricing-star {
  border-color: var(--bordeaux);
}

.star-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bordeaux);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-head h3 {
  font-size: 1.4rem;
  color: var(--bordeaux);
  margin-bottom: .25rem;
}
.pricing-head p { font-size: .85rem; color: var(--slate-lt); margin-bottom: 1.5rem; }

.price-display {
  display: flex;
  align-items: flex-end;
  gap: .2rem;
  margin-bottom: 1.75rem;
}
.price-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--bordeaux);
  line-height: 1;
}
.price-quote { font-size: 1.6rem; }
.price-cur {
  font-size: 1.5rem;
  color: var(--bordeaux);
  font-weight: 700;
  padding-bottom: .3rem;
}
.price-per {
  font-size: .85rem;
  color: var(--slate-lt);
  padding-bottom: .4rem;
}

.price-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 2rem;
}
.price-features li {
  font-size: .88rem;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.price-features li::before { content: none; }

.ok::before { content: '✓'; color: #2d9457; font-weight: 700; flex-shrink: 0; }
.no { opacity: .4; }
.no::before { content: '✗'; color: var(--slate-lt); font-weight: 700; flex-shrink: 0; }

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: .85rem;
  color: var(--slate-lt);
  font-style: italic;
}


/* ════════════════════════════════════════════════════════════
   TÉMOIGNAGES
════════════════════════════════════════════════════════════ */
#temoignages { background: var(--bordeaux-pale); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.testi-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--t), box-shadow var(--t);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.testi-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }

.testi-card > p {
  font-size: .9rem;
  color: var(--slate);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--creme-dark);
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bordeaux);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .88rem; color: var(--slate); }
.testi-author span   { font-size: .78rem; color: var(--slate-lt); }


/* ════════════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════════════ */
#faq { background: var(--creme-dark); }

.faq-wrap { max-width: 760px; }

.faq-list { display: flex; flex-direction: column; gap: .75rem; }

.faq-item {
  background: var(--white);
  border-radius: var(--r-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: .95rem;
  font-weight: 600;
  color: var(--slate);
  transition: color var(--t), background var(--t);
}
.faq-q:hover { color: var(--bordeaux); background: rgba(139,26,26,.03); }
.faq-item.open .faq-q { color: var(--bordeaux); }

.faq-arr {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--bordeaux);
  transition: transform var(--t);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .faq-arr { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-item.open .faq-a { max-height: 400px; }

.faq-a p {
  padding: 0 1.5rem 1.25rem;
  font-size: .9rem;
  color: var(--slate-lt);
  line-height: 1.75;
}
.faq-a p strong { color: var(--bordeaux); }


/* ════════════════════════════════════════════════════════════
   RÉSERVATION
════════════════════════════════════════════════════════════ */
#reserver { background: var(--sage-lt); }

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

/* Calendar */
.booking-cal h3,
.booking-form-wrap h3 {
  font-size: 1.2rem;
  color: var(--bordeaux);
  margin-bottom: 1.25rem;
}

.calendar {
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bordeaux);
  color: var(--white);
  padding: 1rem 1.25rem;
}
.cal-nav button {
  background: rgba(255,255,255,.15);
  border: none;
  color: var(--white);
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.cal-nav button:hover { background: rgba(255,255,255,.3); }
#cal-label {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: capitalize;
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: .75rem .75rem .25rem;
}
.cal-weekdays span {
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
  color: var(--slate-lt);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  padding: .5rem .75rem 1rem;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--t);
  position: relative;
  color: var(--slate);
}
.cal-day.empty { cursor: default; }
.cal-day.past  { color: #ccc; cursor: not-allowed; }

.cal-day.available:hover {
  background: var(--bordeaux-pale);
  color: var(--bordeaux);
}
.cal-day.available::after {
  content: '';
  position: absolute;
  bottom: 3px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #2d9457;
}

.cal-day.booked {
  cursor: not-allowed;
  opacity: .5;
}
.cal-day.booked::after {
  content: '';
  position: absolute;
  bottom: 3px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #e53e3e;
}

.cal-day.selected {
  background: var(--bordeaux) !important;
  color: var(--white) !important;
  font-weight: 700;
}
.cal-day.selected::after { display: none; }

.cal-legend {
  display: flex;
  gap: 1.5rem;
  padding: .75rem 1rem;
  border-top: 1px solid var(--creme-dark);
  font-size: .78rem;
  color: var(--slate-lt);
}
.cal-legend span { display: flex; align-items: center; gap: .4rem; }

.dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
}
.dot-ok  { background: #2d9457; }
.dot-ko  { background: #e53e3e; }
.dot-sel { background: var(--bordeaux); }

/* Form */
.booking-form-wrap {
  background: var(--white);
  border-radius: var(--r);
  padding: 2.25rem;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.1rem;
}
.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: .03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--creme-dark);
  border-radius: var(--r-sm);
  font-family: 'Raleway', sans-serif;
  font-size: .9rem;
  color: var(--slate);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--bordeaux);
  box-shadow: 0 0 0 3px rgba(139,26,26,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; }

.input-readonly { background: var(--creme); cursor: pointer; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B7A8A' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 80px; }

.form-note {
  text-align: center;
  margin-top: .75rem;
  font-size: .78rem;
  color: var(--slate-lt);
  font-style: italic;
}

/* Success state */
.hidden { display: none !important; }

.form-success {
  text-align: center;
  padding: 3rem 2rem;
}
.success-check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #2d9457;
  color: var(--white);
  font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.form-success h4 {
  font-size: 1.3rem;
  color: var(--bordeaux);
  margin-bottom: .75rem;
}
.form-success p { color: var(--slate-lt); font-size: .9rem; }


/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
#footer { background: var(--bordeaux-dk); color: rgba(255,255,255,.8); }

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand img { filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-brand p {
  font-family: 'Dancing Script', cursive;
  font-size: 1.3rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 1.25rem;
}
.footer-insta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  transition: color .2s;
}
.footer-insta:hover { color: var(--white); }

.footer-nav h4,
.footer-contact h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}

.footer-nav ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer-nav a {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--white); }

.footer-contact li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: rgba(255,255,255,.7);
}
.footer-contact svg { flex-shrink: 0; opacity: .6; }
.footer-contact a {
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  max-width: 1140px;
  margin: 0 auto;
}
.footer-bottom a {
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .2s;
}
.footer-bottom a:hover { color: rgba(255,255,255,.85); }


/* ════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .steps         { grid-template-columns: repeat(2, 1fr); }
  .events-grid   { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid  {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }
  .g-main { grid-row: 1 / 2; grid-column: 1 / 3; }
  .g-quote { grid-column: 1 / 3; }
}

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

  /* Navbar */
  .nav-links, .btn-nav { display: none; }
  .nav-burger { display: flex; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem 2rem;
    text-align: center;
  }
  .hero-content { order: 2; }
  .hero-visual  { order: 1; }
  .hero-ctas { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-phone { width: min(280px, 80vw); }
  .bubble-left  { left: 0; font-size: .72rem; }
  .bubble-right { right: 0; font-size: .72rem; }

  /* Steps */
  .steps       { grid-template-columns: 1fr; gap: 1rem; }
  .events-grid { grid-template-columns: 1fr 1fr; }

  /* Messages */
  .messages-layout { grid-template-columns: 1fr; }
  .messages-photo-col { display: none; }

  /* Tarifs */
  .pricing-grid { grid-template-columns: 1fr; }

  /* Témoignages */
  .testi-grid { grid-template-columns: 1fr; }

  /* Booking */
  .booking-layout { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .g-main { grid-column: 1; grid-row: 1; height: 260px; }
  .gallery-item { height: 220px; }
  .g-quote { height: 160px; }
}

@media (max-width: 480px) {
  .events-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .vm-item { grid-template-columns: 36px 1fr; }
  .vm-wave { display: none; }
  .vm-time { grid-column: 2; }
}

/* ── Bande de réassurance ───────────────────────────────────── */
.reassurance-strip {
  background: var(--white);
  border-top: 1px solid rgba(139,26,26,.1);
  border-bottom: 1px solid rgba(139,26,26,.1);
  padding: 1.5rem 0;
}

.reassurance-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.reassurance-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.reassurance-list svg {
  flex-shrink: 0;
  color: var(--bordeaux);
  opacity: .85;
}

.reassurance-list div {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.reassurance-list strong {
  font-size: .82rem;
  font-weight: 700;
  color: var(--slate);
  line-height: 1.2;
}

.reassurance-list span {
  font-size: .72rem;
  color: var(--slate-lt);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .reassurance-list { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
}
@media (max-width: 480px) {
  .reassurance-list { grid-template-columns: 1fr; }
}

/* ── Validation inline ──────────────────────────────────────── */
.field-error-msg {
  display: block;
  margin-top: .3rem;
  font-size: .78rem;
  color: #c0392b;
  font-weight: 500;
}

.field-invalid {
  border-color: #c0392b !important;
  background-color: #fff5f5 !important;
}
.field-invalid:focus {
  box-shadow: 0 0 0 3px rgba(192,57,43,.15) !important;
}

/* ── Bandeau erreur soumission ──────────────────────────────── */
.form-error-banner {
  background: #fff5f5;
  border: 1px solid #f5c6cb;
  color: #c0392b;
  border-radius: 8px;
  padding: .75rem 1rem;
  font-size: .88rem;
  font-weight: 500;
  margin-bottom: .75rem;
  text-align: center;
}

/* ── Spinner bouton ─────────────────────────────────────────── */
.btn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  vertical-align: middle;
  margin-right: .4rem;
}
@keyframes spin { to { transform: rotate(360deg); } }
