:root {
  /* Palette dérivée du logo TCV — version 100% logo */
  --bg:           #FFFFFF;
  --bg-soft:      #F4F6F2;   /* off-white légèrement teinté */
  --bg-deep:      #E9ECE3;   /* sections alternées */
  --bg-lime:      #FAFBE0;   /* lime ultra-dilué pour fond accent */
  --ink:          #2A3942;   /* texte — slate foncé tiré du logo */
  --ink-soft:     #475F6A;   /* logo cls-4 — slate mid */
  --slate:        #628C9B;   /* logo cls-3 — bleu-gris signature */
  --slate-bright: #7BA3B2;   /* version éclaircie pour hover sur fond foncé */
  --slate-deep:   #324048;   /* slate très foncé pour grandes surfaces */
  --lime:         #DADC29;   /* logo cls-2 — jaune-vert signature */
  --lime-soft:    #E8E96E;
  --olive:        #B3B312;   /* logo cls-1 — hover du lime */

  --line:         rgba(42,57,66,.10);
  --line-strong:  rgba(42,57,66,.20);

  --sans:    "Figtree", ui-sans-serif, system-ui, sans-serif;
  --display: "Archivo", ui-sans-serif, system-ui, sans-serif;

  --radius:  6px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* compense la nav fixe pour les ancres */
}
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--lime); color: var(--ink); }

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* =========== Typography helpers =========== */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--slate);
}

/* =========== Layout =========== */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .wrap { padding: 0 20px; } }

section { position: relative; }

/* =========== NAV =========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(16px) saturate(1.05);
  -webkit-backdrop-filter: blur(16px) saturate(1.05);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  color: var(--ink);
}
.brand .brand-logo {
  height: 36px;
  width: auto;
}
.brand-tagline {
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
  margin-left: 2px;
}
@media (max-width: 520px) {
  .brand .brand-logo { height: 30px; }
  .brand-tagline { display: none; }
}

.nav-links {
  display: flex; gap: 0; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.nav-links > li { position: relative; }
.nav-links a, .nav-links > li > button {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--radius-pill);
  transition: color .2s ease, background .2s ease;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links > li > button:hover { color: var(--slate); }

.nav-links .cta {
  background: var(--slate-deep);
  color: var(--bg);
  padding: 10px 18px;
  margin-left: 12px;
  font-weight: 600;
}
.nav-links .cta:hover { background: var(--lime); color: var(--ink); }

.caret { display: inline-block; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .2s ease; }
.nav-links li.open .caret { transform: rotate(-135deg) translateY(2px); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px;
  box-shadow: 0 16px 32px -16px rgba(27,39,48,.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .18s ease, transform .18s ease;
}
.nav-links li:hover > .dropdown,
.nav-links li:focus-within > .dropdown,
.nav-links li.open > .dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 12px; border-radius: 4px; font-size: 14px; white-space: nowrap; font-weight: 500; }
.dropdown a:hover { background: var(--bg-soft); color: var(--slate); }

.burger { display: none; }

@media (max-width: 1100px) {
  .nav-links { display: none; }
  .burger {
    display: flex; flex-direction: column; gap: 5px;
    padding: 10px;
  }
  .burger span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: transform .3s ease, opacity .3s ease; }
  .mobile-open .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .mobile-open .burger span:nth-child(2) { opacity: 0; }
  .mobile-open .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    top: 68px; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    padding: 16px 24px 32px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease;
    z-index: 99;
  }
  .mobile-open .mobile-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .mobile-menu a {
    display: block;
    padding: 12px 0;
    font-size: 16.5px;
    font-family: var(--display);
    font-weight: 600;
    letter-spacing: -.01em;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
  }
  .mobile-menu .sub { padding-left: 18px; font-size: 13px; color: var(--ink-soft); font-weight: 500; }
  .mobile-menu .cta-mobile {
    margin-top: 18px;
    background: var(--slate-deep); color: var(--bg);
    padding: 14px 20px; border-radius: var(--radius-pill);
    display: block; text-align: center;
    font-family: var(--sans);
    font-size: 14.5px; font-weight: 600; border-bottom: 0;
  }
}
@media (min-width: 1101px) { .mobile-menu { display: none; } }


/* =========== HERO =========== */
.hero {
  padding: 160px 0 80px;
  position: relative;
  background: var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}
.hero-meta {
  text-align: right;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
}
.hero-meta span { display: block; }

