/* ─── VARIABLES ─────────────────────────────────────── */
:root {
  --cream: #F6F0E4;
  --sand: #EADFC9;
  --olive: #586247;
  --olive-dark: #3D4628;
  --terracotta: #BC6B43;
  --terracotta-dark: #965331;
  --gold: #B8923F;
  --ink: #2B2620;
  --stone: #8A8273;
  --white: #ffffff;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-smooth: cubic-bezier(.25,.46,.45,.94);
  --ease-in-out: cubic-bezier(.45,0,.55,1);
}

/* ─── RESET ─────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--ink); background: var(--cream); line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
address { font-style: normal; }
table { border-collapse: collapse; width: 100%; }

/* ─── GRAIN OVERLAY ─────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: -50%;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.042;
  pointer-events: none;
  z-index: 9990;
  animation: grain 0.5s steps(2) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  25%      { transform: translate(-1.5%,1%); }
  50%      { transform: translate(1%,-1.5%); }
  75%      { transform: translate(1.5%,1.5%); }
}

/* ─── PROGRESS BAR ──────────────────────────────────── */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 200;
  pointer-events: none;
}

/* ─── CUSTOM CURSOR ─────────────────────────────────── */
#cursor-dot {
  position: fixed;
  width: 6px; height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
}
#cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(188,107,67,.36);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .3s var(--ease-smooth), height .3s var(--ease-smooth), border-color .3s;
}
#cursor-ring.cursor-grow { width: 56px; height: 56px; border-color: var(--terracotta); }

/* ─── ANIMATIONS ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .95s var(--ease-out), transform .95s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.visible { opacity: 1; transform: none; }

.word-wrap { display: inline-block; overflow: hidden; vertical-align: top; }
.word-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform .85s var(--ease-out), opacity .65s ease;
  transition-delay: calc(var(--i, 0) * .07s);
}
.split-title.visible .word-inner { transform: none; opacity: 1; }

.img-lazy { opacity: 0; transition: opacity .7s var(--ease-smooth); }
.img-lazy.img-loaded { opacity: 1; }

/* Hero cinematic zoom-out */
@keyframes heroZoom {
  from { transform: scale(1.07); }
  to   { transform: scale(1); }
}
@keyframes scrollPulse {
  0%   { top: -100%; }
  100% { top: 100%; }
}
@keyframes fadein {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* ─── LAYOUT ────────────────────────────────────────── */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}
.container--narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ─── TYPOGRAPHY ────────────────────────────────────── */
h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
}
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 18px;
}

/* ─── GOLD LINE (trace au scroll) ───────────────────── */
.gold-line {
  display: block;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
  margin: 20px 0 40px;
}
.gold-line.visible { transform: scaleX(1); }

/* ─── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  transition: all .35s var(--ease-smooth);
}
.btn-primary { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }
.btn-primary:hover { background: var(--terracotta-dark); border-color: var(--terracotta-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(188,107,67,.26); }
.btn-secondary { background: transparent; color: var(--terracotta); border-color: var(--terracotta); }
.btn-secondary:hover { background: var(--terracotta); color: #fff; transform: translateY(-1px); }
.btn-olive { background: var(--olive); color: #fff; border-color: var(--olive); }
.btn-olive:hover { background: var(--olive-dark); border-color: var(--olive-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-outline-cream { background: transparent; color: var(--cream); border-color: rgba(244,238,226,.5); }
.btn-outline-cream:hover { background: rgba(244,238,226,.1); border-color: var(--cream); }
.btn-outline-olive { background: transparent; color: var(--olive); border-color: var(--olive); }
.btn-outline-olive:hover { background: var(--olive); color: #fff; }

/* ─── FLOATING RESERVE BUTTON ───────────────────────── */
.reserve-fab {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 150;
  background: var(--terracotta);
  color: #fff;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 6px 28px rgba(188,107,67,.32);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .45s var(--ease-smooth), transform .45s var(--ease-smooth), background .25s;
}
.reserve-fab--visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.reserve-fab:hover { background: var(--terracotta-dark); transform: translateY(-2px) !important; box-shadow: 0 10px 32px rgba(188,107,67,.38); }

