/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; color: #1a2e1e; background: #fff; overflow-x: hidden; }

:root {
  --vert: #3e6247;
  --vert-fonce: #1a3a2a;
  --vert-clair: #5a8a65;
  --or: #c9a84c;
  --blanc: #ffffff;
  --creme: #f7f5f0;
  --gris: #888;
}

/* ===== FEUILLES DÉCORATIVES ===== */
.leaf-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.07;
  z-index: 0;
}

/* ===== NAV ===== */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 60px;
  transition: all 0.4s ease;
  background: transparent;
}
#nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  padding: 16px 60px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
}
.nav-logo img { height: 52px; filter: brightness(10); transition: filter 0.4s; }
#nav.scrolled .nav-logo img { filter: none; }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 12px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.9); transition: color 0.3s;
}
#nav.scrolled .nav-links a { color: var(--vert-fonce); }
.nav-links a.active, .nav-links a:hover { color: var(--or); }
#nav.scrolled .nav-links a:hover { color: var(--vert); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-social { display: flex; align-items: center; gap: 14px; }
.nav-social a {
  color: rgba(255,255,255,0.75); transition: color 0.3s;
  display: flex; align-items: center;
}
.nav-social a:hover { color: var(--blanc); }
#nav.scrolled .nav-social a { color: rgba(26,58,42,0.5); }
#nav.scrolled .nav-social a:hover { color: var(--vert); }
.nav-btn {
  background: var(--vert); color: var(--blanc) !important;
  text-decoration: none; padding: 12px 30px;
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; border-radius: 1px;
  transition: background 0.3s;
}
.nav-btn:hover { background: var(--vert-fonce) !important; }
.nav-burger { display: none; background: none; border: none; color: #fff; font-size: 26px; cursor: pointer; }
#nav.scrolled .nav-burger { color: var(--vert-fonce); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; background: var(--vert-fonce);
  z-index: 2000; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 30px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin: 20px 0; }
.mobile-menu ul li a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 18px; font-weight: 400; letter-spacing: 2px;
  text-transform: uppercase; transition: color 0.3s;
}
.mobile-menu ul li a:hover { color: var(--or); }
.mobile-cta {
  background: var(--vert) !important; color: #fff !important;
  padding: 14px 40px; border-radius: 1px;
  font-size: 14px !important;
}
.mobile-close {
  position: absolute; top: 24px; right: 30px;
  background: none; border: none; color: #fff; font-size: 28px; cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  height: 100vh; min-height: 700px;
  position: relative; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05); transition: transform 10s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(26,58,42,0.28) 0%, rgba(0,0,0,0.35) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  color: var(--blanc); padding: 0 24px; max-width: 900px;
}
.hero-tag {
  display: block; font-size: 11px; font-weight: 500; letter-spacing: 4px;
  text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 22px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 9vw, 110px);
  font-weight: 300; line-height: 1.0; margin-bottom: 28px;
}
.hero h1 em { font-style: italic; font-weight: 300; display: block; font-size: 0.55em; color: rgba(255,255,255,0.85); }
.hero-labels {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 44px; flex-wrap: wrap;
}
.badge {
  font-size: 12px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.95); border: 1.5px solid rgba(255,255,255,0.55);
  padding: 11px 28px; border-radius: 1px; backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.12);
}
.badge-sep { color: rgba(255,255,255,0.3); font-size: 20px; }
.hero-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 12px; }
.btn-white { padding: 18px 52px; font-size: 12px; }
.btn-ghost { padding: 18px 52px; font-size: 12px; }
.btn-white {
  background: var(--blanc); color: var(--vert-fonce);
  text-decoration: none; padding: 16px 44px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  border-radius: 1px; border: 2px solid var(--blanc); transition: all 0.3s;
  display: inline-block;
}
.btn-white:hover { background: transparent; color: var(--blanc); }
.btn-ghost {
  background: transparent; color: var(--blanc);
  text-decoration: none; padding: 16px 44px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  border-radius: 1px; border: 2px solid rgba(255,255,255,0.45); transition: all 0.3s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--blanc); background: rgba(255,255,255,0.1); }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.5); font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 10px;
  animation: scrollAnim 2.5s infinite;
}
.hero-scroll::after { content: ''; width: 1px; height: 44px; background: rgba(255,255,255,0.3); }
@keyframes scrollAnim {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== DISTINCTIONS ===== */
.distinctions { background: var(--creme); padding: 44px 60px; }
.distinctions-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: nowrap;
}
.dist-item { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.dist-item img { height: 64px; width: auto; object-fit: contain; }
.dist-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--vert-fonce); }
.dist-sub { font-size: 13px; color: var(--gris); letter-spacing: 1px; margin-top: 4px; }
.dist-link { color: var(--vert); text-decoration: none; font-size: 12px; font-weight: 600; letter-spacing: 1px; transition: color 0.3s; }
.dist-link:hover { color: var(--vert-fonce); }
.dist-sep { width: 1px; height: 70px; background: rgba(62,98,71,0.2); }
.dist-text-only { flex-direction: column; align-items: flex-start; gap: 4px; }