.hero h1 {
  font-family: var(--display);
  font-variation-settings: "wdth" 95;
  font-weight: 700;
  font-size: clamp(56px, 11vw, 196px);
  line-height: .9;
  letter-spacing: -.04em;
  margin: 0;
  color: var(--ink);
}
.hero h1 em {
  font-style: normal;
  color: var(--slate);
  font-weight: 700;
}
.hero h1 .line { display: block; }
.hero h1 .line.indent { padding-left: clamp(20px, 10vw, 180px); }

.hero-sub {
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
@media (max-width: 720px) { .hero-sub { grid-template-columns: 1fr; gap: 24px; } }

.hero-sub p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  max-width: 42ch;
  color: var(--ink-soft);
}
.hero-sub .right {
  font-size: 18px;
  color: var(--ink);
  font-weight: 400;
}

.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 40px;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: .01em;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn .arrow { transition: transform .3s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-primary { background: var(--slate-deep); color: var(--bg); }
.btn-primary:hover { background: var(--lime); color: var(--ink); }
.btn-secondary { background: transparent; color: var(--ink); border: 1px solid var(--line-strong); }
.btn-secondary:hover { border-color: var(--ink); }

/* Stats strip */
.stats {
  margin-top: 96px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.stats > div {
  padding: 32px 24px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
}
.stats > div:last-child { border-right: 0; }
.stats .num {
  font-family: var(--display);
  font-variation-settings: "wdth" 90;
  font-weight: 700;
  font-size: clamp(44px, 5.5vw, 68px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -.035em;
}
.stats .num small {
  font-size: .32em;
  vertical-align: top;
  letter-spacing: .04em;
  color: var(--olive);
  margin-left: 6px;
  font-variation-settings: "wdth" 100;
  font-weight: 700;
  text-transform: uppercase;
}
.stats .lbl {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
@media (max-width: 780px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats > div:nth-child(2) { border-right: 0; }
  .stats > div:nth-child(1), .stats > div:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* =========== Generic section =========== */
.section {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 32px; gap: 20px; }
  #reserver, #cours, #calendrier, #contact, #vachettes-teaser, #vachette { padding: 56px 0; }
  #le-club { padding-top: 64px; }
  .vachecorinarde-section { padding: 0 0 64px; }
  .devenir { padding: 40px 28px; margin-top: 64px; gap: 32px; }
  .comite { margin-top: 64px; }
  .club-grid { gap: 32px; }
}
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-family: var(--display);
  font-variation-settings: "wdth" 95;
  font-weight: 700;
  font-size: clamp(36px, 5.2vw, 68px);
  line-height: 1;
  letter-spacing: -.03em;
  margin: 12px 0 0;
  max-width: 16ch;
  color: var(--ink);
}
.section-head h2 em { color: var(--slate); font-style: normal; font-weight: 700; }
.section-subtitle {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--slate);
  margin: 12px 0 0;
  letter-spacing: -.01em;
  line-height: 1.25;
}
.section-head .section-side {
  max-width: 380px;
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.section-num {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--slate);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-num::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 4px;
  background: var(--lime);
  border-radius: 2px;
}

/* =========== Club section =========== */
#le-club {
  background: var(--bg-soft);
  padding-top: 140px;
}
.club-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .club-grid { grid-template-columns: 1fr; gap: 50px; } }

.club-lead {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.32;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.015em;
  margin-top: 0;
}
.club-lead em { color: var(--slate); font-style: normal; }
.club-body p {
  font-size: 16px;
  line-height: 1.65;
  margin: 22px 0;
  color: var(--ink-soft);
}
.club-body p:first-child { margin-top: 28px; }
.club-body a {
  color: var(--ink);
  border-bottom: 1px solid var(--slate);
  transition: color .2s ease;
}
.club-body a:hover { color: var(--slate); }

.club-side ul {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--line-strong);
}
.club-side li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.club-side li span:first-child { color: var(--ink-soft); letter-spacing: .04em; }
.club-side li span:last-child { color: var(--ink); font-weight: 500; font-size: 15px; }