/* ─── NAVBAR ────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 100;
  padding: 22px 0;
  transition: background .45s ease, padding .45s ease, box-shadow .45s ease;
}
.navbar::before {
  content: '';
  position: absolute;
  inset: 0 0 -20px;
  background: linear-gradient(to bottom, rgba(43,38,32,.28), transparent);
  pointer-events: none;
  transition: opacity .45s;
}
.navbar.scrolled::before { opacity: 0; }
.navbar.scrolled { background: var(--ink); padding: 14px 0; box-shadow: 0 4px 32px rgba(0,0,0,.28); }
.navbar.nav-hidden { transform: translateY(-100%); }

.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
/* En production : télécharger en local → images/logo.png (demander SVG au golf) */
.nav-logo img {
  height: 46px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter .3s;
}

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-item { position: relative; }
.nav-link {
  font-family: var(--font-body);
  font-size: .71rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  transition: color .25s;
  display: flex; align-items: center; gap: 4px;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-smooth);
}
.nav-link:hover::after,
.nav-link.current::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.current { color: #fff; }
.navbar.scrolled .nav-link { color: rgba(255,255,255,.72); }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.current { color: #fff; }

.nav-chevron { font-size: .54rem; transition: transform .25s; }
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

.nav-dropdown-parent::after {
  content: '';
  position: absolute;
  bottom: -12px; left: -12px; right: -12px;
  height: 12px;
  pointer-events: auto;
}
.nav-dropdown {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--cream);
  padding: 12px 0 10px;
  min-width: 220px;
  box-shadow: 0 8px 36px rgba(43,38,32,.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s .15s, transform .22s var(--ease-smooth) .15s;
  z-index: 10;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .22s, transform .22s var(--ease-smooth);
}
.nav-dropdown a {
  display: block; padding: 10px 22px;
  font-family: var(--font-body); font-size: .77rem;
  letter-spacing: .06em; color: var(--ink);
  transition: color .2s, padding-left .2s;
}
.nav-dropdown a:hover { color: var(--terracotta); padding-left: 28px; }

.nav-right { display: flex; align-items: center; gap: 20px; }
.btn-cta {
  background: var(--terracotta); color: #fff;
  padding: 10px 22px;
  font-family: var(--font-body); font-size: .71rem;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  transition: background .25s, transform .25s;
}
.btn-cta:hover { background: var(--terracotta-dark); transform: translateY(-1px); }

.burger { display: none; flex-direction: column; gap: 5.5px; padding: 4px; }
.burger span { display: block; width: 24px; height: 1.5px; background: rgba(255,255,255,.9); transition: transform .3s, opacity .3s, background .3s; }
.navbar.scrolled .burger span { background: rgba(255,255,255,.9); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE MENU ───────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--cream); z-index: 99;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-nav { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2.1rem);
  font-weight: 300; color: var(--ink);
  font-optical-sizing: auto; transition: color .2s;
}
.mobile-nav a:hover { color: var(--terracotta); }
.mobile-nav .mobile-cta { color: var(--terracotta); }
.mobile-social { display: flex; gap: 20px; margin-top: 24px; }
.mobile-social a { color: var(--stone); transition: color .2s; }
.mobile-social a:hover { color: var(--terracotta); }

/* ─── HERO HOMEPAGE ─────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh; min-height: 600px;
  overflow: hidden;
  background: var(--olive-dark);
}
.hero-bg {
  position: absolute;
  top: -30%; left: 0;
  width: 100%; height: 160%;
  will-change: transform;
}
.hero-bg-inner {
  width: 100%; height: 100%;
  animation: heroZoom 2s var(--ease-out) forwards;
}
.hero-bg-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-video {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(43,38,32,.22) 0%, rgba(43,38,32,.04) 35%, rgba(43,38,32,.42) 65%, rgba(43,38,32,.72) 100%);
}
.hero-content {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 64px 90px;
  z-index: 2;
  will-change: transform;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: .67rem; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase;
  color: rgba(246,240,228,.52);
  margin-bottom: 14px;
  animation: fadein 1.2s .4s both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 9rem);
  font-weight: 300; font-optical-sizing: auto;
  color: var(--cream); line-height: 1.0;
  letter-spacing: -.01em;
  margin-bottom: 20px;
  max-width: 900px;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: .8rem; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(246,240,228,.62);
  margin-bottom: 44px;
  animation: fadein 1.2s .7s both;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; animation: fadein 1.2s .9s both; }

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadein 1.4s 1.1s both;
}
.scroll-indicator-label {
  font-size: .6rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(246,240,228,.38);
}
.scroll-indicator-line {
  width: 1px; height: 42px;
  background: rgba(246,240,228,.22);
  position: relative; overflow: hidden;
}
.scroll-indicator-line::after {
  content: '';
  position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%;
  background: rgba(246,240,228,.75);
  animation: scrollPulse 1.9s ease-in-out infinite;
}

/* ─── HERO SCRUB (accueil vidéo) ───────────────────── */
.hero-scrub {
  height: 400vh;
  position: relative;
}
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh; min-height: 600px;
  overflow: hidden;
  background: var(--olive-dark);
}
.hero-scrub-layer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 64px 90px;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}
.hero-scrub-tagline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 300; font-optical-sizing: auto; font-style: italic;
  color: var(--cream); line-height: 1.1;
  max-width: 780px;
}
.hero-ctas-fixed {
  position: absolute;
  bottom: 42px; left: 64px;
  z-index: 3;
  display: flex; gap: 14px; flex-wrap: wrap;
}

