/* ============================================
   PLAGE DES LUCIOLES — Cap d'Antibes
   Vibe : La Môme Cannes · Riviera coloré festif
   ============================================ */

:root {
  /* Palette — exacte du brief */
  --coral: #EC4329;
  --coral-dark: #C8341D;
  --coral-soft: #F8D5CC;
  --azur: #1B7DB0;
  --azur-dark: #0F5478;
  --rose: #F8D5CC;
  --rose-deep: #F2BFB3;
  --sable: #E8D4A0;
  --sable-soft: #F0E4C2;
  --creme: #FAF7F1;
  --creme-warm: #F2EBDC;
  --nuit: #15314C;
  --nuit-soft: #2A4A66;
  --citron: #F5C249;

  /* Typography */
  --f-display: 'DM Serif Display', 'Cormorant Garamond', Georgia, serif;
  --f-script: 'Italianno', 'Brush Script MT', cursive;
  --f-body: 'Inter', -apple-system, system-ui, sans-serif;

  /* Layout */
  --container: 1280px;
  --container-narrow: 760px;
  --section: clamp(4rem, 8vw, 7rem);
  --radius: 14px;
  --radius-lg: 24px;
  --shadow-soft: 0 12px 40px rgba(21, 49, 76, 0.08);
  --shadow-hover: 0 20px 60px rgba(236, 67, 41, 0.18);

  /* Animation */
  --ease: cubic-bezier(.2, .8, .2, 1);
}

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

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

body {
  margin: 0;
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--nuit);
  background: var(--creme);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: var(--coral); color: var(--creme); }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--nuit);
  color: var(--creme);
  padding: .5rem 1rem;
  border-radius: 8px;
  z-index: 9999;
}
.skip-link:focus { left: 8px; }

/* ============================================
   CONTAINER
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(1.25rem, 4vw, 2.5rem);
  padding-right: clamp(1.25rem, 4vw, 2.5rem);
}
.container.narrow { max-width: var(--container-narrow); }

/* ============================================
   TYPO HELPERS
   ============================================ */
.eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--azur);
  padding: .4rem .9rem;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.eyebrow-coral { color: var(--coral); }
.eyebrow-azur { color: var(--azur); }
.eyebrow-rose { color: var(--coral); background: var(--rose); border-color: var(--rose); }
.eyebrow-yellow { color: var(--citron); border-color: var(--citron); }

.section-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  color: var(--nuit);
  margin: 0 0 1rem;
  letter-spacing: -.02em;
}
.section-title em {
  font-family: var(--f-script);
  font-style: normal;
  font-weight: 400;
  color: var(--coral);
  font-size: 1.4em;
  line-height: .8;
  margin: 0 .1em;
}
.section-title.light { color: var(--creme); }
.section-title.light em { color: var(--citron); }

.script-title {
  font-family: var(--f-script);
  font-weight: 400;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--coral);
  line-height: 1;
  margin: 0 0 1.2rem;
}

.section-head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head.center { text-align: center; }
.section-sub {
  font-size: 1.0625rem;
  color: var(--nuit-soft);
  max-width: 600px;
  margin: 0;
  line-height: 1.65;
}
.section-head.center .section-sub { margin: 0 auto; }
.section-sub.light { color: rgba(250, 247, 241, .85); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.6rem;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  border-radius: 999px;
  cursor: pointer;
  transition: all .35s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn-sm { padding: .65rem 1.2rem; font-size: .85rem; }
.btn-lg { padding: 1.05rem 2rem; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }

.btn-coral {
  background: var(--coral);
  color: var(--creme);
  box-shadow: 0 8px 24px rgba(236, 67, 41, .3);
  position: relative;
}
.btn-coral::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--azur);
  z-index: -1;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.btn-coral:hover {
  background: var(--azur);
  box-shadow: 0 12px 36px rgba(27, 125, 176, .4);
  transform: translateY(-2px);
}

.btn-azur-outline {
  background: transparent;
  color: var(--creme);
  border: 2px solid var(--creme);
}
.btn-azur-outline:hover {
  background: var(--creme);
  color: var(--nuit);
  transform: translateY(-2px);
}

