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

/* Variables CSS - Charte Graphique STUDIO MAX */
:root {
  --kaki-profond: #2F3A31;
  --sauge: #A6B49A;
  --sable: #D9CEB3;
  --ivoire: #F2EFE9;
  --bronze: #8B6D6A;
  
  --dark-overlay: rgba(47, 58, 49, 0.85);
  --glass-bg: rgba(225, 220, 210, 0.95);
  --glass-border: rgba(217, 206, 179, 0.4);
  
  --font-title: 'Playfair Display', Georgia, serif;
  --font-text: 'Montserrat', sans-serif;
  
  --transition-smooth: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--ivoire);
  color: var(--kaki-profond);
  font-family: var(--font-text);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--ivoire);
}
::-webkit-scrollbar-thumb {
  background: var(--kaki-profond);
  border: 2px solid var(--ivoire);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--bronze);
}

/* Typographie & Titres */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 500;
  letter-spacing: 0.03em;
}

p {
  font-weight: 300;
  color: rgba(47, 58, 49, 0.85);
}

strong {
  font-weight: 600;
}

/* Boutons et Éléments Interactifs */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-text);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--kaki-profond);
  color: var(--ivoire);
  border: 1px solid var(--kaki-profond);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(242, 239, 233, 0.2), transparent);
  transition: 0.5s;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--kaki-profond);
  border-color: var(--kaki-profond);
  box-shadow: 0 5px 15px rgba(47, 58, 49, 0.1);
}

.btn-secondary {
  background-color: transparent;
  color: var(--kaki-profond);
  border: 1px solid var(--sable);
}

.btn-secondary:hover {
  background-color: var(--bronze);
  color: var(--ivoire);
  border-color: var(--bronze);
  box-shadow: 0 5px 15px rgba(139, 109, 106, 0.15);
}

/* Animations au Scroll Classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.scale-in.active {
  opacity: 1;
  transform: scale(1);
}

/* Structure Commune */
section {
  padding: 8rem 2rem;
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: 5rem 1rem;
  }
}

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

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-subtitle {
  font-family: var(--font-text);
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--bronze);
  letter-spacing: 0.25em;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: 2.8rem;
  color: var(--kaki-profond);
  position: relative;
  display: inline-block;
  padding-bottom: 1.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background-color: var(--bronze);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(242, 239, 233, 0.0);
  border-bottom: 1px solid rgba(217, 206, 179, 0);
  transition: var(--transition-smooth);
}

.header.scrolled {
  background-color: var(--glass-bg);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(47, 58, 49, 0.05);
}

.header .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  transition: var(--transition-smooth);
}

.header.scrolled .nav-container {
  padding: 1rem 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.8rem;
}

.logo-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg circle {
  stroke: var(--ivoire);
  transition: var(--transition-smooth);
}

.logo-icon svg text {
  fill: var(--ivoire);
  transition: var(--transition-smooth);
}

.header.scrolled .logo-icon svg circle {
  stroke: var(--bronze);
}

.header.scrolled .logo-icon svg text {
  fill: var(--kaki-profond);
}.logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-title {
  font-family: var(--font-text);
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  font-weight: 400;
  line-height: 1.1;
  color: var(--ivoire);
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.header.scrolled .logo-title {
  color: var(--kaki-profond);
}

.logo-subtitle {
  font-family: var(--font-text);
  font-size: 0.52rem;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--sable);
  transition: var(--transition-smooth);
  white-space: nowrap;
  margin-top: 0.15rem;
}

.header.scrolled .logo-subtitle {
  color: var(--bronze);
}

/* Location container with side lines */
.logo-location-container {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0.4rem;
  margin-top: 0.2rem;
}

.logo-line-left,
.logo-line-right {
  flex: 1;
  height: 1px;
  background-color: var(--sable);
  opacity: 0.5;
  transition: var(--transition-smooth);
}

.header.scrolled .logo-line-left,
.header.scrolled .logo-line-right {
  background-color: var(--bronze);
}

.logo-location {
  font-family: var(--font-text);
  font-size: 0.45rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sable);
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.header.scrolled .logo-location {
  color: var(--bronze);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--ivoire);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.5rem 0;
}