/* ===== SPLIT SECTION ===== */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr; height: 560px;
}
.split-image { overflow: hidden; height: 560px; }
.split-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; transition: transform 0.8s ease; display: block; }
.split-image:hover img { transform: scale(1.04); }
.split-text {
  background: var(--blanc); display: flex; flex-direction: column;
  justify-content: center; padding: 80px; position: relative; overflow: hidden; height: 560px;
}
.split-text::after {
  content: ''; position: absolute; bottom: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(ellipse, rgba(62,98,71,0.06) 0%, transparent 70%);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; transform: rotate(-20deg);
  pointer-events: none;
}

/* ===== TYPOGRAPHY HELPERS ===== */
.eyebrow {
  display: block; font-size: 12px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--vert); margin-bottom: 16px;
}
.eyebrow.light { color: rgba(255,255,255,0.55); }
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 58px); font-weight: 300; line-height: 1.08; margin-bottom: 18px;
}
h2 em { font-style: italic; }
.line { width: 44px; height: 1px; background: var(--vert); margin-bottom: 24px; }
p { font-size: 15px; line-height: 1.9; color: #555; margin-bottom: 16px; }
.feat-list {
  list-style: none; margin: 16px 0 32px; display: flex; flex-direction: column; gap: 12px;
}
.feat-list li {
  font-size: 14px; color: #444; padding-left: 18px; position: relative;
}
.feat-list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--vert);
}

/* ===== BUTTONS ===== */
.btn-green {
  display: inline-block; background: var(--vert); color: var(--blanc);
  text-decoration: none; padding: 14px 40px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  border-radius: 1px; border: 2px solid var(--vert); transition: all 0.3s;
}
.btn-green:hover { background: var(--vert-fonce); border-color: var(--vert-fonce); }
.btn-green-lg {
  display: inline-block; background: var(--vert); color: var(--blanc);
  text-decoration: none; padding: 18px 56px;
  font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  border-radius: 1px; transition: background 0.3s;
}
.btn-green-lg:hover { background: var(--vert-fonce); }
.btn-green-sm {
  display: inline-block; background: var(--vert); color: var(--blanc);
  text-decoration: none; padding: 12px 28px;
  font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 1px; transition: background 0.3s; margin-top: 14px;
}
.btn-green-sm:hover { background: var(--vert-fonce); }
.btn-outline-sm {
  display: inline-block; background: transparent; color: var(--vert);
  text-decoration: none; padding: 12px 28px;
  font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 1px; border: 1px solid var(--vert); transition: all 0.3s; margin-top: 14px;
}
.btn-outline-sm:hover { background: var(--vert); color: var(--blanc); }
.btn-outline-green {
  display: inline-block; background: transparent; color: var(--vert);
  text-decoration: none; padding: 14px 36px;
  font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  border-radius: 1px; border: 1px solid var(--vert); transition: all 0.3s;
}
.btn-outline-green:hover { background: var(--vert); color: var(--blanc); }
.btn-white-sm {
  display: inline-block; background: var(--blanc); color: var(--vert-fonce);
  text-decoration: none; padding: 13px 32px;
  font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 1px; border: 2px solid var(--blanc); transition: all 0.3s;
}
.btn-white-sm:hover { background: transparent; color: var(--blanc); }
.btn-ghost-sm {
  display: inline-block; background: transparent; color: var(--blanc);
  text-decoration: none; padding: 13px 32px;
  font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 1px; border: 2px solid rgba(255,255,255,0.4); transition: all 0.3s;
}
.btn-ghost-sm:hover { border-color: var(--blanc); }