.btn-cream {
  background: var(--creme);
  color: var(--nuit);
}
.btn-cream:hover {
  background: var(--citron);
  transform: translateY(-2px);
}

/* When section background is light, btn-azur-outline needs dark border */
.contact .btn-azur-outline,
.reservation .btn-azur-outline {
  color: var(--azur);
  border-color: var(--azur);
}
.contact .btn-azur-outline:hover,
.reservation .btn-azur-outline:hover {
  background: var(--azur);
  color: var(--creme);
}

/* ============================================
   CURSOR (desktop only)
   ============================================ */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--coral);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .2s var(--ease), background .2s var(--ease), width .2s, height .2s;
  display: none;
  mix-blend-mode: multiply;
}
@media (hover: hover) and (pointer: fine) {
  .cursor-dot { display: block; }
  body { cursor: none; }
  a, button, input, textarea, select, label, .moment, .cocktail, .transat-card, .temoignage { cursor: none; }
}
.cursor-dot.cursor-hover {
  transform: translate(-50%, -50%) scale(3);
  background: var(--citron);
  mix-blend-mode: multiply;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all .35s var(--ease);
  padding: 1.2rem 0;
}
.nav.scrolled {
  background: rgba(250, 247, 241, .94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(21, 49, 76, .06);
  padding: .8rem 0;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
}
.logo-mark { display: flex; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--f-display);
  font-size: 1.15rem;
  color: var(--nuit);
}
.logo-sub {
  font-family: var(--f-script);
  font-size: 1rem;
  color: var(--coral);
  margin-top: -3px;
}
.nav.hero-light:not(.scrolled) .logo-name { color: var(--creme); }
.nav.hero-light:not(.scrolled) .logo-sub { color: var(--coral-soft); }

.nav-links {
  display: none;
  gap: 1.8rem;
  font-size: .9rem;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: .4rem 0;
  color: var(--nuit);
  transition: color .25s var(--ease);
}
.nav.hero-light:not(.scrolled) .nav-links a { color: var(--creme); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--coral);
  transition: width .35s var(--ease);
}
.nav-links a:hover { color: var(--coral); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: .8rem; }

.burger {
  width: 32px; height: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--nuit);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.nav.hero-light:not(.scrolled) .burger span { background: var(--creme); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--nuit); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--nuit); }

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--creme);
  padding: 5rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-family: var(--f-display);
  font-size: 1.5rem;
  transform: translateY(-100%);
  transition: transform .45s var(--ease);
  z-index: 99;
  box-shadow: 0 20px 40px rgba(21, 49, 76, .12);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { padding: .3rem 0; color: var(--nuit); }
.mobile-menu a.btn { margin-top: 1rem; font-family: var(--f-body); font-size: 1rem; }

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .burger { display: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 7rem 1.5rem 4rem;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
  animation: hero-zoom 18s var(--ease) infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21, 49, 76, .35) 0%, transparent 30%, transparent 60%, rgba(21, 49, 76, .55) 100%),
    radial-gradient(ellipse at 50% 50%, transparent 0%, rgba(21, 49, 76, .25) 100%);
}

