/* ============================================
   ASPCD Section Golf — Bunker design direction
   Country club revisité · Vert bouteille / Beige sable / Bordeaux / Or pâle
   ============================================ */

:root {
  --bottle: #1a4d3a;
  --bottle-dark: #123227;
  --bottle-light: #2a6a52;
  --sand: #e8dcc4;
  --sand-light: #f0e9d8;
  --cream: #f5f1e8;
  --burgundy: #7a2a2e;
  --gold: #c9a961;
  --ink: #1a1f1a;
  --muted: rgba(26, 31, 26, 0.62);
  --hairline: rgba(26, 77, 58, 0.18);
  --hairline-light: rgba(26, 77, 58, 0.08);
  --shadow-soft: 0 20px 50px rgba(26, 77, 58, 0.08);
  --shadow-strong: 0 30px 80px rgba(26, 77, 58, 0.18);
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

/* ----------------------------------------------------------
   Typography
   ---------------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin: 0;
  line-height: 1.15;
}

h1 { font-size: clamp(2.8rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1em; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 600;
  color: var(--burgundy);
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 0 0 50px;
  height: 1px;
  background: var(--burgundy);
}
.ornament span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--burgundy);
  letter-spacing: 0.08em;
}

/* ----------------------------------------------------------
   Layout helpers
   ---------------------------------------------------------- */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  padding: 100px 0;
}

/* ----------------------------------------------------------
   Header / Navigation
   ---------------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--bottle);
  color: var(--cream);
  border-bottom: 1px solid rgba(232, 220, 196, 0.1);
  transition: background 0.3s, padding 0.3s;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--cream);
  text-decoration: none;
}
.brand__logo {
  height: 38px;
  width: auto;
  display: block;
}
.brand__divider {
  display: block;
  width: 1px;
  height: 32px;
  background: rgba(232, 220, 196, 0.3);
}
.brand__section {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  color: var(--cream);
  gap: 4px;
}
.brand__line {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.01em;
}
.brand__city {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  /* compensate for trailing letter-spacing on the last char so the
     block looks visually centered under "Section Golf" */
  margin-right: -0.3em;
}
.brand--footer {
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.brand--footer .brand__logo {
  height: 48px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav a {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: var(--cream);
  padding: 10px 16px;
  opacity: 0.78;
  transition: opacity 0.2s;
}
.nav a:hover,
.nav a.active { opacity: 1; color: var(--gold); }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--cream);
  color: var(--cream);
  padding: 8px 12px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ----------------------------------------------------------
   Hero
   ---------------------------------------------------------- */

.hero {
  padding: 180px 0 110px;
  background: var(--sand);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(26, 77, 58, 0.04) 0, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(122, 42, 46, 0.04) 0, transparent 40%);
  pointer-events: none;
}
.hero__inner { position: relative; }
.hero h1 {
  margin-bottom: 18px;
  color: var(--bottle);
}
.hero h1 em {
  font-style: italic;
  color: var(--burgundy);
}
.hero__logo {
  margin: 36px auto 42px;
  display: flex;
  justify-content: center;
}
.hero__logo img {
  width: clamp(260px, 35vw, 420px);
  height: auto;
  display: block;
  opacity: 0.92;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  border: 1px solid var(--bottle);
  background: transparent;
  color: var(--bottle);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 500;
  transition: background 0.25s, color 0.25s;
}
.hero__cta:hover {
  background: var(--bottle);
  color: var(--cream);
}
.hero__cta .arrow { display: inline-block; transition: transform 0.25s; }
.hero__cta:hover .arrow { transform: translateX(4px); }

/* ----------------------------------------------------------
   Stats banner (intro section)
   ---------------------------------------------------------- */

.intro {
  background: var(--bottle);
  color: var(--cream);
  padding: 70px 0;
}
.intro__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.intro__stat .number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}
.intro__stat .number.check {
  font-size: 2.6rem;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}
.intro__stat .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(232, 220, 196, 0.78);
  font-weight: 500;
}

/* ----------------------------------------------------------
   Section heading
   ---------------------------------------------------------- */

.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-head h2 {
  color: var(--bottle);
  margin-bottom: 12px;
}
.section-head h2 em { color: var(--burgundy); font-style: italic; }
.section-head__sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted);
  font-weight: 500;
}

/* ----------------------------------------------------------
   News
   ---------------------------------------------------------- */

.news {
  background: var(--cream);
}

.news__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--hairline);
  color: var(--bottle);
  padding: 9px 18px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  transition: all 0.2s;
}
.filter-btn:hover { background: rgba(26, 77, 58, 0.06); }
.filter-btn.active {
  background: var(--bottle);
  color: var(--cream);
  border-color: var(--bottle);
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.news-card {
  background: var(--sand-light);
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.news-card__body {
  padding: 30px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-card--with-image .news-card__body {
  padding: 22px 28px 28px;
}
.news-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream);
  border-bottom: 1px solid var(--hairline);
}
.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.news-card:hover .news-card__image img {
  transform: scale(1.04);
}
.news-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.news-card__date {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 600;
}
.news-card__sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.news-card__category {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bottle);
  font-weight: 500;
}
.news-card h3 {
  font-size: 1.5rem;
  color: var(--bottle);
  margin-bottom: 14px;
  line-height: 1.2;
}
.news-card__summary {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 22px;
  flex: 1;
}
.news-card__read {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--bottle);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.news-card__read::after {
  content: '→';
  transition: transform 0.2s;
}
.news-card:hover .news-card__read::after { transform: translateX(4px); }