/* ─── PAGE HERO (inner pages) ───────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  background: var(--olive);
  color: var(--cream);
}
.page-hero--image {
  min-height: 54vh;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
  padding-bottom: 80px;
}
.page-hero-overlay { position: absolute; inset: 0; background: rgba(43,38,32,.5); }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .section-label { color: rgba(246,240,228,.6); }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 300; font-optical-sizing: auto;
  color: var(--cream); line-height: 1.05;
}
.page-hero-sub {
  font-size: 1.02rem; font-weight: 300;
  color: rgba(246,240,228,.68);
  margin-top: 18px; max-width: 560px; line-height: 1.75;
}

/* ─── MARQUEE ───────────────────────────────────────── */
.marquee-section {
  overflow: hidden; background: var(--sand);
  padding: 22px 0;
  border-top: 1px solid rgba(88,98,71,.1);
  border-bottom: 1px solid rgba(88,98,71,.1);
}
.marquee-track { white-space: nowrap; }
.marquee-content { display: inline-flex; animation: marquee-scroll 36s linear infinite; }
.marquee-content span {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.0rem; font-optical-sizing: auto;
  color: var(--olive); letter-spacing: .04em; padding-right: 8px;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── STATS BAND ────────────────────────────────────── */
.stats-band { background: var(--olive); padding: 62px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat { text-align: center; padding: 10px 0; border-right: 1px solid rgba(246,240,228,.12); }
.stat:last-child { border-right: none; }
.stat-number {
  display: block; font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 300; font-optical-sizing: auto;
  color: var(--gold); line-height: 1; margin-bottom: 10px;
}
.stat-label {
  display: block; font-family: var(--font-body);
  font-size: .66rem; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(246,240,228,.42);
}
.stat-underline {
  width: 36px; height: 1px;
  background: var(--gold);
  display: block; margin: 14px auto 0;
  transform: scaleX(0); transform-origin: center;
  transition: transform .8s var(--ease-out) var(--reveal-delay, 0s);
}
.stat-underline.visible { transform: scaleX(1); }

/* ─── SECTIONS ──────────────────────────────────────── */
.section { padding: 112px 0; }
.section--cream { background: var(--cream); }
.section--sand { background: var(--sand); }
.section--olive { background: var(--olive); }
.section--olive-dark { background: var(--olive-dark); }
.section--video {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.section-bg-video {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
}
.section-bg-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background: rgba(43,38,32,.48);
}
.section-content {
  position: relative;
  z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
  .section-bg-video { display: none; }
  .section--video { background: var(--olive-dark); }
  .section-bg-overlay { display: none; }
}

/* ─── SPLIT LAYOUT ──────────────────────────────────── */
.split-layout {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 80px; align-items: center;
}
.split-layout--reversed { grid-template-columns: 7fr 5fr; }
.split-layout--reversed .split-image { order: -1; }

.split-text h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 3.4vw, 3.6rem);
  font-optical-sizing: auto; font-weight: 300;
  margin-bottom: 24px; color: var(--ink);
}
.split-text--light h2 { color: var(--cream); }
.split-text p {
  font-size: .97rem; color: var(--stone);
  line-height: 1.88; margin-bottom: 36px; max-width: 540px;
}
.split-text--light p { color: rgba(246,240,228,.68); }

/* ─── SPLIT IMAGE (clip-reveal) ─────────────────────── */
.split-image {
  overflow: hidden; position: relative;
  opacity: 1 !important; transform: none !important; transition: none !important;
}
.split-image img {
  width: 100%; height: 560px; object-fit: cover; display: block;
  clip-path: inset(100% 0 0 0);
  transform: scale(1.06);
  transition: clip-path 1.2s var(--ease-out) var(--reveal-delay, 0s),
              transform 1.4s var(--ease-out) var(--reveal-delay, 0s);
}
.split-image.visible img {
  clip-path: inset(0% 0 0 0);
  transform: scale(1);
}
.split-image.visible:hover img { transform: scale(1.03); transition-duration: .7s; }

.parallax-wrapper { overflow: hidden; }
.parallax-wrapper img {
  width: 100%; height: 560px; object-fit: cover; display: block;
  transition: transform .7s var(--ease-smooth);
}

/* ─── SECTION IDENTITÉ PROVENCE (entre marquee et stats) ─ */
.section-identite {
  position: relative; overflow: hidden;
  min-height: 80vh; display: flex; align-items: center;
  background: var(--olive-dark);
}
.identite-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 42%;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  .identite-bg { background-attachment: scroll; }
}
.identite-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(43,38,32,.68) 0%, rgba(43,38,32,.42) 50%, rgba(43,38,32,.22) 100%);
}
.identite-content {
  position: relative; z-index: 1;
  padding: 110px 0;
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}
.identite-eyebrow {
  font-family: var(--font-body); font-size: .63rem;
  font-weight: 600; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 36px;
  opacity: 0; animation: fadein 1s var(--ease-out) .3s forwards;
}
.identite-quote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  font-weight: 300; font-optical-sizing: auto;
  color: var(--cream); line-height: 1.6;
}
/* word reveal dans identite-quote */
.identite-quote .word-wrap { display: inline-block; overflow: hidden; vertical-align: top; }
.identite-quote .word-inner {
  display: inline-block;
  transform: translateY(110%); opacity: 0;
  transition: transform .9s var(--ease-out), opacity .7s ease;
  transition-delay: calc(var(--i, 0) * .09s + .3s);
  color: var(--cream);
}
.identite-quote.visible .word-inner { transform: none; opacity: 1; }

/* ─── IDENTITÉ PROVENCE (ancienne, en bas) ──────────── */
.provence-section {
  position: relative; overflow: hidden;
  min-height: 70vh; display: flex; align-items: center;
}
.provence-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 60%;
}
.provence-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(43,38,32,.74) 0%, rgba(43,38,32,.32) 60%, rgba(43,38,32,.08) 100%);
}
.provence-content {
  position: relative; z-index: 1;
  padding: 90px 0; max-width: 560px;
}
.provence-content .section-label { color: rgba(246,240,228,.5); }
.provence-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 300; font-optical-sizing: auto;
  color: var(--cream); line-height: 1.15; margin-bottom: 24px;
}
.provence-content p {
  font-size: .97rem; color: rgba(246,240,228,.72);
  line-height: 1.9; margin-bottom: 36px;
}

