/* ==========================================================================
   Navi-Tour — feuille de style globale
   ========================================================================== */

:root {
  --moselle-50:#f3f8fa; --moselle-100:#dfebf0; --moselle-200:#b9d4de;
  --moselle-300:#89b5c6; --moselle-400:#5892a9; --moselle-500:#3d778f;
  --moselle-600:#2f6076; --moselle-700:#2a4f61; --moselle-800:#264252;
  --moselle-900:#223846; --moselle-950:#13232d;
  --gold-50:#fdf8ef; --gold-200:#f0dbb3; --gold-400:#d9b26a; --gold-500:#c69a4b; --gold-600:#a87e35; --gold-700:#8a6628;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(19,35,45,.06);
  --shadow-md: 0 8px 24px rgba(19,35,45,.08);
  --shadow-lg: 0 20px 50px rgba(19,35,45,.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--moselle-900);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: 0; background: none; font: inherit; color: inherit; }

/* Typography */
.font-display { font-family: 'Fraunces', Georgia, serif; font-weight: 600; letter-spacing: -0.01em; }
.t-eyebrow { font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-500); }
h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; color: var(--moselle-900); }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: 1.5rem; }

/* Layout helpers */
.container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }
.grid { display: grid; gap: 1.5rem; }
.flex { display: flex; }
.hidden { display: none; }
.text-center { text-align: center; }
.mt-2 { margin-top: .5rem; } .mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; } .mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; } .mt-12 { margin-top: 3rem; }