.news__empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
}

/* ----------------------------------------------------------
   Teams
   ---------------------------------------------------------- */

.teams {
  background: var(--sand);
}

.teams__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch; /* same height for all cards */
}

.teams__loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
}

.team-card {
  background: var(--cream);
  border: 1px solid var(--hairline);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  text-align: center;
}
.team-card::before {
  /* Accent stripe at the top, full width */
  content: '';
  display: block;
  height: 4px;
  background: var(--team-accent, var(--bottle));
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--team-accent, var(--gold));
}

/* Header — title centered with ornamental divider */
.team-card__header {
  padding: 24px 14px 16px;
  border-bottom: 1px solid var(--hairline);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), transparent);
}
.team-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 1.5vw, 1.5rem);
  font-weight: 600;
  color: var(--bottle);
  margin: 0;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-align: center;
}
.team-card__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 10px auto 10px;
  max-width: 120px;
  color: var(--team-accent, var(--gold));
  opacity: 0.7;
}
.ornament-line {
  flex: 1;
  height: 1px;
  background: currentColor;
}
.ornament-diamond {
  font-size: 0.5rem;
  line-height: 1;
}
.team-card__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}

/* Roster — centered column, alternating subtle rows */
.team-card__roster {
  list-style: none;
  margin: 0;
  padding: 14px 0 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.roster-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.3;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.roster-item:nth-child(even) {
  background: rgba(232, 220, 196, 0.28);
}
.roster-item:hover {
  background: rgba(201, 169, 97, 0.16);
  color: var(--bottle);
}
.roster-item__name {
  letter-spacing: 0.005em;
}
.roster-item--captain {
  color: var(--burgundy);
  font-weight: 600;
}
.roster-item--captain .roster-item__name {
  font-style: italic;
}
.roster-item__star {
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
  font-style: normal;
}

/* Footer — total count with golf icon */
.team-card__footer {
  padding: 12px 14px;
  border-top: 1px solid var(--hairline-light);
  background: rgba(232, 220, 196, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.team-card__footer-icon {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1;
}
.team-card__count {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  font-weight: 600;
}

/* ----------------------------------------------------------
   Leaderboard — fond Bunker + panneau sombre type Masters
   ---------------------------------------------------------- */
.leaderboard {
  background: var(--sand);
}

.lb-panel {
  background: #0d3024;
  color: #e8dcc4;
  border: 1px solid #0a2419;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.lb-panel__head {
  padding: 22px 28px;
  background: linear-gradient(180deg, #133929 0%, #0d3024 100%);
  border-bottom: 1px solid rgba(232, 220, 196, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lb-panel__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lb-panel__title-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  letter-spacing: 0.28em;
  font-weight: 600;
  color: var(--gold);
}
.lb-panel__updated {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 220, 196, 0.55);
}

/* Table */
.lb-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.lb-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
}
.lb-table thead { background: rgba(0, 0, 0, 0.22); }
.lb-th {
  padding: 14px 16px;
  text-align: left;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  border-bottom: 1px solid rgba(232, 220, 196, 0.12);
  white-space: nowrap;
}
.lb-th--pos { width: 7%; text-align: center; }
.lb-th--name { width: 27%; }
.lb-th--idx { width: 16%; text-align: center; }
.lb-th--date { width: 17%; text-align: center; }
.lb-th--evo { width: 17%; text-align: center; }
.lb-th--status { width: 110px; text-align: center; }

.lb-row {
  border-bottom: 1px solid rgba(232, 220, 196, 0.06);
  transition: background 0.2s;
}
.lb-row:hover { background: rgba(232, 220, 196, 0.05); }
.lb-row td {
  padding: 12px 16px;
  vertical-align: middle;
}

.lb-pos {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
}
.lb-row--top1 .lb-pos { color: #ffd700; font-size: 1.2rem; }
.lb-row--top2 .lb-pos { color: #c0c0c0; font-size: 1.15rem; }
.lb-row--top3 .lb-pos { color: #cd7f32; font-size: 1.1rem; }

.lb-name {
  font-weight: 500;
  color: var(--cream);
}
.lb-name__last {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
}
.lb-name__first { font-weight: 400; opacity: 0.92; }
.lb-name__sex {
  margin-left: 6px;
  font-size: 0.7rem;
  opacity: 0.6;
  vertical-align: 1px;
}

.lb-idx {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
}
.lb-idx--start { color: rgba(232, 220, 196, 0.7); font-size: 1.05rem; font-weight: 500; }
.lb-idx--current { color: var(--gold); }
.lb-row--unclassed .lb-idx { color: rgba(232, 220, 196, 0.45) !important; }

/* Date de calcul de l'index (colonne DATE INDEX) */
.lb-date {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(232, 220, 196, 0.66);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Évolution column — colored arrow + delta value */
.lb-evo {
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.evo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition: transform 0.2s;
}
.evo__icon {
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 800;
}
.evo__value { font-family: 'Cormorant Garamond', serif; font-size: 1rem; }

.evo--positive {
  background: rgba(74, 175, 105, 0.18);
  color: #6dd58a;
  border: 1px solid rgba(109, 213, 138, 0.35);
  animation: evo-pulse-positive 2.4s ease-in-out infinite;
}
.evo--negative {
  background: rgba(220, 70, 70, 0.18);
  color: #f08585;
  border: 1px solid rgba(240, 133, 133, 0.35);
}
.evo--neutral {
  background: rgba(232, 220, 196, 0.08);
  color: rgba(232, 220, 196, 0.55);
  border: 1px solid rgba(232, 220, 196, 0.15);
}
.evo--na {
  color: rgba(232, 220, 196, 0.3);
  font-style: italic;
  font-size: 1rem;
}

.lb-row:hover .evo { transform: scale(1.08); }

@keyframes evo-pulse-positive {
  0%, 100% { box-shadow: 0 0 0 0 rgba(109, 213, 138, 0); }
  50%      { box-shadow: 0 0 0 4px rgba(109, 213, 138, 0.12); }
}

.lb-status {
  text-align: center;
}
.lb-status__badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px;
}
.lb-status__badge--classe {
  background: rgba(201, 169, 97, 0.18);
  color: var(--gold);
  border: 1px solid rgba(201, 169, 97, 0.4);
}
.lb-status__badge--nonclasse {
  background: rgba(232, 220, 196, 0.06);
  color: rgba(232, 220, 196, 0.55);
  border: 1px solid rgba(232, 220, 196, 0.15);
}

.lb-empty {
  text-align: center !important;
  padding: 50px 20px !important;
  color: rgba(232, 220, 196, 0.5);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
}

.lb-footer {
  padding: 14px 22px;
  background: rgba(0, 0, 0, 0.22);
  border-top: 1px solid rgba(232, 220, 196, 0.1);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 220, 196, 0.55);
  text-align: center;
  font-weight: 500;
}

@media (max-width: 760px) {
  /* On masque l'index de début d'année + la date sur mobile, on garde l'évolution */
  .lb-th--idx:first-of-type, .lb-idx--start { display: none; }
  .lb-th--date, .lb-date { display: none; }
}

@media (max-width: 480px) {
  .lb-panel__head { flex-direction: column; align-items: flex-start; gap: 4px; padding: 16px 18px; }
  .lb-panel__title-main { font-size: 0.95rem; letter-spacing: 0.18em; }
  .lb-row td { padding: 10px 10px; }
  .lb-idx { font-size: 1.1rem; }
  .lb-th, .lb-row td { padding-left: 8px; padding-right: 8px; }
  .lb-th--status, .lb-status { display: none; }
  .evo { padding: 4px 8px; font-size: 0.8rem; }
}

/* ----------------------------------------------------------
   Calendar
   ---------------------------------------------------------- */

.calendar {
  background: var(--cream);
}

.calendar__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  max-width: 880px;
  margin: 0 auto 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hairline);
}
.calendar__heading h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--bottle);
  margin: 0;
}
.calendar__count {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted);
  font-weight: 500;
}

