@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,300;0,6..96,400;0,6..96,500;1,6..96,300;1,6..96,400;1,6..96,500&family=Outfit:wght@300;400;500;600&display=swap');

/* ─────────────────────────────────────────
   TOKENS
───────────────────────────────────────── */
:root {
  --cream:       #f7f4ef;
  --cream-dark:  #ede9e2;
  --green:       #135651;
  --green-deep:  #0e3e3b;
  --green-mid:   #1a6e67;
  --gold:        #c9a84c;
  --gold-light:  #e0bc6a;
  --ink:         #1a1a1a;
  --ink-soft:    #4a4a4a;
  --ink-muted:   #888880;
  --white:       #ffffff;

  --f-display: 'Bodoni Moda', Georgia, serif;
  --f-body:    'Outfit', system-ui, sans-serif;

  --nav-h:   68px;
  --pad:     clamp(56px, 9vw, 116px);
  --gutter:  clamp(20px, 5vw, 64px);
  --max:     1280px;
  --ease:    cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─────────────────────────────────────────
   RESET
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--f-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─────────────────────────────────────────
   CUSTOM CURSOR
───────────────────────────────────────── */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s, width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s;
  mix-blend-mode: normal;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1px solid rgba(201,168,76,0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: left 0.12s var(--ease), top 0.12s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s, opacity 0.3s;
  opacity: 0.7;
}
.cursor-ring.hover {
  width: 52px; height: 52px;
  border-color: var(--gold);
  opacity: 1;
}
/* Dot s'agrandit au hover */
.cursor-dot.hover {
  width: 10px; height: 10px;
}
@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
}

/* ─────────────────────────────────────────
   LAYOUT UTILS
───────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ─────────────────────────────────────────
   SCROLL REVEALS
───────────────────────────────────────── */
.sr {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.sr.left { transform: translateX(-36px); }
.sr.right { transform: translateX(36px); }
.sr.in { opacity: 1; transform: translate(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.18s; }
.d3 { transition-delay: 0.28s; }

/* ─────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────── */
.label {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}
.label-green { color: var(--green); }
.label-on-green { color: rgba(247,244,239,0.55); }

h2.display {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
h2.display em { font-style: italic; }

.section-num {
  font-family: var(--f-display);
  font-size: clamp(72px, 12vw, 140px);
  font-weight: 300;
  line-height: 1;
  color: rgba(19, 86, 81, 0.08);
  position: absolute;
  top: var(--pad);
  right: var(--gutter);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}
.section-num-light { color: rgba(247, 244, 239, 0.07); }
@media (max-width: 768px) { .section-num { display: none; } }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 15px 38px;
  border: 1px solid currentColor;
  background: transparent;
  cursor: none;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
  z-index: 0;
}
.btn:hover::after { transform: scaleX(1); }
.btn span { position: relative; z-index: 1; transition: color 0.35s var(--ease); }
.btn svg { position: relative; z-index: 1; transition: color 0.35s var(--ease), transform 0.3s var(--ease); flex-shrink: 0; }
.btn:hover svg { transform: translateX(4px); }

.btn-ink {
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ink:hover span, .btn-ink:hover svg { color: var(--cream); }

.btn-green {
  color: var(--green);
  border-color: var(--green);
}
.btn-green:hover span, .btn-green:hover svg { color: var(--cream); }

.btn-cream {
  color: var(--cream);
  border-color: rgba(247,244,239,0.5);
}
.btn-cream::after { background: var(--cream); }
.btn-cream:hover span, .btn-cream:hover svg { color: var(--green); }

.btn-gold {
  color: var(--gold);
  border-color: var(--gold);
}
.btn-gold:hover span, .btn-gold:hover svg { color: var(--ink); }
.btn-gold::after { background: var(--gold); }

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(247, 244, 239, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(19, 86, 81, 0.18);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 34px;
  width: auto;
  transition: filter 0.4s;
}
.nav.scrolled .nav-logo img {
  filter: brightness(0) saturate(100%) invert(22%) sepia(41%) saturate(663%) hue-rotate(138deg) brightness(92%) contrast(93%);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
/* Default: texte clair sur hero sombre */
.nav-links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.75);
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); }
/* Scrolled: texte sombre sur fond crème */
.nav.scrolled .nav-links a { color: var(--ink-soft); }
.nav.scrolled .nav-links a:hover { color: var(--green); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.nav-social a {
  color: rgba(247,244,239,0.6);
  transition: color 0.3s;
}
.nav-social a:hover { color: var(--gold); }
.nav.scrolled .nav-social a { color: var(--ink-muted); }
.nav.scrolled .nav-social a:hover { color: var(--green); }
.nav-social svg { width: 15px; height: 15px; }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--cream);
  transition: transform 0.3s var(--ease), opacity 0.3s, background 0.3s;
}
.nav.scrolled .hamburger span { background: var(--ink); }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--cream);
  border-bottom: 2px solid var(--green);
  z-index: 899;
  flex-direction: column;
  padding: 28px var(--gutter) 36px;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 14px 0;
  border-bottom: 1px solid rgba(19,86,81,0.1);
  transition: color 0.2s;
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--green); }
.mobile-menu-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
}
.no-border {
  border: none;
}