/* Parasols qui ondulent */
.parasols {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.parasol {
  position: absolute;
  width: 60px;
  height: 60px;
  bottom: 8%;
  border-radius: 60px 60px 0 0;
  background: var(--coral);
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
  transform-origin: bottom center;
  animation: sway 4s ease-in-out infinite;
  opacity: .9;
}
.parasol::before {
  content: '';
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 28px;
  background: var(--nuit);
}
.parasol::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,.4);
}
.parasol.p1 { left: 8%; width: 70px; height: 35px; animation-delay: -.5s; background: var(--coral); }
.parasol.p2 { left: 24%; width: 90px; height: 45px; bottom: 5%; animation-delay: -1.2s; background: var(--citron); }
.parasol.p3 { right: 28%; width: 80px; height: 40px; bottom: 10%; animation-delay: -2s; background: var(--rose-deep); }
.parasol.p4 { right: 6%; width: 70px; height: 35px; bottom: 6%; animation-delay: -.8s; background: var(--coral); }
@keyframes sway {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
}
.hero .eyebrow {
  background: rgba(250, 247, 241, .15);
  border-color: rgba(250, 247, 241, .5);
  color: var(--creme);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(3.5rem, 11vw, 8.5rem);
  line-height: .95;
  margin: 0 0 1rem;
  color: var(--creme);
  letter-spacing: -.02em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero-title .t-coral { color: var(--coral); text-shadow: 0 4px 24px rgba(0,0,0,.2); }
.hero-title .t-rose { color: var(--coral-soft); text-shadow: 0 4px 24px rgba(0,0,0,.2); }
.hero-title .t-script {
  font-family: var(--f-script);
  font-size: .55em;
  color: var(--citron);
  line-height: 1;
  margin: -.2em 0 -.15em;
  font-style: normal;
}
.hero-script {
  font-family: var(--f-script);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: var(--creme);
  margin: 1rem 0 2.5rem;
  line-height: 1;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  color: var(--creme);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: .8;
  z-index: 2;
}
.hero-scroll svg { animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

@media (min-width: 768px) {
  .parasol.p1 { width: 110px; height: 55px; }
  .parasol.p2 { width: 140px; height: 70px; }
  .parasol.p3 { width: 120px; height: 60px; }
  .parasol.p4 { width: 100px; height: 50px; }
}

/* ============================================
   INVITATION
   ============================================ */
.invitation {
  padding: var(--section) 0;
  text-align: center;
  background: var(--creme);
  position: relative;
}
.invitation-text {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--nuit);
  margin: 0;
}
.invitation-text strong { color: var(--coral); font-weight: 400; }
.invitation-deco {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

/* ============================================
   TIMELINE — UNE JOURNÉE
   ============================================ */
.journee {
  padding: var(--section) 0 calc(var(--section) - 2rem);
  background: linear-gradient(180deg, var(--creme) 0%, var(--sable-soft) 100%);
  overflow: hidden;
}
.timeline-scroller {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0 2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--coral) transparent;
}
.timeline-scroller::-webkit-scrollbar { height: 6px; }
.timeline-scroller::-webkit-scrollbar-track { background: transparent; }
.timeline-scroller::-webkit-scrollbar-thumb { background: var(--coral); border-radius: 3px; }

.timeline-track {
  display: flex;
  gap: 1.5rem;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  width: max-content;
}

.moment {
  flex: 0 0 auto;
  width: min(85vw, 360px);
  background: var(--creme);
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  position: relative;
}
.moment:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.moment-media {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.moment-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.moment:hover .moment-media img { transform: scale(1.06); }
.moment-body {
  padding: 1.5rem 1.75rem 1.75rem;
}
.moment-time {
  display: inline-block;
  font-family: var(--f-script);
  font-size: 2.2rem;
  color: var(--coral);
  line-height: 1;
  margin-bottom: .3rem;
}
.moment h3 {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0 0 .6rem;
  color: var(--nuit);
}
.moment p {
  font-size: .95rem;
  color: var(--nuit-soft);
  line-height: 1.6;
  margin: 0;
}

.moment-1 .moment-time { color: var(--citron); }
.moment-2 .moment-time { color: var(--coral); }
.moment-3 .moment-time { color: var(--rose-deep); }
.moment-4 .moment-time { color: var(--coral-dark); }
.moment-5 .moment-time { color: var(--azur); }

.timeline-hint {
  text-align: center;
  margin-top: 1rem;
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--nuit-soft);
  opacity: .6;
}
@media (min-width: 1024px) {
  .timeline-hint { display: none; }
}

@media (min-width: 768px) {
  .moment { width: 340px; }
}
@media (min-width: 1280px) {
  .moment { width: 380px; }
}

/* ============================================
   CARTE
   ============================================ */
.carte {
  padding: var(--section) 0;
  background: var(--creme);
}
.carte-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.carte-col {
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 2.25rem;
  position: relative;
  transition: transform .35s var(--ease);
}
.carte-col:hover { transform: translateY(-4px); }
.carte-col-coral {
  background: var(--coral-soft);
  color: var(--nuit);
}
.carte-col-rose {
  background: var(--rose);
  background: linear-gradient(135deg, var(--rose) 0%, var(--sable-soft) 100%);
}
.carte-col header {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1.5px solid rgba(21, 49, 76, .15);
}
.carte-emoji {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--creme);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  flex-shrink: 0;
}
.carte-col-rose .carte-emoji { color: var(--azur); }
.carte-col h3 {
  font-family: var(--f-display);
  font-size: 1.45rem;
  font-weight: 400;
  margin: 0;
  color: var(--nuit);
  letter-spacing: -.01em;
}
.carte-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.carte-col li {
  padding-bottom: 1.1rem;
  border-bottom: 1px dashed rgba(21, 49, 76, .18);
}
.carte-col li:last-child { border-bottom: 0; padding-bottom: 0; }
.dish {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.dish-name {
  font-family: var(--f-display);
  font-size: 1.05rem;
  color: var(--nuit);
  line-height: 1.3;
  flex: 1;
}
.dish-price {
  font-weight: 600;
  color: var(--coral);
  font-size: 1rem;
  white-space: nowrap;
}
.carte-col-rose .dish-price { color: var(--azur-dark); }
.dish-desc {
  font-size: .85rem;
  color: var(--nuit-soft);
  margin: .35rem 0 0;
  font-style: italic;
  line-height: 1.4;
}

.carte-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: .95rem;
  color: var(--nuit-soft);
}