/* Comité */
.comite {
  margin-top: 120px;
}
.comite h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -.025em;
  margin: 8px 0 36px;
  color: var(--ink);
}
.comite h3 em { color: var(--slate); font-style: normal; }
.comite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 900px) { .comite-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .comite-grid { grid-template-columns: 1fr; } }
.comite-card {
  background: var(--bg);
  padding: 32px 28px;
  min-height: 180px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: background .3s ease;
  position: relative;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.comite-card:nth-child(3n) { border-right: 0; }
.comite-card:nth-last-child(-n+3) { border-bottom: 0; }
@media (max-width: 900px) {
  .comite-card { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .comite-card:nth-child(3n) { border-right: 1px solid var(--line); }
  .comite-card:nth-child(2n) { border-right: 0; }
  .comite-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .comite-card:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 520px) {
  .comite-card {
    border-right: 0;
    padding: 16px 18px;
    min-height: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .comite-card:not(:last-child) { border-bottom: 1px solid var(--line); }
  .comite-card .role { font-size: 10px; flex: 0 0 auto; max-width: 45%; }
  .comite-card .name { font-size: 17px; margin-top: 0; text-align: right; }
}
.comite-card:hover { background: var(--slate-deep); color: var(--bg); }
.comite-card:hover .role { color: var(--lime); }
.comite-card:hover .name { color: var(--bg); }
.comite-card:hover .name em { color: var(--slate-bright); }
.comite-card .role {
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
  transition: color .3s ease;
}
.comite-card .name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -.015em;
  margin-top: auto;
  color: var(--ink);
  transition: color .3s ease;
}
.comite-card .name em { font-style: normal; color: var(--ink-soft); font-weight: 500; transition: color .3s ease; }

/* Devenir membre */
.devenir {
  margin-top: 120px;
  background: var(--slate-deep);
  color: var(--bg);
  border-radius: var(--radius);
  padding: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  overflow: hidden;
}
.devenir::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 6px;
  background: var(--lime);
}
@media (max-width: 900px) { .devenir { grid-template-columns: 1fr; padding: 48px 32px; gap: 40px; } }

.devenir h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1;
  letter-spacing: -.025em;
  margin: 8px 0 0;
}
.devenir h3 em { color: var(--lime); font-style: normal; font-weight: 700; }
.devenir .eyebrow { color: var(--lime); }
.devenir p { color: rgba(255,255,255,.72); font-size: 15.5px; line-height: 1.65; margin: 24px 0 0; max-width: 42ch; }

.tarifs {
  list-style: none; padding: 0; margin: 0;
}
.tarifs li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.tarifs li:first-child { border-top: 1px solid rgba(255,255,255,.24); }
.tarifs .who {
  display: flex; flex-direction: column; gap: 4px;
  font-size: 15px;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  line-height: 1.35;
}
.tarifs .who small {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 600;
}
.tarifs .amount {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  color: var(--bg);
  letter-spacing: -.02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.tarifs .amount small {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-right: 6px;
  font-weight: 600;
  vertical-align: 4px;
}
.devenir .btn { margin-top: 32px; background: var(--lime); color: var(--ink); }
.devenir .btn:hover { background: var(--olive); color: var(--ink); }


/* =========== Réserver =========== */
#reserver {
  padding: 140px 0;
  background: var(--bg);
}
.reserver-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 900px) { .reserver-inner { grid-template-columns: 1fr; } }

.reserver-card {
  background: var(--slate-deep);
  color: var(--bg);
  padding: 56px;
  border-radius: var(--radius);
  position: relative;
  min-height: 460px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}
.reserver-card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 6px;
  background: var(--lime);
}
@media (max-width: 560px) { .reserver-card { padding: 36px 28px; min-height: 0; } }

.reserver-card h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1;
  letter-spacing: -.03em;
  margin: 16px 0 0;
  color: var(--bg);
}
.reserver-card h2 em { color: var(--lime); font-style: normal; }
.reserver-card .eyebrow { color: var(--lime); }
.reserver-card p {
  max-width: 44ch;
  color: rgba(255,255,255,.78);
  margin: 24px 0 0;
  font-size: 15.5px;
  line-height: 1.6;
}

.reserver-card .btn {
  background: var(--lime);
  color: var(--ink);
  align-self: flex-start;
  margin-top: 36px;
}
.reserver-card .btn:hover { background: var(--bg); color: var(--ink); }

.reserver-info {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
}
.reserver-info > div {
  background: var(--bg);
  padding: 28px 28px;
  border-bottom: 1px solid var(--line);
}
.reserver-info > div:last-child { border-bottom: 0; }
.reserver-info .eyebrow { margin-bottom: 10px; display: block; }
.reserver-info h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.015em;
  margin: 0 0 6px;
  color: var(--ink);
}
.reserver-info p { margin: 0; font-size: 14px; color: var(--ink-soft); line-height: 1.55; }