/* Sections */
section.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-alt { background: var(--moselle-50); }
.section-dark { background: var(--moselle-900); color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-title { position: relative; padding-bottom: 18px; }
.section-title::after { content:""; position: absolute; bottom: 0; left: 0; width: 48px; height: 3px; background: var(--gold-500); }
.section-title.center { padding-bottom: 22px; }
.section-title.center::after { left: 50%; transform: translateX(-50%); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 1.6rem; border-radius: 999px; font-size: .92rem; font-weight: 500; transition: all .25s ease; cursor: pointer; }
.btn-primary { background: var(--moselle-700); color: #fff; }
.btn-primary:hover { background: var(--moselle-800); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold-500); color: var(--moselle-950); font-weight: 600; }
.btn-gold:hover { background: var(--gold-600); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { border: 1px solid var(--moselle-200); color: var(--moselle-800); }
.btn-outline:hover { border-color: var(--moselle-700); color: var(--moselle-900); }
.btn-ghost-light { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(10px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.2); }

/* Chip / tag */
.chip { display: inline-flex; align-items: center; gap: .4rem; padding: .3rem .75rem; border-radius: 999px; font-size: .72rem; font-weight: 500; background: var(--moselle-100); color: var(--moselle-700); }
.chip-gold { background: rgba(198,154,75,.18); color: var(--gold-600); }
.chip-light { background: rgba(255,255,255,.15); color: #fff; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  transition: transform .4s cubic-bezier(.4,0,.2,1), background .3s ease;
}
.site-header.is-hidden { transform: translateY(-100%); }
.site-header.is-transparent {
  background: rgba(19,35,45,.25);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
}
.site-header.is-transparent .nav-link,
.site-header.is-transparent .brand-text,
.site-header.is-transparent .brand-sub,
.site-header.is-transparent .lang-select,
.site-header.is-transparent .cart-btn { color: #fff; }
.site-header.is-transparent .cart-btn { border-color: rgba(255,255,255,.4); }
.site-header.is-transparent .lang-select { border-color: rgba(255,255,255,.4); background: rgba(0,0,0,.25); color: #fff; }

.header-inner { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; white-space: nowrap; }
.brand-text { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 600; color: var(--moselle-800); line-height: 1; }
.brand-sub { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--moselle-500); margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 1.4rem; }
.nav-link { font-size: .9rem; font-weight: 500; color: var(--moselle-800); transition: color .2s; position: relative; padding: .4rem 0; white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--gold-500); }
.nav-link.has-sub { display: flex; align-items: center; gap: 4px; }

/* Dropdown */
.nav-item { position: relative; }
.nav-item > .nav-link.has-sub { padding-bottom: .9rem; margin-bottom: -.5rem; }
.dropdown {
  position: absolute; left: 0; top: 100%;
  min-width: 260px; background: #fff;
  border-radius: var(--radius); border: 1px solid var(--moselle-100);
  box-shadow: var(--shadow-lg); padding: .5rem;
  margin-top: 6px;
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}
/* Invisible bridge to prevent hover gap between trigger and dropdown */
.dropdown::before {
  content: ""; position: absolute; left: 0; right: 0;
  top: -10px; height: 12px; background: transparent;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown a { display: block; padding: .6rem .9rem; border-radius: 8px; font-size: .88rem; color: var(--moselle-800); }
.dropdown a:hover { background: var(--moselle-50); color: var(--gold-600); }
.dropdown-sep { border-top: 1px solid var(--moselle-100); margin: 4px 0; }

/* Header right side */
.header-actions { display: flex; align-items: center; gap: .6rem; }
.lang-select { font-size: .75rem; border: 1px solid var(--moselle-200); border-radius: 999px; padding: .35rem .9rem; background: #fff; color: var(--moselle-800); cursor: pointer; -webkit-appearance: none; appearance: none; padding-right: 1.6rem; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23374151'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .6rem center; }
.lang-select option { background: #fff; color: var(--moselle-800); }
.cart-btn {
  position: relative; width: 42px; height: 42px; border-radius: 999px;
  border: 1px solid var(--moselle-200); display: grid; place-items: center;
  color: var(--moselle-800); transition: all .2s;
}
.cart-btn:hover { border-color: var(--moselle-700); }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--gold-500); color: var(--moselle-950);
  font-size: .68rem; font-weight: 700; border-radius: 999px;
  width: 20px; height: 20px; display: grid; place-items: center;
}
.cart-badge.hidden { display: none; }

/* Mobile menu */
.menu-toggle { display: none; width: 42px; height: 42px; border-radius: 999px; border: 1px solid var(--moselle-200); }
.menu-toggle svg { stroke: currentColor; }

@media (max-width: 1023px) {
  .nav { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .site-header { border-bottom: none !important; }
}
@media (max-width: 480px) {
  .header-inner { padding: 0 .75rem; gap: .5rem; height: 64px; }
  .brand svg { width: 30px; height: 30px; }
  .brand { gap: .5rem; }
  .brand-text { font-size: 1.05rem; }
  .brand-sub { display: none; }
  .header-actions { gap: .4rem; }
  .lang-select { font-size: .7rem; padding: .25rem .6rem; padding-right: 1.3rem; }
  .cart-btn, .menu-toggle { width: 36px; height: 36px; }
  .cart-btn svg { width: 17px; height: 17px; }
  .menu-toggle svg { width: 17px; height: 17px; }
}

/* Mobile nav drawer — inside .site-header so the blur covers everything */
.mobile-nav {
  max-height: 0; overflow: hidden; transition: max-height .4s ease;
}
.mobile-nav.open { max-height: 100vh; }
.mobile-nav-inner { padding: 1rem 1.5rem 1.5rem; display: flex; flex-direction: column; gap: .4rem; }
.mobile-nav a { padding: .8rem .6rem; font-size: 1rem; font-weight: 500; color: var(--moselle-900); border-bottom: 1px solid rgba(0,0,0,.06); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  color: #fff; overflow: hidden;
  clip-path: inset(0);
  -webkit-clip-path: inset(0);
  z-index: 0;
}
.hero + * { position: relative; z-index: 2; background: #fff; }
.hero-media {
  position: absolute; inset: 0; z-index: 0;
}
.hero-media img, .hero-media video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-video {
  position: absolute; top: 50%; left: 50%; width: 100vw; height: 100vh;
  min-width: 177.78vh; /* 16/9 × 100vh */
  min-height: 56.25vw; /* 9/16 × 100vw */
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-fallback {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(19,35,45,.25) 0%, rgba(19,35,45,.45) 50%, rgba(19,35,45,.6) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; padding: 0 1.5rem; max-width: 1240px; margin: 0 auto; width: 100%; }
.hero-content h1 { color: #fff; font-size: clamp(2.8rem, 6vw, 5.5rem); max-width: 800px; }
.hero-content h1 em { color: var(--gold-400); font-style: normal; }
.hero-lead { max-width: 520px; font-size: 1.1rem; color: rgba(255,255,255,.9); margin-top: 1.5rem; }
.hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .75rem; }

.hero-compact { min-height: 50vh; }
.hero-compact .hero-content { padding-top: 6rem; padding-bottom: 3rem; }
.hero-compact h1 { font-size: clamp(2.4rem, 5vw, 4rem); }

/* Quick tiles */
.quick-tiles-wrap {
  position: relative; z-index: 2; background: #fff;
  padding-top: 0.1px; /* empêche le margin-collapse */
}
.quick-tiles {
  max-width: 1240px; margin: -42px auto 0; padding: 0 1.5rem; position: relative; z-index: 10;
}
.quick-tiles-grid {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden;
}
.quick-tile { padding: 1.4rem; display: flex; align-items: center; gap: 1rem; border-right: 1px solid var(--moselle-100); transition: background .2s; }
.quick-tile:last-child { border-right: 0; }
.quick-tile:hover { background: var(--moselle-50); }
.quick-tile-icon { font-size: 1.8rem; line-height: 1; }
.quick-tile-title { font-family: 'Fraunces', serif; font-size: 1.05rem; color: var(--moselle-900); }
.quick-tile-sub { font-size: .72rem; color: var(--moselle-500); margin-top: 2px; }

@media (max-width: 900px) {
  .quick-tiles-grid { grid-template-columns: 1fr 1fr; }
  .quick-tile { border-right: 1px solid var(--moselle-100); border-bottom: 1px solid var(--moselle-100); }
  .quick-tile:nth-child(even) { border-right: 0; }
}
@media (max-width: 520px) { .quick-tiles-grid { grid-template-columns: 1fr; } .quick-tile { border-right: 0; } }

/* ==========================================================================
   CARDS (cruises / events)
   ========================================================================== */
.card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--moselle-100); transition: transform .35s ease, box-shadow .35s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-img-wrap { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.card:hover .card-img-wrap img { transform: scale(1.06); }
.card-date {
  position: absolute; top: 14px; left: 14px;
  background: #fff; border-radius: 10px; padding: .4rem .7rem;
  text-align: center; box-shadow: var(--shadow-sm);
}
.card-date-m { font-size: .6rem; text-transform: uppercase; letter-spacing: .1em; color: var(--moselle-500); }
.card-date-d { font-family: 'Fraunces', serif; font-size: 1.25rem; color: var(--moselle-900); line-height: 1; margin-top: 2px; }
.card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.2rem; margin-top: .6rem; }
.card-meta { font-size: .75rem; color: var(--moselle-500); margin-top: 4px; }
.card-desc { font-size: .88rem; color: var(--moselle-700); margin-top: .75rem; flex: 1; }
.card-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 1.25rem; }
.card-price { font-family: 'Fraunces', serif; font-size: 1.25rem; color: var(--moselle-900); }
.card-price small { font-family: 'Inter', sans-serif; font-size: .7rem; color: var(--moselle-500); font-weight: 400; }

/* ==========================================================================
   CONVERSION — Éléments de rareté & conversion
   ========================================================================== */
@keyframes nt-dot-pulse {
  0%,100% { opacity:1; box-shadow: 0 0 0 0 rgba(255,120,120,.55); }
  50%      { opacity:.45; box-shadow: 0 0 0 6px rgba(255,120,120,0); }
}
@keyframes nt-shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
@keyframes nt-gauge-in {
  from { width: 0; }
  to   { width: var(--gauge-w); }
}
@keyframes nt-viewer-blink {
  0%,100% { opacity: 1; }
  50%     { opacity: .4; }
}
@keyframes nt-count-flip {
  from { opacity: 0; transform: translateY(-5px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes nt-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes nt-pop-in {
  0%   { opacity: 0; transform: translate(-50%,-42%) scale(.88); }
  70%  { transform: translate(-50%,-50%) scale(1.02); }
  100% { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}

/* ── Barre urgence en haut (à l'intérieur du .site-header) ── */
.nt-urgence-bar {
  background: linear-gradient(90deg, #5c0f0f, #8b1515, #5c0f0f);
  color: #fff; position: relative; overflow: hidden;
}
.nt-urgence-bar::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
  animation: nt-shimmer 3s ease-in-out infinite;
}
.nt-urgence-inner {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  max-width: 1240px; margin: 0 auto; padding: .42rem 48px .42rem 1.5rem;
  font-size: .76rem; position: relative; white-space: nowrap;
}
.nt-urgence-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #ff6b6b;
  flex-shrink: 0; animation: nt-dot-pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 6px 2px rgba(255,107,107,.5);
}
/* Bloc infos : date · nom · places */
.nt-urgence-left {
  display: flex; align-items: center; gap: 0;
  color: rgba(255,255,255,.88); font-size: .77rem; flex-shrink: 0;
}
.nt-urgence-date   { opacity: .82; }
.nt-urgence-name   { font-weight: 700; color: #fff; }
.nt-urgence-places { opacity: .78; }
.nt-sep-inner {
  margin: 0 8px; opacity: .35; user-select: none; font-size: .7rem;
}
/* Séparateur vertical */
.nt-urgence-sep {
  width: 1px; align-self: stretch; margin: 5px 2px;
  background: rgba(255,255,255,.2); flex-shrink: 0;
}
/* Bloc compte à rebours */
.nt-urgence-cd-wrap { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nt-urgence-cd-label {
  font-size: .72rem; color: rgba(255,255,255,.7);
  text-transform: uppercase; letter-spacing: .04em; white-space: nowrap;
}
.nt-urgence-cd {
  font-family: 'Fraunces', serif; font-size: .98rem; font-weight: 700;
  color: #f5b731; letter-spacing: .05em; white-space: nowrap;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 10px rgba(245,183,49,.4);
}
/* Bouton CTA — couleur or pour cohérence avec le countdown */
.nt-urgence-btn {
  display: inline-flex; align-items: center; gap: 4px;
  background: #f5b731; color: #3a0a0a;
  padding: 3px 14px; height: 24px; border-radius: 3px;
  font-size: .7rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; white-space: nowrap; flex-shrink: 0;
  transition: background .18s, transform .15s, box-shadow .18s;
}
.nt-urgence-btn:hover {
  background: #ffc94a; transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(245,183,49,.45);
}
/* Fermer — absolu à droite pour ne pas décaler le centrage */
.nt-urgence-close {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,.45);
  cursor: pointer; font-size: .82rem; width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px; transition: color .18s, background .18s; padding: 0;
}
.nt-urgence-close:hover { color: #fff; background: rgba(255,255,255,.1); }
/* Mobile */
@media(max-width:768px) {
  .nt-urgence-inner { justify-content: space-between; padding-right: 10px; }
  .nt-urgence-date, .nt-urgence-places, .nt-sep-inner, .nt-urgence-sep, .nt-urgence-cd-label { display: none; }
  .nt-urgence-close { position: static; transform: none; }
}

/* ── Countdown widget sous le hero (#nt-countdown) ── */
.nt-hero-cd {
  background: var(--moselle-950);
  color: #fff;
  display: flex; align-items: center; gap: 0;
  overflow: hidden;
  transition: opacity .4s ease, transform .4s ease;
}
.nt-hero-cd.scrolled { opacity: 0; transform: translateY(-8px); pointer-events: none; }
.nt-hero-cd-label {
  padding: .9rem 1.5rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-400); white-space: nowrap; border-right: 1px solid rgba(255,255,255,.1);
}
.nt-hero-cd-timer {
  display: flex; gap: 0; padding: 0 1rem;
}
.nt-hero-cd-unit {
  display: flex; flex-direction: column; align-items: center;
  padding: .65rem .75rem; min-width: 56px;
}
.nt-hero-cd-num {
  font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 700;
  color: #fff; line-height: 1; min-width: 2ch; text-align: center;
}
.nt-hero-cd-lbl {
  font-size: .55rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-top: 3px;
}
.nt-hero-cd-info {
  display: flex; align-items: center; gap: 1rem;
  margin-left: auto; padding: .65rem 1.5rem;
  border-left: 1px solid rgba(255,255,255,.1);
  text-decoration: none; transition: background .2s;
}
.nt-hero-cd-info:hover { background: rgba(255,255,255,.05); }
.nt-hero-cd-name { font-size: .85rem; font-weight: 600; color: #fff; }
.nt-hero-cd-date { font-size: .75rem; color: rgba(255,255,255,.55); }
.nt-hero-cd-go {
  font-size: .78rem; font-weight: 700; color: var(--gold-400);
  white-space: nowrap;
}
@media(max-width: 768px) {
  .nt-hero-cd { flex-wrap: wrap; }
  .nt-hero-cd-label { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); width: 100%; }
  .nt-hero-cd-info { border-left: none; border-top: 1px solid rgba(255,255,255,.1); width: 100%; margin-left: 0; }
}

/* ── Barre sticky bas de page ── */
.nt-sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--moselle-950);
  color: #fff;
  box-shadow: 0 -4px 30px rgba(13,35,45,.35);
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.34,1.56,.64,1);
}
.nt-sticky-bar.visible { transform: translateY(0); }
.nt-sticky-inner {
  max-width: 1240px; margin: 0 auto;
  padding: .9rem 1.5rem;
  display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap;
}
.nt-sticky-left { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.nt-sticky-label { font-size: .68rem; color: rgba(255,255,255,.55); letter-spacing: .06em; }
.nt-sticky-label strong { color: var(--gold-400); }
.nt-sticky-title { font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 600; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nt-sticky-center { display: flex; align-items: center; gap: .5rem; }
.nt-sticky-cd { font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 700; color: var(--gold-400); letter-spacing: .04em; min-width: 80px; }
.nt-sticky-right { display: flex; align-items: center; gap: .6rem; }
.nt-sticky-btn {
  display: inline-flex; align-items: center;
  background: var(--gold-500); color: #fff;
  padding: .6rem 1.4rem; border-radius: 999px;
  font-size: .84rem; font-weight: 700; white-space: nowrap;
  transition: background .25s, transform .2s;
}
.nt-sticky-btn:hover { background: var(--gold-600); transform: translateY(-1px); }
.nt-sticky-close {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.6);
  font-size: .8rem; display: grid; place-items: center;
  transition: background .2s, color .2s; flex-shrink: 0;
}
.nt-sticky-close:hover { background: rgba(255,255,255,.2); color: #fff; }
@media(max-width:640px) {
  .nt-sticky-center { display: none; }
  .nt-sticky-inner { padding: .7rem 1rem; }
}

/* ── Popup exit intent ── */
.nt-popup-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(10,20,30,.7); backdrop-filter: blur(5px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.nt-popup-overlay.show { opacity: 1; visibility: visible; }
.nt-popup-box {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-42%) scale(.88);
  width: 90%; max-width: 430px;
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), opacity .3s ease;
  opacity: 0;
}
.nt-popup-overlay.show .nt-popup-box {
  transform: translate(-50%,-50%) scale(1);
  opacity: 1;
}
.nt-popup-photo {
  height: 150px; position: relative;
  background: linear-gradient(180deg,#040d1a 0%,#0a1e38 20%,#1a3d6a 40%,#4a80a8 55%,#c8b87a 67%,#d4a050 75%,#783010 88%,#200c04 100%);
}
.nt-popup-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(4,13,26,.75) 100%);
}
.nt-popup-photo-text {
  position: absolute; bottom: 14px; left: 20px; right: 44px; z-index: 1; color: #fff;
}
.nt-popup-photo-title { font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 700; }
.nt-popup-photo-sub   { font-size: .75rem; opacity: .75; margin-top: 2px; }
.nt-popup-x {
  position: absolute; top: 10px; right: 10px; z-index: 5;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.2); color: #fff;
  font-size: .85rem; display: grid; place-items: center;
  transition: background .2s;
}
.nt-popup-x:hover { background: rgba(255,255,255,.35); }
.nt-popup-body { padding: 22px 26px 26px; }
.nt-popup-tag {
  display: inline-block; background: rgba(198,154,75,.12);
  color: var(--gold-600); font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 11px; border-radius: 20px; border: 1px solid rgba(198,154,75,.3);
  margin-bottom: 10px;
}
.nt-popup-title { font-family: 'Fraunces', serif; font-size: 1.35rem; color: var(--moselle-900); font-weight: 700; margin-bottom: 7px; line-height: 1.2; }
.nt-popup-text { font-size: .85rem; color: var(--moselle-600); line-height: 1.55; margin-bottom: 16px; }
.nt-popup-code-wrap {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--moselle-50); border: 2px dashed var(--gold-400);
  border-radius: 10px; padding: 12px 14px;
  cursor: pointer; margin-bottom: 14px;
  transition: background .2s;
}
.nt-popup-code-wrap:hover { background: #ece5d8; }
.nt-popup-code { font-family: monospace; font-size: 1.2rem; font-weight: 800; color: var(--moselle-900); letter-spacing: .1em; }
.nt-popup-copy-hint { font-size: .7rem; color: var(--moselle-500); margin-top: 3px; }
.nt-popup-copied { font-size: .78rem; font-weight: 600; color: #27ae60; display: none; margin-bottom: 10px; }
.nt-popup-cta {
  display: block; text-align: center;
  background: var(--gold-500); color: #fff;
  padding: 13px; border-radius: 10px;
  font-weight: 700; font-size: .9rem;
  transition: background .25s, transform .2s;
}
.nt-popup-cta:hover { background: var(--gold-600); transform: translateY(-1px); }
.nt-popup-dismiss {
  display: block; text-align: center; margin-top: 10px;
  font-size: .75rem; color: var(--moselle-400);
  cursor: pointer; text-decoration: underline; transition: color .2s;
}
.nt-popup-dismiss:hover { color: var(--moselle-700); }

/* -- Badge urgence sur les cards -- */
.card-urgence-badge {
  position: absolute; top: 10px; left: 10px; z-index: 5;
  background: linear-gradient(135deg, #7a1000, #b81500);
  color: #fff; padding: 4px 10px; border-radius: 4px;
  font-size: .68rem; font-weight: 700; letter-spacing: .03em;
  animation: nt-dot-pulse 2.5s ease-in-out infinite;
  max-width: calc(100% - 20px); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.card-urgence-badge.is-complet { background: #444; animation: none; }

/* -- Jauge de disponibilité -- */
.card-avail { margin-top: 10px; }
.card-avail-label {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .71rem; color: var(--moselle-500); margin-bottom: 5px;
  gap: 6px;
}
.card-avail-label span:first-child { flex-shrink: 0; }
.card-avail-label span:last-child  { text-align: right; font-weight: 600; color: var(--moselle-700); white-space: nowrap; }
.card-avail-track {
  height: 6px; background: var(--moselle-100); border-radius: 4px; overflow: hidden;
}
.card-avail-fill {
  height: 100%; border-radius: 4px;
  width: 0; animation: nt-gauge-in .9s .3s forwards;
}
.card-avail-fill.pct-low  { background: #27ae60; }
.card-avail-fill.pct-mid  { background: linear-gradient(90deg, #f39c12, #e67e22); }
.card-avail-fill.pct-high { background: linear-gradient(90deg, #e67e22, #c0392b); }
.card-avail-fill.pct-full { background: #c0392b; }

/* -- Compteur de viewers -- */
.card-viewers {
  display: flex; align-items: center; gap: 6px;
  font-size: .73rem; color: var(--moselle-400);
  margin-top: 8px;
}
.card-viewer-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #27ae60;
  flex-shrink: 0; animation: nt-viewer-blink 2.2s ease-in-out infinite;
}
.card-viewer-count {
  font-weight: 700; color: var(--moselle-700);
  display: inline-block;
}

/* Mobile — cartes */
@media (max-width: 600px) {
  .card-avail { margin-top: 8px; }
  .card-avail-label { font-size: .68rem; }
  .card-avail-track { height: 5px; }
  .card-viewers { font-size: .68rem; margin-top: 6px; }
  .card-urgence-badge { font-size: .64rem; padding: 3px 8px; top: 8px; left: 8px; }
}

/* Grids */
.grid-3 { display: grid; gap: 2rem; grid-template-columns: repeat(3, 1fr); }
.grid-4 { display: grid; gap: 1.5rem; grid-template-columns: repeat(4, 1fr); }
.grid-2 { display: grid; gap: 2rem; grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Filter bar */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.5rem; }
.filter-btn { padding: .4rem .9rem; border-radius: 999px; background: var(--moselle-100); color: var(--moselle-800); font-size: .78rem; font-weight: 500; cursor: pointer; transition: all .2s; }
.filter-btn:hover { background: var(--moselle-200); }
.filter-btn.active { background: var(--moselle-700); color: #fff; }

/* ==========================================================================
   DETAIL PAGE
   ========================================================================== */
.detail-grid { display: grid; gap: 3rem; grid-template-columns: 1fr 420px; }
@media (max-width: 1000px) { .detail-grid { grid-template-columns: 1fr; } }

/* Hero Slider */
.nt-hero-slider {
  position: relative; width: 100%; aspect-ratio: 16/10; border-radius: var(--radius); overflow: hidden;
}
.nt-hero-slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1s ease;
}
.nt-hero-slide.is-active { opacity: 1; }
.nt-hero-single-img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: var(--radius);
}
/* Hero Slider pour pages plein écran (histoire, mariages) */
.hero-media .nt-hero-slider {
  position: absolute; inset: 0; width: 100%; height: 100%; aspect-ratio: auto; border-radius: 0;
}
.hero-media .nt-hero-single-img,
.wedding-hero .nt-hero-single-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; aspect-ratio: auto; border-radius: 0;
}
.wedding-hero .nt-hero-slider {
  position: absolute; inset: 0; width: 100%; height: 100%; aspect-ratio: auto; border-radius: 0;
}

.detail-gallery img { border-radius: var(--radius); }
.detail-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: .6rem; margin-top: .6rem; }
@media (max-width: 600px) { .detail-thumbs { grid-template-columns: repeat(4, 1fr); } }
.detail-thumbs img { aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-sm); cursor: pointer; opacity: .65; transition: opacity .2s, outline-color .2s; outline: 2px solid transparent; outline-offset: 2px; }
.detail-thumbs img:hover { opacity: 1; }
.detail-thumbs img.is-active { opacity: 1; outline-color: var(--gold-500); }

.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.25rem; }
.info-box { background: var(--moselle-50); border-radius: var(--radius-sm); padding: 1rem; }
.info-box-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .15em; color: var(--moselle-500); }
.info-box-val { font-weight: 500; margin-top: 4px; }

.booking-box {
  position: sticky; top: 100px;
  background: #fff; border: 1px solid var(--moselle-100); border-radius: var(--radius);
  padding: 1.75rem; box-shadow: var(--shadow-sm);
}
.slot {
  display: flex; align-items: center; justify-content: space-between;
  padding: .8rem 1rem; border: 1px solid var(--moselle-100);
  border-radius: var(--radius-sm); cursor: pointer; margin-bottom: .5rem;
  transition: all .2s;
}
.slot:hover { border-color: var(--moselle-300); }
.slot input[type="radio"] { accent-color: var(--moselle-700); }
.slot input[type="radio"]:checked ~ .slot-wrap { color: var(--moselle-900); }
.slot.is-selected { border-color: var(--moselle-700); background: var(--moselle-50); }

.qty-row { display: flex; align-items: center; justify-content: space-between; margin-top: .6rem; }
.qty-ctrl { display: flex; align-items: center; gap: .75rem; }
.qty-btn { width: 32px; height: 32px; border-radius: 999px; border: 1px solid var(--moselle-200); background: #fff; }

/* ==========================================================================
   CART DRAWER
   ========================================================================== */
.drawer-overlay { position: fixed; inset: 0; background: rgba(19,35,45,.45); z-index: 60; opacity: 0; pointer-events: none; transition: opacity .3s; }
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100vh; width: 100%;
  max-width: 440px; background: #fff; z-index: 65;
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -20px 0 50px rgba(19,35,45,.15);
}
.drawer.open { transform: translateX(0); }
.drawer-head { padding: 1.5rem; border-bottom: 1px solid var(--moselle-100); display: flex; align-items: center; justify-content: space-between; }
.drawer-body { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: .8rem; }
.drawer-foot { padding: 1.5rem; border-top: 1px solid var(--moselle-100); }
.drawer-item { display: flex; gap: 1rem; padding: 1rem; border: 1px solid var(--moselle-100); border-radius: var(--radius-sm); }
.drawer-empty { text-align: center; color: var(--moselle-500); padding: 3rem 1rem; }

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-group { margin-bottom: 1rem; }
.form-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--moselle-500); display: block; }
.form-input, .form-select, .form-textarea {
  width: 100%; margin-top: .35rem; padding: .7rem .9rem;
  border: 1px solid var(--moselle-200); border-radius: var(--radius-sm);
  font-family: inherit; font-size: .9rem; background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: 0; border-color: var(--moselle-600); box-shadow: 0 0 0 3px rgba(47,96,118,.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-check { display: flex; gap: .5rem; font-size: .8rem; color: var(--moselle-600); align-items: flex-start; }
.form-check input { margin-top: 3px; }

.form-card { background: #fff; border: 1px solid var(--moselle-100); border-radius: var(--radius); padding: 2rem; }

/* ==========================================================================
   TIMELINE (history)
   ========================================================================== */
.timeline { border-left: 2px solid var(--gold-500); padding-left: 2rem; display: flex; flex-direction: column; gap: 2.5rem; margin-top: 3rem; }
.timeline-year { color: var(--gold-600); font-weight: 700; }
.timeline-item h3 { font-size: 1.3rem; margin-top: 4px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--moselle-950); color: #cfd9df; padding: 5rem 0 2rem; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { font-family: 'Fraunces', serif; font-size: 1.5rem; color: #fff; }
.footer-head { color: #fff; font-weight: 600; margin-bottom: 1rem; font-size: .78rem; text-transform: uppercase; letter-spacing: .15em; }
.footer-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; font-size: .88rem; }
.footer-list a:hover { color: var(--gold-400); }
.newsletter { display: flex; }
.newsletter input { flex: 1; background: var(--moselle-900); border: 1px solid var(--moselle-800); color: #fff; padding: .65rem 1rem; border-radius: 999px 0 0 999px; font-size: .85rem; }
.newsletter button { background: var(--gold-500); color: var(--moselle-950); padding: 0 1.25rem; border-radius: 0 999px 999px 0; font-weight: 600; }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--moselle-800); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .75rem; color: var(--moselle-400); }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.25,.46,.45,.94), transform .8s cubic-bezier(.25,.46,.45,.94);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal].delay-1 { transition-delay: .1s; }
[data-reveal].delay-2 { transition-delay: .2s; }
[data-reveal].delay-3 { transition-delay: .3s; }

@keyframes fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.animate-fade-up { animation: fade-up .8s ease both; }
.animate-delay-100 { animation-delay: .1s; }
.animate-delay-200 { animation-delay: .2s; }
.animate-delay-300 { animation-delay: .3s; }
.animate-delay-400 { animation-delay: .4s; }

@keyframes float-in { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }
.animate-float-in { animation: float-in .9s ease both; }

/* Subtle wave animation */
@keyframes wave { 0%,100% { transform: translateX(0); } 50% { transform: translateX(-20px); } }
.animate-wave { animation: wave 6s ease-in-out infinite; }

/* Scroll cue */
.scroll-cue { position: absolute; bottom: 5rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; z-index: 3; animation: float 2.5s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* Utilities */
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-xl { max-width: 38rem; }
.max-w-2xl { max-width: 44rem; }
.max-w-3xl { max-width: 52rem; }

/* Hide on small */
@media (max-width: 640px) {
  .hide-sm { display: none; }
  /* Sur mobile : n'afficher que la 1re carte dans les grilles marquées */
  .mobile-limit-1 > *:nth-child(n+2) { display: none; }
}

/* Contact icons row */
.contact-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.contact-list li { display: flex; align-items: center; gap: 1rem; font-size: .95rem; list-style: none; }
.contact-list .ico { color: var(--gold-500); width: 24px; text-align: center; }

/* Steps (rental) */
.steps { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.step { display: flex; gap: 1rem; }
.step-num { font-family: 'Fraunces', serif; font-size: 1.3rem; color: var(--gold-500); font-weight: 700; min-width: 40px; }

/* Logos strip */
.logos-strip { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; opacity: .6; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; }

/* ==========================================================================
   Reassurance bar (sous le hero)
   ========================================================================== */
.reassurance-bar {
  background: var(--moselle-50);
  border-bottom: 1px solid var(--moselle-100);
  padding: .9rem 0;
  font-size: .85rem;
  color: var(--moselle-700);
}
.reassurance-inner {
  display: flex; flex-wrap: wrap; justify-content: space-around;
  align-items: center; gap: 1rem 2rem;
}
.reassurance-inner span { display: inline-flex; align-items: center; gap: .5rem; }
.rb-icon { color: var(--gold-500); font-weight: 700; }
@media (max-width: 800px) {
  .reassurance-inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: .25rem; }
  .reassurance-inner span { white-space: nowrap; }
}

/* ==========================================================================
   "Pourquoi nous choisir" — grille USP
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: #fff;
  border: 1px solid var(--moselle-100);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-300, #e0c891);
}
.why-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--moselle-50), #fff);
  display: grid; place-items: center;
  font-size: 1.7rem;
  border: 1px solid var(--moselle-100);
  margin-bottom: 1rem;
}
.why-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  margin-bottom: .5rem;
  color: var(--moselle-900);
}
.why-card p {
  font-size: .92rem;
  color: var(--moselle-700);
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   Barre flottante mobile "Réserver" (pages détail)
   ========================================================================== */
.mobile-book-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: 1px solid var(--moselle-100);
  box-shadow: 0 -4px 16px rgba(0,0,0,.08);
  padding: .7rem 1rem;
  z-index: 50;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.mobile-book-bar .mb-price {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  color: var(--moselle-900);
}
.mobile-book-bar .mb-price small { color: var(--moselle-500); font-size: .7rem; font-family: 'Inter', sans-serif; display: block; }
.mobile-book-bar .btn { padding: .75rem 1.4rem; font-size: .88rem; }
@media (max-width: 900px) {
  .mobile-book-bar { display: flex; }
  body.has-book-bar { padding-bottom: 80px; }
}

/* ==========================================================================
   Timeline (page Histoire)
   ========================================================================== */
.timeline {
  position: relative;
  margin: 3rem 0;
  padding-left: 2rem;
  border-left: 2px solid var(--moselle-100);
}
.timeline-item {
  position: relative;
  padding: 0 0 2.5rem 1.5rem;
}
.timeline-item::before {
  content: ""; position: absolute;
  left: -2.6rem; top: .3rem;
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--gold-500);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--gold-500);
}
.timeline-year {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: var(--gold-600);
  font-weight: 600;
  margin-bottom: .3rem;
}
.timeline-item h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  margin-bottom: .4rem;
}
.timeline-item p {
  font-size: .92rem;
  color: var(--moselle-700);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   Team grid (page Histoire)
   ========================================================================== */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}
.team-card { text-align: center; width: calc(25% - 1.2rem); min-width: 220px; }
@media (max-width: 1000px) { .team-card { width: calc(50% - .75rem); } }
@media (max-width: 500px)  { .team-card { width: 100%; } }
.team-card img {
  width: 100%; aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: .8rem;
}
.team-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  margin-bottom: .15rem;
}
.team-card .team-role {
  font-size: .8rem;
  color: var(--gold-600);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.team-card p {
  font-size: .85rem;
  color: var(--moselle-700);
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   Page Mariages — éléments dédiés
   ========================================================================== */
.wedding-hero {
  position: relative;
  min-height: 60vh;
  display: grid; place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.wedding-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,40,60,.55), rgba(20,40,60,.75));
}
.wedding-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 0;
}
.wedding-hero-content { position: relative; z-index: 1; padding: 5rem 1.5rem; max-width: 760px; }
.wedding-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); }
.wedding-hero p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-top: 1.5rem; }