.calendar__list {
  max-width: 880px;
  margin: 0 auto;
}

.calendar__loading {
  text-align: center;
  padding: 30px;
  color: var(--muted);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
}

.event {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 22px 4px;
  border-bottom: 1px solid var(--hairline);
  transition: background 0.2s;
}
.event:hover {
  background: rgba(232, 220, 196, 0.35);
}
.event__date {
  font-family: 'Inter', sans-serif;
  text-align: left;
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.event__date .month {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--burgundy);
  font-weight: 600;
  margin-bottom: 6px;
}
.event__date .day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--bottle);
}
.event__date .day .span {
  font-size: 0.7em;
  opacity: 0.7;
  margin-left: 2px;
}
.event__info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--bottle);
  margin: 0 0 4px;
  line-height: 1.25;
}
.event__info .location {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
}
.event__info .location::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 2px;
}

.event__tags {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}
.event__tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  padding: 6px 14px;
  color: var(--cream);
  background: var(--cat-color, var(--bottle));
  white-space: nowrap;
  border-radius: 2px;
}
.event__tag--extra {
  font-size: 0.6rem;
  padding: 5px 12px;
}

/* Multi-team event : breakdown D2A / D2B / D3 */
.event__teams {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.event-team {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--ink);
}
.event-team__name {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 3px 8px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--cream);
  background: var(--cat-color, var(--bottle));
  border-radius: 2px;
  text-align: center;
}
.event-team__sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.event-team__course {
  font-style: italic;
  color: rgba(26, 31, 26, 0.78);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
}
.event--multi-team .event__info h4 {
  margin-bottom: 4px;
}
.event--past .event-team__name {
  opacity: 0.75;
}

.event--past {
  opacity: 0.6;
}
.event--past:hover { opacity: 0.85; }

/* Upcoming events pagination */
.calendar__pagination {
  max-width: 880px;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.page-arrow {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--hairline);
  color: var(--bottle);
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.page-arrow:hover:not(:disabled) {
  background: var(--bottle);
  color: var(--cream);
  border-color: var(--bottle);
}
.page-arrow:hover:not(:disabled) span {
  transform: translateX(2px);
}
.page-arrow:first-child:hover:not(:disabled) span {
  transform: translateX(-2px);
}
.page-arrow span {
  display: inline-block;
  transition: transform 0.15s;
}
.page-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.page-indicator {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted);
  font-weight: 500;
  min-width: 110px;
  text-align: center;
}

