@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,300;1,9..144,400;1,9..144,500&family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ═══════════════════════════════════════════════════════════
   THE GOLF LOUNGE — v2
   Dark luxury editorial. Fond noir, vert structurant, or en accent.
═══════════════════════════════════════════════════════════ */

:root {
  --void:        #0a0a0a;
  --void-2:      #0e1512;
  --panel:       #0c1a17;
  --green:       #135651;
  --green-deep:  #0a3532;
  --green-mid:   #1a6e67;
  --green-glow:  rgba(19, 86, 81, 0.45);
  --gold:        #c9a84c;
  --gold-light:  #e6c877;
  --gold-dim:    rgba(201, 168, 76, 0.35);
  --cream:       #f6f1e7;
  --cream-70:    rgba(246, 241, 231, 0.7);
  --cream-55:    rgba(246, 241, 231, 0.55);
  --cream-35:    rgba(246, 241, 231, 0.35);
  --cream-15:    rgba(246, 241, 231, 0.15);
  --cream-08:    rgba(246, 241, 231, 0.08);

  --f-display: 'Fraunces', Georgia, serif;
  --f-body:    'Manrope', system-ui, sans-serif;

  --nav-h:  76px;
  --pad:    clamp(64px, 10vw, 148px);
  --gutter: clamp(22px, 5.5vw, 72px);
  --max:    1320px;
  --ease:   cubic-bezier(0.19, 1, 0.22, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
}

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

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

/* ─────────────────────────────────────────
   ACCESSIBILITY
───────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -60px; left: 16px;
  z-index: 10000;
  background: var(--gold);
  color: var(--void);
  padding: 12px 20px;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 16px; }

a:focus-visible,
button:focus-visible,
.tag:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: 1px;
}

/* ─────────────────────────────────────────
   GRAIN OVERLAY
───────────────────────────────────────── */
.grain {
  position: fixed;
  inset: -100px;
  z-index: 6;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Top scroll progress */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 1001;
  transition: width 0.1s linear;
}

/* ─────────────────────────────────────────
   CUSTOM CURSOR
───────────────────────────────────────── */
@media (hover: hover) and (pointer: fine) {
  body.cursor-ready { cursor: none; }
  body.cursor-ready a, body.cursor-ready button, body.cursor-ready .tag { cursor: none; }
}
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease);
  display: none;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 34px; height: 34px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), border-color 0.3s, opacity 0.3s;
  opacity: 0.8;
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cursor-dot, .cursor-ring { display: block; }
}
.cursor-ring.hover { width: 58px; height: 58px; border-color: var(--gold-light); opacity: 1; }
.cursor-dot.hover { width: 0; height: 0; }

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

/* ─────────────────────────────────────────
   REVEALS
───────────────────────────────────────── */
.sr {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: transform, opacity;
}
.sr.left { transform: translateX(-40px); }
.sr.right { transform: translateX(40px); }
.sr.scale { transform: scale(0.96); }
.sr.in { opacity: 1; transform: translate(0) scale(1); }
.d1 { transition-delay: 0.09s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.31s; }
.d4 { transition-delay: 0.42s; }

/* ─────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────── */
h2.display {
  font-family: var(--f-display);
  font-optical-sizing: auto;
  font-size: clamp(42px, 6.4vw, 88px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--cream);
}
h2.display em, .fx-italic {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}

.section-num {
  font-family: var(--f-display);
  font-size: clamp(80px, 13vw, 160px);
  font-weight: 300;
  line-height: 1;
  color: var(--cream-08);
  position: absolute;
  top: var(--pad);
  right: var(--gutter);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
@media (max-width: 768px) { .section-num { display: none; } }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 34px;
  border: 1px solid currentColor;
  background: transparent;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
  z-index: 0;
}
.btn:hover::after { transform: scaleX(1); }
.btn:hover { transform: translateY(-2px); }
.btn span { position: relative; z-index: 1; transition: color 0.4s var(--ease); }
.btn svg { position: relative; z-index: 1; transition: color 0.4s var(--ease), transform 0.3s var(--ease); flex-shrink: 0; }
.btn:hover svg { transform: translateX(4px); }

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