.reserver-info .accent {
  background: var(--lime);
  color: var(--ink);
}
.reserver-info .accent .eyebrow { color: var(--ink); opacity: .65; }
.reserver-info .accent h4 { color: var(--ink); }
.reserver-info .accent p { color: var(--ink); opacity: .8; }


/* =========== Cours & Camps =========== */
#cours {
  padding: 140px 0;
  background: var(--bg-soft);
}
.cours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) { .cours-grid { grid-template-columns: 1fr; } }

.cours-card {
  position: relative;
  padding: 48px 44px 44px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .4s cubic-bezier(.2,.9,.3,1), box-shadow .4s ease, border-color .3s ease;
}
.cours-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -28px rgba(27,39,48,.18);
  border-color: var(--line-strong);
}
@media (max-width: 560px) { .cours-card { padding: 36px 28px 32px; } }

.cours-card .big-num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  line-height: 1;
  color: var(--ink);
  background: var(--lime);
  padding: 6px 10px;
  border-radius: 4px;
  letter-spacing: .1em;
}
.cours-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 12px 0 16px;
  color: var(--ink);
}
.cours-card h3 em { color: var(--slate); font-style: normal; }
.cours-card p { font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 16px; }

.cours-card .details {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.cours-card .details li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.cours-card .details li span:first-child { color: var(--ink-soft); letter-spacing: .03em; }
.cours-card .details li span:last-child { color: var(--ink); font-weight: 500; font-size: 14.5px; }

.cours-card .contact-line {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line-strong);
  font-size: 14px;
  color: var(--ink-soft);
}
.cours-card .contact-line strong { color: var(--ink); font-weight: 600; }
.cours-card .contact-line a { color: var(--slate); font-weight: 500; }
.cours-card .contact-line a:hover { color: var(--ink); }

/* =========== Vachette =========== */
#vachette {
  background: var(--slate-deep);
  color: var(--bg);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
#vachette::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 8px;
  background: var(--lime);
}
.vachette-inner { position: relative; z-index: 2; }
.vachette-inner .eyebrow { color: var(--lime); }
.vachette-title {
  font-family: var(--display);
  font-variation-settings: "wdth" 92;
  font-weight: 800;
  font-size: clamp(56px, 13vw, 220px);
  line-height: .9;
  letter-spacing: -.04em;
  margin: 12px 0 0;
  color: var(--bg);
}
.vachette-title em {
  color: var(--lime);
  font-style: normal;
  display: block;
  padding-left: clamp(20px, 10vw, 180px);
  font-weight: 800;
}

.vachette-sub {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  margin-top: 60px;
  align-items: start;
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 40px;
}
@media (max-width: 900px) { .vachette-sub { grid-template-columns: 1fr; gap: 30px; } }

.vachette-sub .quote {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.35;
  max-width: 28ch;
  letter-spacing: -.015em;
  color: var(--bg);
}
.vachette-sub .quote::before { content: "« "; color: var(--lime); }
.vachette-sub .quote::after { content: " »"; color: var(--lime); }

.vachette-sub p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 15.5px;
  line-height: 1.65;
}

/* Format strip (18h / 19h / 22h) */
.vachette-format {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 720px) { .vachette-format { grid-template-columns: 1fr; } }
.vachette-format > div {
  background: transparent;
  padding: 24px 24px;
  border-right: 1px solid rgba(255,255,255,.14);
}
.vachette-format > div:last-child { border-right: 0; }
@media (max-width: 720px) {
  .vachette-format > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .vachette-format > div:last-child { border-bottom: 0; }
}
.vachette-format .eyebrow {
  color: var(--lime);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: .12em;
  font-weight: 700;
}
.vachette-format .value {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.1;
  letter-spacing: -.015em;
  margin-top: 8px;
  color: var(--bg);
}
.vachette-format .value em { color: var(--lime); font-style: normal; font-weight: 700; }