.mobile-social {
  display: flex;
  gap: 18px;
}
.mobile-social a { color: var(--ink-muted); }
.mobile-social a:hover { color: var(--green); }

/* Bouton réserver : cream sur hero, green sur fond clair */
.nav-reserve {
  color: rgba(247,244,239,0.85) !important;
  border-color: rgba(247,244,239,0.4) !important;
}
.nav-reserve::after { background: rgba(247,244,239,0.85) !important; }
.nav-reserve:hover span, .nav-reserve:hover svg { color: var(--green) !important; }
.nav.scrolled .nav-reserve {
  color: var(--green) !important;
  border-color: var(--green) !important;
}
.nav.scrolled .nav-reserve::after { background: var(--green) !important; }
.nav.scrolled .nav-reserve:hover span,
.nav.scrolled .nav-reserve:hover svg { color: var(--cream) !important; }

@media (max-width: 1023px) {
  .nav-links, .nav-social, .nav-reserve { display: none; }
  .hamburger { display: flex; }
}

/* ─────────────────────────────────────────
   HERO — Plein écran centré (style index_new)
───────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/golf5.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.06);
  animation: heroScale 2s var(--ease) forwards;
}
@keyframes heroScale { to { transform: scale(1); } }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    rgba(0,0,0,0.72) 0%,
    rgba(19,86,81,0.38) 45%,
    rgba(0,0,0,0.78) 100%
  );
}

/* Lettre fantôme décorative */
.hero-ghost {
  position: absolute;
  bottom: -60px;
  right: -20px;
  font-family: var(--f-display);
  font-size: clamp(280px, 38vw, 520px);
  font-weight: 300;
  color: rgba(247,244,239,0.032);
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

/* Contenu centré */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 clamp(20px, 5vw, 60px);
}

.hero-logo-img {
  height: clamp(52px, 9vw, 92px);
  width: auto;
  opacity: 0;
  transform: translateY(-18px);
  animation: fadeUp 1s var(--ease) 0.3s forwards;
}

/* Divider décoratif — tirets or + texte */
.hero-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.65s forwards;
}
.hero-divider-line {
  display: block;
  width: 44px;
  height: 1px;
  background: var(--gold);
  opacity: 0.65;
}
.hero-divider-text {
  font-family: var(--f-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(48px, 8.5vw, 108px);
  font-weight: 300;
  line-height: 0.98;
  color: var(--cream);
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUp 1.1s var(--ease) 0.85s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.hero-sub {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.5);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 1.05s forwards;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 1.25s forwards;
}

/* Indicateur de scroll */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1.8s forwards;
}
.hero-scroll span {
  font-family: var(--f-body);
  font-size: 8px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.42);
}
.hero-scroll-bar {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.65); transform-origin: top; }
  50%       { opacity: 1;    transform: scaleY(1); }
}

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 768px) {
  .hero-title { font-size: clamp(40px, 11vw, 68px); }
  .hero-ghost  { font-size: 200px; }
  .hero-scroll { display: flex; }
  .hero-overlay {
    background: linear-gradient(155deg, rgb(0 0 0 / 58%) 0%, rgb(9 59 46 / 62%) 50%, rgb(0 0 0 / 62%) 100%)
  }
  .hero-title {
    text-shadow: 0 2px 24px rgba(0,0,0,0.55);
  }
}