/* ===== GALLERY ===== */
.gallery-section { padding: 100px 60px; background: var(--creme); }
.gallery-header { text-align: center; margin-bottom: 56px; }
.gallery-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 12px; max-width: 1200px; margin: 0 auto;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: 1px; cursor: pointer;
  aspect-ratio: 3/4;
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,58,42,0.7) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 20px;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-size: 13px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; }
.gallery-col { display: flex; flex-direction: column; gap: 12px; }
.gallery-col .gallery-item { flex: 1; aspect-ratio: auto; }
.gallery-cta { text-align: center; margin-top: 50px; }

/* ===== SÉMINAIRE BAND ===== */
.seminaire-band {
  position: relative; min-height: 680px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: #4a7558;
}
.seminaire-band-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.05); transition: transform 10s ease;
}
.seminaire-band:hover .seminaire-band-bg { transform: scale(1); }
.seminaire-band-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(74,117,88,0.85) 0%, rgba(42,74,50,0.75) 100%);
}
.seminaire-band-content {
  position: relative; z-index: 2; text-align: center;
  color: var(--blanc); padding: 100px 60px; max-width: 800px;
}
.seminaire-band-content h2 { color: var(--blanc); font-size: clamp(44px, 6vw, 76px); margin-bottom: 24px; }
.seminaire-band-content p { color: rgba(255,255,255,0.85); font-size: 18px; line-height: 1.7; margin-bottom: 50px; }
.seminaire-band-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.seminaire-band-btns .btn-white { padding: 18px 52px; font-size: 12px; }
.seminaire-band-btns .btn-ghost { padding: 18px 52px; font-size: 12px; }

/* ===== SALLES ===== */
.salles-section { padding: 100px 60px; background: var(--blanc); }
.salles-header { text-align: center; margin-bottom: 60px; }
.salles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.salle-card { background: var(--creme); overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; border: 1px solid rgba(62,98,71,0.18); }
.salle-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); border-color: var(--vert); }
.salle-card.featured { border: 2px solid var(--vert); }
.salle-img { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.salle-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.salle-card:hover .salle-img img { transform: scale(1.05); }
.salle-body { padding: 32px 28px; background: var(--creme); }
.salle-body h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 28px;
  font-weight: 400; color: var(--vert-fonce); margin-bottom: 10px; line-height: 1.2;
}
.salle-body h3 em { font-style: italic; color: var(--vert); }
.salle-cap {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--blanc);
  background: var(--vert); padding: 6px 16px; border-radius: 1px;
  margin-bottom: 16px;
}
.salle-body p { font-size: 15px; line-height: 1.8; color: #555; margin-bottom: 20px; }
.salle-link {
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--vert); text-decoration: none; transition: color 0.3s;
  display: inline-block;
}
.salle-link:hover { color: var(--vert-fonce); }

