/* ============================================
   MA CAVE BIO — Landing Page Styles
   Charte graphique : Chunko Bold + Gill Sans Nova
   ============================================ */

/* ---------- FONTS ---------- */
@font-face {
  font-family: 'Chunko';
  src: url('../fonts/Chunko Bold Demo.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gill Sans Nova';
  src: url('../fonts/gillsansnova_book.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gill Sans Nova';
  src: url('../fonts/gillsansnova_cnmedium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gill Sans Nova';
  src: url('../fonts/gillsansnova_extrabold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gill Sans Nova';
  src: url('../fonts/gillsansnova_heavy.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- CSS VARIABLES ---------- */
:root {
  /* Palette Ma Cave Bio */
  --rouge-brique:    #B5524A;
  --violet-pastel:   #C4A2C8;
  --champagne-dore:  #D9AD4A;
  --blanc-casse:     #F0EBE0;
  --noir:            #1A1A1A;
  --vert-amande:     #8BA888;
  --framboise:       #D94F6B;

  /* Variants */
  --rouge-brique-dark: #8E3F38;
  --violet-pastel-light: #DCC5DF;
  --champagne-dore-light: #E8C76E;
  --vert-amande-dark: #6B8B68;

  /* Layout */
  --container-max: 1200px;
  --section-padding: 120px;
  --border-radius: 16px;
  --border-radius-sm: 8px;

  /* Typography */
  --font-display: 'Gill Sans Nova', 'Arial Black', sans-serif;
  --font-body: 'Roboto', 'Segoe UI', sans-serif;

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--noir);
  background-color: var(--rouge-brique);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-weight: 800;
}

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

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

ul {
  list-style: none;
}

/* ---------- ACCESSIBILITY ---------- */
.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;
}

*:focus-visible {
  outline: 2px solid var(--rouge-brique);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding) 0;
}

/* ---------- TYPOGRAPHY ---------- */
.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.section__title--light {
  color: var(--blanc-casse);
}

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

.text-accent {
  color: var(--rouge-brique);
}

.text-accent-lila {
  color: var(--framboise);
}

.text-accent-vert {
  color: var(--vert-amande);
}

.text-accent-jaune {
  color: var(--champagne-dore);
}

/* ---------- AGE GATE ---------- */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--rouge-brique);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.age-gate.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.age-gate__card {
  text-align: center;
  padding: 48px 32px;
  max-width: 480px;
}

.age-gate__logo {
  width: 220px;
  margin: 0 auto 40px;
}

.age-gate__question {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--blanc-casse);
  line-height: 1.6;
  margin-bottom: 36px;
}

.age-gate__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.age-gate__btn {
  width: 100%;
  max-width: 300px;
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
}

.age-gate__btn:hover {
  transform: scale(1.03);
}

.age-gate__btn--yes {
  background: var(--champagne-dore);
  color: var(--noir);
}

.age-gate__btn--yes:hover {
  background: var(--champagne-dore-light);
}

.age-gate__btn--no {
  background: rgba(240, 235, 224, 0.12);
  color: var(--blanc-casse);
  border: 1px solid rgba(240, 235, 224, 0.2);
}

.age-gate__btn--no:hover {
  background: rgba(240, 235, 224, 0.2);
}

.age-gate__legal {
  margin-top: 32px;
  font-size: 0.75rem;
  color: rgba(240, 235, 224, 0.4);
  font-style: italic;
}

/* ---------- BURGER MENU ---------- */
.burger {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 10px;
  background: rgba(26, 26, 26, 0.35);
  border: 1px solid rgba(240, 235, 224, 0.15);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background var(--transition), transform var(--transition);
}

.burger:hover {
  background: rgba(26, 26, 26, 0.6);
  transform: scale(1.08);
}

.burger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--blanc-casse);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

/* Burger -> X animation */
.burger.active .burger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.active .burger__line:nth-child(2) {
  opacity: 0;
}

.burger.active .burger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- MENU DROPDOWN ---------- */
.menu-overlay {
  position: fixed;
  top: 80px;
  right: 24px;
  z-index: 1050;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(240, 235, 224, 0.12);
  border-radius: 12px;
  padding: 16px 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-overlay__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu-overlay__link {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blanc-casse);
  opacity: 0.7;
  padding: 10px 32px;
  transition: opacity var(--transition), color var(--transition), background var(--transition);
  white-space: nowrap;
}