/* ─────────────────────────────────────────
   WELCOME — Texte large + image flottante
───────────────────────────────────────── */
.welcome {
  background: var(--cream);
  padding: var(--pad) 0;
  position: relative;
  overflow: hidden;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.welcome-text .label { margin-bottom: 20px; }
.welcome-text h2 {
  font-family: var(--f-display);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 32px;
  color: var(--ink);
}
.welcome-text h2 em {
  font-style: italic;
  color: var(--green);
}
.welcome-text p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.welcome-text p:last-of-type { margin-bottom: 32px; }

.welcome-img-wrap {
  position: relative;
}
.welcome-img-wrap::before {
  content: '';
  position: absolute;
  top: 20px; right: -20px;
  bottom: -20px; left: 20px;
  background: var(--green);
  opacity: 0.12;
  z-index: 0;
}
.welcome-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(360px, 45vw, 580px);
  object-fit: cover;
}

.welcome-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid rgba(19,86,81,0.2);
  color: var(--green);
  background: transparent;
  transition: background 0.3s, color 0.3s;
}
.tag:hover { background: var(--green); color: var(--cream); }

@media (max-width: 768px) {
  .welcome-grid { grid-template-columns: 1fr; gap: 40px; }
  .welcome-img-wrap::before { display: none; }
}

/* ─────────────────────────────────────────
   GOLF — Section verte pleine largeur
───────────────────────────────────────── */
.golf {
  position: relative;
  /* pas d'overflow:hidden — ça casse background-attachment:fixed */
}
.golf-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/golfeur_1.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  filter: saturate(0.5) brightness(0.65);
}
.golf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(19,86,81,0.55) 0%,
    rgba(14,62,59,0.88) 100%
  );
}

/* Contenu positionné par-dessus le parallax */
.golf-inner {
  position: relative;
  z-index: 2;
  padding: var(--pad) var(--gutter);
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden; /* clip les .sr.right sans casser background-attachment:fixed du .golf-bg sibling */
}

.golf-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  margin-bottom: 72px;
}

.golf-header h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
}
.golf-header h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.golf-header-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: clamp(20px, 3vw, 40px);
}
.golf-header-right p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(247,244,239,0.65);
  margin-bottom: 32px;
}

.golf-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.golf-feature {
  padding: 36px 32px 40px;
  border-top: 1px solid rgba(247,244,239,0.12);
  border-right: 1px solid rgba(247,244,239,0.12);
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.golf-feature:last-child { border-right: none; }
.golf-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(247,244,239,0.04);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease);
}
.golf-feature:hover::before { transform: scaleY(1); }

.golf-feature-num {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: block;
}
.golf-feature img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 20px;
  opacity: 0.8;
  filter: brightness(0) invert(1);
}
.golf-feature h4 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.2;
}
.golf-feature p {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(247,244,239,0.55);
}

@media (max-width: 768px) {
  .golf-header { grid-template-columns: 1fr; gap: 24px; }
  .golf-features { grid-template-columns: 1fr; }
  .golf-feature {
    border-right: none;
    border-bottom: 1px solid rgba(247,244,239,0.08);
    padding: 28px 20px 32px;
  }
  .golf-feature:last-child { border-bottom: none; }
  .golf-feature-num { display: none; }
}

/* ─────────────────────────────────────────
   BAR — Fond crème, layout décalé
───────────────────────────────────────── */
.bar {
  background: var(--cream-dark);
  padding: var(--pad) 0;
  position: relative;
  overflow: hidden;
}