/* History reveal */
.calendar__history-trigger {
  max-width: 880px;
  margin: 30px auto 0;
  text-align: center;
}
.history-btn {
  background: transparent;
  border: 1px solid var(--hairline);
  color: var(--bottle);
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
}
.history-btn:hover {
  background: rgba(26, 77, 58, 0.05);
}
.history-btn__icon {
  display: inline-block;
  transition: transform 0.3s;
}
.history-btn[aria-expanded="true"] .history-btn__icon {
  transform: rotate(180deg);
}

.calendar__history {
  max-width: 880px;
  margin: 40px auto 0;
  padding-top: 30px;
  border-top: 1px dashed var(--hairline);
}
.calendar__history h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  font-style: italic;
  color: var(--muted);
  margin: 0 0 18px;
  text-align: center;
}

/* Full calendar link */
.calendar__full-link {
  text-align: center;
  margin: 40px auto 0;
}
.full-calendar-btn {
  background: var(--bottle);
  border: 1px solid var(--bottle);
  color: var(--cream);
  padding: 16px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: background 0.2s, color 0.2s;
}
.full-calendar-btn:hover {
  background: var(--bottle-dark);
}
.full-calendar-btn .arrow {
  display: inline-block;
  transition: transform 0.2s;
}
.full-calendar-btn:hover .arrow {
  transform: translateX(4px);
}

/* Calendar modal (wider for the annual calendar grid) */
.modal__panel--wide {
  max-width: min(1500px, 95vw);
  padding: 50px 40px 40px;
  width: 100%;
}
.modal__lede {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 24px;
}
/* ----------------------------------------------------------
   Annual calendar (dynamic 12-month grid)
   ---------------------------------------------------------- */
.annual-calendar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 8px 0 32px;
  min-width: 0;
}

.month-card {
  background: var(--sand-light);
  border: 1px solid var(--hairline);
  padding: 18px 16px 14px;
  min-width: 0;
}
.month-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  font-style: italic;
  color: var(--bottle);
  text-align: center;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--hairline);
  letter-spacing: 0.02em;
}
.month-card__days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
  min-width: 0;
}
.month-card__dow {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--burgundy);
  text-transform: uppercase;
  padding: 4px 0 6px;
  opacity: 0.75;
  min-width: 0;
}
.month-card__day {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
  color: var(--ink);
  position: relative;
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease;
  min-width: 0;
}
.month-card__day--out {
  color: rgba(26, 31, 26, 0.18);
}
.month-card__day--weekend {
  color: rgba(26, 31, 26, 0.55);
}
.month-card__day--event {
  background: var(--cat-color, var(--bottle));
  color: var(--cream);
  font-weight: 600;
  cursor: pointer;
}
.month-card__day--event:hover {
  transform: scale(1.18);
  z-index: 5;
}
.month-card__day--event-start {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.month-card__day--event-end {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.month-card__day--event-mid {
  border-radius: 0;
}

/* Multi-team day : small golf tee marker in the corner + scale on hover */
.month-card__day--multi-team .day-team-marker {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 16px;
  height: 16px;
  background: var(--burgundy);
  color: var(--cream);
  border-radius: 50%;
  font-size: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--cream);
  z-index: 2;
  pointer-events: none;
  font-style: normal;
}
.month-card__day--multi-team {
  font-weight: 700;
  box-shadow: 0 0 0 1.5px rgba(122, 42, 46, 0.35);
}
.month-card__day--multi-team:hover {
  transform: scale(1.32);
  z-index: 8;
}
.month-card__day--multi-event {
  font-weight: 700;
  border: 1.5px solid var(--cream);
}
.month-card__day--multi-event:hover {
  transform: scale(1.32);
  z-index: 8;
}

/* Tooltip */
.month-card__day[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bottle);
  color: var(--cream);
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
  white-space: pre-line; /* supports \n for multi-event days */
  text-align: left;
  width: max-content;
  max-width: 320px;
  z-index: 20;
  pointer-events: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.month-card__day[data-tooltip]:hover::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--bottle);
  z-index: 11;
}

.annual-calendar__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  justify-content: center;
}
.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink);
  font-weight: 500;
}
.legend-item__swatch {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: var(--cat-color, var(--bottle));
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   Pro Shop
   ---------------------------------------------------------- */
.proshop {
  background: var(--sand);
}
.proshop__intro {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--bottle);
  max-width: 760px;
  margin: -20px auto 60px;
}
.proshop__intro strong {
  font-style: normal;
  font-weight: 600;
  color: var(--burgundy);
}

.proshop__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 64px;
}

.product-card {
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.product-card__image {
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 50% 60%, rgba(232, 220, 196, 0.6) 0%, var(--sand-light) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  border-bottom: 1px solid var(--hairline);
}
.product-card__image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.45s ease;
}
.product-card:hover .product-card__image img {
  transform: scale(1.06);
}
.product-card__image--contain img {
  max-height: 70%;
}

.product-card__body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-card__category {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--burgundy);
  font-weight: 600;
}
.product-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--bottle);
  margin: 0;
  line-height: 1.2;
}
.product-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 6px 0 0;
}
.product-card__colors {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  align-items: center;
}
.color-dot {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--c, var(--bottle));
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  cursor: default;
}

