/* ============================================================
   CUSTOM PROPERTIES
============================================================ */
:root {
	--c-dark: #0B2B26;
	--c-green: #01745A;
	--c-lime: #94C942;
	--c-light: #EFF1F3;
	--c-white: #FFFFFF;
	--c-ink: #071A17;

	--f-display: 'Cormorant Garamond', Georgia, serif;
	--f-body: 'Inter', -apple-system, sans-serif;
	--f-accent: 'Montserrat', sans-serif;

	--nav-h: 68px;
	--util-h: 36px;
	--max-w: 1360px;
	--ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   RESET & BASE
============================================================ */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--f-body);
	color: var(--c-dark);
	background: var(--c-white);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
}

button {
	cursor: pointer;
	border: none;
	background: none;
	font: inherit;
}

ul {
	list-style: none;
}

/* ============================================================
   LAYOUT UTILITIES
============================================================ */
.wrap {
	width: 100%;
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 0 24px;
}

@media (min-width: 768px) {
	.wrap {
		padding: 0 48px;
	}
}

@media (min-width: 1200px) {
	.wrap {
		padding: 0 80px;
	}
}

.sec-label {
	font-family: var(--f-accent);
	font-size: 9.5px;
	font-weight: 700;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--c-lime);
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}

.sec-label::after {
	content: '';
	display: block;
	width: 28px;
	height: 1px;
	background: var(--c-lime);
	opacity: 0.7;
}

.sec-title {
	font-family: var(--f-display);
	font-size: clamp(34px, 4.5vw, 56px);
	font-weight: 300;
	line-height: 1.1;
	margin-bottom: 18px;
}

.sec-title em {
	font-style: italic;
	color: var(--c-green);
}

.sec-title--light {
	color: var(--c-white);
}

.sec-title--light em {
	color: rgba(255, 255, 255, .45);
}

.sec-body {
	font-family: var(--f-body);
	font-size: 15px;
	line-height: 1.8;
	color: #5A6B67;
}

.sec-body--light {
	color: rgba(255, 255, 255, .5);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--f-accent);
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	padding: 14px 30px;
	border-radius: 3px;
	transition: all .25s var(--ease);
	white-space: nowrap;
}

.btn-lime {
	background: var(--c-lime);
	color: var(--c-dark);
}

.btn-lime:hover {
	background: #a6d84d;
	box-shadow: 0 10px 28px rgba(148, 201, 66, .32);
}

.btn-ghost-white {
	background: transparent;
	color: var(--c-white);
	border: 1.5px solid rgba(255, 255, 255, .35);
}

.btn-ghost-white:hover {
	border-color: var(--c-white);
	background: rgba(255, 255, 255, .08);
}

.btn-ghost-dark {
	background: transparent;
	color: var(--c-dark);
	border: 1.5px solid rgba(11, 43, 38, .28);
}

.btn-ghost-dark:hover {
	background: var(--c-dark);
	color: var(--c-white);
	border-color: var(--c-dark);
}

/* ============================================================
   REVEAL ANIMATIONS
============================================================ */
.reveal {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal.in {
	opacity: 1;
	transform: none;
}

.d1 {
	transition-delay: .08s;
}

.d2 {
	transition-delay: .18s;
}

.d3 {
	transition-delay: .28s;
}

.d4 {
	transition-delay: .38s;
}

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
	position: fixed;
	inset: var(--util-h) 0 auto 0;
	z-index: 900;
	height: var(--nav-h);
	background: rgba(11, 43, 38, 0.85);
	backdrop-filter: blur(6px);
	display: flex;
	align-items: center;
	transition: transform .3s var(--ease), opacity .2s ease, box-shadow .3s ease;
}

.nav.scrolled {
	box-shadow: 0 4px 40px rgba(0, 0, 0, .35);
}

.nav.nav-hidden {
	transform: translateY(calc(-1 * (var(--nav-h) + var(--util-h) + 2px)));
	opacity: 0;
	pointer-events: none;
	box-shadow: none;
}

.utility-bar {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 910;
	height: var(--util-h);
	background: #08211d;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	transition: transform .3s var(--ease);
}

.utility-bar.utility-hidden {
	transform: translateY(calc(-1 * var(--util-h)));
}

.utility-inner {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.utility-left,
.utility-right {
	display: flex;
	align-items: center;
	gap: 14px;
}

.utility-link {
	font-family: var(--f-accent);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .75);
	transition: color .2s;
	white-space: nowrap;
}

.utility-link:hover {
	color: var(--c-white);
}

.utility-link--cta {
	color: var(--c-lime);
}

.utility-sep {
	width: 1px;
	height: 12px;
	background: rgba(255, 255, 255, .14);
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.nav-logo img {
	height: 54px;
	width: auto;
	filter: brightness(0) invert(1);
	transition: opacity .2s;
}

.nav-logo:hover img {
	opacity: .8;
}

.nav-center {
	display: none;
}

.nav-right {
	display: none;
}

.hamburger {
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 8px;
}

.hamburger span {
	display: block;
	width: 22px;
	height: 1.5px;
	background: var(--c-white);
	transition: all .3s var(--ease);
	transform-origin: center;
}

.hamburger.open span:nth-child(1) {
	transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
	transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile drawer */
.drawer {
	position: fixed;
	top: calc(var(--nav-h) + var(--util-h));
	inset-inline: 0;
	background: var(--c-dark);
	border-top: none;
	max-height: 0;
	overflow: hidden;
	transition: max-height .42s var(--ease);
	z-index: 899;
}


.drawer.open {
	max-height: 420px;
	border-top: 1px solid rgba(255, 255, 255, .06);
}

.drawer-inner {
	padding: 8px 24px 28px;
}

.drawer a {
	display: block;
	font-family: var(--f-accent);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .65);
	padding: 15px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .05);
	transition: color .2s;
}

.drawer a:hover {
	color: var(--c-white);
}

.drawer a:last-of-type {
	border-bottom: none;
}

.drawer .drawer-cta {
	display: inline-flex;
	margin-top: 20px;
	background: var(--c-lime);
	color: var(--c-dark);
	font-family: var(--f-accent);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .15em;
	text-transform: uppercase;
	padding: 13px 28px;
	border-radius: 3px;
}

@media (min-width: 1024px) {
	.nav-center {
		display: flex;
		align-items: center;
		gap: 34px;
	}

	.nav-center a {
		font-family: var(--f-accent);
		font-size: 9.5px;
		font-weight: 600;
		letter-spacing: .16em;
		text-transform: uppercase;
		color: rgba(255, 255, 255, .6);
		padding-bottom: 3px;
		position: relative;
		transition: color .2s;
	}

	.nav-center a::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 0;
		height: 1px;
		background: var(--c-lime);
		transition: width .3s var(--ease);
	}

	.nav-center a:hover {
		color: var(--c-white);
	}

	.nav-center a:hover::after {
		width: 100%;
	}

	.nav-right {
		display: flex;
		align-items: center;
	}

	.nav-right .btn {
		font-size: 9.5px;
		padding: 9px 20px;
	}

	.hamburger {
		display: none;
	}

	.drawer {
		display: none;
	}
}