/* ─── SECTION TITLES ────────────────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  font-weight: 300; font-optical-sizing: auto;
  color: var(--ink); line-height: 1.1; margin-bottom: 24px;
}
.section-title--light { color: var(--cream); }
.section-intro {
  font-size: .97rem; color: var(--stone);
  line-height: 1.88; margin-bottom: 48px; max-width: 620px;
}
.section-intro--light { color: rgba(246,240,228,.68); }
.section-intro--center { text-align: center; margin-left: auto; margin-right: auto; }

/* ─── EVENTS CARDS ──────────────────────────────────── */
.events-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.event-card {
  padding: 40px 34px;
  border: 1px solid rgba(246,240,228,.16);
  transition: border-color .3s, transform .4s var(--ease-smooth);
}
.event-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.event-icon { font-size: .52rem; color: var(--gold); letter-spacing: .3em; margin-bottom: 22px; }
.event-card h3 {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 400; font-optical-sizing: auto;
  color: var(--cream); margin-bottom: 14px; line-height: 1.2;
}
.event-card p { font-size: .9rem; color: rgba(246,240,228,.52); line-height: 1.78; }

/* ─── GALLERY MASONRY ───────────────────────────────── */
.gallery-masonry { columns: 3; column-gap: 18px; }
.gallery-item {
  break-inside: avoid; margin-bottom: 18px;
  position: relative; overflow: hidden; cursor: pointer;
  opacity: 1 !important; transform: none !important; transition: none !important;
}
.gallery-item img {
  width: 100%; height: auto; display: block;
  clip-path: inset(100% 0 0 0);
  transform: scale(1.06);
  transition: clip-path 1.0s var(--ease-out) var(--reveal-delay, 0s),
              transform 1.2s var(--ease-out) var(--reveal-delay, 0s);
}
.gallery-item.visible img { clip-path: inset(0% 0 0 0); transform: scale(1); }
.gallery-item.visible:hover img { transform: scale(1.05); transition-duration: .6s; }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(43,38,32,.72) 0%, transparent 100%);
  color: var(--cream); padding: 28px 16px 16px;
  font-size: .77rem; letter-spacing: .07em;
  transform: translateY(100%);
  transition: transform .4s var(--ease-smooth);
}
.gallery-item.visible:hover .gallery-caption { transform: none; }
@media (hover: none) { .gallery-caption { transform: none; } }

/* ─── TROUS CARDS ───────────────────────────────────── */
.holes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.hole-card {
  background: var(--cream); padding: 32px 28px;
  border-left: 2px solid var(--sand);
  transition: border-color .3s, transform .4s var(--ease-smooth), box-shadow .4s;
}
.hole-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(43,38,32,.08); }
.hole-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.hole-number {
  font-family: var(--font-display); font-size: 3rem;
  font-weight: 300; font-optical-sizing: auto;
  color: var(--gold); line-height: 1;
}
.hole-meta { text-align: right; }
.hole-par { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--olive); }
.hole-hcp { display: block; font-size: .68rem; font-weight: 500; letter-spacing: .12em; color: var(--stone); margin-top: 4px; }
.hole-desc { font-size: .88rem; color: var(--stone); line-height: 1.78; margin-bottom: 22px; min-height: 80px; }
.btn-video {
  font-family: var(--font-body); font-size: .71rem;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--terracotta); padding: 8px 0;
  border-bottom: 1px solid rgba(188,107,67,.28);
  transition: border-color .2s, color .2s; background: none; cursor: pointer;
}
.btn-video:hover { color: var(--terracotta-dark); border-color: var(--terracotta); }
.hole-pending { font-size: .84rem; color: var(--stone); font-style: italic; }

/* ─── PARCOURS HORIZONTAL SCROLL ────────────────────── */
@media (hover: hover) and (pointer: fine) {
  .parcours-scroll { position: relative; height: calc(18 * 100vh); }
  .parcours-sticky {
    position: sticky; top: 0; height: 100vh;
    overflow: hidden;
  }
  .parcours-track {
    display: flex; height: 100%;
    width: max-content;
    will-change: transform;
  }
  .parcours-panel {
    width: 100vw; height: 100vh; flex-shrink: 0;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
  }
  .parcours-panel:nth-child(even) { background: var(--sand); }
  .parcours-panel:nth-child(odd)  { background: var(--cream); }
}

/* Mobile/touch: vertical stack */
@media (hover: none), (pointer: coarse) {
  .parcours-scroll { height: auto; }
  .parcours-sticky { position: static; height: auto; }
  .parcours-track { display: block; }
  .parcours-panel {
    display: flex; align-items: center;
    padding: 72px 0; border-bottom: 1px solid var(--sand);
    background: var(--cream);
  }
  .parcours-panel:nth-child(even) { background: var(--sand); }
}