@media (min-width: 768px) {
  .carte-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .carte-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   TRANSATS
   ============================================ */
.transats {
  position: relative;
  padding: var(--section) 0;
  overflow: hidden;
  color: var(--creme);
}
.transats-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.transats-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.transats-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(27, 125, 176, .8) 0%, rgba(21, 49, 76, .85) 100%);
}
.transats .container { position: relative; z-index: 1; }
.transats .section-head { text-align: center; }
.transats .section-head .section-sub { margin: 0 auto; }

.transats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.transat-card {
  background: var(--creme);
  color: var(--nuit);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  position: relative;
  text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  box-shadow: 0 20px 50px rgba(21, 49, 76, .3);
}
.transat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(21, 49, 76, .4);
}
.transat-featured {
  background: var(--coral);
  color: var(--creme);
  transform: translateY(-8px);
}
.transat-featured:hover { transform: translateY(-16px); }
.transat-tag {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 999px;
  background: var(--coral);
  color: var(--creme);
  font-weight: 600;
  margin-bottom: 1rem;
}
.transat-featured .transat-tag { background: var(--citron); color: var(--nuit); }
.transat-card h3 {
  font-family: var(--f-display);
  font-size: 1.8rem;
  font-weight: 400;
  margin: 0 0 .8rem;
}
.transat-price {
  font-family: var(--f-display);
  font-size: 1.3rem;
  margin: 0 0 1.5rem;
  color: var(--coral);
}
.transat-featured .transat-price { color: var(--creme); }
.transat-price span {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
}
.transat-price small {
  display: block;
  font-size: .85rem;
  font-weight: 400;
  font-family: var(--f-body);
  color: var(--nuit-soft);
  margin-top: .3rem;
}
.transat-featured .transat-price small { color: rgba(250, 247, 241, .85); }
.transat-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  font-size: .95rem;
}
.transat-card ul li {
  position: relative;
  padding-left: 1.5rem;
}
.transat-card ul li::before {
  content: '·';
  position: absolute;
  left: .4rem;
  color: var(--coral);
  font-size: 1.5rem;
  line-height: 1;
}
.transat-featured ul li::before { color: var(--citron); }
.transat-featured .btn-coral { background: var(--creme); color: var(--coral); }
.transat-featured .btn-coral:hover { background: var(--citron); color: var(--nuit); }

.transats-foot {
  text-align: center;
  margin-top: 2.5rem;
  font-family: var(--f-script);
  font-size: 1.8rem;
  color: var(--coral-soft);
}

