:root {
  --black: #080808;
  --black-2: #11100e;
  --cream: #f4efe5;
  --paper: #ebe4d7;
  --gold: #c89a31;
  --gold-soft: #ddbb69;
  --text: #efe8dc;
  --muted: #b9b0a3;
  --ink: #181511;

  --header-height: 80px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  height: var(--header-height);
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #050505;
  padding: 0 10px 0 14px;
}

main {
  padding-top: var(--header-height);
}

.site-header.scrolled { background: rgba(8,8,8,.9); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(200,154,49,.18); }

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.main-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; }
.main-nav a { color: #e4ddd2; }
.main-nav a:hover { color: var(--gold-soft); }
.nav-cta { border: 1px solid rgba(200,154,49,.7); padding: 10px 16px; }
.nav-toggle { display: none; background: none; color: white; border: 1px solid rgba(255,255,255,.25); padding: 8px 12px; }

.hero {
  position: relative;
  width: 100%;
  background: #000;
  overflow: hidden;
}

.hero-bg {
  display: block;
  width: 100%;
  height: auto;
  object-fit: unset;
  object-position: unset;
}

/* Si on clique sur #top, #club, etc.,
   on tient compte du header fixe */
section[id] {
  scroll-margin-top: var(--header-height);
}

.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,2,2,.88) 0%, rgba(2,2,2,.62) 48%, rgba(2,2,2,.24) 78%), linear-gradient(0deg, rgba(8,8,8,.9), transparent 35%); }
.hero-content { position: relative; z-index: 2; width: min(850px, 86vw); margin-left: clamp(24px, 7vw, 120px); padding-top: 52px; }
.eyebrow, .section-kicker { color: var(--gold-soft); text-transform: uppercase; letter-spacing: .2em; font-size: 12px; font-weight: 600; }
h1, h2, h3 { font-family: "Cormorant Garamond", Georgia, serif; margin: 0; font-weight: 600; line-height: 1.03; }
h1 { font-size: clamp(52px, 7vw, 100px); max-width: 900px; letter-spacing: -.025em; }
.hero-lead { margin: 28px 0 34px; max-width: 700px; font-size: clamp(17px, 1.4vw, 21px); color: #ded6ca; }
.hero-actions {
  position: absolute;
  left: 6.5%;
  bottom: 7%;
  z-index: 2;
  display: flex;
  gap: 14px;
}
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; font-size: 14px; font-weight: 600; transition: .2s ease; }
.btn-gold { background: var(--gold); color: #0d0b08; }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-1px); }
.btn-ghost { border: 1px solid rgba(255,255,255,.32); }
.btn-ghost:hover { border-color: var(--gold-soft); color: var(--gold-soft); }
.scroll-cue { position: absolute; z-index: 2; bottom: 28px; left: 50%; transform: translateX(-50%); color: var(--gold-soft); font-size: 26px; }

.section {
  position: relative;
  padding: clamp(50px, 6vw, 90px) clamp(24px, 7vw, 120px);
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);

  width: 90px;
  height: 2px;

  background: var(--gold);
}