.header.scrolled .nav-link {
  color: var(--kaki-profond);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--sable);
  transition: var(--transition-fast);
}

.header.scrolled .nav-link::after {
  background-color: var(--bronze);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--sable);
}

.header.scrolled .nav-link:hover {
  color: var(--bronze);
}

/* Nav Button CTA */
.nav-cta .btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.75rem;
}

.header.scrolled .nav-cta .btn {
  background-color: var(--kaki-profond);
  color: var(--ivoire);
  border-color: var(--kaki-profond);
}

/* Hamburger Menu Icon */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1010;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--ivoire);
  position: absolute;
  transition: var(--transition-fast);
}

.header.scrolled .menu-toggle span {
  background-color: var(--kaki-profond);
}

.menu-toggle span:nth-child(1) { top: 2px; }
.menu-toggle span:nth-child(2) { top: 11px; }
.menu-toggle span:nth-child(3) { top: 20px; }

/* Responsive Nav Bar */
@media (max-width: 1024px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--ivoire);
    box-shadow: -10px 0 30px rgba(47, 58, 49, 0.15);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    transition: var(--transition-smooth);
    z-index: 1005;
    padding: 2rem;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-cta {
    width: 100%;
    text-align: center;
  }
  
  .nav-cta .btn {
    width: 80%;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivoire);
  text-align: center;
  overflow: hidden;
  padding: 0;
  background-color: var(--kaki-profond);
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: brightness(0.85);
  transform: scale(1.05);
  animation: slowZoom 20s infinite alternate ease-in-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(47, 58, 49, 0.6) 0%, rgba(47, 58, 49, 0.85) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-logo-badge {
  width: 80px;
  height: 80px;
  margin: 0 auto 2.5rem;
  background-color: rgba(242, 239, 233, 0.1);
  border: 1px solid var(--sable);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  animation: pulseGold 3s infinite;
}

.hero-slogan {
  font-size: 5rem;
  font-family: var(--font-title);
  letter-spacing: 0.05em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-transform: capitalize;
}

.hero-subtitle {
  font-family: var(--font-text);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--sable);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.hero-ctas .btn-secondary {
  color: var(--ivoire);
  border-color: var(--sable);
}

.hero-ctas .btn-secondary:hover {
  background-color: var(--ivoire);
  color: var(--kaki-profond);
  border-color: var(--ivoire);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--sable);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.hero-scroll-indicator:hover {
  color: var(--ivoire);
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--sable) 50%, transparent 50%);
  background-size: 100% 200%;
  animation: scrollLine 2s infinite ease-in-out;
}

@keyframes slowZoom {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.1); }
}

@keyframes pulseGold {
  0% { box-shadow: 0 0 0 0 rgba(217, 206, 179, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(217, 206, 179, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 206, 179, 0); }
}

@keyframes scrollLine {
  0% { background-position: 0 0; }
  100% { background-position: 0 100%; }
}

@media (max-width: 768px) {
  .hero-slogan {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 100%;
  }
  
  .hero-ctas .btn {
    width: 80%;
    max-width: 300px;
  }

  .hero-scroll-indicator {
    bottom: 1rem;
  }

  .hero-scroll-line {
    height: 30px;
  }
}

/* ==========================================================================
   CONCEPT SECTION
   ========================================================================== */
.concept {
  background-color: var(--ivoire);
  position: relative;
}

.concept-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.concept-text-container {
  display: flex;
  flex-direction: column;
}

.concept-quote {
  font-family: var(--font-title);
  font-size: 2.8rem;
  line-height: 1.25;
  color: var(--kaki-profond);
  margin-bottom: 2rem;
  position: relative;
  font-style: italic;
}

.concept-quote span {
  color: var(--bronze);
  font-style: normal;
}

.concept-divider {
  width: 80px;
  height: 1px;
  background-color: var(--sauge);
  margin-bottom: 2rem;
}

.concept-description {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: rgba(47, 58, 49, 0.85);
}

.concept-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.pillar-item h4 {
  font-family: var(--font-text);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.8rem;
  color: var(--kaki-profond);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pillar-item h4::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--bronze);
  display: inline-block;
}

.pillar-item p {
  font-size: 0.85rem;
  line-height: 1.6;
}