@media (min-width: 768px) {
  .transats-grid { grid-template-columns: repeat(3, 1fr); align-items: center; }
}

/* ============================================
   COCKTAILS
   ============================================ */
.cocktails {
  padding: var(--section) 0;
  background: linear-gradient(180deg, var(--creme) 0%, var(--rose) 100%);
}
.cocktails-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.cocktail {
  --cocktail-color: #EC4329;
  --cocktail-glow: #F8D5CC;
  background: var(--creme);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem 1.6rem;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), color .4s var(--ease);
  border: 1px solid rgba(21, 49, 76, .06);
  isolation: isolate;
}
.cocktail::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cocktail-color) 0%, var(--cocktail-glow) 100%);
  opacity: 0;
  transition: opacity .5s var(--ease);
  z-index: -1;
}
.cocktail:hover {
  transform: translateY(-6px) scale(1.02);
  color: var(--creme);
}
.cocktail:hover::before { opacity: 1; }
.cocktail:hover .cocktail-num,
.cocktail:hover h3,
.cocktail:hover p,
.cocktail:hover .cocktail-price { color: var(--creme); }

.cocktail-num {
  font-family: var(--f-script);
  font-size: 2rem;
  color: var(--coral);
  line-height: 1;
  display: block;
  margin-bottom: .5rem;
  transition: color .5s var(--ease);
}
.cocktail h3 {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 400;
  margin: 0 0 .5rem;
  color: var(--nuit);
  line-height: 1.2;
  transition: color .5s var(--ease);
}
.cocktail h3 em {
  font-family: var(--f-script);
  font-size: .85em;
  color: var(--azur);
  font-style: normal;
}
.cocktail p {
  font-size: .9rem;
  color: var(--nuit-soft);
  margin: 0 0 1rem;
  line-height: 1.5;
  min-height: 2.7em;
  transition: color .5s var(--ease);
}
.cocktail-price {
  display: inline-block;
  font-weight: 700;
  color: var(--coral);
  font-size: 1.05rem;
  transition: color .5s var(--ease);
}

@media (min-width: 640px) {
  .cocktails-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .cocktails-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================
   DJ SETS
   ============================================ */
.dj {
  position: relative;
  padding: var(--section) 0;
  overflow: hidden;
  color: var(--creme);
}
.dj-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.dj-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.dj-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21, 49, 76, .6) 0%, rgba(21, 49, 76, .9) 100%),
    radial-gradient(ellipse at 30% 30%, rgba(236, 67, 41, .25) 0%, transparent 60%);
}
.dj-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.dj-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
  align-items: start;
  text-align: left;
}
.dj-when-big {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 0 0 .3rem;
  color: var(--creme);
}
.dj-when-sub {
  font-family: var(--f-script);
  font-size: 2.5rem;
  color: var(--citron);
  margin: 0 0 1.2rem;
  line-height: 1;
}
.dj-season {
  font-size: .95rem;
  color: rgba(250, 247, 241, .8);
  margin: 0 0 1.2rem;
  letter-spacing: .02em;
}
.dj-style {
  font-family: var(--f-body);
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--coral-soft);
  margin: 0;
}

.dj-lineup-label {
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--citron);
  margin: 0 0 .8rem;
  font-weight: 600;
}
.dj-lineup ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.dj-lineup li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid rgba(250, 247, 241, .2);
}
.dj-lineup li:last-child { border-bottom: 0; }
.dj-lineup li span {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--creme);
}
.dj-lineup li em {
  font-family: var(--f-body);
  font-style: normal;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(250, 247, 241, .6);
}
.dj-special span { color: var(--citron) !important; }
.dj-special { border-bottom: 1px solid var(--citron) !important; }