.btn-cream { color: var(--cream); border-color: var(--cream-35); }
.btn-cream::after { background: var(--cream); }
.btn-cream:hover span, .btn-cream:hover svg { color: var(--void); }

.btn-ghost { color: var(--cream-55); border-color: var(--cream-15); }
.btn-ghost::after { background: var(--cream-15); }
.btn-ghost:hover span, .btn-ghost:hover svg { color: var(--cream); }

.btn-outline-green { color: var(--gold); border-color: var(--gold-dim); }
.btn-outline-green::after { background: var(--gold); }
.btn-outline-green:hover span, .btn-outline-green:hover svg { color: var(--void); }

/* ─────────────────────────────────────────
   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), height 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  height: 64px;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--cream-08);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 32px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links li { position: relative; }
.nav-links a {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-70);
  padding: 10px 15px;
  transition: color 0.3s;
  white-space: nowrap;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 15px; right: 15px; bottom: 5px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold-light); }

.nav-right { display: flex; align-items: center; gap: 22px; }
.nav-social { display: flex; gap: 15px; align-items: center; }
.nav-social a { color: var(--cream-35); transition: color 0.3s; }
.nav-social a:hover { color: var(--gold-light); }
.nav-social svg { width: 15px; height: 15px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 4px;
  width: 30px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--cream);
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

/* Fullscreen mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 899;
  background: var(--void);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(var(--nav-h) + 20px) var(--gutter) 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}
.mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 15%, var(--green-glow), transparent 55%);
  pointer-events: none;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-links { display: flex; flex-direction: column; position: relative; }
.mob-link {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(30px, 9vw, 44px);
  color: var(--cream-55);
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-08);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s;
}
.mobile-menu.open .mob-link { opacity: 1; transform: translateY(0); }
.mob-link:nth-child(1) { transition-delay: 0.08s; }
.mob-link:nth-child(2) { transition-delay: 0.13s; }
.mob-link:nth-child(3) { transition-delay: 0.18s; }
.mob-link:nth-child(4) { transition-delay: 0.23s; }
.mob-link:nth-child(5) { transition-delay: 0.28s; }
.mob-link:nth-child(6) { transition-delay: 0.33s; }
.mob-link:nth-child(7) { transition-delay: 0.38s; }
.mob-link:hover { color: var(--gold-light); }

.mobile-menu-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  position: relative;
}
.mobile-social { display: flex; gap: 20px; }
.mobile-social a { color: var(--cream-35); }

/* Reserve CTA in nav */
.nav-reserve { color: var(--gold-light) !important; border-color: var(--gold-dim) !important; }
.nav-reserve::after { background: var(--gold-light) !important; }
.nav-reserve:hover span, .nav-reserve:hover svg { color: var(--void) !important; }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--void);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/golf5.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.08);
  animation: heroScale 2.2s var(--ease) forwards;
  filter: saturate(0.85);
}
@keyframes heroScale { to { transform: scale(1); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.35) 40%, rgba(10,10,10,0.88) 100%),
    linear-gradient(115deg, rgba(10,53,50,0.55) 0%, transparent 55%);
}
.hero-ghost {
  position: absolute;
  bottom: -70px; right: -24px;
  font-family: var(--f-display);
  font-size: clamp(300px, 40vw, 560px);
  font-weight: 300;
  font-style: italic;
  color: rgba(246,241,231,0.035);
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 0 clamp(20px, 5vw, 60px);
}
.hero-logo-img {
  height: clamp(48px, 8vw, 82px);
  width: auto;
  opacity: 0;
  transform: translateY(-16px);
  animation: fadeUp 1s var(--ease) 0.25s forwards;
}
.hero-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.55s forwards;
}
.hero-divider-line { width: 44px; height: 1px; background: var(--gold); opacity: 0.7; }
.hero-divider-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero-title {
  font-family: var(--f-display);
  font-optical-sizing: auto;
  font-size: clamp(46px, 8.6vw, 116px);
  font-weight: 400;
  line-height: 0.98;
  color: var(--cream);
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1.1s var(--ease) 0.72s forwards;
}
.hero-title em { font-style: italic; font-weight: 300; color: var(--gold-light); display: block; }
.hero-title-echo {
  display: block;
  font-size: 0.46em;
  line-height: 1.25;
  color: var(--cream-55);
  margin-top: clamp(18px, 2.6vw, 30px);
  padding-top: clamp(18px, 2.6vw, 30px);
  border-top: 1px solid var(--gold-dim);
}
.hero-sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-55);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.92s forwards;
}
.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 10px 18px;
  border: 1px solid var(--gold-dim);
  background: rgba(201,168,76,0.07);
  border-radius: 30px;
  transition: background 0.3s, border-color 0.3s;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 1.02s forwards;
}
.hero-note:hover { background: rgba(201,168,76,0.16); border-color: var(--gold); }
.hero-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 1.15s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 34px; 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.6s forwards;
}
.hero-scroll span {
  font-size: 8px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-35);
}
.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(38px, 11vw, 66px); }
  .hero-title-echo { font-size: 0.46em; margin-top: 14px; padding-top: 14px; }
  .hero-content { gap: 16px; }
  .hero-ghost { font-size: 220px; }
}
@media (max-height: 700px) {
  .hero-content { gap: 10px; }
  .hero-scroll { display: none; }
}