.concept-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.concept-img-frame {
  position: relative;
  width: 100%;
  padding-bottom: 125%; /* Ratio 4:5 */
  overflow: hidden;
  box-shadow: 20px 20px 40px rgba(47, 58, 49, 0.08);
  border: 1px solid var(--sable);
}

.concept-img-frame img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.concept-img-frame:hover img {
  transform: scale(1.03);
}

/* Cadre décoratif sous l'image */
.concept-visual::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--sauge);
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 991px) {
  .concept-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .concept-quote {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .concept-pillars {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ==========================================================================
   SECTION UNIVERS (FAÇADE 6 PANNEAUX)
   ========================================================================== */
.univers-section {
  background-color: #1c241e; /* Fond très sombre pour contraster */
  padding: 0;
  overflow: hidden;
}

.univers-container {
  display: flex;
  height: 85vh;
  width: 100%;
  min-height: 600px;
  position: relative;
}

.univers-panel {
  position: relative;
  flex: 1;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid rgba(217, 206, 179, 0.15);
  padding: 2.5rem 1.5rem;
  text-decoration: none;
}

.univers-panel:last-child {
  border-right: none;
}

.univers-panel-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center;
  filter: grayscale(40%) brightness(0.7);
  transition: transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.8s ease;
}

.univers-panel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(180deg, 
    rgba(28, 36, 30, 0.2) 0%, 
    rgba(28, 36, 30, 0.4) 60%, 
    rgba(28, 36, 30, 0.9) 100%);
  transition: opacity 0.8s ease;
}

/* Couleur de fond spécifique pour le premier panneau "Identité" */
.univers-panel.identite-panel {
  background-color: var(--kaki-profond);
}

.univers-panel.identite-panel .univers-panel-overlay {
  background: radial-gradient(circle at center, rgba(139, 109, 106, 0.05) 0%, rgba(28, 36, 30, 0.4) 100%);
}

.univers-panel-content {
  position: relative;
  z-index: 3;
  color: var(--ivoire);
  transition: transform 0.5s ease;
}

.univers-num {
  font-family: var(--font-text);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--sable);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.univers-title {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.univers-desc {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.5;
  color: var(--sable);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease, max-height 0.5s ease;
}

.univers-link-btn {
  margin-top: 1.5rem;
  font-family: var(--font-text);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivoire);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.univers-link-btn span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.univers-link-btn:hover span {
  transform: translateX(5px);
}

/* Spécificités Panneau Identité */
.identite-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}

.identite-logo {
  width: 90px;
  height: 90px;
  margin-bottom: 2rem;
  transition: transform 0.8s ease;
}

.identite-slogan {
  font-family: var(--font-title);
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--sable);
}

/* Hover Effects (Desktop) */
@media (min-width: 1025px) {
  .univers-panel:hover {
    flex: 2.5;
  }
  
  .univers-panel:hover .univers-panel-bg {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(0.85);
  }
  
  .univers-panel:hover .univers-desc {
    opacity: 1;
    max-height: 120px;
    margin-top: 0.5rem;
  }
  
  .univers-panel:hover .univers-link-btn {
    opacity: 1;
  }
  
  .univers-panel:hover .identite-logo {
    transform: scale(1.1);
  }
  
  /* Retrécit les autres lors du survol de l'un d'eux */
  .univers-container:has(.univers-panel:hover) .univers-panel:not(:hover) {
    flex: 0.7;
    filter: brightness(0.7);
  }
  
  .univers-container:has(.univers-panel:hover) .univers-panel:not(:hover) .univers-panel-bg {
    filter: grayscale(70%) brightness(0.5);
  }
}

/* Responsive Univers (Tablettes et Mobiles) */
@media (max-width: 1024px) {
  .univers-container {
    flex-direction: column;
    height: auto;
  }
  
  .univers-panel {
    flex: none;
    width: 100%;
    height: 250px;
    border-right: none;
    border-bottom: 1px solid rgba(217, 206, 179, 0.15);
    padding: 2rem;
  }
  
  .univers-panel-bg {
    filter: grayscale(20%) brightness(0.65);
  }
  
  .univers-panel:last-child {
    border-bottom: none;
  }
  
  .univers-panel.active {
    height: 380px;
  }
  
  .univers-desc,
  .univers-link-btn {
    opacity: 1;
    max-height: 200px;
  }
  
  .univers-panel.identite-panel {
    height: 300px;
  }
}