/* Liste des 6 Vachettes */
.vachette-list {
  list-style: none;
  margin: 56px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.18);
}
.vachette-list li {
  display: grid;
  grid-template-columns: 56px 220px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px 8px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: background .3s ease, padding .3s ease;
}
.vachette-list li:hover { background: rgba(255,255,255,.04); padding-left: 16px; }
.vachette-list .num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  color: var(--slate-bright);
}
.vachette-list .date {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: -.015em;
  color: var(--bg);
  line-height: 1.2;
}
.vachette-list .date small {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--lime);
  font-weight: 600;
  margin-left: 4px;
}
.vachette-list .label {
  font-family: var(--sans);
  font-size: 15.5px;
  color: rgba(255,255,255,.78);
  font-weight: 500;
}
.vachette-list .label em {
  font-style: normal;
  color: var(--lime);
  font-weight: 700;
  letter-spacing: .01em;
}
.vachette-list .badge {
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
}
.vachette-list li.featured {
  background: rgba(218,220,41,.06);
  border-left: 3px solid var(--lime);
  padding-left: 16px;
}
.vachette-list li.featured:hover { background: rgba(218,220,41,.10); padding-left: 24px; }
.vachette-list li.featured .date { color: var(--lime); }
.vachette-list li.featured .label em { color: var(--bg); }
@media (max-width: 800px) {
  .vachette-list li { grid-template-columns: 36px 1fr; gap: 12px 16px; padding: 20px 8px; }
  .vachette-list .num { grid-row: span 2; align-self: start; }
  .vachette-list .label, .vachette-list .badge { grid-column: 2; justify-self: start; }
}

.vachette-cta {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.vachette-price {
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 600;
}
#vachette .btn-primary { background: var(--lime); color: var(--ink); }
#vachette .btn-primary:hover { background: var(--bg); color: var(--ink); }


/* =========== Calendrier =========== */
#calendrier { padding: 140px 0; background: var(--bg); }

.cal-list {
  display: grid;
  border-top: 1px solid var(--line-strong);
}
.cal-row {
  background: var(--bg);
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 24px 12px;
  border-bottom: 1px solid var(--line);
  transition: background .3s ease, padding .3s ease;
  position: relative;
}
.cal-row:hover { background: var(--bg-soft); padding-left: 24px; }
.cal-row .date {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -.015em;
  line-height: 1.1;
  color: var(--ink);
}
.cal-row .date small {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
  margin-top: 6px;
}
.cal-row .title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -.015em;
  line-height: 1.3;
  color: var(--ink);
}
.cal-row .title em { color: var(--slate); font-style: normal; }
.cal-row .title small {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0;
  margin-left: 2px;
}
.cal-row .tag {
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong);
  color: var(--ink-soft);
  font-weight: 600;
}
.cal-row.featured {
  background: var(--bg-lime);
  border-left: 4px solid var(--lime);
  padding-left: 20px;
}
.cal-row.featured:hover { background: var(--bg-lime); padding-left: 28px; }
.cal-row.featured .tag {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}

@media (max-width: 720px) {
  .cal-row { grid-template-columns: 1fr; gap: 8px; padding: 22px 12px; }
  .cal-row .tag { justify-self: start; }
}


/* =========== Contact =========== */
#contact {
  background: var(--bg-soft);
  padding: 140px 0 100px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-grid h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1;
  letter-spacing: -.03em;
  margin: 12px 0 36px;
  color: var(--ink);
}
.contact-grid h2 em { color: var(--slate); font-style: normal; }

.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.contact-list li:last-child { border-bottom: 1px solid var(--line); }
.contact-list .label {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
  padding-top: 4px;
  line-height: 1.4;
}
@media (max-width: 520px) {
  .contact-list li { grid-template-columns: 1fr; gap: 6px; }
}
.contact-list .val {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
}
.contact-list .val a:hover { color: var(--slate); }
.contact-list .val small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 400;
  margin-top: 6px;
}

.map-card {
  position: relative;
  background: var(--slate-deep);
  color: var(--bg);
  border-radius: var(--radius);
  padding: 40px 36px;
  min-height: 360px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}
.map-card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 5px;
  background: var(--lime);
}

.map-card .coords {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 600;
}
.map-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 16px 0 20px;
  color: var(--bg);
}
.map-card h3 em { color: var(--lime); font-style: normal; }
.map-card p { color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.6; margin: 0 0 24px; }
.map-card .btn { background: var(--bg); color: var(--ink); align-self: flex-start; }
.map-card .btn:hover { background: var(--lime); color: var(--ink); }