/* ─────────────────────────────────────────
   WELCOME
───────────────────────────────────────── */
.welcome {
  background: var(--void);
  padding: var(--pad) 0;
  position: relative;
  overflow: hidden;
}
.welcome::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(ellipse at center, var(--green-glow), transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
.welcome::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim) 50%, transparent);
}
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
  position: relative;
}
.welcome-text h2 {
  font-family: var(--f-display);
  font-size: clamp(38px, 5.4vw, 72px);
  font-weight: 400;
  line-height: 1.06;
  margin-bottom: 30px;
}
.welcome-text h2 em { font-style: italic; font-weight: 300; color: var(--gold-light); }
.welcome-text p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--cream-70);
  margin-bottom: 20px;
  max-width: 46ch;
}
.welcome-text p:first-of-type::first-letter {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 3.6em;
  font-weight: 400;
  color: var(--gold-light);
  float: left;
  line-height: 0.75;
  padding: 0.08em 0.09em 0 0;
}
.welcome-text p:last-of-type { margin-bottom: 34px; }

.welcome-img-wrap { position: relative; }
.welcome-img-wrap::before {
  content: '';
  position: absolute;
  top: 22px; right: -22px; bottom: -22px; left: 22px;
  border: 1px solid var(--gold-dim);
  z-index: 0;
}
.welcome-img-wrap img {
  position: relative; z-index: 1;
  width: 100%;
  height: clamp(360px, 45vw, 580px);
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
}

.welcome-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 17px;
  border: 1px solid var(--cream-15);
  color: var(--cream-70);
  background: transparent;
  border-radius: 30px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.tag:hover { background: var(--gold); color: var(--void); border-color: var(--gold); }

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

/* ─────────────────────────────────────────
   GOLF
───────────────────────────────────────── */
.golf { position: relative; }
.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.4) brightness(0.55);
}
.golf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,53,50,0.7) 0%, rgba(9,9,9,0.72) 45%, rgba(9,9,9,0.9) 100%);
}
.golf-inner {
  position: relative;
  z-index: 2;
  padding: var(--pad) var(--gutter);
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
}
.golf-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  margin-bottom: 76px;
}
.golf-header h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 5.6vw, 80px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.04;
}
.golf-header h2 em { font-style: italic; font-weight: 300; 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.85; color: var(--cream-70); margin-bottom: 32px; max-width: 46ch; }

