/* ============================================================
   CLUB H — Royal Tennis Club Hirondelle
   CSS Design System · Style Anglais Vintage
   Version: 1.0.0 · Est. 1922
   ============================================================ */

/* ---- 1. GOOGLE FONTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Raleway:wght@300;400;500;600;700&family=IM+Fell+English:ital@0;1&display=swap');

/* ---- 2. CSS CUSTOM PROPERTIES ---- */
:root {
  /* Brand Palette — Racing Green & Antique Gold */
  --green-dark:    #1B3A28;
  --green-deep:    #142E1E;
  --green-mid:     #2C5240;
  --green-light:   #3D6B56;
  --green-pale:    #EBF2EE;
  --gold:          #C9A84C;
  --gold-light:    #E4CB87;
  --gold-pale:     #F5EDD6;
  --gold-dark:     #9E7E2C;
  --cream:         #F5EED8;
  --cream-dark:    #EDE4C8;
  --parchment:     #FAF6ED;
  --white:         #FFFFFF;
  --dark:          #1A1A1A;
  --brown-warm:    #3D2B1A;
  --gray:          #6B7280;
  --gray-light:    #F3F4F6;

  /* Semantic */
  --color-primary:   var(--green-dark);
  --color-accent:    var(--gold);
  --color-bg:        var(--parchment);
  --color-text:      var(--dark);
  --color-muted:     var(--gray);

  /* Typography */
  --font-display:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-fell:     'IM Fell English', Georgia, serif;
  --font-sans:     'Raleway', 'Helvetica Neue', Arial, sans-serif;

  /* Fluid Type Scale */
  --text-xs:   clamp(0.65rem, 1.2vw, 0.75rem);
  --text-sm:   clamp(0.8rem,  1.6vw, 0.9rem);
  --text-base: clamp(0.95rem, 1.8vw, 1.05rem);
  --text-lg:   clamp(1.05rem, 2.2vw, 1.2rem);
  --text-xl:   clamp(1.2rem,  2.6vw, 1.4rem);
  --text-2xl:  clamp(1.4rem,  3vw,   1.75rem);
  --text-3xl:  clamp(1.75rem, 3.8vw, 2.25rem);
  --text-4xl:  clamp(2.2rem,  5vw,   3rem);
  --text-5xl:  clamp(2.8rem,  6.5vw, 4rem);
  --text-hero: clamp(3rem,    8vw,   5.5rem);

  /* Spacing */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;
  --sp-4: 1rem;     --sp-5: 1.25rem;  --sp-6: 1.5rem;
  --sp-8: 2rem;     --sp-10: 2.5rem;  --sp-12: 3rem;
  --sp-16: 4rem;    --sp-20: 5rem;    --sp-24: 6rem;
  --sp-32: 8rem;

  /* Layout */
  --container:       1160px;
  --container-wide:  1360px;
  --container-text:  780px;
  --section-py:      clamp(4rem, 8vw, 7rem);

  /* Borders */
  --border-gold:   1px solid rgba(201,168,76,0.35);
  --border-green:  1px solid rgba(27,58,40,0.15);
  --border-cream:  1px solid rgba(201,168,76,0.2);

  /* Radius */
  --radius-sm:  3px;
  --radius:     6px;
  --radius-lg:  12px;
  --radius-xl:  20px;

  /* Shadows */
  --shadow-sm:   0 1px 4px rgba(27,58,40,0.08);
  --shadow:      0 4px 16px rgba(27,58,40,0.10);
  --shadow-md:   0 8px 28px rgba(27,58,40,0.13);
  --shadow-lg:   0 16px 48px rgba(27,58,40,0.16);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.28);

  /* Transitions */
  --t-fast:  0.15s ease;
  --t:       0.3s ease;
  --t-slow:  0.55s ease;

  /* Z-index */
  --z-nav:     200;
  --z-overlay: 300;
  --z-modal:   400;
}