.menu-overlay__link:hover {
  opacity: 1;
  color: var(--champagne-dore);
  background: rgba(240, 235, 224, 0.05);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--rouge-brique);
  overflow: hidden;
  margin-top: -1px;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  background-image: url('../images/backgrounds/Fond_page_principale.png');
  background-size: cover;
  background-position: center;
  will-change: transform;
  transform: translateZ(0);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px;
}

.hero__logo {
  width: min(500px, 70vw);
  margin: 0 auto 48px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero__tagline {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero__tagline-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--blanc-casse);
  animation: fadeInUp 0.8s ease-out both;
}

.hero__tagline-word:nth-child(1) { animation-delay: 0.6s; }
.hero__tagline-word:nth-child(2) {
  animation-delay: 0.8s;
  color: var(--champagne-dore);
}
.hero__tagline-word:nth-child(3) { animation-delay: 1s; }

.hero__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.1rem;
  color: rgba(240, 235, 224, 0.7);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out 1.2s both;
}

.hero__scroll {
  display: inline-block;
  color: var(--blanc-casse);
  opacity: 0.6;
  animation: bounce 2s ease-in-out infinite 2s;
  transition: opacity var(--transition);
}

.hero__scroll:hover {
  opacity: 1;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ---------- ABOUT ---------- */
.about {
  background-color: var(--blanc-casse);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image-wrapper {
  position: relative;
}

.about__image {
  border-radius: var(--border-radius);
  width: 100%;
  height: 500px;
  object-fit: cover;
  transform: translateZ(0);
}

.about__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  background: var(--champagne-dore);
  border-radius: var(--border-radius);
  z-index: -1;
  opacity: 0.4;
}

.about__lead {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 16px;
  color: var(--noir);
}

.about__text {
  color: #555;
  margin-bottom: 32px;
}

.about__values {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.about__value {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about__value:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.about__value-icon {
  width: 32px;
  height: 32px;
}

.about__value-icon--dark {
  filter: brightness(0) saturate(100%);
}

/* ---------- MARQUEE ---------- */
.marquee {
  background: var(--noir);
  padding: 20px 0;
  overflow: hidden;
  contain: content;
}

.marquee__track {
  display: flex;
  width: max-content;
}

.marquee__content {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: marqueeScroll 15s linear infinite;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.2rem, 3vw, 2rem);
  text-transform: uppercase;
  color: var(--blanc-casse);
  white-space: nowrap;
  padding-right: 32px;
  will-change: transform;
  transform: translateZ(0);
}

.marquee__dot {
  color: var(--rouge-brique);
  font-size: 0.6em;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- SELECTION ---------- */
.selection {
  background: var(--noir);
}

.selection__intro {
  color: rgba(240, 235, 224, 0.7);
  max-width: 600px;
  margin-bottom: 60px;
  font-size: 1.1rem;
}

.selection__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.selection__card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.selection__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.selection__card-visual {
  position: relative;
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.selection__card-bg {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  transition: opacity var(--transition);
}

.selection__card:hover .selection__card-bg {
  opacity: 0.4;
}

.selection__card-bg--rouge { background: var(--rouge-brique); }
.selection__card-bg--jaune { background: var(--champagne-dore); }
.selection__card-bg--vert { background: var(--vert-amande); }
.selection__card-bg--framboise { background: var(--framboise); }

.selection__card-img {
  position: relative;
  z-index: 2;
  max-height: 240px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
  transition: transform var(--transition);
}

.selection__card:hover .selection__card-img {
  transform: scale(1.08) translateY(-5px);
}

.selection__card-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.selection__card:hover .selection__card-cover {
  transform: scale(1.05);
}

.selection__card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.selection__card-picto {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  opacity: 0.6;
}

.selection__card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--blanc-casse);
  margin-bottom: 8px;
}

.selection__card-body p {
  font-size: 0.9rem;
  color: rgba(240, 235, 224, 0.5);
  line-height: 1.5;
  flex: 1;
}

.selection__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blanc-casse);
  margin-top: 14px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.selection__card:hover .selection__card-cta {
  opacity: 1;
}

.selection__card-cta svg {
  transition: transform 0.3s ease;
}

.selection__card:hover .selection__card-cta svg {
  transform: translateX(3px);
}

/* ---------- PRODUCTEURS : SHARED CARD STYLE ---------- */
.produit-item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(240, 235, 224, 0.1);
  align-items: center;
}