.wedding-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; margin-top: 3rem;
}
@media (max-width: 700px) { .wedding-stats { grid-template-columns: repeat(2, 1fr); } }
.wedding-stat {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid var(--moselle-100);
  border-radius: var(--radius);
}
.wedding-stat .num {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  color: var(--gold-600);
  display: block;
  line-height: 1;
}
.wedding-stat .lbl {
  display: block; margin-top: .5rem;
  font-size: .82rem; color: var(--moselle-700);
  letter-spacing: .05em;
}

.wedding-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-top: 3rem;
}
@media (max-width: 800px) { .wedding-gallery { grid-template-columns: repeat(2, 1fr); } }
.wedding-gallery img {
  width: 100%; aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-sm, 8px);
  transition: transform .4s ease;
}
.wedding-gallery img:hover { transform: scale(1.03); }

.wedding-form {
  background: var(--moselle-50);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-top: 2rem;
}
.wedding-form-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
@media (max-width: 700px) { .wedding-form-grid { grid-template-columns: 1fr; } }
.wedding-form input,
.wedding-form select,
.wedding-form textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--moselle-200);
  border-radius: 10px;
  font-family: inherit; font-size: .95rem;
  background: #fff;
}
.wedding-form textarea { min-height: 120px; resize: vertical; grid-column: 1 / -1; }
.wedding-form label { font-size: .82rem; color: var(--moselle-700); display: block; margin-bottom: .35rem; }