.golf-features { display: grid; grid-template-columns: repeat(3, 1fr); }
.golf-feature {
  padding: 40px 34px 44px;
  border-top: 1px solid var(--cream-15);
  border-right: 1px solid var(--cream-15);
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.golf-feature:last-child { border-right: none; }
.golf-feature::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--cream-08);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s var(--ease);
}
.golf-feature:hover::before { transform: scaleY(1); }
.golf-feature-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 13px;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  margin-bottom: 22px;
  display: block;
  position: relative;
}
.golf-feature img {
  width: 38px; height: 38px;
  object-fit: contain;
  margin-bottom: 22px;
  opacity: 0.85;
  filter: brightness(0) invert(1);
  position: relative;
}
.golf-feature h4 {
  font-family: var(--f-display);
  font-size: 23px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.2;
  position: relative;
}
.golf-feature p { font-size: 13.5px; line-height: 1.8; color: var(--cream-55); position: relative; }

@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 var(--cream-08); padding: 30px 4px 34px; }
  .golf-feature:last-child { border-bottom: none; }
}

/* iOS Safari ignore background-attachment:fixed (rendu zoomé/jank) — parallax desktop uniquement */
@media (max-width: 900px) {
  .golf-bg, .revamp-bg { background-attachment: scroll; }
}

/* ─────────────────────────────────────────
   BAR & LOUNGE
───────────────────────────────────────── */
.bar {
  background: var(--green-deep);
  padding: var(--pad) 0;
  position: relative;
  overflow: hidden;
}
.bar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim) 50%, transparent);
}
.bar-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
  margin-bottom: 68px;
}
.bar-images { position: relative; }
.bar-img-main { width: 100%; height: clamp(380px, 45vw, 560px); object-fit: cover; filter: saturate(0.95); }
.bar-img-float {
  position: absolute;
  bottom: -42px; right: -42px;
  width: 46%;
  height: clamp(160px, 20vw, 240px);
  object-fit: cover;
  border: 6px solid var(--void);
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
}
.bar-text h2 { font-family: var(--f-display); font-size: clamp(38px, 5vw, 70px); font-weight: 400; line-height: 1.06; margin-bottom: 28px; }
.bar-text h2 em { font-style: italic; font-weight: 300; color: var(--gold-light); display: block; }
.bar-text p { font-size: 15px; line-height: 1.9; color: var(--cream-70); margin-bottom: 16px; max-width: 46ch; }
.bar-text p:last-of-type { margin-bottom: 34px; }

.bar-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.bar-gallery div { overflow: hidden; position: relative; }
.bar-gallery img { width: 100%; height: clamp(170px, 18vw, 250px); object-fit: cover; transition: transform 0.7s var(--ease), filter 0.4s; filter: saturate(0.9) brightness(0.92); }
.bar-gallery div:hover img { transform: scale(1.07); filter: saturate(1) brightness(1); }

@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; }
}

/* ─────────────────────────────────────────
   PULSE DOT
───────────────────────────────────────── */
.pulse-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-light);
  flex-shrink: 0;
  animation: dotPulse 1.8s ease-out infinite;
}
@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(230,200,119,0.55); }
  70% { box-shadow: 0 0 0 9px rgba(230,200,119,0); }
  100% { box-shadow: 0 0 0 0 rgba(230,200,119,0); }
}