@media (max-width: 1023px) {
	.utility-left {
		display: none;
	}

	.utility-right {
		width: 100%;
		justify-content: flex-end;
	}

	.utility-right .utility-link {
		display: none;
	}

	.utility-right .utility-sep {
		display: none;
	}

	.utility-right .utility-link[href*="com_ggmember"] {
		display: inline-flex;
	}

	.utility-right .utility-link--cta {
		display: inline-flex;
	}
}

/* ============================================================
   HERO
============================================================ */
.hero {
	min-height: 100svh;
	background: #071A17; /* fallback si la vidéo ne charge pas */
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding: calc(var(--nav-h) + var(--util-h) + 72px) 24px 96px;
}

/* Vidéo de fond */
.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	pointer-events: none;

}

/* Overlay : dégradés sombres par-dessus la vidéo */
.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 15% 60%, rgba(1, 116, 90, .12) 0%, transparent 55%),
		radial-gradient(ellipse at 85% 15%, rgba(11, 43, 38, .35) 0%, transparent 45%),
		linear-gradient(155deg, rgba(7, 30, 26, .50) 0%, rgba(11, 43, 38, .44) 45%, rgba(5, 32, 24, .55) 100%);
}

.hero-dots {
	position: absolute;
	inset: 0;
	z-index: 2;
	background-image: radial-gradient(circle, rgba(255, 255, 255, .035) 1px, transparent 1px);
	background-size: 28px 28px;
	pointer-events: none;
}

.hero-year-deco {
	position: absolute;
	z-index: 2;
	bottom: -40px;
	right: -10px;
	font-family: var(--f-display);
	font-size: clamp(140px, 22vw, 320px);
	font-weight: 300;
	color: rgba(255, 255, 255, .022);
	line-height: 1;
	pointer-events: none;
	user-select: none;
	letter-spacing: -.02em;
}

.hero-scroll-hint {
	position: absolute;
	z-index: 2;
	bottom: 36px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	opacity: .4;
	transition: opacity .2s;
	cursor: pointer;
}

.hero-scroll-hint:hover {
	opacity: .7;
}

.hero-scroll-hint span {
	font-family: var(--f-accent);
	font-size: 7.5px;
	font-weight: 700;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--c-white);
}

.hero-scroll-line {
	width: 1px;
	height: 40px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, .5), transparent);
	animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {

	0%,
	100% {
		transform: scaleY(1);
		opacity: 1;
	}

	50% {
		transform: scaleY(.5);
		opacity: .4;
	}
}

.hero-content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1000px;
}

.hero-eyebrow {
	font-family: var(--f-accent);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .3em;
	text-transform: uppercase;
	color: var(--c-lime);
	margin-bottom: 28px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
	content: '';
	display: block;
	width: 28px;
	height: 1px;
	background: var(--c-lime);
}

.hero-title {
	font-family: var(--f-display);
	font-size: clamp(48px, 8.5vw, 102px);
	font-weight: 300;
	color: var(--c-white);
	line-height: 1;
	letter-spacing: -.01em;
	margin-bottom: 30px;
}

.hero-title em {
	font-style: italic;
	color: rgba(255, 255, 255, .48);
}

.hero-sub {
	font-family: var(--f-body);
	font-size: clamp(14px, 1.8vw, 17px);
	font-weight: 300;
	color: rgba(255, 255, 255, .5);
	line-height: 1.75;
	max-width: 500px;
	margin-bottom: 48px;
}

.hero-actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
}

@media (min-width: 560px) {
	.hero {
		padding-left: 48px;
		padding-right: 48px;
	}

	.hero-eyebrow::before {
		display: none;
	}

	.hero-actions {
		flex-direction: row;
		align-items: center;
	}
}

@media (min-width: 1200px) {
	.hero {
		padding-left: 80px;
		padding-right: 80px;
	}
}

/* ============================================================
   LE CLUB
============================================================ */
.club {
	padding: clamp(80px, 10vw, 140px) 0;
	background: var(--c-white);
}

.club-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 52px;
}

.club-copy p {
	margin-bottom: 18px;
}

.club-copy p:last-child {
	margin-bottom: 0;
}

.club-stats {
	display: flex;
	gap: 0;
	margin-top: 44px;
	border-top: 1px solid var(--c-light);
}

.club-stat {
	flex: 1;
	padding: 20px 10px;
	border-right: 1px solid var(--c-light);
}

.club-stat:last-child {
	border-right: none;
}

.club-stat-num {
	font-family: var(--f-display);
	font-size: 42px;
	font-weight: 300;
	color: var(--c-dark);
	line-height: 1;
	margin-bottom: 4px;
}

.club-stat-lbl {
	font-family: var(--f-accent);
	font-size: 8.5px;
	font-weight: 600;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: #8A9A97;
}

.club-quote {
	background: var(--c-dark);
	border-radius: 4px;
	padding: 40px 36px;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 28px;
}

.club-quote::before {
	content: '❝';
	position: absolute;
	top: -16px;
	right: 16px;
	font-family: var(--f-display);
	font-size: 140px;
	color: rgba(148, 201, 66, .06);
	line-height: 1;
	pointer-events: none;
}

.club-quote-text {
	font-family: var(--f-display);
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 300;
	font-style: italic;
	color: var(--c-white);
	line-height: 1.5;
	position: relative;
}

.club-quote-text span {
	color: var(--c-lime);
}

.club-quote-foot {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.club-quote-bar {
	width: 36px;
	height: 2px;
	background: var(--c-lime);
}

.club-quote-attr {
	font-family: var(--f-accent);
	font-size: 8.5px;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .28);
}

@media (min-width: 1024px) {
	.club-grid {
		grid-template-columns: 1.1fr .9fr;
		gap: 80px;
		align-items: center;
	}
}

/* ============================================================
   LE PARCOURS
============================================================ */
.parcours {
	padding: clamp(80px, 10vw, 140px) 0;
	background: var(--c-dark);
	position: relative;
	overflow: hidden;
}

.parcours-deco {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--f-display);
	font-size: clamp(180px, 28vw, 420px);
	font-weight: 300;
	color: rgba(255, 255, 255, .013);
	pointer-events: none;
	user-select: none;
	white-space: nowrap;
	letter-spacing: -.02em;
}

.parcours-header {
	margin-bottom: 56px;
}

.parcours-header .sec-label {
	color: var(--c-lime);
}

.holes-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

.hole {
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .07);
	border-radius: 4px;
	padding: 32px 28px 28px;
	position: relative;
	overflow: hidden;
	transition: background .3s var(--ease), transform .3s var(--ease);
}

.hole::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 100%;
	background: var(--c-lime);
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform .35s var(--ease);
}

.hole:hover {
	background: rgba(255, 255, 255, .065);
	transform: translateY(-2px);
}

.hole:hover::after {
	transform: scaleY(1);
}

.hole-bg-num {
	position: absolute;
	top: -12px;
	right: 16px;
	font-family: var(--f-display);
	font-size: 100px;
	font-weight: 300;
	color: rgba(255, 255, 255, .04);
	line-height: 1;
	pointer-events: none;
}

.hole-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 14px;
}