/* =========== Footer =========== */
footer {
  background: var(--slate-deep);
  color: var(--bg);
  padding: 80px 0 32px;
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 4px;
  background: var(--lime);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
@media (max-width: 800px) { .footer-top { grid-template-columns: 1fr; gap: 40px; } }

.footer-brand {}
.footer-logo-wrap { margin-bottom: 24px; }
.footer-logo-img {
  height: 160px;
  width: auto;
  display: block;
  opacity: .96;
}
@media (max-width: 800px) {
  .footer-logo-img { height: 140px; }
}
.footer-brand p {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(255,255,255,.65);
  margin-top: 12px;
  max-width: 36ch;
  line-height: 1.6;
}

footer h4 {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 600;
  margin: 0 0 18px;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { padding: 6px 0; font-size: 14.5px; color: rgba(255,255,255,.78); }
footer ul li a:hover { color: var(--lime); }

.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  letter-spacing: .04em;
  flex-wrap: wrap;
  gap: 12px;
}

/* =========== Reveal animation =========== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(16px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 400ms; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 480ms; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 560ms; }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }

/* Hero initial animation */
.hero h1 .line {
  opacity: 0;
  transform: translateY(24px);
  animation: heroRise 1s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero h1 .line:nth-child(1) { animation-delay: .05s; }
.hero h1 .line:nth-child(2) { animation-delay: .18s; }
.hero-sub, .hero-cta, .hero-meta { opacity: 0; animation: heroRise .9s cubic-bezier(.2,.7,.2,1) .35s forwards; }
.stats { opacity: 0; animation: heroRise .9s cubic-bezier(.2,.7,.2,1) .5s forwards; }

@keyframes heroRise {
  to { opacity: 1; transform: translateY(0); }
}


/* =========== Hero cover photo (homepage) =========== */
.hero { padding-bottom: 0; }
.hero-cover {
  position: relative;
  margin: 80px 0 0;
  width: 100%;
  overflow: hidden;
  background: var(--bg-deep);
}
.hero-cover img {
  width: 100%;
  height: clamp(280px, 48vw, 560px);
  object-fit: cover;
  object-position: center bottom;
  display: block;
}
.hero-cover-caption {
  position: absolute;
  left: 32px;
  top: 24px;
  background: var(--bg);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 3px solid var(--lime);
  max-width: 320px;
}
.hero-cover-caption .eyebrow { color: var(--slate); }
.hero-cover-caption span:last-child {
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.4;
}
.hero + .wrap, section.hero > .wrap:last-of-type { padding-top: 0; }
section.hero .stats { margin-top: 80px; }
@media (max-width: 640px) {
  .hero-cover-caption { left: 20px; right: 20px; top: 16px; max-width: none; }
}


/* =========== Page hero (vachettes / calendrier) =========== */
.page-hero {
  position: relative;
  padding: 140px 0 80px;
  background: var(--bg-soft);
  overflow: hidden;
}
.page-hero-light { background: var(--bg); border-bottom: 1px solid var(--line); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--slate); display: inline-block; margin-bottom: 18px; }
.page-hero-title {
  font-family: var(--display);
  font-variation-settings: "wdth" 95;
  font-weight: 700;
  font-size: clamp(56px, 10vw, 156px);
  line-height: .9;
  letter-spacing: -.04em;
  margin: 0;
  color: var(--ink);
}
.page-hero-title em { color: var(--slate); font-style: normal; font-weight: 700; }
.page-hero-sub {
  margin: 32px 0 0;
  max-width: 56ch;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* Vachettes page hero with photo background */
.page-hero-vachettes {
  background: var(--slate-deep);
  padding: 180px 0 100px;
  color: var(--bg);
}
.page-hero-vachettes::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 6px;
  background: var(--lime);
  z-index: 3;
}
.page-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .35;
  filter: saturate(.85);
}
.page-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(50,64,72,.5) 0%, rgba(50,64,72,.85) 60%, var(--slate-deep) 100%);
}
.page-hero-vachettes .eyebrow { color: var(--lime); }
.page-hero-vachettes .page-hero-title { color: var(--bg); }
.page-hero-vachettes .page-hero-title em { color: var(--lime); }
.page-hero-vachettes .page-hero-sub { color: rgba(255,255,255,.82); }


/* =========== Nav current state =========== */
.nav-links a.current {
  color: var(--slate);
  background: var(--bg-soft);
}


/* =========== Flyer link (text link in section-side) =========== */
.flyer-link {
  display: inline-block;
  margin-top: 16px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 2px solid var(--lime);
  padding-bottom: 2px;
  transition: color .2s ease;
}
.flyer-link:hover { color: var(--slate); }


