/* =========================================================
   BACCHUS95 — V2 « La Cave »
   Direction : cave de grand cru, nuit et or.
   Noir de cave, grenat profond, or ciselé, lueurs chaudes.
   Typo : Italiana (gravure) + EB Garamond (texte).
   ========================================================= */

:root {
  --noir: #100a0d;          /* nuit de cave */
  --noir-2: #170f13;        /* panneau */
  --noir-3: #1f141a;        /* carte */
  --grenat: #6d2038;        /* robe du vin */
  --grenat-lueur: #8e2a47;
  --or: #c9a35c;            /* capsule dorée */
  --or-vif: #e8c987;
  --or-sombre: #8a6c39;
  --ivoire: #f3ead9;        /* texte principal */
  --ivoire-doux: #cbbfae;   /* texte secondaire */

  --font-display: "Italiana", serif;
  --font-body: "EB Garamond", Georgia, serif;

  --maxw: 1180px;
  --transition: 300ms cubic-bezier(0.25, 0.6, 0.3, 1);
  --transition-slow: 900ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.16rem;
  line-height: 1.7;
  color: var(--ivoire);
  background: var(--noir);
  overflow-x: hidden;
}

/* Grain de papier : texture cinéma très subtile sur tout le site */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

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

a { color: var(--or-vif); }

::selection { background: var(--grenat); color: var(--ivoire); }

:focus-visible {
  outline: 2px solid var(--or);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--or);
  color: var(--noir);
  padding: 0.6rem 1rem;
  z-index: 10000;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

.container {
  width: min(var(--maxw), 90%);
  margin-inline: auto;
}

/* ---------- Typographie ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  margin: 0 0 0.55em;
  letter-spacing: 0.035em;
  color: var(--ivoire);
}

h1 { font-size: clamp(2.8rem, 8vw, 6rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); }

p { margin: 0 0 1.15em; }

.lead {
  font-size: clamp(1.25rem, 2.3vw, 1.5rem);
  font-style: italic;
  color: var(--ivoire-doux);
}

/* Titres à lettrine dorée */
.titre-or {
  background: linear-gradient(115deg, var(--or-vif) 20%, var(--or) 45%, #f6e3b4 60%, var(--or) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Eyebrow doré, signature typographique */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.8rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1.2rem;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--or));
}
.eyebrow::after { background: linear-gradient(90deg, var(--or), transparent); }
.eyebrow--left::before { display: none; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.site-header.is-scrolled {
  background: rgba(16, 10, 13, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 163, 92, 0.25);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.16em;
  color: var(--ivoire);
}
.brand-name span { color: var(--or-vif); }
.brand-tag {
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--or);
  margin-top: 0.35rem;
}

.nav-list {
  display: flex;
  gap: clamp(0.9rem, 2.2vw, 2.1rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  position: relative;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivoire);
  padding: 0.4rem 0.1rem;
  transition: color var(--transition);
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--or-vif);
  transition: right var(--transition);
}
.nav-list a:hover { color: var(--or-vif); }
.nav-list a:hover::after { right: 0; }
.nav-list a[aria-current="page"] { color: var(--or-vif); }
.nav-list a[aria-current="page"]::after { right: 0; }

.nav-toggle {
  display: none;
  background: rgba(16, 10, 13, 0.5);
  border: 1px solid var(--or);
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  color: var(--or-vif);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ---------- HÉRO cinématographique ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  isolation: isolate;
  padding: 7rem 0 5rem;
}
.hero--page { min-height: 72svh; }

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  /* secours si la photo ne charge pas : le héros reste beau */
  background:
    radial-gradient(70% 60% at 50% 35%, rgba(142, 42, 71, 0.4), transparent 70%),
    linear-gradient(180deg, #1c1016, var(--noir));
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: kenburns 22s ease-out forwards;
}
@keyframes kenburns {
  to { transform: scale(1); }
}

/* Voile : du noir de cave vers l'image, avec une lueur grenat */
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 50% 42%, rgba(109, 32, 56, 0.32), transparent 70%),
    linear-gradient(to bottom, rgba(16, 10, 13, 0.72) 0%, rgba(16, 10, 13, 0.45) 42%, var(--noir) 96%);
}