/* ==========================================================================
   SECTION ACTIVITÉS
   ========================================================================== */
.activities {
  background-color: #faf9f6; /* Ivoire plus clair */
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.activity-card {
  background-color: var(--ivoire);
  border: 1px solid var(--glass-border);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 350px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.activity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--sauge);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.activity-card-top {
  display: flex;
  flex-direction: column;
}

.activity-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 2rem;
  color: var(--kaki-profond);
  transition: var(--transition-smooth);
}

.activity-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--kaki-profond);
}

.activity-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(47, 58, 49, 0.75);
}

.activity-card-link {
  font-family: var(--font-text);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bronze);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  transition: var(--transition-fast);
}

.activity-card-link span {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Hover state activity card */
.activity-card:hover {
  background-color: var(--ivoire);
  border-color: var(--kaki-profond);
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(47, 58, 49, 0.05);
}

.activity-card:hover::before {
  transform: scaleX(1);
  background-color: var(--bronze);
}

.activity-card:hover .activity-icon {
  color: var(--bronze);
  transform: scale(1.1);
}

.activity-card:hover .activity-card-link {
  color: var(--kaki-profond);
}

.activity-card:hover .activity-card-link span {
  transform: translateX(5px);
}

@media (max-width: 1200px) {
  .activities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .activities-grid {
    grid-template-columns: 1fr;
  }
  
  .activity-card {
    height: 300px;
    padding: 2rem;
  }
}

/* ==========================================================================
   SECTION PLANNING / COURS
   ========================================================================== */
.planning {
  background-color: var(--ivoire);
}

.planning-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--sable);
  color: var(--kaki-profond);
  padding: 0.6rem 1.8rem;
  font-family: var(--font-text);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--kaki-profond);
  color: var(--ivoire);
  border-color: var(--kaki-profond);
}

/* Planning Cards Wrapper */
.planning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  transition: var(--transition-smooth);
}

.planning-card {
  background-color: var(--ivoire);
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.planning-card.hidden {
  display: none;
  opacity: 0;
}

.planning-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(217, 206, 179, 0.4);
  padding-bottom: 1rem;
}

.planning-day {
  font-family: var(--font-text);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--bronze);
  letter-spacing: 0.15em;
}

.planning-time {
  font-family: var(--font-text);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--kaki-profond);
}

.planning-card h4 {
  font-size: 1.6rem;
  color: var(--kaki-profond);
  margin-bottom: 0.8rem;
}

.planning-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.planning-meta-item {
  font-size: 0.8rem;
  color: rgba(47, 58, 49, 0.7);
}

.planning-meta-item strong {
  color: var(--kaki-profond);
  font-weight: 500;
}

.planning-category {
  display: inline-block;
  padding: 0.3rem 1rem;
  background-color: var(--sauge);
  color: var(--kaki-profond);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  align-self: flex-start;
}

.planning-card:hover {
  border-color: var(--bronze);
  box-shadow: 0 10px 30px rgba(139, 109, 106, 0.05);
  transform: translateY(-5px);
}

@media (max-width: 1024px) {
  .planning-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .planning-grid {
    grid-template-columns: 1fr;
  }
  
  .planning-card {
    padding: 2rem;
  }
}

/* ==========================================================================
   SECTION TARIFS
   ========================================================================== */
.rates {
  background-color: #faf9f6;
}

.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: stretch;
}

.rate-card {
  background-color: var(--ivoire);
  border: 1px solid var(--glass-border);
  padding: 4rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition-smooth);
}

.rate-card.popular {
  border-color: var(--bronze);
  background-color: var(--ivoire);
  box-shadow: 0 20px 40px rgba(47, 58, 49, 0.06);
  transform: scale(1.03);
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--bronze);
  color: var(--ivoire);
  padding: 0.4rem 1.5rem;
  font-family: var(--font-text);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.rate-header h3 {
  font-size: 1.8rem;
  color: var(--kaki-profond);
  margin-bottom: 0.5rem;
}