/* ---- 3. RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---- 4. VINTAGE TEXTURE OVERLAY ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

/* ---- 5. TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--green-dark);
  letter-spacing: 0.01em;
}

.heading-display {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 700;
  font-style: italic;
  color: var(--green-dark);
}

.heading-section {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 600;
  color: var(--green-dark);
}

.heading-card {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.body-serif {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--brown-warm);
}

/* ---- 6. ORNAMENTAL DIVIDERS ---- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin: var(--sp-6) auto;
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.ornament-icon {
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}

.ornament-line {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: var(--sp-4) auto;
}

.ornament-double {
  text-align: center;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 0.8;
  letter-spacing: 0.15em;
}

/* ---- 7. LAYOUT UTILITIES ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.container--wide  { max-width: var(--container-wide); }
.container--text  { max-width: var(--container-text); }

.section {
  padding: var(--section-py) 0;
  position: relative;
}

.section--dark {
  background-color: var(--green-dark);
  color: var(--cream);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--gold-light); }

.section--dark .eyebrow { color: var(--gold-light); }
.section--dark p { color: rgba(245,238,216,0.85); }

.section--cream  { background-color: var(--cream); }
.section--parchment { background-color: var(--parchment); }
.section--gold-pale { background-color: var(--gold-pale); }

.section-header {
  text-align: center;
  margin-bottom: var(--sp-16);
}

.section-header .eyebrow { margin-bottom: var(--sp-3); display: block; }
.section-header h2       { margin-bottom: var(--sp-4); }
.section-header p        { max-width: 580px; margin: 0 auto; color: var(--gray); font-family: var(--font-serif); font-size: var(--text-lg); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-8); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }

.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }

/* ---- 8. NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: var(--sp-4) 0;
  transition: var(--t);
}

.nav--transparent {
  background: transparent;
}

.nav--scrolled {
  background: rgba(27, 58, 40, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--sp-3) 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.nav__logo {
  flex-shrink: 0;
  transition: var(--t);
}

.nav__logo img {
  height: 56px;
  width: auto;
  transition: var(--t);
}

.nav--scrolled .nav__logo img { height: 44px; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.nav__link {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,238,216,0.9);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-sm);
  transition: var(--t-fast);
  position: relative;
  white-space: nowrap;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--t);
}

.nav__link:hover { color: var(--gold-light); }
.nav__link:hover::after { width: calc(100% - var(--sp-6)); }
.nav__link.active { color: var(--gold); }
.nav__link.active::after { width: calc(100% - var(--sp-6)); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  background: rgba(255,255,255,0.08);
  border: var(--border-gold);
  border-radius: var(--radius-full);
  padding: var(--sp-1) var(--sp-2);
}

.lang-btn {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,238,216,0.6);
  padding: var(--sp-1) var(--sp-2);
  border-radius: var(--radius-full);
  transition: var(--t-fast);
}

.lang-btn:hover { color: var(--gold-light); }
.lang-btn.active {
  background: var(--gold);
  color: var(--green-dark);
}

/* Mobile Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--t);
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu Overlay */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--green-deep);
  z-index: calc(var(--z-nav) - 1);
  padding: 100px var(--sp-8) var(--sp-8);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  opacity: 0;
  transition: opacity var(--t);
}

.nav__mobile.open {
  display: flex;
  opacity: 1;
}

.nav__mobile .nav__link {
  font-size: var(--text-xl);
  letter-spacing: 0.15em;
  padding: var(--sp-3) var(--sp-6);
}

.nav__mobile .lang-switcher {
  margin-top: var(--sp-8);
}

/* ---- 9. BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--radius-sm);
  transition: var(--t);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: var(--t-fast);
}

.btn:hover::before { opacity: 1; }

.btn--gold {
  background: var(--gold);
  color: var(--green-dark);
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.4);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,238,216,0.5);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--green-dark);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--green-dark);
  border: 1px solid rgba(27,58,40,0.4);
}

.btn--outline-dark:hover {
  background: var(--green-dark);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--green-dark);
  color: var(--cream);
}

.btn--dark:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
}

/* ---- 10. HERO ---- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--green-deep);
}

.hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: brightness(0.35) saturate(0.7);
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero__bg { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,46,30,0.3) 0%,
    rgba(20,46,30,0.55) 50%,
    rgba(20,46,30,0.8) 100%
  );
}

/* Vintage vignette */
.hero__vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 150px rgba(0,0,0,0.5);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--sp-8);
  max-width: 900px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  border: var(--border-gold);
  border-radius: var(--radius-full);
  padding: var(--sp-2) var(--sp-6);
  margin-bottom: var(--sp-6);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero__badge::before,
.hero__badge::after {
  content: '✦';
  font-size: 0.5rem;
  color: var(--gold);
}