/* ==========================================================================
   WOOCOMMERCE — Checkout personnalisé Navi-Tour
   ========================================================================== */

.woocommerce { padding-top: 100px; }

/* ── Layout checkout 2 colonnes ── */
.navitour-checkout { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem 4rem; }
.nt-checkout-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .nt-checkout-layout { grid-template-columns: 1fr; }
}

/* ── Titres ── */
.nt-checkout-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--moselle-900);
  margin-bottom: .5rem;
}
.nt-checkout-subtitle {
  color: var(--moselle-600);
  font-size: .95rem;
  margin-bottom: 2rem;
}

/* ── Cartes formulaire ── */
.nt-form-card {
  background: #fff;
  border: 1px solid var(--moselle-100);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.nt-form-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  color: var(--moselle-900);
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--gold-400);
}

/* ── Grille champs ── */
.nt-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem 1.25rem;
}
.nt-field { margin: 0; }
.nt-field-full { grid-column: 1 / -1; }
.nt-field-half { grid-column: span 1; }
@media (max-width: 550px) {
  .nt-form-grid { grid-template-columns: 1fr; }
  .nt-field-half { grid-column: 1; }
}

/* ── Inputs (placeholders uniquement, pas de labels au-dessus) ── */
.nt-input,
.navitour-checkout .form-row input.input-text,
.navitour-checkout .form-row textarea,
.navitour-checkout .form-row select {
  width: 100%;
  padding: .9rem 1rem;
  border: 1px solid var(--moselle-200);
  border-radius: var(--radius-sm);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .95rem;
  color: var(--moselle-900);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.nt-input::placeholder { color: var(--moselle-400); }
select.nt-input { appearance: auto; cursor: pointer; }
select.nt-input:invalid, select.nt-input option[disabled] { color: var(--moselle-400); }
textarea.nt-input { line-height: 1.6; }
.nt-input:focus,
.navitour-checkout .form-row input.input-text:focus,
.navitour-checkout .form-row select:focus {
  outline: none;
  border-color: var(--moselle-400);
  box-shadow: 0 0 0 3px rgba(61,119,143,.12);
}
.navitour-checkout .form-row { margin-bottom: .75rem; }

/* Cacher les labels WooCommerce sur le champ pays (on utilise le select directement) */
.nt-country-wrap label { display: none !important; }
.nt-country-wrap { margin: 0; padding: 0; }
.nt-country-wrap .woocommerce-input-wrapper { width: 100%; }

/* ── Code promo ── */
.nt-coupon-section { margin-bottom: 1.5rem; }
.nt-coupon-toggle {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  color: var(--moselle-600);
  cursor: pointer;
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--moselle-200);
  background: var(--moselle-50);
  width: 100%;
  transition: all .2s;
}
.nt-coupon-toggle:hover { border-color: var(--moselle-400); color: var(--moselle-800); }
.nt-coupon-chevron { margin-left: auto; transition: transform .2s; }
.nt-coupon-toggle.active .nt-coupon-chevron { transform: rotate(180deg); }
.nt-coupon-form {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 1rem;
}
.nt-coupon-form.nt-coupon-open {
  max-height: 80px;
  padding: 1rem;
}