.rate-subtitle {
  font-size: 0.8rem;
  color: var(--sauge);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
  display: block;
}

.rate-price {
  font-family: var(--font-title);
  font-size: 4rem;
  color: var(--kaki-profond);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.rate-price span {
  font-size: 1rem;
  font-family: var(--font-text);
  color: rgba(47, 58, 49, 0.6);
  letter-spacing: 0.05em;
}

.rate-period {
  font-size: 0.8rem;
  color: rgba(47, 58, 49, 0.6);
  margin-bottom: 3rem;
  display: block;
}

.rate-features {
  list-style: none;
  text-align: left;
  margin-bottom: 4rem;
  padding: 0 1rem;
}

.rate-features li {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: rgba(47, 58, 49, 0.8);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.rate-features li::before {
  content: '✓';
  color: var(--bronze);
  font-weight: bold;
}

.rate-card .btn {
  width: 100%;
}

.rate-card:hover {
  box-shadow: 0 20px 40px rgba(47, 58, 49, 0.08);
  border-color: var(--kaki-profond);
}

.rate-card.popular:hover {
  border-color: var(--bronze);
}

@media (max-width: 991px) {
  .rates-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .rate-card.popular {
    transform: scale(1);
  }
}

/* ==========================================================================
   SECTION LIEU (STUDIO ENGHIEN)
   ========================================================================== */
.lieu {
  background-color: var(--ivoire);
}

.lieu-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.lieu-info {
  display: flex;
  flex-direction: column;
}

.lieu-academy-name {
  font-family: var(--font-title);
  font-size: 2.2rem;
  color: var(--kaki-profond);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.lieu-academy-sub {
  font-family: var(--font-text);
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--bronze);
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
  display: block;
}

.lieu-details {
  list-style: none;
  margin-bottom: 3.5rem;
}

.lieu-detail-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

.lieu-detail-icon {
  width: 24px;
  height: 24px;
  color: var(--bronze);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.lieu-detail-text h4 {
  font-family: var(--font-text);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--kaki-profond);
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.lieu-detail-text p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Placeholder Map Styling */
.lieu-map-container {
  width: 100%;
  height: 450px;
  border: 1px solid var(--sable);
  position: relative;
  box-shadow: 20px 20px 40px rgba(47, 58, 49, 0.05);
  background-color: var(--kaki-profond);
  overflow: hidden;
}

.lieu-map-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--ivoire);
  text-align: center;
  padding: 2rem;
  z-index: 1;
}

.map-accent-circle {
  width: 60px;
  height: 60px;
  border: 1px solid var(--sable);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivoire);
  margin-bottom: 1.5rem;
  background-color: rgba(242, 239, 233, 0.1);
}

.lieu-map-placeholder h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--ivoire);
}

.lieu-map-placeholder p {
  font-size: 0.8rem;
  color: var(--sable);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lieu-iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(0.9) contrast(1.2); /* Effet de carte stylisée noire/kaki */
  opacity: 0.85;
}

@media (max-width: 991px) {
  .lieu-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .lieu-map-container {
    height: 350px;
  }
}

/* ==========================================================================
   SECTION CONTACT & INSCRIPTION
   ========================================================================== */
.contact {
  background-color: var(--kaki-profond);
  color: var(--ivoire);
}

.contact .section-title {
  color: var(--ivoire);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--sable);
  margin-bottom: 3rem;
}

.quick-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quick-btn {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background-color: rgba(242, 239, 233, 0.05);
  border: 1px solid rgba(217, 206, 179, 0.15);
  text-decoration: none;
  color: var(--ivoire);
  transition: var(--transition-smooth);
}