.hero__logo {
  width: min(200px, 40vw);
  margin: 0 auto var(--sp-6);
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.4));
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: var(--sp-4);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__sub {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-style: italic;
  color: rgba(245,238,216,0.85);
  margin-bottom: var(--sp-10);
  letter-spacing: 0.03em;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(245,238,216,0.5);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* Sub-page Hero (shorter) */
.hero--sub {
  height: 50vh;
  min-height: 380px;
}

.hero--sub .hero__content { max-width: 700px; }

.hero--sub .hero__title {
  font-size: var(--text-5xl);
  margin-bottom: var(--sp-3);
}

/* ---- 11. CARDS ---- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--t);
  border: var(--border-cream);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.card:hover .card__image img { transform: scale(1.05); }

.card__body {
  padding: var(--sp-6);
}

.card__eyebrow {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-2);
  display: block;
}

.card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}

.card__text {
  font-size: var(--text-sm);
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}

.card__link {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  transition: var(--t-fast);
}

.card__link:hover { color: var(--green-dark); gap: var(--sp-3); }

/* Activity Card */
.activity-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.activity-card__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform var(--t-slow);
}

.activity-card:hover .activity-card__bg { transform: scale(1.08); }

.activity-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,46,30,0.95) 0%, rgba(20,46,30,0.2) 60%, transparent 100%);
  transition: var(--t);
}

.activity-card:hover .activity-card__overlay {
  background: linear-gradient(to top, rgba(20,46,30,0.98) 0%, rgba(20,46,30,0.5) 70%, rgba(20,46,30,0.1) 100%);
}

.activity-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-6);
  color: var(--cream);
}

.activity-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--sp-3);
  display: block;
}

.activity-card__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: var(--sp-2);
}

.activity-card__desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-base);
  color: rgba(245,238,216,0.75);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow), opacity var(--t);
  opacity: 0;
}

.activity-card:hover .activity-card__desc {
  max-height: 200px;
  opacity: 1;
}

/* Event Card */
.event-card {
  display: flex;
  gap: var(--sp-6);
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: var(--border-cream);
  transition: var(--t);
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.event-card__image {
  flex-shrink: 0;
  width: 200px;
  overflow: hidden;
}

.event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.event-card:hover .event-card__image img { transform: scale(1.05); }

.event-card__body {
  padding: var(--sp-6) var(--sp-6) var(--sp-6) 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-3);
}

.event-card__date {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Vintage Stat Badge */
.stat-badge {
  text-align: center;
  padding: var(--sp-8) var(--sp-6);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  background: rgba(201,168,76,0.05);
  position: relative;
}

.stat-badge::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: var(--border-gold);
  border-radius: calc(var(--radius-lg) - 2px);
  opacity: 0.4;
}

.stat-badge__number {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.stat-badge__label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
}

/* ---- 12. VALUE PILLARS ---- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-8);
}

.value-item {
  text-align: center;
}

.value-item__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(201,168,76,0.1);
  border: var(--border-gold);
  font-size: 1.8rem;
  transition: var(--t);
}

.value-item:hover .value-item__icon {
  background: var(--gold);
  transform: scale(1.08);
}

.value-item__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: var(--sp-2);
}

.value-item__text {
  font-size: var(--text-sm);
  color: var(--gray);
  line-height: 1.6;
}

/* ---- 13. MENU DISPLAY ---- */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: center;
  margin-bottom: var(--sp-10);
}

.menu-tab {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--radius-full);
  border: 1px solid rgba(27,58,40,0.2);
  background: transparent;
  transition: var(--t-fast);
}

.menu-tab:hover { border-color: var(--gold); color: var(--gold-dark); }
.menu-tab.active {
  background: var(--green-dark);
  color: var(--gold-light);
  border-color: var(--green-dark);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-section { margin-bottom: var(--sp-10); }

.menu-section__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-3);
  border-bottom: var(--border-gold);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.menu-section__title::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.8rem;
}

.menu-items { display: flex; flex-direction: column; gap: var(--sp-1); }

.menu-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: var(--sp-3) 0;
  border-bottom: 1px dashed rgba(201,168,76,0.2);
  gap: var(--sp-4);
}

.menu-item:last-child { border-bottom: none; }

.menu-item__info { flex: 1; }

.menu-item__name {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--dark);
}

.menu-item__desc {
  font-size: var(--text-sm);
  color: var(--gray);
  font-style: italic;
  margin-top: 2px;
}

.menu-item__price {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--green-dark);
  white-space: nowrap;
}

.menu-item--suggestion .menu-item__name::after {
  content: ' ★';
  color: var(--gold);
  font-size: 0.8em;
}