/* Masquer le bandeau coupon par défaut de WooCommerce */
.woocommerce-form-coupon-toggle,
.checkout_coupon.woocommerce-form-coupon { display: none !important; }

/* Select2 (pays) */
.navitour-checkout .select2-container--default .select2-selection--single {
  height: auto;
  min-height: 46px;
  padding: .55rem 1rem;
  border: 1px solid var(--moselle-200);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  background: #fff;
}
.navitour-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--moselle-900);
  line-height: 1.4;
  padding: 0;
}
.navitour-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  top: 0;
}

/* ── Récapitulatif (sidebar) ── */
.nt-recap-card {
  background: #fff;
  border: 1px solid var(--moselle-100);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}
.nt-recap-items { margin-bottom: .5rem; }
.nt-recap-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: .8rem 0;
  border-bottom: 1px solid var(--moselle-100);
}
.nt-recap-item:last-child { border-bottom: none; }
.nt-recap-name { font-weight: 500; color: var(--moselle-900); font-size: .95rem; }
.nt-recap-qty { font-size: .8rem; color: var(--moselle-500); margin-top: 2px; }

/* Récapitulatif détaillé (checkout) */
.nt-recap-item-full {
  padding: 1rem 0;
  border-bottom: 1px solid var(--moselle-100);
}
.nt-recap-item-full:last-child { border-bottom: none; }
.nt-recap-item-full .nt-recap-name { margin-bottom: .75rem; }
.nt-recap-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .35rem 0;
}
.nt-recap-line-label {
  font-size: .85rem;
  color: var(--moselle-700);
}
.nt-recap-line-price {
  font-size: .75rem;
  color: var(--moselle-500);
}
.nt-recap-line-total {
  text-align: right;
  font-weight: 600;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  color: var(--moselle-900);
  margin-top: .5rem;
  padding-top: .5rem;
  border-top: 1px dashed var(--moselle-100);
}
.qty-ctrl-sm { gap: .5rem; }
.qty-ctrl-sm .qty-btn { width: 28px; height: 28px; font-size: .85rem; }
.nt-recap-price { font-weight: 600; color: var(--moselle-900); white-space: nowrap; }