.intro { background: var(--cream); color: var(--ink); }
.intro .section-kicker { margin-bottom: 28px; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 8vw, 120px); align-items: start; }
.intro h2, .section-heading h2, .contact-section h2 { font-size: clamp(43px, 5vw, 76px); }
.body-copy { font-size: 17px; color: #413a31; }
.body-copy p:first-child { margin-top: 0; }

.circles { background: #0c0b0a; }
.section-heading { margin-bottom: 54px; }
.section-heading.centered { text-align: center; max-width: 850px; margin-left: auto; margin-right: auto; }
.section-heading.centered .section-kicker { margin-bottom: 14px; }
.circle-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; max-width: 1280px; margin: 0 auto; }
.club-card { display: grid; grid-template-rows: 280px 1fr; min-height: 760px; border: 1px solid rgba(200,154,49,.32); overflow: hidden; }
.dark-card { background: #0c0c0c; }
.light-card { background: #eae3d8; color: #1d1913; }
.logo-frame { display: grid; place-items: center; overflow: hidden; }
.logo-frame img { width: 100%; height: 100%; object-fit: cover; }
.dark-logo { background: #050505; }
.light-logo { background: #f3efe8; }
.card-content { padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; }
.card-label { color: var(--gold-soft); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; min-height: 40px; }
.light-card .card-label { color: #8b6516; }
.club-card h3 { font-size: clamp(44px, 4vw, 64px); margin: 8px 0 20px; }
.club-card p { color: #c7beb2; }
.light-card p { color: #554d43; }
.membership { border-top: 1px solid rgba(200,154,49,.35); margin-top: auto; padding-top: 24px; display: grid; gap: 2px; }
.membership span { font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: var(--gold-soft); }
.membership strong { font-family: "Cormorant Garamond", serif; font-size: 38px; }
.membership small { color: #9e9589; }
.light-card .membership small { color: #766d62; }
.text-link { margin-top: 28px; color: var(--gold-soft); font-weight: 600; font-size: 14px; }
.text-link span { display: inline-block; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.values-strip { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--gold); color: #15120d; }
.values-strip > div { padding: 44px clamp(24px, 4vw, 58px); border-right: 1px solid rgba(20,17,12,.22); }
.values-strip span { font-family: "Cormorant Garamond", serif; font-size: 18px; opacity: .65; }
.values-strip strong { display: block; font-family: "Cormorant Garamond", serif; font-size: 35px; margin-top: 4px; }
.values-strip p { margin: 6px 0 0; }

.gallery-section { background: #11100e; }
.split-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 70px; align-items: end; }
.split-heading p:last-child { color: var(--muted); max-width: 480px; }
.gallery-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 20px; }
.gallery-grid figure { margin: 0; overflow: hidden; min-height: 600px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-grid figure:hover img { transform: scale(1.02); }

.contact-section { background: #050505; border-top: 1px solid rgba(200,154,49,.2); padding: clamp(80px, 10vw, 140px) clamp(24px, 7vw, 120px); }
.contact-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; max-width: 1280px; margin: auto; }
.contact-section h2 { margin: 10px 0 20px; }
.contact-section p { color: var(--muted); max-width: 600px; }
.contact-email { display: inline-block; margin-top: 18px; color: var(--gold-soft); font-size: clamp(22px, 2.5vw, 34px); font-family: "Cormorant Garamond", serif; }
.contacts { display: grid; gap: 20px; align-content: center; }
.contact-person { border: 1px solid rgba(200,154,49,.25); padding: 24px; }
.contact-person span { display: block; font-family: "Cormorant Garamond", serif; font-size: 28px; margin-bottom: 5px; }
.contact-person a { color: var(--gold-soft); }

footer { min-height: 86px; padding: 0 clamp(24px, 7vw, 120px); display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #1e1b17; color: #8e857a; font-size: 13px; }
footer a:hover { color: var(--gold-soft); }

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav { position: absolute; top: 76px; left: 0; right: 0; background: rgba(8,8,8,.98); display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 24px 24px; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid #222; }
  .nav-cta { border: none; }
  .intro-grid, .circle-grid, .split-heading, .contact-inner { grid-template-columns: 1fr; }
  .values-strip { grid-template-columns: 1fr; }
  .values-strip > div { border-right: 0; border-bottom: 1px solid rgba(20,17,12,.22); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid figure { min-height: 420px; }
  .club-card { min-height: auto; }
}

@media (max-width: 560px) {
  .hero-bg { object-position: 66% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(2,2,2,.93), rgba(2,2,2,.62)), linear-gradient(0deg, rgba(8,8,8,.9), transparent 35%); }
  .hero-content { margin-left: 24px; width: calc(100vw - 48px); }
  h1 { font-size: clamp(46px, 14vw, 68px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .club-card { grid-template-rows: 210px 1fr; }
  footer { flex-direction: column; justify-content: center; gap: 8px; }
}

@media (max-width: 1200px) {
  .hero-actions {
    display: none;
  }
  #arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    height: var(--header-height);
  }

  .hero {
    margin-top: var(--header-height);
  }
}

.section::before,
.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 2px;
  background: var(--gold);
}

.section,
.contact-section {
  position: relative;
}

.leadership {
  position: relative;
  background: #0a0a0a;
  color: #f4efe6;

  padding-top: clamp(65px, 7vw, 100px);

  border-top: 1px solid rgba(200, 154, 49, 0.25);
}

.leadership::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);

  width: 90px;
  height: 2px;

  background: var(--gold);
}

.leadership-intro {
  max-width: 760px;
  margin: 25px auto 0;
  line-height: 1.8;
  color: #bdb5a9;
}

.leadership-grid {
  max-width: 1100px;
  margin: 50px auto 0;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(50px, 7vw, 100px);

  padding: clamp(30px, 4vw, 55px);

  /* Cadre doré très fin */
  border: 1px solid rgba(200, 154, 49, 0.55);
}

.leader-card {
  text-align: center;
}

/* Zone réservée à la personne */
.leader-visual {
  position: relative;
  width: min(100%, 380px);
  height: 500px;
  margin: 0 auto 30px;

  background: transparent;
  border: none;
  padding: 0;

  overflow: hidden;
}

.leader-person {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Petit halo très discret derrière la personne */
.leader-visual::before {
  content: "";
  position: absolute;

  width: 260px;
  height: 260px;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  border: 1px solid rgba(200, 154, 49, 0.18);
  border-radius: 50%;
}


/* Fine ligne sous la personne */
.leader-visual::after {
  content: "";
  position: absolute;

  bottom: 0;
  left: 50%;
  transform: translateX(-50%);

  width: 45%;
  height: 2px;

  background: var(--gold);
}

.leader-role {
  margin: 0 0 8px;

  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;

  font-size: 11px;
  font-weight: 600;
}

.leader-content h3 {
  margin: 0 0 20px;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 3vw, 48px);
  font-weight: 600;

  color: #f4efe6;
}

.leader-content p:not(.leader-role) {
  max-width: 470px;
  margin: 0 auto 15px;

  color: var(--text);
  line-height: 1.75;
  font-size: 15px;
}

.leader-role {
  margin-bottom: 8px;

  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 600;
}

.leader-content h3 {
  margin: 0 0 20px;

  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 600;
  color: #f4efe6;
}

.leader-content p:not(.leader-role) {
  max-width: 470px;
  margin: 0 auto 15px;

  color: #bdb5a9;
  line-height: 1.75;
  font-size: 15px;
}

.leadership-signature {
  max-width: 700px;
  margin: 65px auto 0;

  display: flex;
  align-items: center;
  gap: 20px;
}

.leadership-signature span {
  height: 1px;
  flex: 1;
  background: rgba(200, 154, 49, .45);
}

.leadership-signature p {
  margin: 0;

  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 10px;
  white-space: nowrap;
}

/* TABLETTE / MOBILE */
@media (max-width: 768px) {

  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 55px;
    margin-top: 45px;
  }

  .leader-photo {
    width: 180px;
    height: 180px;
  }

  .leader-content h3 {
    font-size: 31px;
  }

  .leadership-signature span {
    display: none;
  }

  .leadership-signature {
    justify-content: center;
    text-align: center;
  }

  .leadership-signature p {
    white-space: normal;
    line-height: 1.7;
  }
}