.hero-inner { max-width: 900px; padding-inline: 1.2rem; }

/* Filet d'encadrement : l'étiquette devient un écrin */
.hero-frame {
  position: absolute;
  inset: clamp(0.9rem, 2.5vw, 1.8rem);
  border: 1px solid rgba(201, 163, 92, 0.4);
  pointer-events: none;
}
.hero-frame::before,
.hero-frame::after,
.hero-frame .coin::before,
.hero-frame .coin::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border-color: var(--or-vif);
  border-style: solid;
  border-width: 0;
}
.hero-frame::before { top: -1px; left: -1px; border-top-width: 2px; border-left-width: 2px; }
.hero-frame::after { top: -1px; right: -1px; border-top-width: 2px; border-right-width: 2px; }
.hero-frame .coin::before { bottom: -1px; left: -1px; border-bottom-width: 2px; border-left-width: 2px; }
.hero-frame .coin::after { bottom: -1px; right: -1px; border-bottom-width: 2px; border-right-width: 2px; }

.hero h1 {
  margin-bottom: 0.35em;
  text-wrap: balance;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.55);
}
.hero p {
  max-width: 62ch;
  margin-inline: auto;
  font-size: clamp(1.15rem, 2.1vw, 1.4rem);
  color: var(--ivoire-doux);
}

.hero-millesime {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  letter-spacing: 0.4em;
  color: var(--or);
  margin-top: 2.2rem;
  font-size: 0.95rem;
}
.hero-millesime::before,
.hero-millesime::after {
  content: "◆";
  font-size: 0.5rem;
  color: var(--or-sombre);
}

.hero-actions {
  display: flex;
  gap: 1.1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.4rem;
}

/* Indicateur de défilement */
.scroll-cue {
  position: absolute;
  bottom: clamp(1.6rem, 4vh, 3rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--or);
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  text-decoration: none;
}
.scroll-cue span.trait {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--or), transparent);
  animation: cue 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes cue {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Apparition orchestrée du héros */
.hero .fade-seq {
  opacity: 0;
  transform: translateY(26px);
  animation: fadeUp 1s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.hero .fade-seq:nth-child(1) { animation-delay: 0.15s; }
.hero .fade-seq:nth-child(2) { animation-delay: 0.35s; }
.hero .fade-seq:nth-child(3) { animation-delay: 0.6s; }
.hero .fade-seq:nth-child(4) { animation-delay: 0.85s; }
.hero .fade-seq:nth-child(5) { animation-delay: 1.05s; }
@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

/* ---------- Boutons ---------- */
.btn {
  position: relative;
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.88rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.3rem;
  border: 1px solid var(--or);
  color: var(--or-vif);
  background: transparent;
  overflow: hidden;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), box-shadow var(--transition);
  z-index: 1;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, var(--or) 0%, var(--or-vif) 55%, var(--or) 100%);
  transform: translateY(101%);
  transition: transform var(--transition);
  z-index: -1;
}
.btn:hover { color: var(--noir); box-shadow: 0 8px 34px rgba(201, 163, 92, 0.35); }
.btn:hover::before { transform: translateY(0); }

.btn-or {
  background: linear-gradient(115deg, var(--or) 0%, var(--or-vif) 55%, var(--or) 100%);
  color: var(--noir);
}
.btn-or::before { background: var(--ivoire); }
.btn-or:hover { color: var(--noir); }

.btn-grenat { border-color: var(--or); color: var(--or-vif); }
.btn-ghost { border-color: rgba(243, 234, 217, 0.45); color: var(--ivoire); }
.btn-ghost::before { background: var(--ivoire); }

/* ---------- Sections ---------- */
.section {
  position: relative;
  padding: clamp(4.5rem, 10vw, 8rem) 0;
}
.section--panneau { background: var(--noir-2); }
.section--grenat {
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(142, 42, 71, 0.35), transparent 60%),
    linear-gradient(180deg, var(--noir-2), var(--noir));
}
.section--blush { background: var(--noir-2); }