/* Menu Image cards */
.menu-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-6);
}

.menu-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: var(--t);
  position: relative;
}

.menu-image-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.menu-image-card img {
  width: 100%;
  display: block;
}

.menu-image-card__label {
  position: absolute;
  bottom: var(--sp-4);
  left: var(--sp-4);
  right: var(--sp-4);
  background: rgba(27,58,40,0.88);
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-sm);
  text-align: center;
}

/* ---- MENU CARD SINGLE (centred full-width card) ---- */
.menu-card-single {
  display: flex;
  justify-content: center;
  padding: var(--sp-4) 0;
}
.menu-card-single .menu-image-card {
  max-width: 680px;
  width: 100%;
}

/* ---- MENU CARD LIGHTBOX ---- */
.menu-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.menu-lightbox.open { display: flex; }
.menu-lightbox .lightbox__img {
  max-width: min(90vw, 700px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

/* ---- 14. GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}

.gallery-item:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,46,30,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--t);
}

.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__overlay span {
  color: var(--gold-light);
  font-size: 2rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: var(--sp-8);
}

.lightbox.open { display: flex; }

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.lightbox__close {
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-6);
  color: var(--cream);
  font-size: 2rem;
  line-height: 1;
  transition: var(--t-fast);
}

.lightbox__close:hover { color: var(--gold); transform: rotate(90deg); }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cream);
  font-size: 2.5rem;
  padding: var(--sp-4);
  transition: var(--t-fast);
}

.lightbox__nav:hover { color: var(--gold); }
.lightbox__prev { left: var(--sp-4); }
.lightbox__next { right: var(--sp-4); }

/* ---- 15. FORMS ---- */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}

.form-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--sp-4) var(--sp-5);
  border: var(--border-green);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--dark);
  font-size: var(--text-base);
  transition: var(--t-fast);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* ---- 16. FOOTER ---- */
.footer {
  background: var(--green-deep);
  color: var(--cream);
  padding: var(--sp-20) 0 var(--sp-8);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-16);
}

.footer__brand {}

.footer__logo {
  height: 64px;
  width: auto;
  margin-bottom: var(--sp-5);
}

.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--gold-light);
  margin-bottom: var(--sp-5);
  line-height: 1.5;
}

.footer__desc {
  font-size: var(--text-sm);
  color: rgba(245,238,216,0.6);
  line-height: 1.7;
}

.footer__col-title {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-3);
  border-bottom: var(--border-gold);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__link {
  font-size: var(--text-sm);
  color: rgba(245,238,216,0.7);
  transition: var(--t-fast);
}

.footer__link:hover { color: var(--gold-light); padding-left: var(--sp-2); }

.footer__contact-item {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  font-size: var(--text-sm);
  color: rgba(245,238,216,0.7);
  margin-bottom: var(--sp-3);
}

.footer__contact-item span:first-child { color: var(--gold); flex-shrink: 0; }

.footer__social {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,238,216,0.7);
  font-size: 0.9rem;
  transition: var(--t-fast);
}

.footer__social-link:hover {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}

.footer__bottom {
  border-top: var(--border-gold);
  padding-top: var(--sp-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.footer__copy {
  font-size: var(--text-xs);
  color: rgba(245,238,216,0.4);
  letter-spacing: 0.05em;
}

.footer__bottom-links {
  display: flex;
  gap: var(--sp-6);
}

.footer__bottom-link {
  font-size: var(--text-xs);
  color: rgba(245,238,216,0.4);
  transition: var(--t-fast);
  letter-spacing: 0.05em;
}

.footer__bottom-link:hover { color: var(--gold-light); }

/* ---- 17. SECTION-SPECIFIC ---- */

/* Feature Split (image + text side by side) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.split--reverse .split__image { order: 2; }
.split--reverse .split__content { order: 1; }

.split__image {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.split__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.split:hover .split__image img { transform: scale(1.03); }

.split__content {
  padding: var(--sp-20) var(--sp-16);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-5);
}

/* Vintage Frame Image */
.vintage-frame {
  position: relative;
  display: inline-block;
}

.vintage-frame::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.vintage-frame::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: calc(var(--radius-lg) - 2px);
  pointer-events: none;
}

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(27,58,40,0.04) 100%);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-10);
  text-align: center;
  position: relative;
}

.highlight-box::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: var(--border-gold);
  border-radius: calc(var(--radius-lg) - 2px);
  opacity: 0.3;
}