/* CTA block at the end of Pro Shop */
.proshop__cta {
  text-align: center;
  background: var(--cream);
  border: 1px solid var(--hairline);
  padding: 44px 40px 40px;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.proshop__cta::before,
.proshop__cta::after {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
}
.proshop__cta::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}
.proshop__cta::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}
.proshop__cta-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--bottle);
  margin: 0 0 26px;
}
.proshop__cta-text strong {
  font-style: italic;
  color: var(--burgundy);
}
.proshop__cse-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--bottle);
  color: var(--cream);
  padding: 16px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
  border: 1px solid var(--bottle);
}
.proshop__cse-btn:hover {
  background: var(--bottle-dark);
}
.proshop__cse-btn .arrow {
  display: inline-block;
  transition: transform 0.2s;
}
.proshop__cse-btn:hover .arrow {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 980px) {
  .proshop__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .proshop__grid { grid-template-columns: minmax(0, 1fr); }
  .proshop__cta { padding: 32px 24px; }
}

/* ----------------------------------------------------------
   La Section — administrative with tabs
   ---------------------------------------------------------- */
.section-admin {
  background: var(--cream);
}

.section-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 36px;
  padding: 0 16px;
}
.section-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  position: relative;
  bottom: -1px;
}
.section-tab:hover {
  color: var(--bottle);
  background: rgba(232, 220, 196, 0.25);
}
.section-tab--active {
  color: var(--bottle);
  border-bottom-color: var(--gold);
  font-weight: 600;
}
.section-tab__icon {
  font-size: 1.1rem;
  line-height: 1;
  color: var(--burgundy);
}
.section-tab--active .section-tab__icon { color: var(--gold); }

.section-panel {
  animation: panel-fade 0.35s ease;
}
.section-panel[hidden] { display: none; }

@keyframes panel-fade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.panel-head {
  text-align: center;
  margin-bottom: 32px;
}
.panel-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--bottle);
  margin: 0 0 10px;
}
.panel-lede {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Bureau panel — image centered */
.bureau-figure {
  margin: 0 auto;
  max-width: 980px;
  background: var(--sand-light);
  border: 1px solid var(--hairline);
  padding: 14px;
}
.bureau-figure img {
  width: 100%;
  height: auto;
  display: block;
}

/* Règlement intérieur — typography for a long document */
.reglement-content {
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink);
}
.reglement-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--bottle);
  margin: 32px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--hairline);
}
.reglement-content h4:first-child {
  margin-top: 0;
}
.reglement-content p {
  margin: 0 0 14px;
}
.reglement-content ul {
  margin: 0 0 16px 24px;
  padding: 0;
}
.reglement-content li {
  margin-bottom: 6px;
}
.reglement-content strong {
  color: var(--bottle);
}
.reglement-note {
  background: rgba(201, 169, 97, 0.10);
  border-left: 3px solid var(--gold);
  padding: 12px 16px;
  font-style: italic;
  margin: 16px 0 !important;
  font-size: 0.9rem;
}
.reglement-table {
  margin: 20px 0;
  border: 1px solid var(--hairline);
  background: var(--sand-light);
}
.reglement-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--hairline);
  align-items: center;
}
.reglement-row:last-child { border-bottom: none; }
.reglement-row--head {
  background: var(--bottle);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-align: center;
}
.reglement-row--head div { color: var(--cream); }
.reglement-row .small {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
}
.reglement-signature {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  text-align: center;
}
.reglement-signature__date {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 22px !important;
}
.reglement-signature__people {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.reglement-signature__role {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--burgundy);
  font-weight: 600;
  margin-bottom: 6px;
}
.reglement-signature__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bottle);
  font-style: italic;
}

/* Bordereau de remboursement à télécharger */
.bordereau-block {
  margin-top: 36px;
  padding: 24px 24px;
  background: var(--sand-light);
  border: 1px solid var(--gold);
  border-left-width: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.bordereau-block__text {
  flex: 1;
  min-width: 260px;
}
.bordereau-block__text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem !important;
  color: var(--bottle);
}
.bordereau-block__text p {
  font-size: 0.92rem !important;
  color: var(--ink);
  line-height: 1.5;
}
.bordereau-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--bottle);
  color: var(--cream);
  padding: 14px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  text-align: left;
  flex-shrink: 0;
}
.bordereau-btn:hover { background: var(--bottle-dark); }
.bordereau-btn__icon {
  font-size: 1.4rem;
  line-height: 1;
}
.bordereau-btn__sub {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  opacity: 0.75;
  margin-top: 3px;
  font-weight: 400;
}
.bordereau-btn__arrow {
  font-size: 1.2rem;
  transition: transform 0.2s;
}
.bordereau-btn:hover .bordereau-btn__arrow {
  transform: translateY(3px);
}

@media (max-width: 640px) {
  .bordereau-block { flex-direction: column; align-items: stretch; text-align: center; }
  .bordereau-btn { justify-content: center; }
}