.hole-num-label {
	font-family: var(--f-accent);
	font-size: 8.5px;
	font-weight: 700;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--c-lime);
}

.hole-par-label {
	font-family: var(--f-display);
	font-size: 13px;
	font-weight: 400;
	color: rgba(255, 255, 255, .3);
	letter-spacing: .06em;
}

.hole-name {
	font-family: var(--f-display);
	font-size: 30px;
	font-weight: 300;
	color: var(--c-white);
	margin-bottom: 10px;
}

.hole-desc {
	font-family: var(--f-body);
	font-size: 13px;
	line-height: 1.7;
	color: rgba(255, 255, 255, .42);
	margin-bottom: 22px;
}

.hole-stats {
	display: flex;
	gap: 28px;
	border-top: 1px solid rgba(255, 255, 255, .06);
	padding-top: 18px;
}

.hole-stat-val {
	font-family: var(--f-display);
	font-size: 22px;
	font-weight: 300;
	color: rgba(255, 255, 255, .65);
}

.hole-stat-key {
	font-family: var(--f-accent);
	font-size: 7.5px;
	font-weight: 600;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .22);
	margin-top: 2px;
}

.parcours-cta {
	text-align: center;
	margin-top: 56px;
}

.parcours-cta p {
	font-family: var(--f-display);
	font-style: italic;
	font-size: 18px;
	color: rgba(255, 255, 255, .35);
	margin-bottom: 24px;
}

@media (min-width: 1024px) {
	.holes-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 18px;
	}
}

/* ============================================================
   MEMBERSHIP
============================================================ */
.membership {
	padding: clamp(80px, 10vw, 140px) 0;
	background: var(--c-light);
}

.membership-head {
	text-align: center;
	margin-bottom: 56px;
}

.membership-head .sec-label {
	justify-content: center;
}

.membership-head .sec-label::after {
	display: none;
}

.membership-head .sec-body {
	max-width: 480px;
	margin: 0 auto;
}

.mem-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.mem-card {
	background: var(--c-white);
	border-radius: 6px;
	padding: 36px 30px;
	position: relative;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.mem-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 52px rgba(11, 43, 38, .11);
}

.mem-card--dark {
	background: var(--c-dark);
}

.mem-card--dark:hover {
	box-shadow: 0 18px 52px rgba(0, 0, 0, .28);
}

.mem-badge {
	position: absolute;
	top: -11px;
	left: 30px;
	background: var(--c-lime);
	color: var(--c-dark);
	font-family: var(--f-accent);
	font-size: 7.5px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	padding: 3px 11px;
	border-radius: 3px;
}

.mem-tier {
	font-family: var(--f-accent);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--c-lime);
	margin-bottom: 6px;
}

.mem-card:not(.mem-card--dark) .mem-tier {
	color: var(--c-green);
}

.mem-name {
	font-family: var(--f-display);
	font-size: 32px;
	font-weight: 300;
	color: var(--c-white);
	line-height: 1;
	margin-bottom: 4px;
}

.mem-card:not(.mem-card--dark) .mem-name {
	color: var(--c-dark);
}

.mem-price {
	font-family: var(--f-display);
	font-size: 44px;
	font-weight: 300;
	color: var(--c-white);
	line-height: 1;
}

.mem-price sub {
	font-size: 15px;
	font-family: var(--f-body);
	font-weight: 300;
	color: rgba(255, 255, 255, .4);
	vertical-align: baseline;
}

.mem-card:not(.mem-card--dark) .mem-price {
	color: var(--c-dark);
}

.mem-card:not(.mem-card--dark) .mem-price sub {
	color: #9AA5A2;
}

.mem-divider {
	height: 1px;
	background: rgba(255, 255, 255, .1);
	margin: 24px 0;
}

.mem-card:not(.mem-card--dark) .mem-divider {
	background: var(--c-light);
}

.mem-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 32px;
}

.mem-list li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-family: var(--f-body);
	font-size: 13.5px;
	line-height: 1.5;
	color: rgba(255, 255, 255, .58);
}

.mem-card:not(.mem-card--dark) .mem-list li {
	color: #5A6B67;
}

.mem-check {
	width: 16px;
	min-width: 16px;
	height: 16px;
	border-radius: 50%;
	background: rgba(148, 201, 66, .12);
	border: 1px solid rgba(148, 201, 66, .4);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 1px;
	flex-shrink: 0;
}

.mem-check svg {
	width: 8px;
	height: 8px;
}

.mem-btn {
	display: block;
	text-align: center;
	font-family: var(--f-accent);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .15em;
	text-transform: uppercase;
	padding: 14px 28px;
	border-radius: 3px;
	transition: all .25s var(--ease);
}

.mem-btn--lime {
	background: var(--c-lime);
	color: var(--c-dark);
}

.mem-btn--lime:hover {
	background: #a6d84d;
	box-shadow: 0 8px 24px rgba(148, 201, 66, .3);
}

.mem-btn--outline {
	background: transparent;
	color: var(--c-dark);
	border: 1.5px solid rgba(11, 43, 38, .22);
}

.mem-btn--outline:hover {
	background: var(--c-dark);
	color: var(--c-white);
	border-color: var(--c-dark);
}

@media (min-width: 1024px) {
	.mem-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 18px;
		align-items: start;
	}

	.mem-card--dark {
		transform: translateY(-10px);
	}

	.mem-card--dark:hover {
		transform: translateY(-14px);
	}
}

/* ============================================================
   ÉVÉNEMENTS
============================================================ */
.evenements {
	padding: clamp(80px, 10vw, 140px) 0;
	background: var(--c-white);
}

.ev-header {
	margin-bottom: 48px;
}

.ev-scroll {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	padding-bottom: 12px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	cursor: grab;
}

.ev-scroll:active {
	cursor: grabbing;
}

.ev-scroll::-webkit-scrollbar {
	display: none;
}

.ev-card {
	background: var(--c-white);
	border: 1px solid var(--c-light);
	border-radius: 4px;
	padding: 28px 24px;
	min-width: 290px;
	flex-shrink: 0;
	position: relative;
	transition: all .3s var(--ease);
}

.ev-card:hover {
	border-bottom-color: var(--c-lime);
	box-shadow: 0 8px 36px rgba(11, 43, 38, .1);
	transform: translateY(-2px);
}

.ev-date {
	margin-bottom: 20px;
}

.ev-month {
	display: inline-block;
	font-family: var(--f-accent);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--c-lime);
	background: rgba(148, 201, 66, .1);
	padding: 3px 8px;
	border-radius: 2px;
	margin-bottom: 4px;
}

.ev-day {
	font-family: var(--f-display);
	font-size: 52px;
	font-weight: 300;
	color: var(--c-dark);
	line-height: 1;
}

.ev-title {
	font-family: var(--f-display);
	font-size: 22px;
	font-weight: 400;
	color: var(--c-dark);
	line-height: 1.25;
	margin-bottom: 10px;
}

.ev-desc {
	font-family: var(--f-body);
	font-size: 13px;
	line-height: 1.65;
	color: #8A9A97;
	margin-bottom: 22px;
}

