/* ============================================================
   Centre des Arts et de la Culture — Pointe-à-Pitre
   main.css — Complete Stylesheet (Template G)
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Source+Sans+3:wght@300;400;600;700&display=swap');

/* ── CSS Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  min-width: 320px;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

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

/* ── Focus Visible Accessibility ── */
:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Skip Link ── */
.skip-link {
  position: absolute;
  top: -9999px;
  left: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  z-index: 9999;
  border-radius: 0 0 4px 0;
}

.skip-link:focus {
  top: 0;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 1rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo img,
.site-logo svg {
  height: 48px;
  width: auto;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-list a {
  display: block;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-list a:hover {
  color: #fff;
  background-color: rgba(255,255,255,0.12);
}

.nav-list a[aria-current="page"] {
  color: var(--color-secondary);
  background-color: rgba(245,158,11,0.15);
}

/* Header CTA phone */
.header-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-secondary);
  color: var(--color-text) !important;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-cta:hover {
  background-color: #e08b00;
  color: var(--color-text) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 4px;
  padding: 0.375rem 0.5rem;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    display: none;
  }

  .site-nav.nav-open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
  }

  .nav-list a {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1rem;
  }

  .header-cta {
    margin-top: 1rem;
    justify-content: center;
    text-align: center;
  }

  .header-cta-desktop {
    display: none;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0 1rem;
  }
}

/* ============================================================
   MADRAS DECORATIVE BAND
   ============================================================ */

.madras-band {
  height: 12px;
  background: repeating-linear-gradient(
    90deg,
    var(--color-secondary) 0px,
    var(--color-secondary) 24px,
    var(--color-primary) 24px,
    var(--color-primary) 32px,
    var(--color-accent) 32px,
    var(--color-accent) 40px,
    var(--color-primary) 40px,
    var(--color-primary) 48px,
    var(--color-secondary) 48px,
    var(--color-secondary) 72px,
    #fff 72px,
    #fff 80px
  );
  width: 100%;
}

.madras-band--thin {
  height: 6px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-primary);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(194,65,12,0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(245,158,11,0.25) 0%, transparent 55%),
    linear-gradient(160deg, #0a5469 0%, #0D6E82 45%, #0a4a58 100%);
}

/* Diamond/madras CSS pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(245,158,11,0.06) 0px,
      rgba(245,158,11,0.06) 1px,
      transparent 1px,
      transparent 40px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.04) 0px,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 40px
    );
  pointer-events: none;
  aria-hidden: true;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(13,110,130,0.3));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
  color: #fff;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 1.25rem;
  background: rgba(245,158,11,0.15);
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  border-left: 3px solid var(--color-secondary);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  max-width: 750px;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero-lead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.7;
  max-width: 640px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.8125rem 1.75rem;
  border-radius: 4px;
  border: 2px solid transparent;
  letter-spacing: 0.03em;
}

.btn-primary {
  background-color: var(--color-secondary);
  color: var(--color-text);
  border-color: var(--color-secondary);
}

.btn-primary:hover {
  background-color: #e08b00;
  border-color: #e08b00;
  color: var(--color-text);
}

.btn-secondary {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.btn-secondary:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}

.btn-accent {
  background-color: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.btn-accent:hover {
  background-color: #a83509;
  border-color: #a83509;
  color: #fff;
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: #fff;
}

/* Hero visual placeholder */
.hero-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  background:
    radial-gradient(ellipse at center, rgba(245,158,11,0.2) 0%, transparent 70%),
    repeating-linear-gradient(
      60deg,
      rgba(255,255,255,0.02) 0px,
      rgba(255,255,255,0.02) 1px,
      transparent 1px,
      transparent 30px
    );
  display: none;
}

@media (min-width: 900px) {
  .hero-visual {
    display: block;
  }
}

/* ============================================================
   LAYOUT / CONTAINER
   ============================================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 4rem 0;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.section-title--white {
  color: #fff;
}

.section-lead {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4B5563;
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-bg-light {
  background-color: #F8FAFC;
}

.section-bg-primary {
  background-color: var(--color-primary);
  color: #fff;
}

.section-bg-dark {
  background-color: #111827;
  color: #fff;
}

/* ============================================================
   STATS BAR
   ============================================================ */

.stats-bar {
  background-color: var(--color-primary);
  color: #fff;
  padding: 0;
}