/* ─────────────────────────────────────────
   RESTAURANT — Coming soon
───────────────────────────────────────── */
.revamp { position: relative; background: #060606; }
.revamp-bg {
  position: absolute; inset: 0;
  background-image: url('../images/planche_3.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: grayscale(0.55) brightness(0.26) contrast(1.1);
}
.revamp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(165deg, rgba(6,6,6,0.82) 0%, rgba(6,6,6,0.95) 55%, rgba(19,86,81,0.5) 100%);
}
.revamp-ghost {
  position: absolute; top: -34px; left: -16px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(220px, 32vw, 460px);
  font-weight: 300;
  color: rgba(201,168,76,0.05);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
.revamp-inner { position: relative; z-index: 2; padding: var(--pad) var(--gutter); width: 100%; max-width: var(--max); margin: 0 auto; overflow: hidden; }
.revamp-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }
.revamp-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream);
  padding: 11px 20px;
  border: 1px solid var(--gold-dim);
  background: rgba(201,168,76,0.08);
  border-radius: 30px;
}
.revamp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: end; margin-bottom: 80px; }
.revamp-title { font-family: var(--f-display); font-size: clamp(38px, 5.3vw, 68px); font-weight: 400; line-height: 1.1; color: var(--cream); }
.revamp-title em { font-style: italic; font-weight: 300; color: var(--gold-light); }
.revamp-text p { font-size: 15px; line-height: 1.9; color: var(--cream-70); margin-bottom: 18px; max-width: 48ch; }
.revamp-text p:last-of-type { margin-bottom: 32px; }
.revamp-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.revamp-features { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--cream-15); }
.revamp-feature {
  padding: 34px 0 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.revamp-feature:not(:first-child) { padding-left: 34px; }
.revamp-feature:not(:last-child) { padding-right: 34px; border-right: 1px solid var(--cream-15); }
.revamp-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cream-08);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s var(--ease);
}
.revamp-feature:hover::before { transform: scaleY(1); }
.revamp-feature-num { font-family: var(--f-display); font-style: italic; font-size: 13px; color: var(--gold-light); letter-spacing: 0.05em; display: block; margin-bottom: 18px; position: relative; }
.revamp-feature h4 { font-family: var(--f-display); font-size: 21px; font-weight: 400; color: var(--cream); margin-bottom: 10px; line-height: 1.2; position: relative; }
.revamp-feature p { font-size: 13.5px; line-height: 1.8; color: var(--cream-55); position: relative; }

@media (max-width: 768px) {
  .revamp-grid { grid-template-columns: 1fr; gap: 30px; align-items: start; }
  .revamp-features { grid-template-columns: 1fr; border-top: none; }
  .revamp-feature { padding: 26px 0 !important; border-right: none !important; border-top: 1px solid var(--cream-08); }
  .revamp-feature:first-child { border-top: none; }
  .revamp-ghost { font-size: 190px; }
}

/* ─────────────────────────────────────────
   SÉMINAIRES
───────────────────────────────────────── */
.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, 100px); align-items: center; width: 100%; }
.seminar-grid > * { min-width: 0; }
.seminar-text h2 { font-family: var(--f-display); font-size: clamp(38px, 5vw, 70px); font-weight: 400; color: var(--cream); line-height: 1.06; margin-bottom: 28px; }
.seminar-text h2 em { font-style: italic; font-weight: 300; color: var(--gold-light); display: block; }
.seminar-text p { font-size: 15px; line-height: 1.9; color: var(--cream-70); margin-bottom: 16px; max-width: 46ch; }
.seminar-text p:last-of-type { margin-bottom: 40px; }

.seminar-kpis { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--cream-08); margin-bottom: 44px; }
.seminar-kpi { background: rgba(6,20,18,0.7); padding: 26px 28px; transition: background 0.3s; min-width: 0; }
.seminar-kpi:hover { background: rgba(19,86,81,0.4); }
.seminar-kpi strong { display: block; font-family: var(--f-display); font-size: 32px; font-weight: 400; color: var(--gold-light); line-height: 1; margin-bottom: 8px; }
.seminar-kpi span { font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; color: var(--cream-55); text-transform: uppercase; }

.seminar-img { position: relative; }
.seminar-img img { width: 100%; height: clamp(380px, 48vw, 580px); object-fit: cover; filter: saturate(0.92); position: relative; z-index: 1; }
.seminar-img::before { content: ''; position: absolute; bottom: -14px; left: -14px; right: 14px; top: 14px; border: 1px solid var(--gold-dim); z-index: 0; }