.bar-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
  margin-bottom: 64px;
}

.bar-images {
  position: relative;
}
.bar-img-main {
  width: 100%;
  height: clamp(380px, 45vw, 560px);
  object-fit: cover;
}
.bar-img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 45%;
  height: clamp(160px, 20vw, 240px);
  object-fit: cover;
  border: 6px solid var(--cream-dark);
  box-shadow: 0 12px 48px rgba(0,0,0,0.18);
}

.bar-text .label { margin-bottom: 16px; }
.bar-text h2 {
  font-family: var(--f-display);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 28px;
}
.bar-text h2 em {
  font-style: italic;
  color: var(--green);
  display: block;
}
.bar-text p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.bar-text p:last-of-type { margin-bottom: 32px; }

.bar-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.bar-gallery img {
  width: 100%;
  height: clamp(160px, 18vw, 240px);
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.bar-gallery div {
  overflow: hidden;
}
.bar-gallery div:hover img { transform: scale(1.06); }

@media (max-width: 768px) {
  .bar-grid { grid-template-columns: 1fr; gap: 36px; }
  .bar-img-float { display: none; }
  .bar-img-main { height: clamp(240px, 55vw, 340px); }
  .bar-gallery { grid-template-columns: 1fr 1fr; gap: 2px; }
  .bar-gallery div:last-child { display: none; }
  .bar-gallery img { height: 160px; }
}

/* ─────────────────────────────────────────
   SNACKING
───────────────────────────────────────── */
.snacking {
  background: var(--cream);
  padding: var(--pad) 0;
  position: relative;
  overflow: hidden;
}

.snacking-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 45px;
}
.snacking-header h2 {
  font-family: var(--f-display);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 20px;
}
.snacking-header h2 em {
  font-style: italic;
  color: var(--green);
  display: block;
}
.snacking-intro {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-soft);
}

/* Grille 3 colonnes */
.snacking-carte {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.carte-col--center {
  border-left: 1px solid rgba(26,26,26,0.08);
  border-right: 1px solid rgba(26,26,26,0.08);
  padding-left: clamp(20px, 3vw, 40px);
  padding-right: clamp(20px, 3vw, 40px);
}

/* Titre de catégorie */
.carte-cat {
  font-family: var(--f-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 24px;
  padding-bottom: 14px;
  position: relative;
}
.carte-cat::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 1px;
  background: var(--gold);
}

/* Items */
.snack-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(26,26,26,0.07);
}
.snack-item:first-of-type { border-top: 1px solid rgba(26,26,26,0.07); }

.snack-item-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}
.snack-item-top h4 {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.snack-price {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 300;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.snack-item p {
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--ink-muted);
}

/* Note de bas de carte */
.snack-note {
  margin-top: 48px;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  padding: 14px 20px;
  border-left: 2px solid var(--gold);
  background: rgba(201,168,76,0.05);
  display: inline-block;
}

@media (max-width: 900px) {
  .snacking-carte { grid-template-columns: 1fr; gap: 0; }
  .carte-col {
    padding-top: 40px;
    padding-bottom: 8px;
    border-top: 1px solid rgba(26,26,26,0.08);
  }
  .carte-col:first-child { border-top: none; padding-top: 0; }
  .carte-col--center {
    border-left: none;
    border-right: none;
    padding-left: 0;
    padding-right: 0;
  }
  .snack-note { display: block; }
}

/* ─────────────────────────────────────────
   SÉMINAIRES — Vert + texte blanc
───────────────────────────────────────── */
.seminar {
  background: var(--green-deep);
  padding: var(--pad) 0;
  position: relative;
  overflow: hidden;
}

.seminar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
  width: 100%;
}
.seminar-grid > * {
  min-width: 0; /* empêche les grid items de déborder au-delà de leur colonne */
}