.ev-link {
	font-family: var(--f-accent);
	font-size: 8.5px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--c-green);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: gap .2s;
}

.ev-link::after {
	content: '→';
	font-family: var(--f-body);
	font-size: 14px;
	line-height: 1;
}

.ev-link:hover {
	gap: 12px;
}

@media (min-width: 1024px) {
	.ev-scroll {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		overflow: visible;
		padding-bottom: 0;
		cursor: default;
	}

	.ev-card {
		min-width: auto;
	}
}

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner {
	padding: clamp(80px, 10vw, 120px) 0;
	background:
		radial-gradient(ellipse at 25% 60%, rgba(1, 116, 90, .18) 0%, transparent 55%),
		var(--c-dark);
	position: relative;
	overflow: hidden;
	text-align: center;
}

.cta-dots {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(255, 255, 255, .028) 1px, transparent 1px);
	background-size: 28px 28px;
	pointer-events: none;
}

.cta-title {
	font-family: var(--f-display);
	font-size: clamp(36px, 5.5vw, 68px);
	font-weight: 300;
	font-style: italic;
	color: var(--c-white);
	line-height: 1.2;
	margin-bottom: 16px;
	position: relative;
}

.cta-title em {
	font-style: normal;
	color: var(--c-lime);
}

.cta-sub {
	font-family: var(--f-body);
	font-size: 15px;
	color: rgba(255, 255, 255, .45);
	margin-bottom: 44px;
	position: relative;
}

.cta-banner .btn {
	position: relative;
	font-size: 11px;
	padding: 16px 44px;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
	background: var(--c-ink);
	padding: clamp(64px, 8vw, 100px) 0 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	padding-bottom: clamp(48px, 6vw, 80px);
	border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-brand-logo img {
	height: 150px;
	width: auto;
	/* filter: brightness(0) invert(1); */
	margin-bottom: 20px;
}

.footer-brand-tag {
	font-family: var(--f-display);
	font-style: italic;
	font-size: 14.5px;
	color: rgba(255, 255, 255, .3);
	line-height: 1.6;
	max-width: 230px;
}

.footer-col-title {
	font-family: var(--f-accent);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--c-lime);
	margin-bottom: 20px;
}

.footer-nav-list {
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.footer-nav-list a {
	font-family: var(--f-body);
	font-size: 13.5px;
	color: rgba(255, 255, 255, .4);
	transition: color .2s;
}

.footer-nav-list a:hover {
	color: rgba(255, 255, 255, .85);
}

.footer-contact-row {
	display: flex;
	gap: 12px;
	margin-bottom: 12px;
}

.footer-contact-icon {
	width: 14px;
	min-width: 14px;
	margin-top: 3px;
	color: var(--c-lime);
	flex-shrink: 0;
}

.footer-contact-text {
	font-family: var(--f-body);
	font-size: 13px;
	color: rgba(255, 255, 255, .4);
	line-height: 1.55;
}

.footer-social {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.social-btn {
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, .4);
	transition: all .22s;
}

.social-btn:hover {
	border-color: var(--c-lime);
	color: var(--c-lime);
	background: rgba(148, 201, 66, .06);
}

.social-btn svg {
	width: 16px;
	height: 16px;
}

.footer-bottom {
	padding: 20px 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
	align-items: center;
	text-align: center;
}

.footer-copy {
	font-family: var(--f-body);
	font-size: 11px;
	color: rgba(255, 255, 255, .2);
}

.footer-sig {
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--c-lime) 0%, var(--c-green) 100%);
}

@media (min-width: 768px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-bottom {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}

@media (min-width: 1024px) {
	.footer-grid {
		grid-template-columns: 1.4fr 1fr 1fr 1fr;
		gap: 56px;
	}
}

/* ============================================================
   CLUB — IMAGE + QUOTE OVERLAY
============================================================ */
.club-visual {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
}

.club-visual-img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	display: block;
	transition: transform .7s var(--ease);
}

.club-visual:hover .club-visual-img {
	transform: scale(1.03);
}

.club-visual .club-quote {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	border-radius: 0;
	background:rgba(7, 26, 23, .2);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	padding: 28px 32px;
	gap: 18px;
}

.club-visual .club-quote::before {
	display: none;
}

@media (min-width: 1024px) {
	.club-visual-img {
		height: 480px;
	}
}

/* ============================================================
   PARCOURS — PHOTO SUR LES TROUS
============================================================ */
.hole-img {
	margin: -32px -28px 24px;
	height: 190px;
	overflow: hidden;
}

.hole-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .6s var(--ease);
}

.hole:hover .hole-img img {
	transform: scale(1.06);
}

/* ============================================================
   GALERIE PHOTO
============================================================ */
.galerie {
	overflow: hidden;
}

.galerie-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 240px);
}

.galerie-item {
	overflow: hidden;
	position: relative;
}

.galerie-item::after {
	content: '';
	position: absolute;
	inset: 0;
	background: transparent;
	transition: background .4s;
	pointer-events: none;
}

.galerie-item:hover::after {
	background: rgba(11, 43, 38, .18);
}

.galerie-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .65s var(--ease);
}

.galerie-item:hover img {
	transform: scale(1.06);
}

@media (min-width: 768px) {
	.galerie-grid {
		grid-template-columns: repeat(4, 1fr);
		grid-template-rows: 360px;
	}
}
/* ============================================================
   TARIFICATIONS
============================================================ */
.tarifs {
	padding: clamp(80px, 10vw, 140px) 0;
	background: var(--c-white);
}

.tarifs-head {
	margin-bottom: 56px;
}

.tarifs-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

@media (min-width: 768px) {
	.tarifs-grid {
		grid-template-columns: 1fr 1fr;
		gap: 28px;
		align-items: start;
	}
}

.tarifs-card {
	background: var(--c-white);
	border-radius: 6px;
	overflow: hidden;
	border: 1px solid var(--c-light);
	box-shadow: 0 4px 28px rgba(11, 43, 38, .07);
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.tarifs-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 44px rgba(11, 43, 38, .12);
}

.tarifs-card-head {
	background: var(--c-dark);
	padding: 22px 28px;
	display: flex;
	align-items: center;
	gap: 14px;
}

.tarifs-card-icon {
	color: var(--c-lime);
	flex-shrink: 0;
}

.tarifs-card-icon svg {
	width: 22px;
	height: 22px;
}

.tarifs-card-title {
	font-family: var(--f-display);
	font-size: 24px;
	font-weight: 300;
	color: var(--c-white);
}

.tarifs-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 28px;
	border-bottom: 1px solid var(--c-light);
}

.tarifs-row:last-child {
	border-bottom: none;
}

.tarifs-row--after {
	background: rgba(148, 201, 66, .06);
}

.tarifs-row-info {
	flex: 1;
}

.tarifs-row-label {
	font-family: var(--f-body);
	font-size: 14px;
	color: #5A6B67;
	display: block;
}

.tarifs-row-sub {
	font-family: var(--f-body);
	font-size: 11px;
	color: #9AA5A2;
	margin-top: 3px;
}

.tarifs-row-price {
	font-family: var(--f-display);
	font-size: 32px;
	font-weight: 300;
	color: var(--c-dark);
	white-space: nowrap;
	line-height: 1;
}