.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.stat-item {
  flex: 1;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

@media (max-width: 640px) {
  .stats-bar-inner {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.15);
  }

  .stat-item:last-child,
  .stat-item:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-visual {
  height: 160px;
  position: relative;
  overflow: hidden;
}

.card-visual--expo {
  background: linear-gradient(135deg, #0D6E82 0%, #0a4a58 50%, #C2410C 100%);
}

.card-visual--ateliers {
  background: linear-gradient(135deg, #F59E0B 0%, #C2410C 50%, #0D6E82 100%);
}

.card-visual--patrimoine {
  background: linear-gradient(135deg, #0a4a58 0%, #0D6E82 50%, #F59E0B 100%);
}

.card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.04) 0px,
    rgba(255,255,255,0.04) 1px,
    transparent 1px,
    transparent 20px
  );
}

.card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-tag {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.card p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #4B5563;
  flex: 1;
}

/* ============================================================
   QUOTE / BLOCKQUOTE
   ============================================================ */

.quote-section {
  background: linear-gradient(135deg, #0a4a58 0%, #0D6E82 100%);
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(245,158,11,0.05) 0px,
    rgba(245,158,11,0.05) 1px,
    transparent 1px,
    transparent 40px
  );
}

.quote-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.blockquote-main {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--color-secondary);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.blockquote-translation {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
}

.blockquote-attr {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  font-style: normal;
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
  background-color: var(--color-accent);
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
}

.cta-section p {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.75rem;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ============================================================
   REVIEW BADGE
   ============================================================ */

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text);
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.review-badge:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  color: var(--color-text);
}

.review-stars {
  color: #F59E0B;
  font-size: 1rem;
}

.review-score {
  font-weight: 700;
  color: var(--color-text);
}

.review-count {
  color: #6B7280;
}

/* ============================================================
   TIMELINE
   ============================================================ */

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 1.25rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--color-secondary), var(--color-primary), var(--color-accent));
  border-radius: 3px;
}

@media (min-width: 640px) {
  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 3.5rem;
}

@media (min-width: 640px) {
  .timeline-item {
    width: 50%;
    padding-left: 0;
    padding-right: 3rem;
  }

  .timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-left: 3rem;
    padding-right: 0;
  }
}

.timeline-dot {
  position: absolute;
  left: 0.3rem;
  top: 0.25rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--color-secondary);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--color-primary);
  z-index: 1;
}

@media (min-width: 640px) {
  .timeline-dot {
    left: auto;
    right: -0.875rem;
  }

  .timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -0.875rem;
  }
}

.timeline-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.timeline-date {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.375rem;
}

.timeline-card h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.timeline-card p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #4B5563;
  line-height: 1.6;
}

/* ============================================================
   VISUAL BLOCKS (gradient photo replacements)
   ============================================================ */

.visual-block {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  min-height: 280px;
}

.visual-block--heritage {
  background:
    radial-gradient(ellipse at 30% 60%, rgba(13,110,130,0.5) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(194,65,12,0.4) 0%, transparent 55%),
    linear-gradient(150deg, #1a1a2e 0%, #0D6E82 50%, #C2410C 100%);
}

.visual-block--kolektif {
  background:
    radial-gradient(ellipse at 60% 40%, rgba(245,158,11,0.4) 0%, transparent 60%),
    linear-gradient(120deg, #0D6E82 0%, #0a4a58 60%, #1a1a2e 100%);
}

.visual-block--salle {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(245,158,11,0.3) 0%, transparent 70%),
    linear-gradient(180deg, #111827 0%, #1e3a5f 50%, #0D6E82 100%);
}

.visual-block--contact {
  background:
    radial-gradient(ellipse at 40% 50%, rgba(13,110,130,0.6) 0%, transparent 60%),
    linear-gradient(135deg, #0D6E82 0%, #0a5469 100%);
}

.visual-block-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-style: italic;
  padding: 2rem 1rem 0.75rem;
  line-height: 1.4;
}

.visual-block-pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 30px
  );
}

/* ============================================================
   ALTERNATING NARRATIVE SECTIONS
   ============================================================ */

.narrative-section {
  padding: 4.5rem 0;
}

.narrative-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .narrative-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .narrative-grid--reverse .narrative-text {
    order: 2;
  }

  .narrative-grid--reverse .narrative-visual {
    order: 1;
  }
}

.narrative-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.narrative-text p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 1rem;
}

.narrative-text p:last-child {
  margin-bottom: 0;
}

.narrative-text ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.narrative-text ul li {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #374151;
  padding: 0.35rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.55;
}

.narrative-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  background-color: var(--color-secondary);
  border-radius: 50%;
}

/* ============================================================
   ACTIVITIES GRID
   ============================================================ */

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.activity-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.activity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-primary);
}

.activity-card--secondary::before {
  background: var(--color-secondary);
}

.activity-card--accent::before {
  background: var(--color-accent);
}

.activity-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(13,110,130,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.activity-card h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.activity-card p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.55;
}

/* ============================================================
   EVENT CARDS
   ============================================================ */

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.event-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.event-card-header {
  display: flex;
  align-items: stretch;
  background: var(--color-primary);
  color: #fff;
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
  background: rgba(0,0,0,0.2);
  min-width: 70px;
  text-align: center;
}

.event-date-day {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
  color: var(--color-secondary);
}

.event-date-month {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: 0.2rem;
}

.event-header-info {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 0.25rem;
}

.event-time {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.75);
}