.produit-item:last-child {
  border-bottom: none;
}

.produit-item__domaine {
  font-weight: 800;
  font-size: 1rem;
  color: var(--blanc-casse);
}

.produit-item__region {
  font-size: 0.9rem;
  color: var(--champagne-dore);
}

.produit-item__cepage {
  font-size: 0.9rem;
  color: rgba(240, 235, 224, 0.5);
  font-style: italic;
}

.produit-item__cuvee {
  font-size: 0.9rem;
  color: rgba(240, 235, 224, 0.7);
  font-weight: 500;
}

.produits__header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(240, 235, 224, 0.15);
  margin-bottom: 4px;
}

.produits__header span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(240, 235, 224, 0.35);
  font-weight: 500;
}

/* ---------- MODE 1 : MODAL ---------- */
.produits-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.produits-modal.open {
  opacity: 1;
  visibility: visible;
}

.produits-modal__inner {
  background: var(--noir);
  border: 1px solid rgba(240, 235, 224, 0.1);
  border-radius: var(--border-radius);
  padding: 48px;
  width: 90%;
  max-width: 860px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s ease;
}

.produits-modal.open .produits-modal__inner {
  transform: translateY(0);
}

.produits-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--blanc-casse);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity var(--transition);
  line-height: 1;
}

.produits-modal__close:hover {
  opacity: 1;
}

.produits-modal__title {
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--blanc-casse);
  margin-bottom: 24px;
}

/* ---------- MODE 2 : EXPAND ---------- */
.selection__expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius);
}

.selection__expand.open {
  max-height: 800px;
  padding: 32px;
  margin-top: 32px;
  border: 1px solid rgba(240, 235, 224, 0.08);
}

.selection__expand__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.selection__expand__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--blanc-casse);
}

.selection__expand__close {
  background: none;
  border: none;
  color: var(--blanc-casse);
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity var(--transition);
  line-height: 1;
}

.selection__expand__close:hover {
  opacity: 1;
}

/* ---------- MODE 3 : PANEL SLIDE-IN ---------- */
.produits-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  width: 520px;
  max-width: 90vw;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.produits-panel.open {
  transform: translateX(0);
}

.produits-panel::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}

.produits-panel.open::before {
  opacity: 1;
  pointer-events: auto;
}

.produits-panel__inner {
  height: 100%;
  background: var(--noir);
  border-left: 1px solid rgba(240, 235, 224, 0.1);
  padding: 48px 36px;
  overflow-y: auto;
  position: relative;
}

.produits-panel__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--blanc-casse);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity var(--transition);
  line-height: 1;
}

.produits-panel__close:hover {
  opacity: 1;
}

.produits-panel__title {
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--blanc-casse);
  margin-bottom: 24px;
}

/* Panel: stack items vertically (narrower space) */
.produits-panel__list .produit-item {
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 16px 0;
}

.produits-panel__list .produits__header {
  grid-template-columns: 1fr;
  display: none;
}

.produits-panel__list .produit-item__region,
.produits-panel__list .produit-item__cepage,
.produits-panel__list .produit-item__cuvee {
  font-size: 0.85rem;
}

/* ---------- RESPONSIVE PRODUITS ---------- */
@media (max-width: 768px) {
  .produit-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .produits__header {
    display: none;
  }

  .produits-modal__inner {
    padding: 32px 20px;
    width: 95%;
  }

  .produits-panel {
    width: 100%;
    max-width: 100vw;
  }
}

/* ---------- ENGAGEMENT ---------- */
.engagement {
  background: var(--blanc-casse);
}

.engagement__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.engagement__lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 40px;
}

.engagement__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.engagement__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.engagement__item-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--vert-amande);
  line-height: 1;
  flex-shrink: 0;
}

.engagement__item h4 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.engagement__item p {
  color: #666;
  font-size: 0.95rem;
}

.engagement__mosaic {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 520px;
}

.engagement__mosaic-img {
  border-radius: var(--border-radius);
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: translateZ(0);
}

.engagement__mosaic-img--1 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.engagement__mosaic-img--2 {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  margin-top: 40px;
}

.engagement__mosaic-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 120px;
  height: 120px;
  background: var(--violet-pastel);
  border-radius: var(--border-radius);
  z-index: -1;
  opacity: 0.5;
}