/* Guide du nouvel arrivant */
.guide-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.guide-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--burgundy);
  color: var(--cream);
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.guide-pdf-btn:hover { background: #5a1f22; }
.guide-pdf-btn .arrow { display: inline-block; transition: transform 0.2s; }
.guide-pdf-btn:hover .arrow { transform: translateY(2px); }

.guide-pages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.guide-figure {
  margin: 0;
  background: var(--sand-light);
  border: 1px solid var(--hairline);
  padding: 12px;
  text-align: center;
}
.guide-figure img {
  width: 100%;
  height: auto;
  display: block;
}
.guide-figure figcaption {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-top: 10px;
  font-weight: 500;
}

@media (max-width: 980px) {
  .section-tab__label { display: none; }
  .section-tab__icon { font-size: 1.3rem; }
  .section-tab { padding: 14px 18px; }
  .reglement-signature__people { grid-template-columns: 1fr; gap: 18px; }
  .guide-pages { grid-template-columns: 1fr; }
  .reglement-row { grid-template-columns: 1fr; text-align: center; }
  .reglement-row--head { display: none; }
}

/* Contact cards adapted to the light "La Section" panel context */
.section-admin .contact-card {
  background: var(--sand-light);
  border: 1px solid var(--hairline);
  text-align: center;
}
.section-admin .contact-card h4 {
  color: var(--bottle);
}
.section-admin .contact-card p {
  color: var(--muted);
  font-size: 0.9rem;
}
.section-admin .contact-card .contact-card__icon {
  color: var(--burgundy);
}
.section-admin .contact-card a {
  color: var(--bottle);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.section-admin .contact-card a:hover {
  color: var(--burgundy);
}

/* ----------------------------------------------------------
   Contact
   ---------------------------------------------------------- */

.contact {
  background: var(--bottle);
  color: var(--cream);
  text-align: center;
}
.contact .section-head h2 { color: var(--cream); }
.contact .section-head h2 em { color: var(--gold); }
.contact .section-head__sub { color: rgba(232, 220, 196, 0.65); }
.contact .ornament span { color: var(--gold); }
.contact .ornament::before,
.contact .ornament::after { background: var(--gold); }

.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.contact-card {
  border: 1px solid rgba(232, 220, 196, 0.18);
  padding: 36px 24px;
}
.contact-card__icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.contact-card h4 {
  color: var(--cream);
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.contact-card p {
  font-size: 0.92rem;
  color: rgba(232, 220, 196, 0.78);
  margin: 0;
}
.contact-card a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

/* ----------------------------------------------------------
   Footer
   ---------------------------------------------------------- */

.site-footer {
  background: var(--bottle-dark);
  color: rgba(232, 220, 196, 0.65);
  padding: 50px 0 30px;
  font-size: 0.85rem;
}
.site-footer__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.site-footer .brand { color: rgba(232, 220, 196, 0.9); }
.site-footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}
.site-footer__copy {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(232, 220, 196, 0.4);
  padding-top: 20px;
  border-top: 1px solid rgba(232, 220, 196, 0.1);
  width: 100%;
  max-width: 600px;
}

/* ----------------------------------------------------------
   Modal (news detail)
   ---------------------------------------------------------- */

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 50px 20px;
  background: rgba(18, 50, 39, 0.86);
  overflow-y: auto;
  /* NB : pas de backdrop-filter ici — il transformerait .modal en cadre de
     référence pour les enfants position:fixed (le bouton × défilerait alors
     avec le contenu au lieu de rester collé à l'écran). Le flou est appliqué
     via ::before (pseudo-élément), qui ne crée pas ce cadre de référence. */
}
.modal::before {
  content: '';
  position: fixed;
  inset: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
  z-index: -1;
}
.modal.open { display: flex; }
.modal__panel {
  background: var(--cream);
  max-width: 760px;
  width: 100%;
  padding: 50px 60px 60px;
  position: relative;
  border-top: 4px solid var(--gold);
}
.modal__close {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 220;
  background: var(--cream);
  border: 1px solid var(--hairline);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--bottle);
  border-radius: 50%;
  transition: all 0.2s;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
}
.modal__close:hover {
  background: var(--bottle);
  color: var(--cream);
  border-color: var(--bottle);
  transform: rotate(90deg);
}
.modal__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.modal__date {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--burgundy);
  font-weight: 600;
}
.modal__category {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--bottle);
  padding: 4px 14px;
  border: 1px solid var(--gold);
  background: rgba(201, 169, 97, 0.1);
  font-weight: 500;
}
.modal h2 {
  color: var(--bottle);
  font-size: 2.4rem;
  margin-bottom: 18px;
}
.modal__author {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hairline);
}
.modal__content {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink);
}
.modal__content h4 {
  margin: 28px 0 12px;
  color: var(--burgundy);
  font-size: 1.25rem;
}
.modal__content p { margin-bottom: 1.1em; }
.modal__content ul,
.modal__content ol {
  margin: 0 0 1.1em 1.4em;
  padding: 0;
}
.modal__content li { margin-bottom: 0.4em; }
.modal__content blockquote {
  margin: 24px 0;
  padding: 20px 26px;
  border-left: 3px solid var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--bottle);
  background: rgba(201, 169, 97, 0.06);
}
.modal__content strong { color: var(--bottle); }
/* Image insérée dans le corps d'un article — centrée par rapport au texte */
.modal__content img,
.modal__content .article-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 24px auto;
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(18, 50, 39, 0.18);
}
.modal__content a {
  color: var(--burgundy);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.modal__content a:hover { color: var(--bottle); }

/* Photos en haut de l'article, côte à côte si plusieurs */
.modal__photos {
  margin: 0 -60px 32px;
}
.modal__photo {
  margin: 0;
  overflow: hidden;
  background: var(--sand-light);
}
.modal__photo img { cursor: zoom-in; transition: opacity 0.2s; }
.modal__photo img:hover { opacity: 0.92; }

/* Une seule photo : pleine largeur, hauteur naturelle plafonnée */
.modal__photos--single .modal__photo img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

/* Plusieurs photos : grille côte à côte, hauteurs uniformes */
.modal__photos--multi {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.modal__photos--multi .modal__photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
@media (max-width: 640px) {
  .modal__photos { margin: 0 -28px 24px; }
  .modal__photos--multi { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
}

/* Lightbox : agrandissement d'une photo au clic */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(10, 22, 17, 0.93);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 94vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}
.lightbox__close {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(245, 241, 232, 0.95);
  border: none;
  color: var(--bottle);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s;
}
.lightbox__close:hover { transform: rotate(90deg); }

/* ----------------------------------------------------------
   News card — comment count badge
   ---------------------------------------------------------- */
.news-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.news-card__comments {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--burgundy);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  opacity: 0.85;
}

/* ----------------------------------------------------------
   Reactions bar (inside news modal)
   ---------------------------------------------------------- */
.reactions {
  margin: 40px 0 30px;
  padding: 24px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.reactions__title {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--burgundy);
  font-weight: 600;
  margin-bottom: 14px;
}
.reactions__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.reaction-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--sand-light);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, border-color 0.15s;
}
.reaction-btn:hover:not(:disabled) {
  background: var(--cream);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.reaction-btn__emoji {
  font-size: 1.15rem;
  line-height: 1;
}
.reaction-btn__count {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--bottle);
  min-width: 14px;
  text-align: center;
}
.reaction-btn--used {
  background: rgba(201, 169, 97, 0.22);
  border-color: var(--gold);
}
.reaction-btn--used:hover {
  background: rgba(122, 42, 46, 0.10);
  border-color: var(--burgundy);
}
.reaction-btn--used:hover::after {
  /* indication subtile au survol qu'on peut retirer sa réaction */
  content: '×';
  position: absolute;
  top: 2px;
  right: 8px;
  font-size: 0.7rem;
  color: var(--burgundy);
  opacity: 0.7;
}
.reaction-btn {
  position: relative;
}
.reaction-btn--used .reaction-btn__count {
  color: var(--burgundy);
  font-weight: 600;
}
.reaction-btn[data-busy="1"] {
  opacity: 0.55;
  pointer-events: none;
}