.nt-recap-divider {
  height: 1px;
  background: var(--moselle-100);
  margin: .75rem 0;
}
.nt-recap-row {
  display: flex;
  justify-content: space-between;
  padding: .4rem 0;
  font-size: .92rem;
  color: var(--moselle-700);
}
.nt-recap-total {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--moselle-900);
  padding: .6rem 0;
}
.nt-recap-total span:last-child {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.35rem;
}

/* ── Paiement ── */
.nt-payment-section { margin-top: 1.5rem; }
.nt-payment-section .wc_payment_methods {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.nt-payment-section .wc_payment_methods li {
  padding: .7rem 0;
  border-bottom: 1px solid var(--moselle-100);
}
.nt-payment-section .wc_payment_methods li:last-child { border-bottom: none; }
.nt-payment-section .wc_payment_methods li label {
  font-weight: 500;
  color: var(--moselle-800);
  cursor: pointer;
  font-size: .92rem;
}
.nt-payment-section .payment_box {
  background: var(--moselle-50);
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  margin-top: .5rem;
  font-size: .85rem;
  color: var(--moselle-600);
}

/* ── Bouton confirmer ── */
.nt-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 1rem 2rem !important;
  font-size: 1rem !important;
  margin-top: .5rem;
}
.nt-secure-note {
  text-align: center;
  font-size: .72rem;
  color: var(--moselle-500);
  margin-top: .75rem;
}