/* Filet doré entre les sections */
.section + .section::before,
.section--panneau::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(520px, 70%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 163, 92, 0.55), transparent);
}

.section-head { max-width: 70ch; margin-bottom: 3rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--ivoire-doux); }

/* ---------- Grilles ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: center;
}

/* ---------- Cartes ---------- */
.card {
  position: relative;
  background: linear-gradient(170deg, var(--noir-3), var(--noir-2));
  border: 1px solid rgba(201, 163, 92, 0.22);
  padding: 2.2rem 1.9rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.9rem;
  right: 1.9rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
  opacity: 0.7;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 163, 92, 0.55);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.card h3 { color: var(--or-vif); margin-top: 0.1rem; }
.card p { margin-bottom: 0; color: var(--ivoire-doux); font-size: 1.05rem; }

/* ---------- Images ---------- */
.figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(170deg, var(--noir-3), var(--noir-2));
}
.figure::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(232, 201, 135, 0.55);
  pointer-events: none;
}
.figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.figure--portrait img { aspect-ratio: 3 / 4; }
.figure:hover img { transform: scale(1.05); }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.8rem);
}
.gallery .figure:nth-child(2) { transform: translateY(clamp(0px, 3vw, 34px)); }

/* ---------- Programme : le registre de cave ---------- */
.seances { display: grid; gap: 0; }
.seance {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.2rem, 3.5vw, 2.6rem);
  padding: 1.6rem 0.4rem;
  border-bottom: 1px solid rgba(201, 163, 92, 0.18);
  transition: background var(--transition), padding var(--transition);
}
.seance:first-child { border-top: 1px solid rgba(201, 163, 92, 0.18); }
.seance:hover {
  background: linear-gradient(90deg, rgba(109, 32, 56, 0.22), transparent 70%);
  padding-left: 1.2rem;
}
.seance-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 5.2rem;
  color: var(--or-vif);
}
.seance-date .jour {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
}
.seance-date .mois {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--or);
  margin-top: 0.35rem;
}
.seance-body h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  letter-spacing: 0.04em;
}
.seance-body .salle {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--or);
}
.seance-num {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: rgba(201, 163, 92, 0.5);
}

/* ---------- Adhésion : cartes de cave ---------- */
.packs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 440px));
  justify-content: center;
  gap: clamp(1.6rem, 4vw, 3rem);
}
.pack {
  position: relative;
  background: linear-gradient(170deg, var(--noir-3), var(--noir-2));
  padding: 2.8rem 2.2rem 2.5rem;
  text-align: center;
  border: 1px solid transparent;
  background-clip: padding-box;
  transition: transform var(--transition), box-shadow var(--transition);
}
/* liseré dégradé or */
.pack::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(160deg, var(--or-vif), rgba(201, 163, 92, 0.25) 40%, var(--or-sombre));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.pack:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(232, 201, 135, 0.25);
}
.pack h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--or-vif);
}
.pack .prix {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6vw, 4.6rem);
  line-height: 1;
  margin: 1rem 0 0.3rem;
  background: linear-gradient(115deg, var(--or-vif), #f6e3b4 50%, var(--or));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pack .prix small { font-size: 1.4rem; }
.pack p { color: var(--ivoire-doux); font-size: 1.05rem; }
.pack .btn { margin-top: 1.2rem; }

/* ---------- Équipe ---------- */
.team-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 400px));
  justify-content: center;
  gap: clamp(1.6rem, 4vw, 3.5rem);
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

/* Photo panoramique du bureau : toujours visible en entier, jamais recadrée */
.member--panorama { max-width: 980px; margin-inline: auto; }
.figure--panorama { margin-bottom: 1.2rem; }
.figure--panorama img {
  aspect-ratio: auto;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.member { text-align: center; }
.member .figure { margin-bottom: 1.2rem; }
.member h3 { margin-bottom: 0.2rem; color: var(--ivoire); }
.member .role {
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--or);
}