.seminar-text .label { margin-bottom: 16px; color: var(--gold); }
.seminar-text h2 {
  font-family: var(--f-display);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 28px;
}
.seminar-text h2 em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}
.seminar-text p {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(247,244,239,0.62);
  margin-bottom: 16px;
}
.seminar-text p:last-of-type { margin-bottom: 40px; }

.seminar-kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(247,244,239,0.08);
  margin-bottom: 44px;
}
.seminar-kpi {
  background: rgba(14,62,59,0.8);
  padding: 24px 28px;
  transition: background 0.3s;
}
.seminar-kpi:hover { background: rgba(26,110,103,0.4); }
.seminar-kpi strong {
  display: block;
  font-family: var(--f-display);
  font-size: 30px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.seminar-kpi span {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(247,244,239,0.5);
  text-transform: uppercase;
}

.seminar-img {
  position: relative;
}
.seminar-img img {
  width: 100%;
  height: clamp(380px, 48vw, 580px);
  object-fit: cover;
}
.seminar-img::before {
  content: '';
  position: absolute;
  bottom: -12px;
  left: -12px;
  right: 12px;
  top: 12px;
  border: 1px solid rgba(201,168,76,0.3);
  z-index: 0;
}
.seminar-img img { position: relative; z-index: 1; }

@media (max-width: 900px) {
  .seminar-grid { grid-template-columns: 1fr; gap: 40px; }
  .seminar-img { order: -1; }
  .seminar-img::before { display: none; }
  .seminar-img img { height: 280px; }
  .seminar-kpis { grid-template-columns: 1fr 1fr; }
}

/* ─────────────────────────────────────────
   STATS — Ligne horizontale élégante
───────────────────────────────────────── */
.stats {
  background: var(--cream);
  padding: var(--pad) 0;
  position: relative;
  overflow: hidden;
}

.stats-bg-text {
  position: absolute;
  bottom: -10px;
  left: 0;
  font-family: var(--f-display);
  font-size: clamp(80px, 14vw, 180px);
  font-weight: 300;
  color: rgba(19,86,81,0.04);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.02em;
  user-select: none;
}

.stats-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 24px;
  flex-wrap: wrap;
}
.stats-header h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
}
.stats-header h2 em {
  font-style: italic;
  color: var(--green);
}
.stats-header p {
  max-width: 320px;
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.7;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(19,86,81,0.15);
}
.stat {
  padding: 44px 0 44px 32px;
  border-right: 1px solid rgba(19,86,81,0.1);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 1s var(--ease);
}
.stat.in::before { width: 60%; }

.stat-num {
  font-family: var(--f-display);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 300;
  color: var(--green);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.stat-suffix {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.55em;
  color: var(--gold);
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

@media (max-width: 600px) {
  .stats-row { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(19,86,81,0.1); padding: 28px 0; }
  .stat:last-child { border-bottom: none; }
  .stats-header { flex-direction: column; align-items: flex-start; margin-bottom: 40px; }
  .stats-bg-text { font-size: 80px; }
}

/* ─────────────────────────────────────────
   TARIFS — Tableau éditorial
───────────────────────────────────────── */
.pricing {
  background: var(--green);
  padding: var(--pad) 0;
  position: relative;
  overflow: hidden;
}

.pricing-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}
.pricing-header h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
}
.pricing-header h2 em {
  font-style: italic;
  color: var(--gold-light);
}
.pricing-header-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-end;
}
.pricing-header-right p {
  font-size: 13px;
  color: rgba(247,244,239,0.55);
  line-height: 1.7;
}