.tarifs-row-price sup {
	font-family: var(--f-body);
	font-size: 13px;
	font-weight: 400;
	color: #8A9A97;
	vertical-align: super;
}

.tarifs-card-footer {
	padding: 16px 24px;
	background: rgba(11, 43, 38, .03);
	border-top: 1px solid var(--c-light);
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.tarifs-note {
	font-family: var(--f-body);
	font-size: 11.5px;
	color: #9AA5A2;
	line-height: 1.6;
}

.tarifs-junior {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 12px 16px;
	background: rgba(148, 201, 66, .10);
	border-radius: 4px;
	border-left: 3px solid var(--c-lime);
}

.tarifs-junior svg {
	width: 16px;
	height: 16px;
	color: var(--c-green);
	flex-shrink: 0;
	margin-top: 1px;
}

.tarifs-junior-text {
	font-family: var(--f-body);
	font-size: 12.5px;
	color: #3D5450;
	line-height: 1.55;
}

.tarifs-junior-text strong {
	color: var(--c-dark);
	font-weight: 600;
}

/* ============================================================
   NAVIGATION — LIEN ACTIF
============================================================ */
.nav-center a.active {
	color: var(--c-white);
}
.nav-center a.active::after {
	width: 100%;
}

/* ============================================================
   PAGES INTERNES — HERO
============================================================ */
.page-hero {
	min-height: 42vh;
	background:
		radial-gradient(ellipse at 20% 60%, rgba(1, 116, 90, .20) 0%, transparent 55%),
		var(--c-dark);
	display: flex;
	align-items: flex-end;
	padding: calc(var(--nav-h) + var(--util-h) + 72px) 0 64px;
	position: relative;
	overflow: hidden;
}

.page-hero--golf {
	background:
		radial-gradient(ellipse at 15% 60%, rgba(1, 116, 90, .16) 0%, transparent 55%),
		radial-gradient(ellipse at 85% 15%, rgba(11, 43, 38, .58) 0%, transparent 45%),
		linear-gradient(155deg, rgba(7, 30, 26, .82) 0%, rgba(11, 43, 38, .78) 45%, rgba(5, 32, 24, .86) 100%),
		url('../images/course/_MG_7030.jpg') 20% 60% / cover no-repeat;
}
.page-hero-dots {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(255, 255, 255, .05) 1px, transparent 1px);
	background-size: 28px 28px;
	pointer-events: none;
	z-index:99;
}
.page-hero-label {
	font-family: var(--f-accent);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .28em;
	text-transform: uppercase;
	color: var(--c-lime);
	margin-bottom: 18px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.page-hero-label::after {
	content: '';
	display: block;
	width: 28px;
	height: 1px;
	background: var(--c-lime);
}
.page-hero-title {
	font-family: var(--f-display);
	font-size: clamp(44px, 7vw, 88px);
	font-weight: 300;
	color: var(--c-white);
	line-height: 1.05;
	margin-bottom: 16px;
}
.page-hero-title em {
	font-style: italic;
	color: rgba(255, 255, 255, .4);
}
.page-hero-sub {
	font-family: var(--f-body);
	font-size: 15px;
	color: rgba(255, 255, 255, .45);
	max-width: 520px;
	line-height: 1.75;
}

/* ============================================================
   PAGES INTERNES — SECTIONS À VENIR
============================================================ */
.upcoming {
	padding: clamp(80px, 10vw, 120px) 0;
	background: var(--c-light);
}
.upcoming-intro {
	margin-bottom: 48px;
}
.upcoming-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}
@media (min-width: 640px) {
	.upcoming-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
	.upcoming-grid { grid-template-columns: repeat(3, 1fr); }
}
.upcoming-card {
	background: var(--c-white);
	border-radius: 6px;
	padding: 28px 24px;
	border: 1px solid rgba(11, 43, 38, .08);
	position: relative;
	overflow: hidden;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.upcoming-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 36px rgba(11, 43, 38, .09);
}
.upcoming-card-num {
	font-family: var(--f-display);
	font-size: 56px;
	font-weight: 300;
	color: rgba(11, 43, 38, .06);
	line-height: 1;
	position: absolute;
	top: 8px;
	right: 16px;
}
.upcoming-card-title {
	font-family: var(--f-display);
	font-size: 22px;
	font-weight: 400;
	color: var(--c-dark);
	margin-bottom: 8px;
}
.upcoming-card-desc {
	font-family: var(--f-body);
	font-size: 13.5px;
	color: #6A7B77;
	line-height: 1.65;
}
.upcoming-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 16px;
	font-family: var(--f-accent);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--c-green);
	border: 1px solid rgba(1, 116, 90, .3);
	padding: 4px 10px;
	border-radius: 3px;
}

/* ============================================================
   SOUS-NAVIGATION (golf.html)
============================================================ */
.subnav {
	position: sticky;
	top: calc(var(--nav-h) + var(--util-h));
	z-index: 800;
	background: var(--c-white);
	border-bottom: 2px solid var(--c-light);
	box-shadow: 0 2px 20px rgba(11, 43, 38, .08);
	transition: top 0.3s ease;
}

.subnav.subnav-top {
	top: 0;
}

.subnav-inner {
	display: flex;
	overflow-x: auto;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.subnav-inner::-webkit-scrollbar { display: none; }

.subnav-link {
	font-family: var(--f-accent);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: #8A9A97;
	padding: 17px 22px;
	white-space: nowrap;
	position: relative;
	flex-shrink: 0;
	transition: color .2s;
}

.subnav-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--c-lime);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s var(--ease);
}

.subnav-link:hover { color: var(--c-dark); }
.subnav-link:hover::after { transform: scaleX(1); }
.subnav-link.active { color: var(--c-dark); }
.subnav-link.active::after { transform: scaleX(1); }

/* scroll-margin so sticky bars don't overlap anchors */
.golf-section {
	scroll-margin-top: calc(var(--nav-h) + var(--util-h) + 52px);
}

/* ============================================================
   GOLF — SECTIONS COMMUNES
============================================================ */
.gsec {
	padding: clamp(72px, 9vw, 120px) 0;
}

.gsec--white { background: var(--c-white); }
.gsec--light { background: var(--c-light); }
.gsec--dark  { background: var(--c-dark); }

/* Placeholder « section en développement » */
.gsec-stub {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 20px;
	padding: 72px 24px;
	border: 2px dashed rgba(11, 43, 38, .12);
	border-radius: 8px;
	margin-top: 40px;
}

.gsec--dark .gsec-stub {
	border-color: rgba(255, 255, 255, .1);
}

.gsec-stub-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(148, 201, 66, .1);
	border: 1px solid rgba(148, 201, 66, .3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--c-lime);
}

.gsec-stub-title {
	font-family: var(--f-display);
	font-size: 22px;
	font-weight: 300;
	color: var(--c-dark);
}

.gsec--dark .gsec-stub-title { color: var(--c-white); }

.gsec-stub-desc {
	font-family: var(--f-body);
	font-size: 14px;
	color: #8A9A97;
	max-width: 420px;
	line-height: 1.7;
}