/* Panel content (both modes) */
.panel-number-bg {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(200px, 35vw, 480px);
  font-weight: 300; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(88,98,71,.07);
  right: 4%; top: 50%;
  transform: translateY(-50%);
  pointer-events: none; user-select: none;
  font-optical-sizing: auto;
}
.panel-content {
  position: relative; z-index: 1;
  max-width: 560px; padding: 0 64px;
}
.panel-meta { display: flex; gap: 20px; margin-bottom: 14px; }
.panel-par {
  font-size: .68rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--terracotta);
}
.panel-hcp {
  font-size: .68rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--stone);
}
.panel-hole-label {
  font-family: var(--font-body); font-size: .66rem;
  font-weight: 600; letter-spacing: .26em;
  text-transform: uppercase; color: var(--stone); opacity: .6;
  margin-bottom: 10px; display: block;
}
.panel-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 300; font-optical-sizing: auto;
  color: var(--ink); line-height: 1.05; margin-bottom: 24px;
}
.panel-desc {
  font-size: .96rem; color: var(--stone);
  line-height: 1.88; max-width: 460px; margin-bottom: 32px;
}
.panel-pending { font-size: .9rem; color: var(--stone); font-style: italic; }

/* Progress indicator */
.parcours-progress {
  position: fixed;
  top: 60px; left: 0; right: 0;
  z-index: 95;
  opacity: 0; pointer-events: none;
  transition: opacity .5s;
  background: rgba(246,240,228,.92);
  backdrop-filter: blur(8px);
  padding: 10px 0;
}
.parcours-progress.active { opacity: 1; }
.parcours-progress-inner {
  display: flex; align-items: center; gap: 20px;
  padding: 0 64px;
}
.parcours-label {
  font-family: var(--font-body); font-size: .68rem;
  font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--olive); flex-shrink: 0; min-width: 100px;
}
.parcours-progress-track {
  flex: 1; height: 1px;
  background: rgba(88,98,71,.15);
  position: relative;
}
.parcours-progress-fill {
  position: absolute; left: 0; top: 0;
  height: 100%; width: 100%;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
}
.parcours-scorecard-link {
  font-family: var(--font-body); font-size: .68rem;
  font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--terracotta); flex-shrink: 0;
  text-decoration: underline; text-underline-offset: 3px;
  pointer-events: auto;
}
.parcours-scorecard-link:hover { color: var(--terracotta-dark); }

/* ─── SCORECARD PREMIUM ─────────────────────────────── */
.scorecard-section {
  background: var(--olive-dark); padding: 100px 0;
}
.scorecard-section .section-label { color: rgba(246,240,228,.42); }
.scorecard-section .section-title { color: var(--cream); }
.scorecard-wrap { overflow-x: auto; }
.scorecard-table {
  width: 100%; border-collapse: collapse;
  font-family: var(--font-body);
}
.scorecard-table caption {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 300; font-optical-sizing: auto;
  color: var(--gold); text-align: left;
  padding: 0 0 20px;
  font-style: italic;
}
.scorecard-table th {
  font-size: .63rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(246,240,228,.38); padding: 10px 16px;
  border-bottom: 1px solid rgba(246,240,228,.1);
  text-align: center;
}
.scorecard-table th:first-child { text-align: left; padding-left: 0; }
.scorecard-table td {
  padding: 14px 16px; border-bottom: 1px solid rgba(246,240,228,.07);
  font-size: .88rem; color: rgba(246,240,228,.72); text-align: center;
  transition: background .2s;
}
.scorecard-table td:first-child { text-align: left; padding-left: 0; color: var(--cream); }
.scorecard-table tr:hover td { background: rgba(246,240,228,.04); }
.scorecard-table .scorecard-total td {
  border-top: 1px solid rgba(184,146,63,.3);
  border-bottom: none; font-weight: 600;
  color: var(--gold);
}
.scorecard-table .scorecard-total td:first-child { color: var(--gold); }
.scorecard-table .scorecard-section-row td {
  background: rgba(246,240,228,.04);
  font-size: .63rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(246,240,228,.3);
  padding: 6px 16px;
}
.scorecard-table .scorecard-section-row td:first-child { padding-left: 0; }
.scorecard-par { color: var(--gold) !important; font-family: var(--font-display) !important; font-size: 1.05rem !important; }

/* ─── VIDEO MODAL ───────────────────────────────────── */
.video-modal {
  position: fixed; inset: 0; z-index: 500;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.video-modal[hidden] { display: none; }
.video-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(43,38,32,.9); backdrop-filter: blur(4px);
}
.video-modal-inner { position: relative; z-index: 1; width: 100%; max-width: 900px; }
.video-modal-close {
  position: absolute; top: -44px; right: 0;
  background: none; border: none;
  color: rgba(246,240,228,.6); font-size: 1.8rem; line-height: 1;
  cursor: pointer; transition: color .2s;
}
.video-modal-close:hover { color: var(--cream); }
.video-wrapper { position: relative; padding-bottom: 56.25%; background: #000; }
.video-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ─── TARIFS ────────────────────────────────────────── */
.tarifs-table { width: 100%; border-collapse: collapse; margin-bottom: 56px; }
.tarifs-table caption {
  font-family: var(--font-display); font-size: 1.6rem;
  font-weight: 300; font-optical-sizing: auto;
  color: var(--ink); text-align: left; padding-bottom: 20px;
}
.tarifs-table th {
  font-family: var(--font-body); font-size: .7rem;
  font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--stone); padding: 14px 20px; text-align: left;
  border-bottom: 2px solid var(--sand);
}
.tarifs-table th:not(:first-child) { text-align: right; }
.tarifs-table td {
  padding: 14px 20px; border-bottom: 1px solid var(--sand);
  font-size: .93rem; color: var(--ink); vertical-align: middle;
}
.tarifs-table td:not(:first-child) {
  text-align: right; font-family: var(--font-display);
  font-size: 1.1rem; color: var(--olive); font-weight: 400;
}
.tarifs-table tr:hover td { background: rgba(234,223,201,.3); }
.tarifs-note {
  font-size: .83rem; color: var(--stone); line-height: 1.7;
  padding: 16px 20px; background: var(--sand);
  border-left: 2px solid var(--gold); margin-bottom: 48px;
}