.dj-foot {
  margin-top: 3rem;
  font-size: 1rem;
  color: rgba(250, 247, 241, .85);
}
.dj-foot a {
  color: var(--coral-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}
.dj-foot a:hover { color: var(--citron); }

@media (min-width: 768px) {
  .dj-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* ============================================
   PRIVATISATION
   ============================================ */
.privatisation {
  padding: var(--section) 0;
  background: var(--azur);
  color: var(--creme);
  position: relative;
  overflow: hidden;
}
.privatisation::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 67, 41, .3) 0%, transparent 70%);
  pointer-events: none;
}
.priv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.priv-lead {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  line-height: 1.4;
  color: var(--creme);
  margin: 0 0 1.5rem;
}
.priv-body {
  font-size: 1.0625rem;
  color: rgba(250, 247, 241, .85);
  line-height: 1.7;
  margin: 0 0 2.5rem;
}
.priv-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.priv-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 247, 241, .2);
}
.priv-stats li {
  display: flex;
  flex-direction: column;
}
.priv-stats strong {
  font-family: var(--f-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--citron);
  line-height: 1;
}
.priv-stats span {
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(250, 247, 241, .7);
  margin-top: .4rem;
}

.priv-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(21, 49, 76, .4);
}
.priv-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.priv-stamp {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--coral);
  color: var(--creme);
  padding: 1rem 1.4rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: .7rem;
  box-shadow: 0 10px 30px rgba(21, 49, 76, .3);
}
.stamp-script {
  font-family: var(--f-script);
  font-size: 1.7rem;
  line-height: 1;
}
.stamp-line { opacity: .6; }
.stamp-mono {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .priv-grid { grid-template-columns: 1.1fr .9fr; gap: 4rem; }
}

/* ============================================
   TÉMOIGNAGES
   ============================================ */
.temoignages {
  padding: var(--section) 0;
  background: linear-gradient(180deg, var(--rose) 0%, var(--creme) 100%);
}
.temoignages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}
.temoignage {
  background: var(--creme);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  box-shadow: 0 12px 35px rgba(21, 49, 76, .08);
  border: 1px solid var(--coral-soft);
}
.temoignage:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(236, 67, 41, .18);
}
.cocktail-icon {
  display: inline-flex;
  margin-bottom: 1rem;
}
.temoignage-quote {
  font-family: var(--f-display);
  font-size: 1.15rem;
  line-height: 1.45;
  color: var(--nuit);
  margin: 0 0 1.5rem;
  font-style: italic;
}
.temoignage-author {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.temoignage-author strong {
  font-weight: 600;
  color: var(--coral);
  font-size: .95rem;
}
.temoignage-author span {
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--nuit-soft);
}
@media (min-width: 768px) {
  .temoignages-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   RESERVATION
   ============================================ */
.reservation {
  padding: var(--section) 0;
  background: var(--creme);
}
.reservation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.reservation-intro .section-title { margin-bottom: 1.5rem; }
.reservation-lead {
  font-size: 1.0625rem;
  color: var(--nuit-soft);
  line-height: 1.7;
  margin: 0 0 2.5rem;
}
.reservation-info {
  display: grid;
  gap: 1.2rem;
  padding-top: 2rem;
  border-top: 1.5px solid var(--coral-soft);
}
.r-label {
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--coral);
  margin: 0 0 .3rem;
}
.reservation-info a, .reservation-info p {
  font-family: var(--f-display);
  font-size: 1.2rem;
  color: var(--nuit);
  margin: 0;
}

.reservation-form {
  background: linear-gradient(135deg, var(--rose) 0%, var(--sable-soft) 100%);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-soft);
}
.form-tabs {
  display: flex;
  gap: .5rem;
  background: rgba(250, 247, 241, .6);
  padding: .3rem;
  border-radius: 999px;
  margin-bottom: .5rem;
}
.form-tab {
  flex: 1;
  padding: .7rem 1rem;
  font-size: .85rem;
  font-weight: 600;
  border-radius: 999px;
  color: var(--nuit-soft);
  transition: all .3s var(--ease);
}
.form-tab.active {
  background: var(--coral);
  color: var(--creme);
  box-shadow: 0 4px 12px rgba(236, 67, 41, .3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}
.reservation-form label {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--nuit);
}
.reservation-form label.full { grid-column: 1 / -1; }
.reservation-form label span {
  text-transform: uppercase;
  font-size: .7rem;
  letter-spacing: .15em;
  color: var(--nuit-soft);
}
.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  font-family: var(--f-body);
  font-size: .95rem;
  font-weight: 400;
  padding: .85rem 1rem;
  background: var(--creme);
  border: 1.5px solid transparent;
  border-radius: 12px;
  color: var(--nuit);
  width: 100%;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(236, 67, 41, .12);
}
.form-success {
  background: var(--citron);
  color: var(--nuit);
  padding: .8rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  margin: 0;
}
.form-foot {
  font-size: .75rem;
  color: var(--nuit-soft);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .reservation-grid { grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: start; }
  .reservation-form { padding: 2.5rem; }
}