.gsec-stub-badge {
	font-family: var(--f-accent);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--c-green);
	border: 1px solid rgba(1, 116, 90, .3);
	padding: 5px 14px;
	border-radius: 3px;
}


/* ============================================================
   GOLF — SECTION PARCOURS (feature cards + video callout)
============================================================ */
.parc-features {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-top: 56px;
}

@media (min-width: 640px) {
	.parc-features { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
	.parc-features { grid-template-columns: repeat(4, 1fr); }
}

.parc-feature {
	background: var(--c-light);
	border-radius: 6px;
	padding: 26px 22px 22px;
	border-top: 3px solid transparent;
	transition: border-color .3s var(--ease), transform .3s var(--ease);
}

.parc-feature:hover {
	border-top-color: var(--c-lime);
	transform: translateY(-3px);
}

.parc-feature-icon {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(148, 201, 66, .12);
	border: 1px solid rgba(148, 201, 66, .35);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--c-green);
	margin-bottom: 16px;
	flex-shrink: 0;
}

.parc-feature-icon svg {
	width: 16px;
	height: 16px;
}

.parc-feature-title {
	font-family: var(--f-display);
	font-size: 20px;
	font-weight: 400;
	color: var(--c-dark);
	line-height: 1.2;
	margin-bottom: 10px;
}

.parc-feature-desc {
	font-family: var(--f-body);
	font-size: 13px;
	color: #6A7B77;
	line-height: 1.65;
}

.parc-feature-detail {
	display: inline-block;
	font-family: var(--f-accent);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--c-green);
	margin-top: 14px;
}

/* Video callout */
.parc-video {
	margin-top: 48px;
	background: var(--c-dark);
	border-radius: 6px;
	padding: 32px 36px;
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
	position: relative;
	overflow: hidden;
}

.parc-video::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(255,255,255,.03) 1px, transparent 1px);
	background-size: 22px 22px;
	pointer-events: none;
}

.parc-video-icon {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	border: 1.5px solid rgba(148, 201, 66, .4);
	background: rgba(148, 201, 66, .08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--c-lime);
	flex-shrink: 0;
	position: relative;
	transition: background .25s, border-color .25s;
	cursor: pointer;
}

.parc-video-icon:hover {
	background: rgba(148, 201, 66, .18);
	border-color: var(--c-lime);
}

.parc-video-icon svg {
	width: 20px;
	height: 20px;
	margin-left: 3px;
}

.parc-video-body {
	flex: 1;
	min-width: 180px;
	position: relative;
}

.parc-video-label {
	font-family: var(--f-accent);
	font-size: 8.5px;
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--c-lime);
	margin-bottom: 6px;
}

.parc-video-title {
	font-family: var(--f-display);
	font-size: clamp(18px, 2.5vw, 24px);
	font-weight: 300;
	font-style: italic;
	color: var(--c-white);
	line-height: 1.3;
	margin-bottom: 6px;
}

.parc-video-desc {
	font-family: var(--f-body);
	font-size: 13px;
	color: rgba(255,255,255,.4);
}

/* ============================================================
   GOLF — EXPLORATEUR DE TROUS (hole-by-hole)
============================================================ */
.hole-explorer { margin-top: 48px; }

.hole-nav-strip {
	display: flex;
	gap: 6px;
	overflow-x: auto;
	scrollbar-width: none;
	padding-bottom: 4px;
	margin-bottom: 28px;
	-webkit-overflow-scrolling: touch;
}
.hole-nav-strip::-webkit-scrollbar { display: none; }

.hole-nav-btn {
	flex-shrink: 0;
	min-width: 42px;
	height: 42px;
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, .1);
	background: rgba(255, 255, 255, .04);
	color: rgba(255, 255, 255, .4);
	font-family: var(--f-display);
	font-size: 17px;
	font-weight: 300;
	cursor: pointer;
	transition: background .2s var(--ease), border-color .2s, color .2s;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 8px;
}
.hole-nav-btn:hover {
	border-color: rgba(255, 255, 255, .3);
	color: var(--c-white);
	background: rgba(255, 255, 255, .07);
}
.hole-nav-btn.active {
	background: var(--c-lime);
	border-color: var(--c-lime);
	color: var(--c-dark);
}

/* Display panel */
.hole-display { transition: opacity .18s ease; }
.hole-display.fading { opacity: 0; }

/* Top bar */
.hole-topbar {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	padding-bottom: 20px;
	margin-bottom: 28px;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.hole-label {
	font-family: var(--f-accent);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--c-lime);
	margin-bottom: 6px;
}
.hole-big-num {
	font-family: var(--f-display);
	font-size: clamp(44px, 6vw, 76px);
	font-weight: 300;
	color: var(--c-white);
	line-height: 1;
}
.hole-par-badge {
	text-align: right;
}
.hole-par-badge span {
	display: block;
	font-family: var(--f-accent);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .3);
	margin-bottom: 4px;
}
.hole-par-badge strong {
	display: block;
	font-family: var(--f-display);
	font-size: clamp(44px, 6vw, 76px);
	font-weight: 300;
	color: rgba(255, 255, 255, .55);
	line-height: 1;
}

/* Body: left (diagram + distances) | right (video) */
.hole-body {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}
@media (min-width: 768px) {
	.hole-body {
		grid-template-columns: 1fr 1.3fr;
		gap: 40px;
		align-items: start;
	}
}

/* Hole diagram */
.hole-diagram {
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 6px;
	padding: 20px;
	margin-bottom: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hole-diagram img {
	width: 100%;
	height: auto;
	display: block;
	max-height: 180px;
	object-fit: contain;
}

/* Distances */
.hole-dists-label {
	font-family: var(--f-accent);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .28);
	margin-bottom: 10px;
}
.hole-tee-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .05);
}
.hole-tee-row:last-child { border-bottom: none; }
.hole-tee-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	flex-shrink: 0;
}
.hole-tee-name {
	font-family: var(--f-accent);
	font-size: 8.5px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .35);
	flex: 1;
}
.hole-tee-yards {
	font-family: var(--f-display);
	font-size: 24px;
	font-weight: 300;
	color: rgba(255, 255, 255, .72);
	line-height: 1;
}
.hole-tee-unit {
	font-family: var(--f-accent);
	font-size: 7.5px;
	color: rgba(255, 255, 255, .2);
	letter-spacing: .06em;
}

/* Video */
.hole-video-wrap {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	background: #000;
	border-radius: 6px;
	overflow: hidden;
}
.hole-video-wrap iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: none;
}

/* Pagination */
.hole-pagination {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, .07);
	gap: 12px;
}
.hole-pg-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--f-accent);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .4);
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 3px;
	cursor: pointer;
	padding: 10px 18px;
	transition: color .2s, background .2s, border-color .2s;
}
.hole-pg-btn:hover:not(:disabled) {
	color: var(--c-white);
	background: rgba(255, 255, 255, .08);
	border-color: rgba(255, 255, 255, .25);
}
.hole-pg-btn:disabled { opacity: .2; cursor: default; }
.hole-pg-center {
	font-family: var(--f-display);
	font-size: 15px;
	color: rgba(255, 255, 255, .22);
	white-space: nowrap;
}