.quick-btn-icon {
  width: 32px;
  height: 32px;
  color: var(--sable);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.quick-btn-info h4 {
  font-family: var(--font-text);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}

.quick-btn-info p {
  font-size: 0.85rem;
  color: var(--sable);
}

.quick-btn:hover {
  background-color: rgba(242, 239, 233, 0.1);
  border-color: var(--sable);
  transform: translateX(5px);
}

.quick-btn:hover .quick-btn-icon {
  color: var(--ivoire);
  transform: scale(1.1);
}

/* WhatsApp Button Highlight */
.quick-btn.whatsapp-btn {
  border-color: rgba(37, 211, 102, 0.3);
}

.quick-btn.whatsapp-btn:hover {
  border-color: rgb(37, 211, 102);
  background-color: rgba(37, 211, 102, 0.08);
}

.quick-btn.whatsapp-btn .quick-btn-icon {
  color: rgb(37, 211, 102);
}

/* Form Styling */
.contact-form-container {
  background-color: var(--ivoire);
  border: 1px solid var(--sable);
  padding: 4rem 3.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-family: var(--font-text);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--kaki-profond);
  margin-bottom: 0.8rem;
}

.form-input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(47, 58, 49, 0.3);
  color: var(--kaki-profond);
  font-family: var(--font-text);
  font-size: 0.95rem;
  padding: 0.8rem 0;
  outline: none;
  transition: var(--transition-fast);
}

.form-input::placeholder {
  color: rgba(47, 58, 49, 0.4);
}

.form-input:focus {
  border-bottom-color: var(--bronze);
}

select.form-input {
  cursor: pointer;
}

select.form-input option {
  background-color: var(--ivoire);
  color: var(--kaki-profond);
}

.form-submit-container {
  grid-column: span 2;
  margin-top: 2rem;
}

.contact-form .btn {
  width: 100%;
  background-color: var(--kaki-profond);
  color: var(--ivoire);
  border-color: var(--kaki-profond);
}

.contact-form .btn:hover {
  background-color: transparent;
  color: var(--kaki-profond);
  border-color: var(--kaki-profond);
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 600px) {
  .contact-form {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .form-submit-container {
    grid-column: span 1;
  }
  
  .contact-form-container {
    padding: 2.5rem 1.5rem;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: #171d19; /* Encore plus sombre */
  color: var(--ivoire);
  border-top: 1px solid rgba(217, 206, 179, 0.1);
  padding: 5rem 2rem 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

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

.footer-brand .logo {
  color: var(--ivoire);
  margin-bottom: 1.5rem;
}

.footer-brand .logo-subtitle {
  color: var(--sable);
}

.footer-desc {
  font-size: 0.8rem;
  color: var(--sable);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1.2rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(217, 206, 179, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sable);
  text-decoration: none;
  transition: var(--transition-fast);
}

.social-link:hover {
  border-color: var(--ivoire);
  color: var(--ivoire);
  background-color: rgba(242, 239, 233, 0.05);
}

.footer-nav-col h4 {
  font-family: var(--font-text);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ivoire);
  margin-bottom: 1.8rem;
  position: relative;
  display: inline-block;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--sable);
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--ivoire);
  padding-left: 3px;
}