@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; }
  .seminar-kpi { text-align: center; padding: 22px 12px; }
  .seminar-kpi strong { font-size: clamp(20px, 6.2vw, 30px); }
}

/* ─────────────────────────────────────────
   STATS
───────────────────────────────────────── */
.stats { background: var(--void); padding: var(--pad) 0; position: relative; overflow: hidden; }
.stats-bg-text {
  position: absolute; bottom: -14px; left: 0;
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(80px, 14vw, 190px);
  font-weight: 300;
  color: var(--cream-08);
  opacity: 0.5;
  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: 68px; gap: 24px; flex-wrap: wrap; }
.stats-header h2 { font-family: var(--f-display); font-size: clamp(32px, 4.6vw, 60px); font-weight: 400; line-height: 1.1; color: var(--cream); }
.stats-header h2 em { font-style: italic; font-weight: 300; color: var(--gold-light); }
.stats-header p { max-width: 320px; font-size: 13.5px; color: var(--cream-55); line-height: 1.75; }

.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--cream-15); }
.stat { padding: 46px 0 46px 34px; border-right: 1px solid var(--cream-08); position: relative; }
.stat:last-child { border-right: none; }
.stat::before { content: ''; position: absolute; top: -1px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 1.1s var(--ease); }
.stat.in::before { width: 60%; }
.stat-num { font-family: var(--f-display); font-size: clamp(54px, 7.2vw, 92px); font-weight: 400; color: var(--gold-light); 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(--cream); }
.stat-label { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-55); }

@media (max-width: 600px) {
  .stats-row { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--cream-08); padding: 30px 0 30px 4px; }
  .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
───────────────────────────────────────── */
.pricing { background: linear-gradient(170deg, var(--green), var(--green-deep)); padding: var(--pad) 0; position: relative; overflow: hidden; }
.pricing-header { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 56px; }
.pricing-header h2 { font-family: var(--f-display); font-size: clamp(40px, 5.6vw, 78px); font-weight: 400; color: var(--cream); line-height: 1.04; }
.pricing-header h2 em { font-style: italic; font-weight: 300; color: var(--gold-light); }
.pricing-header-right { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; justify-content: flex-end; }
.pricing-header-right p { font-size: 13.5px; color: var(--cream-70); line-height: 1.75; }

/* Segmented toggle */
.pricing-toggle {
  display: inline-flex;
  border: 1px solid var(--cream-15);
  border-radius: 30px;
  padding: 4px;
  margin-bottom: 40px;
  position: relative;
}
.pricing-toggle button {
  position: relative;
  z-index: 1;
  border: none;
  background: transparent;
  color: var(--cream-70);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 30px;
  transition: color 0.35s var(--ease);
}
.pricing-toggle button.active { color: var(--green-deep); }
.pricing-toggle button small { display: block; font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: none; opacity: 0.65; margin-top: 3px; }
.pricing-toggle-thumb {
  position: absolute;
  top: 4px; bottom: 4px; left: 4px;
  width: calc(50% - 4px);
  background: var(--gold-light);
  border-radius: 26px;
  transition: transform 0.4s var(--ease);
  z-index: 0;
}
.pricing-toggle[data-active="off"] .pricing-toggle-thumb { transform: translateX(100%); }

.pricing-tables { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 26px; }
.pt-card {
  background: rgba(6,20,18,0.55);
  border: 1px solid transparent;
  display: flex; flex-direction: column;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.35s;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.pt-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold-light);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.pt-card:hover { background: rgba(6,20,18,0.8); transform: translateY(-4px); }
.pt-card:hover::after { transform: scaleX(1); }
.pt-head { padding: 28px 24px 20px; border-bottom: 1px solid var(--cream-08); }
.pt-head h4 { font-family: var(--f-display); font-size: 22px; font-weight: 400; color: var(--cream); line-height: 1.2; }
.pt-head span { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 8px; }