/* ============================================================
   GOLF — CARTE DE POINTAGE (scorecard)
============================================================ */
.scorecard-outer {
	overflow-x: auto;
	margin-top: 40px;
	border-radius: 8px;
	box-shadow: 0 4px 32px rgba(11, 43, 38, .10);
	-webkit-overflow-scrolling: touch;
}

.scorecard {
	width: 100%;
	min-width: 620px;
	border-collapse: collapse;
	background: var(--c-white);
}

/* ── En-tête ── */
.scorecard thead th {
	background: var(--c-dark);
	color: rgba(255, 255, 255, .45);
	font-family: var(--f-accent);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	padding: 14px 18px;
	text-align: center;
	white-space: nowrap;
}

.scorecard thead th:first-child {
	text-align: left;
	position: sticky;
	left: 0;
	z-index: 2;
	background: var(--c-dark);
}

.th-tee {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.th-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex-shrink: 0;
}

/* ── Lignes normales ── */
.scorecard tbody td {
	font-family: var(--f-display);
	font-size: 18px;
	font-weight: 300;
	color: var(--c-dark);
	padding: 11px 18px;
	text-align: center;
	border-bottom: 1px solid var(--c-light);
	white-space: nowrap;
}

.scorecard tbody tr:nth-child(even):not(.sc-sub):not(.sc-total) td {
	background: rgba(239, 241, 243, .55);
}

/* ── Colonne Trou (sticky) ── */
.sc-hole {
	text-align: left !important;
	font-family: var(--f-accent) !important;
	font-size: 9px !important;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #8A9A97 !important;
	position: sticky;
	left: 0;
	z-index: 1;
	background: var(--c-white);
}

.scorecard tbody tr:nth-child(even):not(.sc-sub):not(.sc-total) .sc-hole {
	background: rgba(239, 241, 243, .55);
}

/* ── Colonne Par ── */
.sc-par {
	color: var(--c-green) !important;
	font-weight: 500 !important;
}

/* ── Lignes sous-totaux (Aller / Retour) ── */
.sc-sub td {
	background: rgba(148, 201, 66, .08) !important;
	font-family: var(--f-accent) !important;
	font-size: 9px !important;
	font-weight: 700 !important;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #3D5450 !important;
	border-top: 2px solid rgba(148, 201, 66, .28) !important;
	border-bottom: 2px solid rgba(148, 201, 66, .28) !important;
}

.sc-sub .sc-hole { background: rgba(148, 201, 66, .08) !important; }

/* ── Ligne total ── */
.sc-total td {
	background: var(--c-dark) !important;
	font-family: var(--f-display) !important;
	font-size: 22px !important;
	font-weight: 300 !important;
	color: var(--c-white) !important;
	border: none !important;
	padding-top: 14px !important;
	padding-bottom: 14px !important;
}

.sc-total .sc-hole {
	background: var(--c-dark) !important;
	color: rgba(255, 255, 255, .45) !important;
	font-size: 9px !important;
}

.sc-total .sc-par {
	color: var(--c-lime) !important;
}

/* ── Note de bas ── */
.scorecard-note {
	margin-top: 16px;
	font-family: var(--f-body);
	font-size: 11.5px;
	color: #9AA5A2;
	line-height: 1.6;
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.scorecard-note svg {
	flex-shrink: 0;
	margin-top: 2px;
	color: #9AA5A2;
}

.scorecard-actions {
	display: flex;
	gap: 12px;
	margin-top: 28px;
	flex-wrap: wrap;
	align-items: center;
}

/* Scorecard — image officielle */
.scorecard-img-section {
	margin-top: 32px;
}
.scorecard-img-label {
	font-family: var(--f-accent);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: #9AA5A2;
	margin-bottom: 12px;
}
.scorecard-img-wrap {
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(11, 43, 38, .10);
	border: 1px solid var(--c-light);
}
.scorecard-img-wrap img {
	width: 100%;
	height: auto;
	display: block;
}

/* ============================================================
   GOLF — POLITIQUES DU CLUB
============================================================ */
.policy-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-top: 48px;
}

@media (min-width: 1024px) {
	.policy-layout {
		grid-template-columns: 1.35fr 1fr;
		gap: 36px;
		align-items: start;
	}
}

/* ── Groupes de politiques ── */
.policy-groups {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.policy-group {
	background: var(--c-white);
	border-radius: 6px;
	overflow: hidden;
	border: 1px solid rgba(11, 43, 38, .08);
}

.policy-group-head {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 15px 20px;
	background: var(--c-dark);
}

.policy-group-icon {
	color: var(--c-lime);
	flex-shrink: 0;
	display: flex;
}

.policy-group-icon svg { width: 16px; height: 16px; }

.policy-group-title {
	font-family: var(--f-accent);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .75);
	flex: 1;
}

.policy-item {
	display: flex;
	gap: 12px;
	padding: 12px 20px;
	border-bottom: 1px solid var(--c-light);
	align-items: flex-start;
}

.policy-item:last-child { border-bottom: none; }

.policy-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--c-lime);
	flex-shrink: 0;
	margin-top: 7px;
}

.policy-text {
	font-family: var(--f-body);
	font-size: 13.5px;
	line-height: 1.65;
	color: #5A6B67;
}

.policy-text strong {
	color: var(--c-dark);
	font-weight: 600;
}

/* ── Carte politique de pluie ── */
.rain-card {
	background: var(--c-dark);
	border-radius: 6px;
	overflow: hidden;
	position: relative;
}

.rain-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(255, 255, 255, .03) 1px, transparent 1px);
	background-size: 20px 20px;
	pointer-events: none;
}

.rain-card-head {
	padding: 24px 24px 18px;
	border-bottom: 1px solid rgba(255, 255, 255, .07);
	display: flex;
	align-items: flex-start;
	gap: 14px;
	position: relative;
}

.rain-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(148, 201, 66, .08);
	border: 1px solid rgba(148, 201, 66, .28);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--c-lime);
	flex-shrink: 0;
}

.rain-icon svg { width: 18px; height: 18px; }

.rain-title {
	font-family: var(--f-display);
	font-size: 22px;
	font-weight: 300;
	color: var(--c-white);
	line-height: 1.2;
	margin-bottom: 4px;
}

.rain-sub {
	font-family: var(--f-body);
	font-size: 11.5px;
	color: rgba(255, 255, 255, .32);
	line-height: 1.5;
}

.rain-rows { position: relative; }

.rain-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
	padding: 14px 24px;
	border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.rain-row:last-child { border-bottom: none; }

.rain-condition {
	font-family: var(--f-body);
	font-size: 13px;
	color: rgba(255, 255, 255, .5);
	line-height: 1.5;
	flex: 1;
}

.rain-outcome {
	font-family: var(--f-accent);
	font-size: 7.5px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: 4px 9px;
	border-radius: 3px;
	white-space: nowrap;
	flex-shrink: 0;
	margin-top: 2px;
}

.rain-outcome--ok {
	background: rgba(148, 201, 66, .14);
	color: var(--c-lime);
	border: 1px solid rgba(148, 201, 66, .28);
}