/* ─── FORMULES RESTAURANT ───────────────────────────── */
.formules { margin-bottom: 36px; border-top: 1px solid rgba(88,98,71,.12); }
.formule {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(88,98,71,.12);
  position: relative;
}
.formule::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .75s var(--ease-smooth) var(--formule-delay, 0s);
}
.formule.line-visible::after { transform: scaleX(1); }
.formule-name { font-size: .9rem; color: var(--stone); }
.formule-price {
  font-family: var(--font-display); font-size: 1.4rem;
  font-weight: 400; font-optical-sizing: auto; color: var(--olive);
}

/* ─── HISTOIRE TIMELINE ─────────────────────────────── */
.histoire-timeline {
  display: flex; flex-direction: column; align-items: flex-start;
  max-width: 640px; margin: 60px 0 0;
}
.histoire-tl-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 32px;
  align-items: start;
  padding-bottom: 0;
}
.histoire-tl-year {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300; font-optical-sizing: auto;
  color: var(--gold); line-height: 1.1;
  padding-top: 2px;
}
.histoire-tl-content {}
.histoire-tl-title {
  font-family: var(--font-body); font-size: .66rem;
  font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 8px; display: block;
}
.histoire-tl-content p {
  font-size: .93rem; color: var(--stone);
  line-height: 1.85; margin-bottom: 0;
}
.histoire-tl-line {
  width: 1px; height: 50px;
  background: var(--gold); opacity: .35;
  margin: 20px 0 20px 40px;
  transform: scaleY(0); transform-origin: top;
  transition: transform .9s var(--ease-out);
  transition-delay: var(--reveal-delay, .1s);
}
.histoire-tl-line.visible { transform: scaleY(1); }

/* ─── PARTENAIRES ───────────────────────────────────── */
.partners-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 40px; }
.partner-card {
  overflow: hidden; background: var(--cream);
  transition: box-shadow .4s var(--ease-smooth), transform .4s var(--ease-smooth);
}
.partner-card:hover { box-shadow: 0 14px 44px rgba(43,38,32,.1); transform: translateY(-4px); }
.partner-img { overflow: hidden; aspect-ratio: 16/9; }
.partner-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-smooth); }
.partner-card:hover .partner-img img { transform: scale(1.04); }
.partner-info { padding: 28px 30px; }
.partner-info h2 {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 400; font-optical-sizing: auto; color: var(--ink); margin-bottom: 6px;
}
.partner-location { font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 14px; }
.partner-info p { font-size: .9rem; color: var(--stone); line-height: 1.75; margin-bottom: 18px; }
.partner-links { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.partner-links a { font-size: .77rem; font-weight: 600; letter-spacing: .08em; color: var(--olive); transition: color .2s; text-decoration: underline; text-underline-offset: 3px; }
.partner-links a:hover { color: var(--terracotta); }

/* ─── CONTACT ───────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 60px; align-items: start; }
.contact-block {}
.contact-block .section-label { display: block; margin-bottom: 20px; }
.contact-address { font-style: normal; font-size: .95rem; line-height: 2; color: var(--stone); }
.contact-links { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.contact-link {
  display: flex; align-items: center; gap: 10px;
  font-size: .88rem; font-weight: 500; color: var(--olive);
  transition: color .2s, gap .2s;
}
.contact-link:hover { color: var(--terracotta); gap: 14px; }
.contact-link svg { flex-shrink: 0; }
.contact-hours { display: flex; flex-direction: column; }
.hours-group { margin-bottom: 22px; }
.hours-group:last-child { margin-bottom: 0; }
.hours-title { font-size: .66rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 8px; }
.contact-hours p { font-size: .88rem; color: var(--stone); line-height: 1.88; }
.contact-ctas { display: flex; flex-direction: column; gap: 14px; align-items: stretch; }
.contact-map { border: none; width: 100%; }

/* ─── FOOTER ────────────────────────────────────────── */
.footer { background: var(--olive-dark); color: rgba(246,240,228,.58); padding: 80px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 60px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(246,240,228,.07);
}
.footer-logo {
  margin-bottom: 22px;
}
.footer-logo img {
  height: 60px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: .88;
}
.footer address { font-size: .87rem; line-height: 2; }
.footer address a { color: rgba(246,240,228,.58); transition: color .2s; }
.footer address a:hover { color: var(--gold); }
.footer-col-title {
  font-family: var(--font-body); font-size: .66rem;
  font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: .87rem; color: rgba(246,240,228,.52); transition: color .2s, padding-left .2s; }
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-hours strong { display: block; font-size: .66rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-top: 16px; margin-bottom: 4px; }
.footer-hours strong:first-child { margin-top: 0; }
.footer-hours p { font-size: .85rem; line-height: 1.88; }
.footer-social { display: flex; gap: 16px; margin-top: 28px; }
.footer-social a { color: rgba(246,240,228,.36); transition: color .25s; }
.footer-social a:hover { color: var(--gold); }
.footer-bottom { padding: 22px 0; text-align: center; }
.footer-bottom p { font-size: .7rem; color: rgba(246,240,228,.2); letter-spacing: .06em; }

/* ─── HISTOIRE (editorial) ──────────────────────────── */
.histoire-img { overflow: hidden; margin-bottom: 60px; }
.histoire-img img { width: 100%; height: 480px; object-fit: cover; object-position: center 25%; }
.histoire-body { max-width: 680px; }
.histoire-body p { font-size: 1.04rem; line-height: 1.92; color: var(--stone); margin-bottom: 28px; }
.histoire-body p:first-child {
  font-family: var(--font-display); font-size: 1.4rem;
  font-weight: 300; font-optical-sizing: auto;
  color: var(--ink); line-height: 1.62;
}

/* ─── APPRENDRE ─────────────────────────────────────── */
.forfaits-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; margin-bottom: 60px; }
.forfait-card {
  padding: 44px 38px; background: var(--cream);
  border-top: 2px solid var(--olive);
  transition: border-color .3s, transform .3s var(--ease-smooth);
}
.forfait-card:hover { border-color: var(--terracotta); transform: translateY(-3px); }
.forfait-label { font-size: .66rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 14px; }
.forfait-title { font-family: var(--font-display); font-size: 1.65rem; font-weight: 400; font-optical-sizing: auto; color: var(--ink); margin-bottom: 18px; }
.forfait-desc { font-size: .9rem; color: var(--stone); line-height: 1.78; margin-bottom: 28px; }
.forfait-prices { border-top: 1px solid var(--sand); }
.forfait-price { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--sand); }
.forfait-price-label { font-size: .85rem; color: var(--stone); }
.forfait-price-amount { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; font-optical-sizing: auto; color: var(--olive); }