/* ── Validation champs : bordure rouge ── */
.nt-input.nt-error {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, .15) !important;
}
.nt-input.nt-error::placeholder { color: #dc2626; opacity: .6; }
.nt-rgpd-check.nt-error { outline: 2px solid #dc2626; outline-offset: 4px; border-radius: 4px; }
.nt-country-wrap.nt-error select,
.nt-country-wrap.nt-error .nt-input { border-color: #dc2626 !important; box-shadow: 0 0 0 2px rgba(220, 38, 38, .15) !important; }

/* ── Masquer les erreurs WooCommerce par défaut sur le checkout custom ── */
.navitour-checkout .woocommerce-error,
.navitour-checkout .woocommerce-NoticeGroup,
.woocommerce-checkout .woocommerce-error {
  display: none !important;
}

/* ── Messages / infos WooCommerce (hors erreurs checkout) ── */
.woocommerce-message,
.woocommerce-info {
  background: var(--moselle-50);
  border-left: 4px solid var(--moselle-400);
  padding: 1rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 1.5rem;
  font-size: .92rem;
  color: var(--moselle-800);
}
.woocommerce-message::before,
.woocommerce-info::before { display: none; }
.woocommerce .woocommerce-notices-wrapper { margin-bottom: 1.5rem; }

/* ── Page panier WooCommerce (basique) ── */
.woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.woocommerce table.shop_table th {
  background: var(--moselle-50);
  color: var(--moselle-700);
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--moselle-100);
}
.woocommerce table.shop_table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--moselle-100);
  color: var(--moselle-800);
  font-size: .95rem;
  vertical-align: middle;
}