/* Privatisation Features */
.priv-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}

.priv-feature {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  padding: var(--sp-5);
  background: rgba(255,255,255,0.6);
  border-radius: var(--radius);
  border: var(--border-green);
}

.priv-feature__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.1);
  border-radius: var(--radius-full);
  border: var(--border-gold);
}

.priv-feature__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: var(--sp-1);
}

.priv-feature__desc {
  font-size: var(--text-sm);
  color: var(--gray);
}

/* ---- 18. VINTAGE ICONS (img-based) ---- */

/* Value pillars — vintage icon badge */
.value-item__icon:has(img) {
  background: none;
  border: none;
  width: 88px;
  height: 88px;
}
.value-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform var(--t);
}
.value-item:hover .value-item__icon img {
  transform: scale(1.08);
}

/* Activity cards — vintage icon */
.activity-card__icon:has(img) {
  font-size: 0;
}
.activity-card__icon img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
  margin: 0 auto var(--sp-3);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

/* Priv features — vintage icon */
.priv-feature__icon:has(img) {
  background: none;
  border: none;
  width: 52px;
  height: 52px;
}
.priv-feature__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Selling-point mini tiles — vintage icon */
.selling-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  margin: 0 auto var(--sp-3);
}

/* Menu section title — vintage icon */
.menu-section__title.has-icon::before { display: none; }
.menu-section__title img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Activity illustrations poster grid */
.illu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-6);
}
.illu-grid__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--t), box-shadow var(--t);
}
.illu-grid__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.illu-grid__item img {
  width: 100%;
  display: block;
}

/* Dessin in split layout */
.split__image--dessin img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ---- 19. SCROLL ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-delay-1 { transition-delay: 0.1s; }
.fade-delay-2 { transition-delay: 0.2s; }
.fade-delay-3 { transition-delay: 0.3s; }
.fade-delay-4 { transition-delay: 0.4s; }
.fade-delay-5 { transition-delay: 0.5s; }

/* ---- 19. BACK TO TOP ---- */
.back-to-top {
  position: fixed;
  bottom: var(--sp-8);
  right: var(--sp-8);
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--green-dark);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  transform: translateY(16px);
  transition: var(--t);
  z-index: var(--z-sticky);
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

/* ---- 20. COOKIE / NOTICE BANNER ---- */
.notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--green-deep);
  border-top: var(--border-gold);
  color: rgba(245,238,216,0.8);
  font-size: var(--text-sm);
  padding: var(--sp-5) var(--sp-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  z-index: var(--z-overlay);
  transform: translateY(100%);
  transition: transform var(--t-slow);
}

.notice.visible { transform: translateY(0); }

/* ---- 21. PAGE-SPECIFIC: LE CLUB ---- */
.timeline {
  position: relative;
  padding-left: var(--sp-10);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--sp-10);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(var(--sp-10) * -1 - 4px);
  top: 6px;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: var(--radius-full);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.25);
}

.timeline-item__year {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.timeline-item__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: var(--sp-2);
}

.timeline-item__text {
  font-size: var(--text-sm);
  color: var(--gray);
  line-height: 1.7;
}

/* ---- 22. RESPONSIVE ---- */
@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-10); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__image,
  .split--reverse .split__content { order: unset; }
  .split__content { padding: var(--sp-12) var(--sp-8); }
  .split__image { min-height: 300px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: span 2; }

  .grid-3 { grid-template-columns: repeat(2, 1fr); }

  .nav__menu { display: none; }
  .nav__hamburger { display: flex; }

  .event-card { flex-direction: column; }
  .event-card__image { width: 100%; height: 220px; }
  .event-card__body { padding: var(--sp-5); }

  .priv-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --section-py: clamp(3rem, 6vw, 5rem); }

  .hero__ctas { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .btn-group .btn { width: auto; }

  .footer__grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer__bottom { flex-direction: column; text-align: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }

  .value-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); }

  .menu-tabs { gap: var(--sp-2); }
  .menu-tab { padding: var(--sp-2) var(--sp-4); font-size: 0.6rem; }

  .nav__logo img { height: 44px; }
}

@media (max-width: 400px) {
  .value-grid { grid-template-columns: 1fr; }
}

/* ---- 23. PRINT ---- */
@media print {
  .nav, .hero__scroll, .back-to-top, .notice { display: none !important; }
  .hero { height: auto; min-height: auto; padding: 3rem 0; }
  body { background: white; color: black; }
}