.footer-hours-col p {
  color: var(--sable);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

.footer-hours-col p strong {
  color: var(--ivoire);
}

.footer-bottom {
  border-top: 1px solid rgba(217, 206, 179, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(242, 239, 233, 0.4);
}

.footer-legal-links {
  display: flex;
  gap: 2rem;
}

.footer-legal-links a {
  text-decoration: none;
  font-size: 0.75rem;
  color: rgba(242, 239, 233, 0.4);
  transition: var(--transition-fast);
}

.footer-legal-links a:hover {
  color: var(--ivoire);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-legal-links {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
}

/* ==========================================================================
   MODAL DE DÉTAIL / INSCRIPTION
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  background-color: rgba(28, 36, 30, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-container {
  background-color: var(--ivoire);
  border: 1px solid var(--sable);
  width: 90%;
  max-width: 700px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px rgba(47, 58, 49, 0.3);
  transform: translateY(30px);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--kaki-profond);
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--bronze);
  transform: rotate(90deg);
}

.modal-content-wrapper {
  padding: 4rem 3rem;
}

.modal-header {
  margin-bottom: 2rem;
}

.modal-subtitle {
  font-family: var(--font-text);
  font-size: 0.8rem;
  color: var(--bronze);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 0.5rem;
}

.modal-title {
  font-size: 2.2rem;
  color: var(--kaki-profond);
}

.modal-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(47, 58, 49, 0.85);
}

.modal-body p {
  margin-bottom: 1.5rem;
}

.modal-body ul {
  list-style: none;
  margin: 1.5rem 0;
  padding-left: 1rem;
}

.modal-body li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.modal-body li::before {
  content: '▪';
  color: var(--bronze);
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}

.modal-cta-wrapper {
  margin-top: 3rem;
  border-top: 1px solid rgba(217, 206, 179, 0.4);
  padding-top: 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

@media (max-width: 600px) {
  .modal-content-wrapper {
    padding: 2.5rem 1.5rem;
  }
  
  .modal-cta-wrapper {
    flex-direction: column;
    gap: 1rem;
  }
  
  .modal-cta-wrapper .btn {
    width: 100%;
    text-align: center;
  }
}

/* Page légale spécifique layout */
.legal-page {
  padding-top: 10rem;
}

.legal-content {
  background-color: #faf9f6;
  border: 1px solid var(--glass-border);
  padding: 4rem;
  margin-bottom: 4rem;
}

.legal-content h2 {
  font-size: 1.8rem;
  color: var(--kaki-profond);
  margin: 2.5rem 0 1.2rem;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-content ul {
  list-style: disc;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: rgba(47, 58, 49, 0.85);
}

@media (max-width: 768px) {
  .legal-content {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================================================
   SECTIONS ENRICHIES (FONDATRICE & SPECTACLE)
   ========================================================================== */
.founder-section {
  background-color: var(--ivoire);
  border-top: 1px solid var(--glass-border);
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.founder-signature {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--bronze);
  margin-top: 1.5rem;
  font-style: italic;
}

.spectacle-section {
  background-color: var(--kaki-profond);
  color: var(--ivoire);
  position: relative;
}

.spectacle-section .section-title {
  color: var(--ivoire);
}

.spectacle-section .section-title::after {
  background-color: var(--sable);
}

.spectacle-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
}

.spectacle-text-container {
  display: flex;
  flex-direction: column;
}

.spectacle-quote {
  font-family: var(--font-title);
  font-size: 2.5rem;
  line-height: 1.25;
  color: var(--ivoire);
  margin-bottom: 2rem;
  font-style: italic;
}

.spectacle-quote span {
  color: var(--sable);
  font-style: normal;
}

.spectacle-description {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: var(--sable);
}

@media (max-width: 991px) {
  .founder-grid,
  .spectacle-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

/* Form Checkbox and Availability inputs */
.form-checkbox-group {
  grid-column: span 2;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-top: 1rem;
}

.form-checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border: 1px solid var(--kaki-profond);
  accent-color: var(--kaki-profond);
  cursor: pointer;
  margin-top: 0.2rem;
}

.checkbox-label {
  font-size: 0.85rem;
  color: var(--kaki-profond);
  cursor: pointer;
}

.checkbox-label a {
  color: var(--bronze);
  text-decoration: underline;
}

@media (max-width: 600px) {
  .form-checkbox-group {
    grid-column: span 1;
  }
}

/* ==========================================================================
   SECTION STUDIO MAX EVENT
   ========================================================================== */
.events {
  background-color: #faf9f6;
  padding: 8rem 0;
  border-top: 1px solid var(--glass-border);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: stretch;
}

.event-card {
  background-color: var(--ivoire);
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.event-card:hover {
  transform: translateY(-8px);
  border-color: var(--sable);
  box-shadow: 0 15px 30px rgba(47, 58, 49, 0.08);
}

.event-card-image {
  height: 240px;
  background-size: cover;
  background-position: center;
  transition: var(--transition-smooth);
  filter: grayscale(20%);
  position: relative;
}

.event-card:hover .event-card-image {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.event-card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(47, 58, 49, 0.4));
}

.event-card-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.event-card-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--kaki-profond);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.event-card-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: var(--bronze);
}

.event-card-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(47, 58, 49, 0.8);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.event-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(217, 206, 179, 0.4);
  padding-top: 1.5rem;
}

.event-card-features li {
  font-size: 0.85rem;
  color: var(--kaki-profond);
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--bronze);
  font-weight: bold;
}

@media (max-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .events {
    padding: 6rem 0;
  }
  
  .events-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .event-card-image {
    height: 200px;
  }
}