.pricing-tables {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  /*background: rgba(247,244,239,0.1);*/
  margin-bottom: 24px;
}
.pt-card {
  background: rgba(14,62,59,0.75);
  display: flex;
  flex-direction: column;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s;
  position: relative;
}
.pt-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.pt-card:hover { background: rgba(19,86,81,0.95); }
.pt-card:hover::after { transform: scaleX(1); }
.pt-head {
  padding: 28px 24px 20px;
  border-bottom: 1px solid rgba(247,244,239,0.08);
}
.pt-head h4 {
  font-family: var(--f-display);
  font-size: 21px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
}
.pt-head span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.pt-table {
  width: 100%;
  border-collapse: collapse;
}
.pt-table thead th {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.4);
  padding: 12px 14px 10px;
  text-align: center;
  border-bottom: 1px solid rgba(247,244,239,0.06);
}
.pt-table thead th:first-child { text-align: left; }
.pt-table tbody tr {
  border-bottom: 1px solid rgba(247,244,239,0.04);
  transition: background 0.2s;
}
.pt-table tbody tr:hover { background: rgba(247,244,239,0.04); }
.pt-table tbody td {
  padding: 11px 14px;
  font-size: 13px;
  color: rgba(247,244,239,0.55);
  text-align: center;
}
.pt-table tbody td:first-child {
  text-align: left;
  color: rgba(247,244,239,0.85);
  font-weight: 400;
}

.pricing-note {
  margin-top: 28px;
  font-size: 12px;
  color: rgba(247,244,239,0.35);
  font-style: italic;
}

@media (max-width: 900px) {
  .pricing-tables { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .pricing-header { grid-template-columns: 1fr; gap: 20px; }
  .pricing-header-right { flex-direction: row; align-items: center; flex-wrap: wrap; gap: 12px; }
  .pricing-tables { grid-template-columns: 1fr; }
  .pt-head { padding: 20px 18px 14px; }
  .pt-table tbody td, .pt-table thead th { padding: 10px 12px; font-size: 12px; }
}

/* ─────────────────────────────────────────
   CONTACT — Fond crème
───────────────────────────────────────── */
.contact {
  background: var(--cream);
  padding: var(--pad) 0;
  position: relative;
}

.contact-header {
  margin-bottom: 64px;
}
.contact-header h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 300;
  line-height: 1.05;
}
.contact-header h2 em { font-style: italic; color: var(--green); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 80px);
  margin-bottom: 56px;
}

.contact-info { display: flex; flex-direction: column; gap: 40px; }

.contact-block .label { margin-bottom: 12px; color: var(--green); }
.contact-block h4 {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
}
.contact-block ul { display: flex; flex-direction: column; gap: 5px; }
.contact-block li {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.contact-block a {
  color: var(--ink-soft);
  transition: color 0.25s, border-color 0.25s;
  border-bottom: 1px solid transparent;
}
.contact-block a:hover {
  color: var(--green);
  border-bottom-color: rgba(19,86,81,0.25);
}
.contact-note {
  font-size: 11px;
  font-style: italic;
  color: var(--ink-muted);
  margin-top: 6px;
}

.contact-map {
  position: relative;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}
.contact-map::before {
  content: '';
  position: absolute;
  top: -8px; right: -8px;
  width: 44px; height: 44px;
  /*background: var(--gold);*/
  opacity: 0.7;
  z-index: 1;
}

.contact-social-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(19,86,81,0.12);
}
.contact-social-row span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.contact-social-row a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  transition: color 0.25s;
}
.contact-social-row a:hover { color: var(--gold); }
.contact-social-row svg { width: 16px; height: 16px; }

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-map { min-height: 280px; }
  .contact-map::before { display: none; }
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: var(--ink);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo img {
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.25s;
}
.footer-logo img:hover { opacity: 1; }
.footer-copy {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--gold); }

/* ─────────────────────────────────────────
   SCROLL TO TOP
───────────────────────────────────────── */
.back-top {
  position: fixed;
  bottom: 36px; right: 36px;
  z-index: 500;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.35);
  background: rgba(247,244,239,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  opacity: 0;
  transform: scale(0.6) rotate(-120deg);
  transition: opacity 0.45s var(--ease), transform 0.5s var(--ease), background 0.3s, border-color 0.3s, color 0.3s;
  pointer-events: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.back-top.show {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  pointer-events: all;
}
.back-top:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: scale(1.08) rotate(0deg);
}
.back-top svg { width: 15px; height: 15px; stroke-width: 1.5; }