.rain-outcome--partial {
	background: rgba(200, 160, 32, .14);
	color: #D4A820;
	border: 1px solid rgba(200, 160, 32, .28);
}

.rain-outcome--none {
	background: rgba(217, 69, 69, .14);
	color: #E06060;
	border: 1px solid rgba(217, 69, 69, .28);
}

.rain-card-footer {
	padding: 14px 24px;
	background: rgba(0, 0, 0, .18);
	border-top: 1px solid rgba(255, 255, 255, .05);
	position: relative;
}

.rain-footer-text {
	font-family: var(--f-body);
	font-size: 11.5px;
	color: rgba(255, 255, 255, .22);
	line-height: 1.6;
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.rain-footer-text svg {
	flex-shrink: 0;
	margin-top: 1px;
}

/* ============================================================
   GOLF — SECTION MEMBERSHIP (golf.html)
============================================================ */

/* ── Abonnements principaux ── */
.mem-main-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-top: 48px;
}

@media (min-width: 640px) {
	.mem-main-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
	.mem-main-grid { grid-template-columns: repeat(3, 1fr); }
}

.mem-main-card {
	background: var(--c-white);
	border-radius: 6px;
	padding: 28px 24px 24px;
	position: relative;
	border-top: 3px solid rgba(11, 43, 38, .12);
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.mem-main-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 44px rgba(0, 0, 0, .22);
}

.mem-main-card--featured {
	border-top-color: var(--c-lime);
}

.mem-featured-badge {
	position: absolute;
	top: -11px;
	left: 24px;
	background: var(--c-lime);
	color: var(--c-dark);
	font-family: var(--f-accent);
	font-size: 7.5px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: 3px;
}

.mem-access-label {
	font-family: var(--f-accent);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--c-green);
	margin-bottom: 6px;
}

.mem-access-name {
	font-family: var(--f-display);
	font-size: 28px;
	font-weight: 300;
	color: var(--c-dark);
	line-height: 1.1;
	margin-bottom: 6px;
}

.mem-access-desc {
	font-family: var(--f-body);
	font-size: 12.5px;
	color: #8A9A97;
	line-height: 1.5;
	margin-bottom: 20px;
}

.mem-main-divider {
	height: 1px;
	background: var(--c-light);
	margin: 18px 0;
}

.mem-solo-price {
	font-family: var(--f-display);
	font-size: 42px;
	font-weight: 300;
	color: var(--c-dark);
	line-height: 1;
	margin-bottom: 2px;
}

.mem-solo-price sub {
	font-family: var(--f-body);
	font-size: 14px;
	font-weight: 300;
	color: #9AA5A2;
	vertical-align: baseline;
}

.mem-couple-line {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 10px;
	padding: 8px 10px;
	background: rgba(148, 201, 66, .08);
	border-radius: 4px;
	border-left: 2px solid var(--c-lime);
}

.mem-couple-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--c-lime);
	flex-shrink: 0;
}

.mem-couple-text {
	font-family: var(--f-body);
	font-size: 12px;
	color: #3D5450;
	line-height: 1.4;
}

.mem-main-cta {
	display: block;
	text-align: center;
	font-family: var(--f-accent);
	font-size: 9.5px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	padding: 12px 20px;
	border-radius: 3px;
	margin-top: 20px;
	background: rgba(11, 43, 38, .07);
	color: var(--c-dark);
	transition: background .2s, color .2s;
}

.mem-main-cta:hover { background: var(--c-dark); color: var(--c-white); }

.mem-main-card--featured .mem-main-cta {
	background: var(--c-lime);
	color: var(--c-dark);
}

.mem-main-card--featured .mem-main-cta:hover {
	background: #a6d84d;
}

/* ── Abonnements réduits / spéciaux ── */
.mem-section-title {
	font-family: var(--f-accent);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .4);
	margin-top: 48px;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.mem-section-title::after {
	content: '';
	flex: 1;
	height: 1px;
	background: rgba(255, 255, 255, .08);
}

.mem-special-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

@media (min-width: 768px) {
	.mem-special-grid { grid-template-columns: repeat(4, 1fr); }
}

.mem-special-card {
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 6px;
	padding: 20px 18px;
	transition: background .25s var(--ease), border-color .25s;
}

.mem-special-card:hover {
	background: rgba(255, 255, 255, .09);
	border-color: rgba(255, 255, 255, .16);
}

.mem-special-label {
	font-family: var(--f-accent);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--c-lime);
	margin-bottom: 4px;
}

.mem-special-name {
	font-family: var(--f-display);
	font-size: 20px;
	font-weight: 300;
	color: var(--c-white);
	line-height: 1.2;
	margin-bottom: 4px;
}

.mem-special-cond {
	font-family: var(--f-body);
	font-size: 11.5px;
	color: rgba(255, 255, 255, .35);
	line-height: 1.4;
	margin-bottom: 14px;
}

.mem-special-price {
	font-family: var(--f-display);
	font-size: 34px;
	font-weight: 300;
	color: rgba(255, 255, 255, .85);
	line-height: 1;
}

.mem-special-price sub {
	font-family: var(--f-body);
	font-size: 12px;
	color: rgba(255, 255, 255, .35);
	vertical-align: baseline;
}

/* ── Carte 30 rondes ── */
.mem-carte-callout {
	margin-top: 12px;
	background: rgba(148, 201, 66, .08);
	border: 1px solid rgba(148, 201, 66, .2);
	border-radius: 6px;
	padding: 20px 22px;
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.mem-carte-info { flex: 1; min-width: 180px; }

.mem-carte-title {
	font-family: var(--f-display);
	font-size: 20px;
	font-weight: 300;
	color: var(--c-white);
	margin-bottom: 4px;
}

.mem-carte-cond {
	font-family: var(--f-body);
	font-size: 11.5px;
	color: rgba(255, 255, 255, .35);
	line-height: 1.5;
}

.mem-carte-price {
	font-family: var(--f-display);
	font-size: 36px;
	font-weight: 300;
	color: var(--c-lime);
	white-space: nowrap;
}

.mem-carte-price sub {
	font-family: var(--f-body);
	font-size: 12px;
	color: rgba(148, 201, 66, .55);
	vertical-align: baseline;
}

/* ── Services additionnels ── */
.mem-services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	margin-top: 12px;
}

@media (min-width: 768px) {
	.mem-services-grid { grid-template-columns: repeat(2, 1fr); }
}

.mem-service-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 11px 16px;
	background: rgba(255, 255, 255, .04);
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, .06);
}

.mem-service-name {
	font-family: var(--f-body);
	font-size: 13.5px;
	color: rgba(255, 255, 255, .55);
}

.mem-service-price {
	font-family: var(--f-display);
	font-size: 20px;
	font-weight: 300;
	color: rgba(255, 255, 255, .75);
	white-space: nowrap;
}

/* ── Note légale ── */
.mem-legal {
	margin-top: 28px;
	padding: 14px 18px;
	border-top: 1px solid rgba(255, 255, 255, .06);
	font-family: var(--f-body);
	font-size: 11.5px;
	color: rgba(255, 255, 255, .22);
	line-height: 1.6;
}