/* =========== Vachettes teaser (homepage) =========== */
#vachettes-teaser {
  background: var(--slate-deep);
  color: var(--bg);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
#vachettes-teaser::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 6px;
  background: var(--lime);
}
.teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .teaser-grid { grid-template-columns: 1fr; gap: 24px; }
  .teaser-content { display: contents; }
  .teaser-header { order: 1; }
  .teaser-photo { order: 2; }
  .teaser-body { order: 3; }
  .teaser-content > .teaser-body > * { margin-bottom: 16px; }
}
.teaser-photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
}
.teaser-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 900px) {
  .teaser-photo {
    max-width: 480px;
    margin: 0 auto;
    aspect-ratio: 16/10;
  }
}
.teaser-content .eyebrow { color: var(--lime); }
.teaser-content h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: .92;
  letter-spacing: -.035em;
  margin: 16px 0 24px;
  color: var(--bg);
}
.teaser-content h2 em { color: var(--lime); font-style: normal; }
.teaser-quote {
  font-family: var(--display);
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: var(--lime);
  max-width: 32ch;
  margin: 0 0 16px;
}
.teaser-content p {
  color: rgba(255,255,255,.78);
  font-size: 15.5px;
  line-height: 1.65;
  margin: 0 0 24px;
  max-width: 44ch;
}
.teaser-content p em { color: var(--bg); font-style: normal; font-weight: 600; }

.teaser-dates {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
@media (max-width: 600px) { .teaser-dates { grid-template-columns: repeat(3, 1fr); } }
.teaser-dates li {
  background: rgba(255,255,255,.06);
  padding: 12px 8px;
  border-radius: var(--radius);
  text-align: center;
  display: flex; flex-direction: column; gap: 2px;
}
.teaser-dates li.featured { background: var(--lime); color: var(--ink); }
.teaser-dates .d {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.02em;
  color: var(--bg);
}
.teaser-dates li.featured .d { color: var(--ink); }
.teaser-dates .m {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  font-weight: 600;
}
.teaser-dates li.featured .m { color: var(--ink); opacity: .7; }

.teaser-cta { display: flex; gap: 12px; flex-wrap: wrap; }
#vachettes-teaser .btn-primary { background: var(--lime); color: var(--ink); }
#vachettes-teaser .btn-primary:hover { background: var(--bg); color: var(--ink); }


/* =========== Calendar teaser (homepage) =========== */
#calendrier-teaser .cal-cta {
  margin-top: 40px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}


/* =========== Page hero spacing for sub-pages =========== */
.page-hero + .section { padding-top: 100px; }


/* =========== Vachettes page sections =========== */
.vachette-section { background: var(--bg); }
.vachette-list-section { background: var(--bg-soft); padding-top: 100px; }
.vachette-list-section .vachette-list { color: var(--ink); }

/* override the dark-bg version of vachette-list when on light bg */
.vachette-list-section .vachette-list {
  border-top-color: var(--line-strong);
}
.vachette-list-section .vachette-list li {
  border-bottom-color: var(--line);
}
.vachette-list-section .vachette-list li:hover { background: var(--bg); }
.vachette-list-section .vachette-list .num { color: var(--slate); }
.vachette-list-section .vachette-list .date { color: var(--ink); }
.vachette-list-section .vachette-list .date small { color: var(--slate); }
.vachette-list-section .vachette-list .label { color: var(--ink-soft); }
.vachette-list-section .vachette-list .label em { color: var(--ink); }
.vachette-list-section .vachette-list li.featured {
  background: var(--bg-lime);
  border-left: 3px solid var(--lime);
}
.vachette-list-section .vachette-list li.featured:hover { background: var(--bg-lime); }
.vachette-list-section .vachette-list li.featured .date { color: var(--ink); }
.vachette-list-section .vachette-list li.featured .label em { color: var(--olive); }

/* override format strip bg */
.vachette-section .vachette-format {
  border-color: var(--line-strong);
  margin-top: 0;
}
.vachette-section .vachette-format > div { border-right-color: var(--line); }
@media (max-width: 720px) {
  .vachette-section .vachette-format > div { border-bottom-color: var(--line); }
}
.vachette-section .vachette-format .eyebrow { color: var(--slate); }
.vachette-section .vachette-format .value { color: var(--ink); }
.vachette-section .vachette-format .value em { color: var(--slate); }