/* ---------- STATS ---------- */
.stats {
  background: var(--champagne-dore);
  padding: 80px 0;
  background-image: url('../images/backgrounds/Fond_jaune.png');
  background-size: cover;
  background-position: center;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.stats__value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex: 1;
}

.stats__number {
  font-family: 'Gill Sans Nova', var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--noir);
  line-height: 1;
}

.stats__plus,
.stats__percent {
  font-family: 'Gill Sans Nova', var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--noir);
  margin-left: 0.15em;
}

.stats__label {
  font-family: 'Gill Sans Nova', var(--font-body);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--noir);
  opacity: 0.7;
  margin-top: 8px;
}

/* ---------- LOCATION ---------- */
.location {
  background: var(--blanc-casse);
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  margin-top: 60px;
  align-items: stretch;
}

.location__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location__card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: white;
  padding: 28px;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.location__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.location__card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--rouge-brique);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanc-casse);
}

.location__card h4 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.location__card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.location__map {
  border-radius: var(--border-radius);
  overflow: hidden;
  min-height: 400px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/* ---------- CONTACT + NEWSLETTER ---------- */
.contact {
  background: var(--noir);
  color: var(--blanc-casse);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__newsletter p {
  color: rgba(240, 235, 224, 0.6);
  margin-bottom: 32px;
  max-width: 400px;
}

.newsletter__form {
  max-width: 440px;
}

.newsletter__input-group {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color var(--transition);
}

.newsletter__input-group:focus-within {
  border-color: var(--champagne-dore);
}

.newsletter__input {
  flex: 1;
  padding: 16px 24px;
  background: none;
  border: none;
  color: var(--blanc-casse);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
}

.newsletter__input::placeholder {
  color: rgba(240, 235, 224, 0.4);
}

.newsletter__btn {
  padding: 16px 28px;
  background: var(--champagne-dore);
  color: var(--noir);
  border: none;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color var(--transition);
}

.newsletter__btn:hover {
  background: var(--champagne-dore-light);
}

.newsletter__legal {
  font-size: 0.75rem;
  color: rgba(240, 235, 224, 0.3);
  margin-top: 12px;
}

/* Contact form */
.contact__form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact__form-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: var(--blanc-casse);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__group {
  margin-bottom: 16px;
}

.form__label {
  display: block;
  font-weight: 500;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: rgba(240, 235, 224, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form__input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
  color: var(--blanc-casse);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}

.form__input:focus {
  border-color: var(--rouge-brique);
  background: rgba(255, 255, 255, 0.1);
}

.form__input::placeholder {
  color: rgba(240, 235, 224, 0.3);
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23F0EBE0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form__select option {
  background: var(--noir);
  color: var(--blanc-casse);
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

.form__submit {
  width: 100%;
  padding: 16px;
  background: var(--rouge-brique);
  color: var(--blanc-casse);
  border: none;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background-color var(--transition), transform var(--transition);
}

.form__submit:hover {
  background: var(--rouge-brique-dark);
  transform: translateY(-2px);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--noir);
  color: var(--blanc-casse);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 0 30px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__logo {
  width: 180px;
  margin-bottom: 16px;
}

.footer__tagline {
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  color: rgba(240, 235, 224, 0.4);
}

.footer__links h4,
.footer__social h4 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(240, 235, 224, 0.5);
  margin-bottom: 16px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 0.95rem;
  color: rgba(240, 235, 224, 0.6);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--blanc-casse);
}

.footer__social-links {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  color: var(--blanc-casse);
  transition: background-color var(--transition), transform var(--transition);
}

.footer__social-link:hover {
  background: var(--rouge-brique);
  transform: translateY(-3px);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.85rem;
  color: rgba(240, 235, 224, 0.3);
}

.footer__legal {
  font-style: italic;
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px) translateZ(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) translateZ(0);
  will-change: auto;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .selection__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  /* Grids to single column */
  .about__grid,
  .engagement__grid,
  .location__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image {
    height: 300px;
  }

  .engagement__mosaic {
    height: 300px;
  }

  .selection__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .selection__card-visual {
    height: 220px;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .hero__tagline {
    gap: 12px;
  }

  .contact__form-wrapper {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .hero__logo {
    width: 85vw;
  }

  .about__values {
    flex-direction: column;
    gap: 12px;
  }

  .newsletter__input-group {
    flex-direction: column;
    border-radius: var(--border-radius-sm);
  }

  .newsletter__btn {
    border-radius: 0;
  }
}