/* ─── COMPETITIONS TIMELINE ─────────────────────────── */
.timeline { position: relative; padding-left: 0; }
.timeline-month { margin-bottom: 60px; }
.timeline-month-title {
  font-family: var(--font-display); font-size: 2rem;
  font-weight: 300; font-optical-sizing: auto;
  color: var(--olive); margin-bottom: 24px;
  padding-bottom: 12px; border-bottom: 1px solid var(--sand);
}
.timeline-event {
  display: grid; grid-template-columns: 180px 1fr;
  gap: 24px; align-items: baseline;
  padding: 18px 0; border-bottom: 1px solid rgba(88,98,71,.1);
}
.timeline-event:last-child { border-bottom: none; }
.timeline-date { font-size: .77rem; font-weight: 600; letter-spacing: .08em; color: var(--terracotta); text-transform: uppercase; }
.timeline-name { font-size: .96rem; color: var(--ink); line-height: 1.5; }
.timeline-name small { display: block; font-size: .8rem; color: var(--stone); margin-top: 4px; font-style: italic; }
.timeline-notice {
  background: var(--sand); border-left: 2px solid var(--gold);
  padding: 18px 22px; margin: 32px 0;
  font-size: .9rem; color: var(--stone); line-height: 1.7;
}
.timeline-notice strong { color: var(--ink); }

/* ─── IMAGE LIGHTBOX ────────────────────────────────── */
.img-modal {
  position: fixed; inset: 0; z-index: 500;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.img-modal[hidden] { display: none; }
.img-modal-backdrop { position: absolute; inset: 0; background: rgba(43,38,32,.92); backdrop-filter: blur(4px); }
.img-modal-inner { position: relative; z-index: 1; max-width: min(1100px, 94vw); }
.img-modal-inner img { max-width: 100%; max-height: 88vh; object-fit: contain; display: block; }
.img-modal-close {
  position: absolute; top: -44px; right: 0;
  background: none; border: none;
  color: rgba(246,240,228,.6); font-size: 1.8rem; line-height: 1;
  cursor: pointer; transition: color .2s;
}
.img-modal-close:hover { color: var(--cream); }

/* ─── BROCHURE ──────────────────────────────────────── */
.brochures-row { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 28px; }
.brochure-thumb { flex: 1; min-width: 180px; max-width: 300px; overflow: hidden; cursor: zoom-in; position: relative; }
.brochure-thumb img { width: 100%; height: auto; display: block; transition: transform .5s var(--ease-smooth), opacity .3s; }
.brochure-thumb:hover img { transform: scale(1.03); opacity: .9; }
.brochure-label { font-size: .7rem; color: var(--stone); text-align: center; margin-top: 8px; letter-spacing: .06em; }

/* ─── PRO-SHOP ──────────────────────────────────────── */
.brands-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; margin-bottom: 36px; }
.brand-tag {
  font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--olive); border: 1px solid rgba(88,98,71,.25);
  padding: 8px 16px; transition: background .25s, color .25s;
}
.brand-tag:hover { background: var(--olive); color: #fff; }
.products-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.product-tag { font-size: .82rem; color: var(--stone); background: var(--sand); padding: 7px 14px; }

/* ─── ANNIVERSAIRE ──────────────────────────────────── */
.anniv-info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.anniv-info-card { background: var(--cream); padding: 30px 26px; border-top: 2px solid var(--terracotta); }
.anniv-info-icon { font-size: .55rem; letter-spacing: .3em; color: var(--terracotta); text-transform: uppercase; font-weight: 600; margin-bottom: 10px; }
.anniv-info-card p { font-size: .93rem; color: var(--stone); line-height: 1.82; }
.anniv-info-card a { color: var(--olive); }
.anniv-info-card a:hover { color: var(--terracotta); }

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1100px) {
  .container, .container--narrow { padding: 0 40px; }
  .holes-grid { grid-template-columns: repeat(2,1fr); }
  .partners-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: repeat(2,1fr); gap: 48px; }
  .panel-content { padding: 0 48px; }
  .parcours-progress-inner { padding: 0 40px; }
}