/* ----------------------------------------------------------
   Comments
   ---------------------------------------------------------- */
.comments {
  margin-top: 10px;
}
.comments__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 12px;
}
.comments__header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--bottle);
  margin: 0;
}
.comments__count {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  font-weight: 500;
}

/* Comment form */
.comment-form {
  background: var(--sand-light);
  border: 1px solid var(--hairline);
  padding: 18px 18px 14px;
  margin-bottom: 24px;
}
.comment-form__row { margin-bottom: 10px; }
.comment-form__pseudo,
.comment-form__body {
  width: 100%;
  padding: 10px 12px;
  background: var(--cream);
  border: 1px solid var(--hairline);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--ink);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.15s;
}
.comment-form__body {
  font-family: inherit;
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
}
.comment-form__pseudo:focus,
.comment-form__body:focus {
  border-color: var(--bottle);
}
/* Honeypot — invisible to users, visible to bots */
.comment-form__hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.comment-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  gap: 12px;
}
.comment-form__counter {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.comment-form__counter--warn { color: var(--burgundy); font-weight: 600; }
.comment-form__submit {
  background: var(--bottle);
  color: var(--cream);
  border: 1px solid var(--bottle);
  padding: 9px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
}
.comment-form__submit:hover:not(:disabled) {
  background: var(--bottle-dark);
}
.comment-form__submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.comment-form__msg {
  margin-top: 12px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  border-radius: 2px;
  line-height: 1.5;
}
.comment-form__msg--error {
  background: rgba(122, 42, 46, 0.08);
  border-left: 3px solid var(--burgundy);
  color: var(--burgundy);
}
.comment-form__msg--success {
  background: rgba(26, 77, 58, 0.08);
  border-left: 3px solid var(--bottle);
  color: var(--bottle);
}

/* Comments list */
.comments__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.comments__loading,
.comments__empty,
.comments__notice {
  padding: 24px 18px;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
  background: var(--sand-light);
  border: 1px dashed var(--hairline);
}
.comments__notice {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.88rem;
  color: var(--ink);
  border-style: solid;
  border-color: var(--gold);
  background: rgba(201, 169, 97, 0.08);
  line-height: 1.55;
}

.comment {
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--gold);
}
.comment__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.comment__pseudo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bottle);
  font-style: italic;
}
.comment__time {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.comment__body {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.55;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* ----------------------------------------------------------
   Responsive
   ---------------------------------------------------------- */

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bottle);
    padding: 20px 0;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
    border-top: 1px solid rgba(232, 220, 196, 0.1);
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a { padding: 12px 32px; }

  .intro__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .news__grid { grid-template-columns: repeat(2, 1fr); }
  .teams__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact__grid { grid-template-columns: 1fr; }
  .event { grid-template-columns: 80px 1fr; gap: 20px; }
  .event__tag { grid-column: 2; justify-self: start; margin-top: 4px; }
  .modal__panel--wide { padding: 40px 30px 30px; }
  .annual-calendar { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .month-card { padding: 14px 12px; }
  .month-card__name { font-size: 1.15rem; }
}

@media (max-width: 700px) {
  .annual-calendar { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .month-card { padding: 12px 10px 10px; }
  .month-card__name { font-size: 1.05rem; margin-bottom: 8px; padding-bottom: 6px; }
  .month-card__day { font-size: 0.72rem; }
  .month-card__dow { font-size: 0.6rem; }
}

@media (max-width: 430px) {
  .annual-calendar { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 640px) {
  section { padding: 70px 0; }
  .hero { padding: 140px 0 80px; }
  .container { padding: 0 20px; }
  .intro__grid { grid-template-columns: 1fr; gap: 28px; }
  .news__grid { grid-template-columns: 1fr; }
  .teams__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .modal__panel { padding: 40px 28px; }
  .modal h2 { font-size: 1.8rem; }
  .brand__divider,
  .brand__section { display: none; }
  .brand__logo { height: 32px; }
}

/* ----------------------------------------------------------
   Améliorations : recherche actus, badge « Nouveau », partage
   ---------------------------------------------------------- */
.news__search { margin-bottom: 18px; display: flex; justify-content: center; }
.news__search input {
  width: 100%;
  max-width: 440px;
  padding: 12px 18px;
  border: 1px solid var(--hairline);
  background: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.news__search input:focus { border-color: var(--bottle); }
.news__search input::placeholder { color: var(--muted); }

.news-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  background: var(--burgundy);
  color: var(--cream);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
}

.modal__share {
  background: transparent;
  border: 1px solid var(--hairline);
  color: var(--bottle);
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
}
.modal__share:hover {
  background: var(--bottle);
  color: var(--cream);
  border-color: var(--bottle);
}

/* ----------------------------------------------------------
   Photothèque (galeries dans « La Section »)
   ---------------------------------------------------------- */
.gallery-block { margin-bottom: 38px; }
.gallery-block:last-child { margin-bottom: 0; }
.gallery-block__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--bottle);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--hairline);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}
.gallery-thumb {
  margin: 0;
  overflow: hidden;
  background: var(--sand-light);
  cursor: zoom-in;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--hairline);
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, opacity 0.2s;
}
.gallery-thumb:hover img { transform: scale(1.06); opacity: 0.92; }
.gallery-empty { color: var(--muted); font-style: italic; padding: 8px 0; }