.event-card-body {
  padding: 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.event-card-body p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #4B5563;
  line-height: 1.6;
  flex: 1;
}

.event-free {
  margin-top: 1rem;
  display: inline-block;
  background: rgba(13,110,130,0.1);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 3px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.contact-info p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 1.5rem;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(13,110,130,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.125rem;
}

.contact-detail-body {
  flex: 1;
}

.contact-detail-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.2rem;
}

.contact-detail-value {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.55;
}

.contact-detail-value a {
  color: var(--color-primary);
  font-weight: 600;
}

/* Hours table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  margin-top: 0.5rem;
}

.hours-table tr {
  border-bottom: 1px solid #F3F4F6;
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 0.5rem 0;
  color: #374151;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--color-text);
  width: 40%;
}

.hours-note {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: #6B7280;
  font-style: italic;
  margin-top: 0.5rem;
}

/* Map */
.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: none;
}

/* Contact Form */
.contact-form {
  background: #F8FAFC;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 2rem;
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #D1D5DB;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: #fff;
  transition: border-color 0.15s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13,110,130,0.15);
}

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

.rgpd-note {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: #6B7280;
  line-height: 1.55;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(13,110,130,0.05);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 4px 4px 0;
}

.btn-submit {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  margin-top: 0.25rem;
}

.btn-submit:hover {
  background: #0a5469;
}

/* ============================================================
   MENTIONS LEGALES / PROSE
   ============================================================ */

.prose {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: #374151;
  max-width: 800px;
  margin: 0 auto;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #E5E7EB;
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--color-text);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.prose p {
  margin-bottom: 1rem;
}

.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.prose ul li {
  margin-bottom: 0.35rem;
}

.prose a {
  color: var(--color-primary);
  font-weight: 600;
}

.disclaimer-box {
  background: rgba(194,65,12,0.08);
  border: 1px solid rgba(194,65,12,0.3);
  border-left: 4px solid var(--color-accent);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.65;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background-color: #111827;
  color: rgba(255,255,255,0.8);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1.5fr;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: block;
  width: 180px;
}

/* White version of logo text for dark footer */
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.footer-logo-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 0.2rem;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  font-style: italic;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
}

.footer-phone:hover {
  color: #e08b00;
}

.footer-note {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.5rem;
  font-style: italic;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--color-secondary);
}

.footer-practical {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-practical p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}

.footer-practical strong {
  color: rgba(255,255,255,0.9);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom-inner a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}

.footer-bottom-inner a:hover {
  color: var(--color-secondary);
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */

.page-header {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(194,65,12,0.3) 0%, transparent 60%),
    linear-gradient(135deg, #0a4a58 0%, #0D6E82 100%);
  color: #fff;
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(245,158,11,0.05) 0px,
    rgba(245,158,11,0.05) 1px,
    transparent 1px,
    transparent 40px
  );
}

.page-header-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-header-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 0.875rem;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  max-width: 700px;
  margin-bottom: 1rem;
}

.page-header p {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */

.breadcrumb {
  background: #F8FAFC;
  border-bottom: 1px solid #E5E7EB;
  padding: 0.625rem 0;
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: #6B7280;
}

.breadcrumb a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  color: var(--color-accent);
}

.breadcrumb-sep {
  color: #D1D5DB;
}

/* ============================================================
   KOLEKTIF SECTION
   ============================================================ */

.kolektif-highlight {
  background:
    radial-gradient(ellipse at 70% 50%, rgba(245,158,11,0.15) 0%, transparent 60%),
    linear-gradient(135deg, #F8FAFC 0%, #fff 100%);
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 2.5rem;
}

.kolektif-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}

.kolektif-number span {
  font-size: 1.5rem;
  color: var(--color-secondary);
}

/* ============================================================
   PROGRAMMATION FILTERS (static)
   ============================================================ */

.event-category-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}

.badge-expo { background: rgba(13,110,130,0.12); color: var(--color-primary); }
.badge-atelier { background: rgba(245,158,11,0.15); color: #92400E; }
.badge-concert { background: rgba(194,65,12,0.12); color: var(--color-accent); }
.badge-marche { background: rgba(16,185,129,0.12); color: #065F46; }
.badge-sport { background: rgba(139,92,246,0.12); color: #5B21B6; }
.badge-enfants { background: rgba(236,72,153,0.12); color: #9D174D; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.text-center { text-align: center; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   PRINT STYLES
   ============================================================ */

@media print {
  .site-header,
  .site-footer,
  .madras-band,
  .nav-toggle,
  .hero-cta-group,
  .cta-section,
  .map-wrapper {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.85em;
    color: #555;
  }

  .hero {
    min-height: auto;
    background: none;
    color: #000;
    padding: 2rem 0;
  }

  .hero h1,
  .hero-lead {
    color: #000;
  }

  .page-header {
    background: none;
    color: #000;
    padding: 1rem 0;
  }

  .page-header h1,
  .page-header p {
    color: #000;
  }
}