@media (max-width: 768px) {
  .container, .container--narrow { padding: 0 24px; }
  .nav-links, .nav-right .btn-cta { display: none; }
  .burger { display: flex; }

  .hero-content { padding: 0 24px 64px; }
  .hero-title { font-size: clamp(2.6rem, 10vw, 4rem); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-scroll-indicator { display: none; }
  .hero-scrub { height: 250vh; }
  .hero-scrub-layer { padding: 0 24px 80px; }
  .hero-ctas-fixed { left: 24px; bottom: 24px; flex-direction: column; align-items: flex-start; }

  .page-hero { padding: 130px 0 60px; }
  .page-hero--image { padding-bottom: 60px; }

  .section { padding: 72px 0; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(246,240,228,.12); padding: 22px 0; }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }

  .split-layout, .split-layout--reversed { grid-template-columns: 1fr; gap: 40px; }
  .split-layout .split-image, .split-layout--reversed .split-image { order: -1; }
  .split-image img, .parallax-wrapper img { height: 280px; }

  .events-grid, .holes-grid, .forfaits-grid, .resto-senses-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; column-gap: 12px; }
  .gallery-item { margin-bottom: 12px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
  .timeline-event { grid-template-columns: 1fr; gap: 4px; }
  .anniv-info-grid { grid-template-columns: 1fr; }
  .brochures-row { flex-direction: column; }
  .brochure-thumb { max-width: 100%; }

  .tarifs-table th:nth-child(2),
  .tarifs-table td:nth-child(2) { display: none; }

  .reserve-fab { bottom: 20px; right: 20px; padding: 12px 18px; font-size: .7rem; }

  .histoire-timeline { max-width: 100%; }
  .histoire-tl-item { grid-template-columns: 60px 1fr; gap: 0 20px; }
  .histoire-tl-year { font-size: 1.8rem; }
  .histoire-tl-line { margin-left: 30px; }

  .section-identite { min-height: 60vh; }
  .identite-content { padding: 80px 0; }
  .identite-quote { font-size: clamp(1.3rem, 5.5vw, 1.8rem); }

  /* sur mobile : texte toujours sur fond lisible sous l'image */
  .section .split-layout > div:not(.split-image) {
    background: transparent; padding: 0;
  }

  .parcours-panel { padding: 60px 0; }
  .panel-content { padding: 0 24px; }
  .panel-number-bg { font-size: 40vw; right: 0; opacity: .4; }
  .panel-title { font-size: 2.6rem; }

  #cursor-dot, #cursor-ring { display: none; }

  .scorecard-table th:nth-child(4),
  .scorecard-table td:nth-child(4) { display: none; }
}

@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
  .scorecard-table th:nth-child(3),
  .scorecard-table td:nth-child(3) { display: none; }
}

/* ─── PREFERS REDUCED MOTION ────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .word-inner { transform: none !important; opacity: 1 !important; }
  .img-lazy { opacity: 1 !important; }
  body::after { animation: none !important; }
  .marquee-content { animation: none !important; }
  .split-image img, .gallery-item img {
    clip-path: none !important; transform: none !important;
  }
  .hero-bg-inner { animation: none !important; }
  .scroll-indicator-line::after { animation: none !important; }
  .gold-line { transform: none !important; }
  .stat-underline { transform: none !important; }
  .histoire-tl-line { transform: none !important; }
  .identite-eyebrow { animation: none !important; opacity: 1 !important; }
  .identite-quote .word-inner { transform: none !important; opacity: 1 !important; }
  .formule::after { transform: scaleX(1) !important; }
  .hero-video { display: none !important; }
  .hero { background: var(--olive-dark) url('video/hero-poster.jpg') center/cover no-repeat; }
  .ball-dot { display: none !important; }
}

/* ─── HOLE TRAJECTORY SVG ──────────────────────────── */
.hole-trajectory {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
  margin: 28px auto 20px;
  overflow: visible;
}
@media (max-width: 768px) {
  .hole-trajectory { max-width: 220px; margin: 20px auto 16px; }
}