/* ============================================
   CONTACT / ACCÈS
   ============================================ */
.contact {
  padding: var(--section) 0;
  background: linear-gradient(180deg, var(--creme) 0%, var(--sable-soft) 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.contact-text address {
  font-style: normal;
  margin: 2rem 0;
}
.contact-addr {
  font-family: var(--f-display);
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--nuit);
  margin: 0 0 1rem;
}
.contact-text a {
  color: var(--coral);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(236, 67, 41, .4);
  transition: text-decoration-color .25s var(--ease);
}
.contact-text a:hover { text-decoration-color: var(--coral); }
.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 1.5px solid var(--coral-soft);
  border-bottom: 1.5px solid var(--coral-soft);
}
.contact-info p { margin: 0; font-size: .95rem; }
.contact-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.contact-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  background: var(--nuit);
  color: var(--creme);
  padding-top: 0;
  margin-top: 0;
}
.footer-wave {
  display: block;
  width: 100%;
  height: 70px;
  background: var(--sable-soft);
  margin-top: -1px;
}
.footer-inner {
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-mark { margin-bottom: .3rem; }
.footer-name {
  font-family: var(--f-display);
  font-size: 1.8rem;
  margin: 0;
  color: var(--creme);
}
.footer-script {
  font-family: var(--f-script);
  font-size: 1.6rem;
  color: var(--coral);
  margin: 0;
  line-height: 1;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250, 247, 241, .12);
}
.f-label {
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--citron);
  font-weight: 600;
  margin: 0 0 .8rem;
}
.footer-cols p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(250, 247, 241, .8);
}
.footer-cols a {
  color: rgba(250, 247, 241, .8);
  transition: color .25s var(--ease);
}
.footer-cols a:hover { color: var(--coral-soft); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(250, 247, 241, .55);
}
.footer-credit a:hover { color: var(--coral-soft); }
@media (min-width: 768px) {
  .footer-cols { grid-template-columns: repeat(4, 1fr); gap: 2.5rem; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ============================================
   STICKY CTA (mobile)
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: var(--creme);
  padding: .9rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  box-shadow: 0 12px 30px rgba(236, 67, 41, .4);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  animation: pulse 2.5s ease-in-out infinite;
}
.sticky-cta.visible {
  opacity: 1;
  pointer-events: auto;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(236, 67, 41, .4); }
  50% { box-shadow: 0 12px 30px rgba(236, 67, 41, .4), 0 0 0 12px rgba(236, 67, 41, .12); }
}
@media (min-width: 1024px) {
  .sticky-cta { display: none; }
}

/* ============================================
   FADE-IN ON SCROLL
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   FOCUS VISIBLE
   ============================================ */
*:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* === Vidéos en remplacement d'images (auto-ajouté 2026-05-20) === */
video.hero-video, video.hero-img, video.hero-image, video.cave-video,
video.parallax-img, video.dj-video, video.transats-video, video.cucina-video,
video.vins-video, video.bento-video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
@media (prefers-reduced-motion: reduce) {
  video.hero-video, video.hero-img, video.hero-image, video.cave-video,
  video.parallax-img, video.dj-video, video.transats-video, video.cucina-video,
  video.vins-video, video.bento-video { display: none; }
  video.hero-video + img, video.hero-img + img, video.hero-image + img,
  video.cave-video + img, video.parallax-img + img, video.dj-video + img,
  video.transats-video + img, video.cucina-video + img, video.vins-video + img,
  video.bento-video + img { display: block; width: 100%; height: 100%; object-fit: cover; }
}