.bureau-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.5rem;
  font-size: 1.05rem;
  color: var(--ivoire-doux);
}
.bureau-list li::before { content: "❧ "; color: var(--or); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.contact-info dl { margin: 0; }
.contact-info dt {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--or);
  margin-top: 1.6rem;
}
.contact-info dd { margin: 0.3rem 0 0; font-size: 1.35rem; }
.contact-info dd a { color: var(--ivoire); text-decoration: none; border-bottom: 1px solid rgba(201, 163, 92, 0.4); transition: color var(--transition), border-color var(--transition); }
.contact-info dd a:hover { color: var(--or-vif); border-color: var(--or-vif); }

.form {
  position: relative;
  background: linear-gradient(170deg, var(--noir-3), var(--noir-2));
  border: 1px solid rgba(201, 163, 92, 0.25);
  padding: 2.4rem 2.1rem;
}
.form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { margin-bottom: 1.3rem; display: flex; flex-direction: column; }
.form-field label {
  font-size: 0.76rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 0.45rem;
}
.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1.05rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(201, 163, 92, 0.3);
  background: rgba(16, 10, 13, 0.6);
  color: var(--ivoire);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--or-vif);
  box-shadow: 0 0 0 3px rgba(201, 163, 92, 0.18);
}

/* ---------- Bandeau CTA ---------- */
.cta-band { text-align: center; }
.cta-band h2 { text-wrap: balance; }
.cta-band .btn { margin-top: 1.4rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: #0b0709;
  border-top: 1px solid rgba(201, 163, 92, 0.25);
  color: var(--ivoire-doux);
  padding: 3.5rem 0 2rem;
  font-size: 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.4rem;
  margin-bottom: 2.4rem;
}
.site-footer h3 {
  color: var(--or-vif);
  font-size: 1.25rem;
  letter-spacing: 0.14em;
}
.site-footer a { color: var(--ivoire); text-decoration: none; transition: color var(--transition); }
.site-footer a:hover { color: var(--or-vif); }
.footer-nav { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.footer-bottom {
  border-top: 1px solid rgba(201, 163, 92, 0.18);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #8f8378;
}

/* ---------- Notes ---------- */
.note {
  border-left: 2px solid var(--or);
  background: linear-gradient(90deg, rgba(201, 163, 92, 0.08), transparent);
  padding: 1.2rem 1.5rem;
  font-size: 1.05rem;
  color: var(--ivoire-doux);
}
.note a { color: var(--or-vif); }

/* ---------- Apparitions au défilement ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.reveal.is-visible { opacity: 1; transform: none; }
/* décalage en cascade dans les grilles */
.grid-3 .reveal:nth-child(2), .team .reveal:nth-child(2), .gallery .reveal:nth-child(2) { transition-delay: 140ms; }
.grid-3 .reveal:nth-child(3), .team .reveal:nth-child(3), .gallery .reveal:nth-child(3) { transition-delay: 280ms; }
.seances .reveal:nth-child(odd) { transition-delay: 60ms; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .hero .fade-seq { opacity: 1; transform: none; transition: none; animation: none; }
  .hero-media img { animation: none; transform: none; }
  .scroll-cue span.trait { animation: none; }
  .btn, .card, .pack, .figure img, .seance { transition: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .grid-3, .gallery { grid-template-columns: repeat(2, 1fr); }
  .packs { grid-template-columns: minmax(0, 480px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery .figure:nth-child(2) { transform: none; }
}

@media (max-width: 720px) {
  body { font-size: 1.08rem; }

  .nav-toggle { display: inline-block; }
  .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(16, 10, 13, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201, 163, 92, 0.35);
    padding: 0.6rem 5%;
    display: none;
  }
  .nav-list.is-open { display: flex; }
  .nav-list a {
    display: block;
    padding: 1rem 0.2rem;
    border-bottom: 1px solid rgba(201, 163, 92, 0.15);
  }
  .nav-list a::after { display: none; }

  .grid-2, .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .seance { grid-template-columns: auto 1fr; }
  .seance-num { display: none; }
  .hero-frame { display: none; }
}

@media (max-width: 540px) {
  .grid-3, .gallery, .team-duo { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