/* Photothèque : navigation par dossiers (fil d'ariane + cartes dossier) */
.gallery-breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 2px;
  margin-bottom: 14px;
}
.gallery-crumb {
  background: transparent; border: none; cursor: pointer;
  color: var(--bottle); font-family: inherit; font-size: 0.9rem; font-weight: 600;
  padding: 5px 10px; border-radius: 4px; letter-spacing: 0.01em;
}
.gallery-crumb:hover:not(:disabled) { background: rgba(26, 77, 58, 0.08); }
.gallery-crumb:disabled { color: var(--ink); cursor: default; }
.gallery-crumb-sep { color: var(--muted); user-select: none; }

.gallery-folder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; text-align: center; cursor: pointer;
  aspect-ratio: 1 / 1; padding: 12px 8px;
  background: var(--sand-light); border: 1px solid var(--hairline);
  font-family: inherit; transition: background 0.2s, border-color 0.2s, transform 0.1s;
}
.gallery-folder:hover { background: rgba(201, 169, 97, 0.16); border-color: var(--gold); transform: translateY(-2px); }
.gallery-folder__icon { font-size: 2.4rem; line-height: 1; }
.gallery-folder__name { font-weight: 600; color: var(--ink); font-size: 0.92rem; word-break: break-word; }
.gallery-folder__count { font-size: 0.72rem; color: var(--muted); }

@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 8px; }
  .gallery-folder__icon { font-size: 2rem; }
}

/* ----------------------------------------------------------
   Archives (anciennes saisons, accordéons par année)
   ---------------------------------------------------------- */
.archives { display: flex; flex-direction: column; gap: 12px; }
.archive-year { border: 1px solid var(--hairline); background: #fff; }
.archive-year__head {
  width: 100%; display: flex; align-items: center; gap: 14px;
  background: var(--sand-light); border: none; cursor: pointer;
  padding: 15px 20px; font-family: 'Inter', sans-serif; text-align: left;
}
.archive-year__head:hover { background: rgba(201, 169, 97, 0.14); }
.archive-year__label { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--bottle); }
.archive-year__count { color: var(--muted); font-size: 0.8rem; letter-spacing: 0.04em; }
.archive-year__chevron { margin-left: auto; color: var(--bottle); transition: transform 0.25s; font-size: 0.85rem; }
.archive-year__head[aria-expanded="true"] .archive-year__chevron { transform: rotate(180deg); }
.archive-year__body { padding: 8px; }
.archive-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 8px; }
.archive-item {
  display: flex; align-items: center; gap: 12px; padding: 8px;
  background: var(--cream); border: 1px solid var(--hairline); cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.archive-item:hover { background: rgba(201, 169, 97, 0.12); transform: translateY(-1px); }
.archive-item__thumb { width: 62px; height: 50px; flex-shrink: 0; overflow: hidden; background: var(--sand); }
.archive-item__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.archive-item__thumb--empty { display: flex; align-items: center; justify-content: center; color: var(--muted); }
.archive-item__main { min-width: 0; }
.archive-item__date { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--burgundy); font-weight: 600; }
.archive-item__title {
  font-size: 0.9rem; color: var(--ink); font-weight: 500; line-height: 1.35; margin-top: 3px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
@media (max-width: 520px) { .archive-list { grid-template-columns: 1fr; } }