.pt-list { list-style: none; padding: 6px 0; flex: 1; }
.pt-list li {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 13px 24px;
  font-size: 13.5px;
  color: var(--cream-70);
  border-bottom: 1px solid var(--cream-08);
}
.pt-list li:last-child { border-bottom: none; }
.pt-row-price { color: var(--gold-light); font-family: var(--f-display); font-size: 17px; font-weight: 400; display: inline-flex; align-items: baseline; gap: 2px; }
.pt-row-price small { font-family: var(--f-body); font-size: 11px; color: var(--cream-55); }
.pt-row-price[data-price-off] { display: none; }
.pricing-toggle[data-active="off"] ~ .pricing-tables .pt-row-price[data-price-full] { display: none; }
.pricing-toggle[data-active="off"] ~ .pricing-tables .pt-row-price[data-price-off] { display: inline-flex; }

.pt-card--events { border: 1px solid var(--gold-dim); background: rgba(201,168,76,0.06); }
.pt-card--events .pt-head { border-bottom-color: rgba(201,168,76,0.15); }
.pt-card--events ul { padding: 8px 0; flex: 1; }
.pt-card--events li { padding: 11px 24px; font-size: 13px; color: var(--cream-70); border-bottom: 1px solid var(--cream-08); font-weight: 400; }
.pt-card--events li:last-child { border-bottom: none; }
.pt-card--events-cta { padding: 20px 24px; }

.pricing-note { margin-top: 28px; font-size: 12px; color: var(--cream-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 { align-items: flex-start; }
  .pricing-tables { grid-template-columns: 1fr; }
  .pt-head { padding: 22px 20px 16px; }
}

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact { background: var(--void); padding: var(--pad) 0; position: relative; }
.contact-header { margin-bottom: 64px; }
.contact-header h2 { font-family: var(--f-display); font-size: clamp(40px, 5.6vw, 78px); font-weight: 400; line-height: 1.04; }
.contact-header h2 em { font-style: italic; font-weight: 300; color: var(--gold-light); }

.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 ul { display: flex; flex-direction: column; gap: 6px; }
.contact-block li { font-size: 14px; color: var(--cream-70); line-height: 1.6; }
.contact-block a { color: var(--cream-70); transition: color 0.25s, border-color 0.25s; border-bottom: 1px solid transparent; }
.contact-block a:hover { color: var(--gold-light); border-bottom-color: var(--gold-dim); }
.contact-note { font-size: 11px; font-style: italic; color: var(--cream-35); margin-top: 6px; }

.contact-map { position: relative; border: 1px solid var(--cream-08); }
.contact-map iframe { display: block; width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(0.35) invert(0.92) contrast(0.9); }

.contact-social-row { display: flex; align-items: center; gap: 20px; padding-top: 32px; border-top: 1px solid var(--cream-08); flex-wrap: wrap; }
.contact-social-row span { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-35); }
.contact-social-row a { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-light); transition: color 0.25s; }
.contact-social-row a:hover { color: var(--cream); }
.contact-social-row svg { width: 16px; height: 16px; }

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

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer { background: #000; padding: 52px 0; border-top: 1px solid var(--cream-08); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.footer-logo img { height: 26px; opacity: 0.65; transition: opacity 0.25s; }
.footer-logo img:hover { opacity: 1; }
.footer-copy { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cream-55); }
.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: var(--cream-55); transition: color 0.25s; }
.footer-links a:hover { color: var(--gold-light); }

/* ─────────────────────────────────────────
   BACK TO TOP
───────────────────────────────────────── */
.back-top {
  position: fixed; bottom: 36px; right: 36px; z-index: 500;
  width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid var(--gold-dim);
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  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.3);
}
.back-top.show { opacity: 1; transform: scale(1) rotate(0deg); pointer-events: all; }
.back-top:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--void); transform: scale(1.08) rotate(0deg); }
.back-top svg { width: 15px; height: 15px; stroke-width: 1.5; }