/* CTA on light section */
.vachette-list-section .vachette-cta .btn-primary { background: var(--slate-deep); color: var(--bg); }
.vachette-list-section .vachette-cta .btn-primary:hover { background: var(--lime); color: var(--ink); }
.vachette-list-section .vachette-price { color: var(--ink-soft); }


/* =========== Vachecorinarde card =========== */
.vachecorinarde-section {
  background: var(--bg-soft);
  padding: 0 0 140px;
}
.vachecorinarde-card {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius);
  padding: 64px;
  position: relative;
  overflow: hidden;
}
.vachecorinarde-card::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: var(--lime);
}
@media (max-width: 720px) { .vachecorinarde-card { padding: 40px 32px; } }
.vachecorinarde-card .eyebrow { color: var(--lime); }
.vachecorinarde-card h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -.03em;
  margin: 16px 0 24px;
  color: var(--bg);
}
.vachecorinarde-card h2 em { color: var(--lime); font-style: normal; font-weight: 700; }
.vachecorinarde-card p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,.8);
  max-width: 56ch;
  margin: 0 0 16px;
}
.vacheco-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 24px 0 32px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.vacheco-meta span {
  font-size: 14px;
  color: rgba(255,255,255,.78);
}
.vacheco-meta strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-right: 12px;
}
.vachecorinarde-card .btn-primary { background: var(--lime); color: var(--ink); }
.vachecorinarde-card .btn-primary:hover { background: var(--bg); color: var(--ink); }
.vacheco-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.vachecorinarde-card .btn-vacheco-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--bg);
  font-size: 14px;
  font-weight: 600;
  transition: border-color .25s ease, background .25s ease;
}
.vachecorinarde-card .btn-vacheco-ghost:hover { border-color: var(--lime); background: rgba(218,220,41,.1); }


/* =========== Section tight (less padding) =========== */
.section-tight { padding: 60px 0 0; }


/* =========== Flyer card (calendar page) =========== */
.flyer-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 32px 36px;
  background: var(--bg-lime);
  border: 1px solid var(--lime);
  border-radius: var(--radius);
  transition: transform .25s ease, background .25s ease;
}
.flyer-card:hover { transform: translateY(-2px); }
@media (max-width: 720px) { .flyer-card { grid-template-columns: 1fr; padding: 24px 24px; } }
.flyer-card-text .eyebrow { color: var(--olive); }
.flyer-card-text h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1;
  letter-spacing: -.02em;
  margin: 8px 0 12px;
  color: var(--ink);
}
.flyer-card-text h3 em { color: var(--ink-soft); font-style: normal; }
.flyer-card-text p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 60ch;
}
.flyer-card .btn-primary { background: var(--ink); color: var(--bg); }
.flyer-card .btn-primary:hover { background: var(--slate-deep); color: var(--bg); }


/* =========== Calendar filters =========== */
.cal-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.cal-filter {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ink-soft);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.cal-filter:hover { color: var(--ink); border-color: var(--ink); }
.cal-filter.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.cal-row.cal-hidden { display: none; }


/* =========== Juniors poster =========== */
.juniors-poster {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--bg-deep);
  border-radius: var(--radius);
  margin-bottom: 32px;
}
.juniors-poster-photo {
  width: 100%;
  height: clamp(320px, 42vw, 480px);
}
.juniors-poster-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.juniors-poster-overlay {
  position: absolute;
  left: 32px;
  bottom: 32px;
  background: var(--bg);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  border-left: 4px solid var(--lime);
  max-width: 380px;
}
.juniors-poster-overlay .eyebrow { color: var(--slate); }
.juniors-poster-overlay h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--ink);
}
.juniors-poster-overlay h3 em { color: var(--slate); font-style: normal; }
.juniors-poster-overlay .btn-primary { background: var(--ink); color: var(--bg); margin-top: 4px; padding: 12px 22px; font-size: 14px; }
.juniors-poster-overlay .btn-primary:hover { background: var(--lime); color: var(--ink); }
@media (max-width: 640px) {
  .juniors-poster-overlay {
    left: 16px;
    right: auto;
    bottom: 16px;
    max-width: calc(100% - 32px);
    padding: 12px 14px;
    gap: 8px;
  }
  .juniors-poster-overlay h3 { font-size: 17px; }
  .juniors-poster-overlay .eyebrow { font-size: 10px; letter-spacing: .18em; }
  .juniors-poster-overlay .btn-primary { padding: 8px 14px; font-size: 12.5px; }
}