/* ===== ÉVÉNEMENTS ===== */
.events-section { padding: 100px 60px; background: var(--creme); }
.events-header { text-align: center; margin-bottom: 60px; }
.events-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1000px; margin: 0 auto; }
.event-card { background: var(--blanc); overflow: hidden; transition: box-shadow 0.3s; }
.event-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.event-img { aspect-ratio: 16/9; overflow: hidden; position: relative; }
.event-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.event-card:hover .event-img img { transform: scale(1.05); }
.event-date-badge {
  position: absolute; top: 16px; left: 16px; background: var(--vert);
  color: var(--blanc); text-align: center; padding: 8px 14px; border-radius: 1px;
  display: flex; flex-direction: column;
}
.event-day { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; line-height: 1; }
.event-month { font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }
.event-body { padding: 28px; }
.event-type { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--vert); }
.event-body h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 26px;
  font-weight: 400; color: var(--vert-fonce); margin: 8px 0 12px; line-height: 1.2;
}
.event-body h3 em { font-style: italic; }
.event-body p { font-size: 13px; line-height: 1.7; color: #666; }
.event-info { display: flex; gap: 20px; margin-top: 14px; flex-wrap: wrap; }
.event-info span { font-size: 12px; color: #444; font-weight: 500; }

/* ===== AVIS ===== */
.avis-section {
  position: relative; min-height: 480px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.avis-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.avis-overlay { position: absolute; inset: 0; background: rgba(26,58,42,0.78); }
.avis-content {
  position: relative; z-index: 2; text-align: center;
  color: var(--blanc); padding: 80px 40px; max-width: 760px;
}
.stars { color: var(--or); font-size: 28px; letter-spacing: 6px; margin: 16px 0 28px; }
blockquote {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(20px, 3vw, 32px);
  font-style: italic; font-weight: 300; line-height: 1.45; margin-bottom: 20px;
  color: rgba(255,255,255,0.92);
}
cite { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.avis-btns { display: flex; gap: 14px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--vert); text-align: center; padding: 100px 40px;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 60% 40% 70% 30%; pointer-events: none;
}
.cta-section .eyebrow { color: rgba(255,255,255,0.5); }
.cta-section h2 { color: var(--blanc); margin-bottom: 10px; }
.cta-section .line { background: rgba(255,255,255,0.25); margin: 0 auto 24px; }
.cta-section p { color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 40px; }

/* ===== FOOTER ===== */
footer { background: var(--vert-fonce); color: rgba(255,255,255,0.6); padding: 80px 60px 40px; }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 50px;
}
.footer-brand .footer-logo { height: 44px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: rgba(255,255,255,0.5); font-size: 10px; font-weight: 700;
  letter-spacing: 0; transition: all 0.3s;
}
.footer-social a:hover { background: var(--vert); border-color: var(--vert); color: #fff; }
.footer-col h4 {
  font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--blanc); margin-bottom: 18px;
}
.footer-col a {
  display: block; text-decoration: none; font-size: 13px;
  color: rgba(255,255,255,0.45); margin-bottom: 9px; transition: color 0.3s;
}
.footer-col a:hover { color: var(--blanc); }
.footer-col p { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.4); margin-bottom: 10px; }
.footer-bottom {
  max-width: 1200px; margin: 50px auto 0;
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(255,255,255,0.25); flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.25); text-decoration: none; margin-left: 20px; transition: color 0.3s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== PAGE HERO (pages intérieures) ===== */
.page-hero {
  height: 55vh; min-height: 400px; position: relative;
  display: flex; align-items: flex-end; padding-bottom: 70px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,58,42,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}
.page-hero-content { position: relative; z-index: 2; padding: 0 60px; color: var(--blanc); }
.page-hero-content .eyebrow { color: rgba(255,255,255,0.55); }
.page-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 7vw, 86px); font-weight: 300; line-height: 1;
}
.page-hero-content h1 em { font-style: italic; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  #nav { padding: 20px 30px; }
  #nav.scrolled { padding: 12px 30px; }
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .salles-grid { grid-template-columns: 1fr; max-width: 600px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 3/4; }
  .gallery-col { display: contents; }
  .split-section { grid-template-columns: 1fr; }
  .split-image { height: 400px; }
  .events-grid { grid-template-columns: 1fr; max-width: 500px; }
}
@media (max-width: 768px) {
  .distinctions { padding: 36px 24px; }
  .distinctions-inner { gap: 24px; flex-direction: column; }
  .dist-sep { width: 80px; height: 1px; }
  .gallery-section, .salles-section, .events-section, .avis-section, .cta-section { padding: 60px 24px; }
  .split-text { padding: 50px 24px; }
  .seminaire-band-content { padding: 60px 24px; }
  .page-hero-content { padding: 0 24px; }
  footer { padding: 60px 24px 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