/* Boutons WooCommerce (panier) */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce .button,
.woocommerce a.checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 500;
  font-family: 'Inter', system-ui, sans-serif;
  transition: all .25s ease;
  cursor: pointer;
  border: none;
  background: var(--moselle-700);
  color: #fff;
  text-decoration: none;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce .button:hover,
.woocommerce a.checkout-button:hover {
  background: var(--moselle-800);
  color: #fff;
}
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: var(--gold-500);
  color: var(--moselle-950);
  font-weight: 600;
}
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  background: var(--gold-600);
  color: var(--moselle-950);
}

/* Totaux panier */
.woocommerce .cart_totals {
  background: var(--moselle-50);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-top: 2rem;
}
.woocommerce .cart_totals h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.woocommerce .cart_totals table { box-shadow: none; }

/* Panier vide */
.woocommerce .cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  font-size: 1.1rem;
  color: var(--moselle-500);
}
.woocommerce .return-to-shop { text-align: center; margin-top: 1.5rem; }

/* Supprimer du panier */
.woocommerce a.remove {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--moselle-100); color: var(--moselle-600) !important;
  font-size: 1.2rem; text-decoration: none; transition: all .2s;
}
.woocommerce a.remove:hover { background: #ef4444; color: #fff !important; }

/* ==========================================================================
   Page de confirmation (thankyou)
   ========================================================================== */

.nt-thankyou { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem 4rem; }

/* ── En-tête confirmation ── */
.nt-thankyou-header {
  text-align: center;
  padding: 3rem 1rem 2.5rem;
}
.nt-thankyou-icon {
  width: 72px; height: 72px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--moselle-50), #e8f4f0);
  border: 2px solid var(--moselle-200);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--moselle-600);
  margin-bottom: 1.25rem;
}
.nt-thankyou-failed .nt-thankyou-icon {
  background: #fef2f2;
  border-color: #fca5a5;
  color: #ef4444;
}
.nt-thankyou-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--moselle-900);
  margin-bottom: .5rem;
}
.nt-thankyou-subtitle {
  color: var(--moselle-600);
  font-size: .95rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Layout 2 colonnes ── */
.nt-thankyou-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .nt-thankyou-layout { grid-template-columns: 1fr; }
}

/* ── Méta commande (grille 2x2) ── */
.nt-order-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.nt-order-meta-item {
  background: var(--moselle-50);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
}
.nt-order-meta-label {
  display: block;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--moselle-500);
  margin-bottom: .25rem;
}
.nt-order-meta-value {
  font-weight: 500;
  color: var(--moselle-900);
  font-size: .95rem;
}
.nt-status-badge {
  display: inline-block;
  background: var(--gold-400);
  color: var(--moselle-950);
  font-size: .75rem;
  font-weight: 600;
  padding: .2rem .65rem;
  border-radius: 999px;
  text-transform: capitalize;
}

/* ── Adresse facturation ── */
.nt-billing-address p,
.nt-billing-contact p {
  margin: 0 0 .35rem;
  font-size: .92rem;
  color: var(--moselle-700);
  line-height: 1.5;
}
.nt-billing-address p:first-child {
  color: var(--moselle-900);
  font-size: 1rem;
}
.nt-billing-contact p {
  font-size: .88rem;
}

/* Bouton outline */
.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.4rem;
  border-radius: 999px;
  font-size: .88rem; font-weight: 500;
  border: 1.5px solid var(--moselle-300);
  color: var(--moselle-700);
  background: transparent;
  transition: all .25s;
  text-decoration: none;
}
.btn-outline:hover {
  border-color: var(--moselle-600);
  color: var(--moselle-900);
  background: var(--moselle-50);
}
