/* ==========================================================================
   Le Jardin de Loulou — "Jardin Sauvage x Guinguette Electrique" v1
   Organic maximalist + Neo-retro bold
   Mobile-first · Organic shapes · XXL typography
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Self-hosted Fonts
   -------------------------------------------------------------------------- */
/* Bricolage Grotesque (variable font, weights 200-800) */
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../fonts/BricolageGrotesque-latin.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../fonts/BricolageGrotesque-latin-ext.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Outfit (variable font, weights 100-900) */
@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit-latin-ext.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Caveat */
@font-face {
  font-family: "Caveat";
  src: url("../fonts/Caveat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Caveat";
  src: url("../fonts/Caveat-Regular-ext.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --------------------------------------------------------------------------
   1. Custom Properties
   -------------------------------------------------------------------------- */
:root {
  /* Palette — Jardin Sauvage x Guinguette Electrique */
  --color-bg: #faf6ef;
  --color-bg-warm: #f0e8d8;
  --color-bg-green: #1a3a2a;
  --color-bg-carte: #1e1108;
  --color-bg-yellow: #f5dfa0;
  --color-text: #1a1208;
  --color-text-muted: #5a4a36;
  --color-terracotta: #e85d3a;
  --color-olive: #2d6b4a;
  --color-golden: #e8a820;
  --color-coral: #d94440;
  --color-cream: #faf3e4;
  --color-dark: #0e0a06;
  --color-white: #ffffff;
  --color-electric-green: #7ab88a;
  --color-peach: #ffb088;
  --color-deep-navy: #0d1b2a;

  /* Typography — Jardin Sauvage x Guinguette Electrique */
  --font-heading: "Bricolage Grotesque", sans-serif;
  --font-body: "Outfit", sans-serif;
  --font-accent: "Caveat", cursive;

  /* Spacing */
  --shadow-warm: 0 4px 20px rgba(44, 24, 16, 0.08);
  --transition: 0.3s ease;
  --section-padding: 64px 24px;
  --navbar-height: 64px;

  /* Z-index scale */
  --z-base: 1;
  --z-content: 2;
  --z-hero-content: 3;
  --z-card: 4;
  --z-navbar: 100;
  --z-overlay: 500;
  --z-skip-link: 1000;
  --z-toast: 10000;
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

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

a {
  color: var(--color-terracotta);
  text-decoration: none;
  transition: color var(--transition);
}

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

ul,
ol {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--color-terracotta);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Grain texture overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: var(--z-overlay);
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* --------------------------------------------------------------------------
   3. Navbar
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-navbar);
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition:
    background var(--transition),
    box-shadow var(--transition);
}

.navbar--solid {
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 0 rgba(26, 18, 8, 0.08);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 24px;
}

.navbar__logo {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text);
  white-space: nowrap;
  z-index: calc(var(--z-navbar) + 1);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

/* Transparent navbar: white text */
.navbar:not(.navbar--solid) .navbar__logo,
.navbar:not(.navbar--solid) .navbar__links a {
  color: var(--color-white);
}

.navbar--solid .navbar__logo,
.navbar--solid .navbar__links a {
  color: var(--color-text);
}

/* Nav links — mobile: fullscreen overlay */
.navbar__links {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 248, 240, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  justify-content: center;
  align-items: center;
  gap: 32px;
  z-index: var(--z-overlay);
}

.navbar__links a {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: color var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.navbar__links a:hover {
  color: var(--color-terracotta);
}

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

/* Language toggle */
.lang-toggle {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: none;
  border: 1px solid currentColor;
  border-radius: 0;
  padding: 8px 14px;
  min-height: 44px;
  cursor: pointer;
  color: inherit;
  transition: all var(--transition);
  z-index: calc(var(--z-navbar) + 1);
}

.navbar:not(.navbar--solid) .lang-toggle {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.navbar--solid .lang-toggle {
  color: var(--color-text-muted);
  border-color: rgba(44, 24, 16, 0.2);
}

.lang-toggle:hover {
  color: var(--color-terracotta);
  border-color: var(--color-terracotta);
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: calc(var(--z-navbar) + 1);
  width: 44px;
  height: 44px;
  padding: 0;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  border-radius: 0;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.navbar:not(.navbar--solid) .nav-toggle {
  color: var(--color-white);
}

.navbar--solid .nav-toggle {
  color: var(--color-text);
}

.nav-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar.nav-open {
  z-index: var(--z-overlay);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.navbar.nav-open .nav-toggle {
  color: var(--color-text);
  z-index: calc(var(--z-overlay) + 1);
}

.navbar.nav-open .navbar__logo {
  color: var(--color-text);
  z-index: calc(var(--z-overlay) + 1);
}

.navbar.nav-open .navbar__links a {
  color: var(--color-text);
}

.navbar__links .lang-toggle {
  display: none;
}

.navbar.nav-open .navbar__links .lang-toggle {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 24px;
  font-size: 0.8rem;
  color: var(--color-text);
  border-color: rgba(44, 24, 16, 0.2);
}

/* --------------------------------------------------------------------------
   4. Hero — "Sous-Bois Electrique" multi-couches asymetrique
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(30, 17, 8, 0.7) 0%,
      rgba(30, 17, 8, 0.2) 40%,
      rgba(30, 17, 8, 0) 60%
    ),
    linear-gradient(
      to bottom,
      rgba(30, 17, 8, 0) 0%,
      rgba(30, 17, 8, 0.15) 40%,
      rgba(30, 17, 8, 0.7) 70%,
      rgba(30, 17, 8, 0.92) 100%
    );
  z-index: var(--z-base);
}

/* Couches SVG parallaxe */
.hero__trees,
.hero__leaves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-base);
  pointer-events: none;
  will-change: transform;
}

.hero__leaves {
  z-index: calc(var(--z-base) + 1);
}

/* Contenu hero — centre avec texte a gauche */
.hero__content {
  position: relative;
  z-index: var(--z-content);
  padding: 0 24px 60px;
  max-width: 900px;
  width: 100%;
  text-align: left;
  will-change: transform, opacity;
}

/* Titre split : "Le Jardin" bold + "de Loulou" cursive */
.hero__title {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 0.85;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-shadow: none;
  display: flex;
  flex-direction: column;
}

.hero__title-line1 {
  font-size: clamp(3.5rem, 14vw, 10rem);
  display: block;
}

.hero__title-line2 {
  font-family: var(--font-accent);
  font-size: clamp(2.5rem, 10vw, 7rem);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1;
  color: var(--color-peach);
  margin-left: 0.5em;
  margin-top: -0.1em;
}

/* Sous-titre + soulignement SVG */
.hero__subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: none;
  margin-bottom: 8px;
}

.hero__underline {
  display: block;
  width: clamp(180px, 40vw, 280px);
  height: auto;
  margin-bottom: 32px;
}

.hero__underline-path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: draw-underline 1.5s ease-out 1s forwards;
}

@keyframes draw-underline {
  to {
    stroke-dashoffset: 0;
  }
}

/* CTA sticker */
.hero__cta {
  display: inline-block;
  padding: 18px 52px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-dark);
  background: var(--color-golden);
  border: 3px solid var(--color-golden);
  border-radius: 0;
  text-decoration: none;
  transform: rotate(-2deg);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
  overflow: hidden;
}

.hero__cta::before {
  display: none;
}

.hero__cta:hover {
  transform: rotate(0deg) scale(1.08);
  background: var(--color-peach);
  border-color: var(--color-peach);
  color: var(--color-dark);
}

/* Marquee ticker */
.hero__ticker {
  position: absolute;
  bottom: 170px;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: var(--z-content);
  opacity: 0.3;
}

.hero__ticker-track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white);
  animation: ticker-scroll 30s linear infinite;
}

.hero__ticker-dot {
  opacity: 0.4;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.33%);
  }
}

/* Transition feuillage (remplace la wave classique) */
.hero__foliage {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 160px;
  z-index: var(--z-hero-content);
}

.hero__foliage-branches path,
.hero__foliage-branches ellipse {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}

/* --------------------------------------------------------------------------
   5. Sections (common)
   -------------------------------------------------------------------------- */
.section {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.section__inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* Section titles — XXL bold */
.section__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(3rem, 10vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 48px;
  color: var(--color-text);
  position: relative;
  padding-bottom: 20px;
}

.section__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--color-terracotta);
  border-radius: 2px;
}

/* Sous-titre de section (SEO + contexte) */
.section__intro {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 40px;
  opacity: 0.75;
}

.section--green .section__intro {
  color: rgba(255, 255, 255, 0.7);
}

/* Section wave separators — organic, tall */
.section__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  display: block;
  z-index: var(--z-content);
}

/* Section background patterns */
.section--warm {
  position: relative;
  background: var(--color-bg-warm);
}

.section--green {
  position: relative;
  background: var(--color-bg-green);
}

.section--yellow {
  background: var(--color-bg-yellow);
}

/* --------------------------------------------------------------------------
   6. Le Lieu — Grille bento avec chevauchements
   -------------------------------------------------------------------------- */

/* Keywords — horizontal badges sous le titre */
.lieu__keywords {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
}

.lieu__keyword {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-olive);
  background: rgba(45, 107, 74, 0.08);
  padding: 6px 16px;
  border-radius: 0;
  border: 1.5px solid var(--color-olive);
  transition:
    color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.lieu__keyword:hover {
  color: var(--color-white);
  background: var(--color-olive);
  transform: translateY(-3px) rotate(-1deg);
}

/* Bento grid — mobile: stack vertical */
.lieu__bento {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Images bento */
.lieu__bento-img {
  overflow: hidden;
  position: relative;
}

.lieu__bento-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lieu__bento-img--main img {
  min-height: 280px;
}

.lieu__bento-img--overlap img {
  min-height: 240px;
}

/* Cellule quote + intro */
.lieu__bento-quote {
  padding: 8px 0;
}

.lieu__bento-intro {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-text);
  margin-top: 16px;
  max-width: 100%;
}

/* Texte descriptif */
.lieu__text {
  max-width: 100%;
  padding: 0;
}

.lieu__text p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-text);
  margin-bottom: 20px;
  max-width: 100%;
}

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

/* Pull quote — organic accent */
.lieu__pullquote {
  font-family: var(--font-accent);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-terracotta);
  border-left: 4px solid var(--color-terracotta);
  padding: 0 0 0 28px;
  margin: 0 0 16px;
  max-width: 420px;
  background: none;
  border-radius: 0;
  position: relative;
}

.lieu__pullquote::before {
  content: "\201C";
  font-family: var(--font-accent);
  font-size: 6rem;
  font-style: normal;
  color: rgba(198, 123, 92, 0.25);
  position: absolute;
  top: -0.4em;
  left: 0;
  line-height: 1;
  pointer-events: none;
}

/* Image wide — backward compat */
.lieu__image--wide {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: 0;
}

/* Lierre SVG decoratif */
.lieu__ivy {
  display: none;
}

/* Desktop bento grid — 1024px+ */
@media (min-width: 1024px) {
  .lieu__bento {
    display: grid;
    grid-template-columns: 55% 1fr;
    grid-template-rows: auto auto auto;
    gap: 0;
    align-items: start;
  }

  /* Cellule A : grande image — colonne 1, lignes 1-2 */
  .lieu__bento-img--main {
    grid-column: 1;
    grid-row: 1 / 3;
    clip-path: polygon(0 0, 100% 2%, 98% 95%, 0 100%);
  }

  .lieu__bento-img--main img {
    min-height: 500px;
    height: 100%;
  }

  /* Cellule B : pullquote + intro — colonne 2, ligne 1 */
  .lieu__bento-quote {
    grid-column: 2;
    grid-row: 1;
    padding: 32px 0 32px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* Cellule C : image overlap — colonne 2, ligne 2, remonte sur la cellule A */
  .lieu__bento-img--overlap {
    grid-column: 2;
    grid-row: 2;
    margin-left: -60px;
    margin-top: -40px;
    z-index: var(--z-content);
    clip-path: polygon(3% 0, 100% 0, 100% 100%, 0 97%);
    box-shadow: -8px 8px 32px rgba(30, 17, 8, 0.15);
  }

  .lieu__bento-img--overlap img {
    min-height: 320px;
  }

  /* Cellule D : texte — pleine largeur en dessous, 2 colonnes */
  .lieu__bento-text {
    grid-column: 1 / -1;
    grid-row: 3;
    padding: 48px 0 0;
    column-count: 2;
    column-gap: 48px;
  }

  .lieu__bento-text p {
    max-width: 100%;
    break-inside: avoid;
  }

  /* Lierre visible sur desktop */
  .lieu__ivy {
    display: block;
    position: absolute;
    left: 0;
    top: 120px;
    width: 40px;
    height: 500px;
    pointer-events: none;
    z-index: var(--z-base);
  }

  .lieu__ivy-stem {
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
  }
}

/* Tablette 768-1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  .lieu__bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .lieu__bento-img--main {
    grid-column: 1 / -1;
  }

  .lieu__bento-img--main img {
    min-height: 360px;
  }

  .lieu__bento-text {
    grid-column: 1 / -1;
  }
}

/* --------------------------------------------------------------------------
   7. La Carte — Constrained ardoise
   -------------------------------------------------------------------------- */
.section--carte {
  position: relative;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E")
      repeat,
    linear-gradient(160deg, #1e1108 0%, #2a1a0f 50%, #1a0e06 100%);
  padding: 80px 24px;
}

.section--carte .section__inner {
  max-width: 900px;
}

.section--carte .section__title {
  color: var(--color-golden);
  text-align: center;
  font-family: var(--font-accent);
  font-size: clamp(3.5rem, 10vw, 6rem);
  text-transform: none;
  letter-spacing: 0;
}

.section--carte .section__title::after {
  background: var(--color-terracotta);
  width: 60px;
  height: 4px;
  left: 50%;
  transform: translateX(-50%);
}

.carte__grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.carte__column {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

/* Desktop : 2 colonnes decalees verticalement */
@media (min-width: 768px) {
  .carte__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 64px;
  }

  /* Colonne planches decalee de 60px vers le bas */
  .carte__column:nth-child(2) {
    margin-top: 60px;
  }
}

.carte__category {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-peach);
  background: none;
  padding: 0 0 16px;
  border-radius: 0;
  margin-bottom: 24px;
  border-bottom: 2px solid rgba(232, 168, 32, 0.2);
  display: block;
}

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

.carte-item {
  padding: 14px 0;
  background: transparent;
  border-radius: 0;
  border-bottom: 1px solid rgba(212, 164, 64, 0.12);
  margin-bottom: 0;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

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

.carte-item:hover {
  background: rgba(232, 168, 32, 0.08);
  transform: translateX(4px);
}

.carte-item__row {
  display: flex;
  align-items: baseline;
  gap: 0;
}

.carte-item__row::after {
  content: "";
  flex: 1;
  border-bottom: 1px dotted rgba(212, 164, 64, 0.3);
  margin: 0 12px;
  position: relative;
  bottom: 0.25em;
}

.carte-item__name {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: var(--color-cream);
}

.carte-item__price {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--color-golden);
  white-space: nowrap;
  order: 1;
}

.carte-item__desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(245, 240, 225, 0.7);
  margin-top: 4px;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   8. Agenda — Constrained grid
   -------------------------------------------------------------------------- */
.section--green {
  color: var(--color-cream);
}

.section--green .section__title {
  text-align: center;
  color: var(--color-electric-green);
}

.section--green .section__title::after {
  background: var(--color-electric-green);
  left: 50%;
  transform: translateX(-50%);
}

.agenda__timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 0;
  max-width: 900px;
  margin: 0 auto;
}

/* Desktop : masonry-like multi-colonnes */
@media (min-width: 768px) {
  .agenda__timeline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1000px;
  }
}

@media (min-width: 1024px) {
  .agenda__timeline {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
    max-width: 1200px;
  }
}

.event-card {
  position: relative;
  background: #faf3e4;
  border-radius: 0;
  padding: 36px 28px 28px;
  box-shadow:
    2px 4px 12px rgba(30, 17, 8, 0.12),
    inset 0 0 60px rgba(210, 190, 150, 0.15);
  border-bottom: none;
  margin-bottom: 0;
  border-left: 3px solid transparent;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

/* Punaise SVG en haut centre */
.event-card::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-terracotta);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.3),
    inset 0 -2px 3px rgba(0, 0, 0, 0.2),
    inset 0 2px 3px rgba(255, 255, 255, 0.3);
  z-index: 2;
}

/* Rotations alternees — effet affiches punaisees */
.event-card:nth-child(4n + 1) {
  transform: rotate(-1.5deg);
}
.event-card:nth-child(4n + 2) {
  transform: rotate(1deg);
}
.event-card:nth-child(4n + 3) {
  transform: rotate(-0.5deg);
}
.event-card:nth-child(4n + 4) {
  transform: rotate(2deg);
}

.event-card:last-child {
  border-bottom: none;
}

.event-card__date {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-terracotta);
  background: none;
  padding: 0;
  border-radius: 0;
  margin-bottom: 8px;
}

.event-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 8px;
}

.event-card__desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
  line-height: 1.6;
  max-width: 500px;
  text-transform: none;
  letter-spacing: normal;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-card__tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  margin-top: auto;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 4px 12px;
  border-radius: 0;
  margin-right: 6px;
}

.event-card__tag--musique {
  color: var(--color-olive);
  background: rgba(111, 114, 68, 0.1);
  border: 1px solid var(--color-olive);
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.event-card__tag--musique:hover {
  background: var(--color-olive);
  color: var(--color-white);
}

.event-card__tag--special {
  color: var(--color-terracotta);
  background: rgba(198, 123, 92, 0.1);
  border: 1px solid var(--color-terracotta);
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.event-card__tag--special:hover {
  background: var(--color-terracotta);
  color: var(--color-white);
}

.event-card__tag--default {
  color: var(--color-text-muted);
  background: rgba(44, 24, 16, 0.05);
  border: 1px solid rgba(44, 24, 16, 0.2);
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.event-card__tag--default:hover {
  background: rgba(44, 24, 16, 0.15);
}

.event-card--soiree {
  border-left-color: var(--color-terracotta);
}

.event-card--musique,
.event-card--dj {
  border-left-color: var(--color-olive);
}

.event-card--sport {
  border-left-color: var(--color-golden);
}

.event-card:hover {
  box-shadow: 4px 8px 24px rgba(44, 24, 16, 0.18);
  transform: translateY(-4px) rotate(0deg) !important;
  border-left-color: var(--color-olive);
}

/* Event cards glass — overrides pour section fond sombre */
.section--green .event-card {
  background: rgba(250, 243, 228, 0.92);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-left: 3px solid transparent;
  color: var(--color-text);
  box-shadow:
    2px 4px 16px rgba(0, 0, 0, 0.25),
    inset 0 0 60px rgba(210, 190, 150, 0.15);
}

.section--green .event-card::before {
  background: var(--color-electric-green);
}

.section--green .event-card:hover {
  background: rgba(255, 255, 255, 0.97);
  transform: translateY(-4px) rotate(0deg) !important;
  box-shadow: 4px 12px 32px rgba(0, 0, 0, 0.35);
}

.section--green .event-card__date {
  color: var(--color-terracotta);
}

.section--green .event-card__title {
  color: var(--color-text);
}

.section--green .event-card__desc {
  color: var(--color-text-muted);
}

.section--green .event-card__tag--musique {
  color: var(--color-electric-green);
  background: rgba(122, 184, 138, 0.15);
  border-color: var(--color-electric-green);
}

.section--green .event-card__tag--musique:hover {
  background: var(--color-electric-green);
  color: var(--color-dark);
}

.section--green .event-card__tag--special {
  color: var(--color-peach);
  background: rgba(255, 176, 136, 0.15);
  border-color: var(--color-peach);
}

.section--green .event-card__tag--special:hover {
  background: var(--color-peach);
  color: var(--color-dark);
}

.section--green .event-card__tag--default {
  color: rgba(250, 243, 228, 0.7);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.section--green .event-card--soiree {
  border-left-color: var(--color-peach);
}

.section--green .event-card--musique,
.section--green .event-card--dj {
  border-left-color: var(--color-electric-green);
}

.section--green .event-card--sport {
  border-left-color: var(--color-golden);
}

.section--green .agenda__show-more {
  color: var(--color-electric-green);
  border-color: var(--color-electric-green);
}

.section--green .agenda__show-more::before {
  background: var(--color-electric-green);
}

.section--green .agenda__show-more:hover {
  color: var(--color-dark);
}

.section--green .agenda__empty {
  color: rgba(250, 243, 228, 0.6);
}

.section--green .skeleton-card {
  background: rgba(255, 255, 255, 0.06);
  border-left-color: rgba(255, 255, 255, 0.1);
}

.section--green .skeleton-line {
  background: linear-gradient(
    90deg,
    rgba(0, 214, 126, 0.08) 25%,
    rgba(0, 214, 126, 0.15) 50%,
    rgba(0, 214, 126, 0.08) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.8s ease-in-out infinite;
}

.agenda__empty {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: italic;
  color: var(--color-text-muted);
  padding: 24px 0;
}

/* Hidden event cards (Show More feature) */
.event-card--hidden {
  display: none;
}

@keyframes agenda-fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.event-card--reveal {
  animation: agenda-fade-in 0.4s ease forwards;
}

.agenda__show-more {
  display: block;
  margin: 32px auto 0;
  padding: 14px 40px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-olive);
  background: transparent;
  border: 1px solid var(--color-olive);
  border-radius: 0;
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.agenda__show-more::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--color-olive);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.agenda__show-more:hover::before {
  transform: scaleX(1);
}

.agenda__show-more:hover {
  color: var(--color-white);
}

/* --------------------------------------------------------------------------
   9. Contact — Info + Map side-by-side
   -------------------------------------------------------------------------- */

/* Grid: stacked on mobile, 2x2 on desktop */
.contact__grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact__cell {
  min-width: 0;
}

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

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(44, 24, 16, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 12px rgba(44, 24, 16, 0.06);
}

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

.contact-item__label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
}

.contact-item__value {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text);
}

.contact-item__value a {
  color: var(--color-text);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
  border-bottom: 1px solid var(--color-terracotta);
}

.contact-item__value a:hover {
  color: var(--color-terracotta);
}

/* Instagram — editorial accent */
.contact__instagram {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding-bottom: 32px;
}

.contact__instagram-icon {
  width: 36px;
  height: 36px;
  fill: var(--color-terracotta);
  flex-shrink: 0;
}

.contact__instagram-handle {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
}

.contact__instagram-cta {
  display: inline-block;
  padding: 10px 28px;
  background: none;
  border: 1px solid #a0573c;
  color: #a0573c;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--transition);
  margin-left: auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact__instagram-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #a0573c;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact__instagram-cta:hover::before {
  transform: scaleX(1);
}

.contact__instagram-cta:hover {
  color: var(--color-white);
}

@media (max-width: 767px) {
  .contact__instagram {
    justify-content: center;
    margin-top: 24px;
  }

  .contact__instagram-cta {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}

/* Horaires mini-grid */
.contact__horaires-title {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.contact__horaires-grid {
  display: grid;
  grid-template-columns: auto 1fr;
}

.contact__horaires-row {
  display: contents;
}

.contact__horaires-day {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--color-text);
  padding: 10px 16px 10px 0;
  border-bottom: 1px solid rgba(44, 24, 16, 0.06);
}

.contact__horaires-hours {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-muted);
  padding: 10px 0;
  border-bottom: 1px solid rgba(44, 24, 16, 0.06);
}

.contact__horaires-row.is-last .contact__horaires-day,
.contact__horaires-row.is-last .contact__horaires-hours {
  border-bottom: none;
}

/* Contact form */
.contact-form {
  padding-top: 0;
}

.contact-form__fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.contact-form__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 24px;
}

.contact-form__group {
  margin-bottom: 16px;
}

.contact-form__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid rgba(44, 24, 16, 0.35);
  border-radius: 0;
  transition: border-color var(--transition);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--color-terracotta);
  outline: none;
  box-shadow: 0 0 0 3px rgba(232, 93, 58, 0.15);
}

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

.contact-form__submit {
  display: inline-block;
  padding: 16px 48px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-terracotta);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
  margin-top: 8px;
}

.contact-form__submit:hover {
  background: #d04a28;
  transform: translateY(-2px);
}

.contact-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-form__submit--loading {
  position: relative;
  color: transparent;
}

.contact-form__submit--loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.6s linear infinite;
}

@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}

.contact-form__status {
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-top: 12px;
  min-height: 1.5em;
}

.contact-form__status--success {
  color: var(--color-olive);
}

.contact-form__status--error {
  color: var(--color-coral);
}

/* Map — Leaflet, sharp edges, fills cell */
.contact__map {
  position: relative;
  z-index: var(--z-base);
  overflow: hidden;
  border-radius: 0;
  min-height: 300px;
  height: 100%;
}

#contact-map {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

/* Override Leaflet inline styles on custom marker (!important required) */
.contact__map-marker {
  background: none !important;
  border: none !important;
}

/* --------------------------------------------------------------------------
   10. Footer — Ciel etoile + guirlandes
   -------------------------------------------------------------------------- */
.footer {
  position: relative;
  background: radial-gradient(ellipse at 50% 0%, #2a1f14 0%, #0e0a06 70%);
  color: var(--color-white);
  padding: 80px 24px 32px;
  overflow: hidden;
}

/* Filet doré subtil en haut */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-golden);
  opacity: 0.35;
}

/* Etoiles CSS — pseudo-element */
.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1px 1px at 25% 8%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(
      1.5px 1.5px at 40% 22%,
      rgba(255, 255, 255, 0.7),
      transparent
    ),
    radial-gradient(1px 1px at 55% 5%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 70% 18%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(
      1.5px 1.5px at 85% 12%,
      rgba(255, 255, 255, 0.6),
      transparent
    ),
    radial-gradient(1px 1px at 95% 25%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 15% 30%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 60% 28%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(
      1.5px 1.5px at 78% 6%,
      rgba(255, 255, 255, 0.4),
      transparent
    );
  opacity: 0.8;
  z-index: 0;
}

.footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 24px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

#footer-info {
  display: flex;
}

.footer__name {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.footer__signoff {
  font-family: var(--font-accent);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 400;
  color: var(--color-golden);
  opacity: 0.8;
  margin-top: 8px;
}

.footer__deco {
  width: 80px;
  height: 16px;
  margin-top: 8px;
  opacity: 0.4;
}

.footer__label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.6;
}

.footer__value {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.5;
  opacity: 0.7;
}

.footer__instagram {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__instagram-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.footer__instagram-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  border-radius: 0;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.footer__instagram-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer__instagram-cta:hover::before {
  transform: scaleX(1);
}

.footer__instagram-cta:hover {
  border-color: var(--color-golden);
  color: var(--color-golden);
  box-shadow: 0 0 12px rgba(212, 164, 64, 0.2);
}

.footer__legal {
  text-align: center;
  padding-top: 16px;
  font-size: 0.75rem;
  opacity: 0.5;
}
.footer__legal a {
  color: inherit;
  text-decoration: none;
}
.footer__legal a:hover {
  text-decoration: underline;
}

.footer__copy {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* --------------------------------------------------------------------------
   11. Utilities
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 8px;
  z-index: var(--z-skip-link);
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-white);
  background: var(--color-text);
  text-decoration: none;
  border-radius: 0;
}

.skip-link:focus {
  top: 0;
  color: var(--color-white);
}

/* Scroll progress bar — thin fixed top */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: calc(var(--z-navbar) + 2);
  background: transparent;
  pointer-events: none;
}

.scroll-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(
    90deg,
    var(--color-terracotta),
    var(--color-golden)
  );
  transition: width 0.1s linear;
}

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

/* --------------------------------------------------------------------------
   12. Responsive — Tablet (768px+)
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
  :root {
    --section-padding: 80px 48px;
    --navbar-height: 72px;
  }

  /* Navbar: horizontal */
  .nav-toggle {
    display: none;
  }

  .navbar__links {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    gap: 32px;
    align-items: center;
    justify-content: flex-end;
  }

  .navbar__links a {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
  }

  .navbar:not(.navbar--solid) .navbar__links a {
    color: var(--color-white);
  }

  .navbar--solid .navbar__links a {
    color: var(--color-text);
  }

  .navbar__links a:hover {
    color: var(--color-terracotta);
  }

  .navbar__links .lang-toggle {
    display: inline-block;
  }

  /* Navbar underline animation */
  .navbar__links a {
    position: relative;
  }

  .navbar__links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  .navbar__links a:hover::after {
    transform: scaleX(1);
  }

  /* Hero */
  .hero__content {
    padding: 0 48px 100px;
    max-width: 900px;
  }

  /* La Carte: separateur entre colonnes */
  .carte__column:first-child {
    border-right: 1px solid rgba(212, 164, 64, 0.15);
    padding-right: 32px;
  }

  /* Contact: 2x2 grid layout */
  .contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0 48px;
    align-items: start;
  }

  .contact__cell--infos {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    padding-bottom: 32px;
  }

  .contact__cell--infos .contact__instagram {
    margin-top: auto;
  }

  .contact__cell--horaires {
    padding-bottom: 32px;
  }

  .contact__cell--form {
    border-top: 1px solid rgba(44, 24, 16, 0.06);
    padding-top: 32px;
  }

  .contact__cell--map {
    border-top: 1px solid rgba(44, 24, 16, 0.06);
    padding-top: 32px;
    align-self: stretch;
  }

  /* Footer */
  .footer {
    padding: 48px 48px 32px;
  }
}

/* --------------------------------------------------------------------------
   13. Responsive — Large Desktop (1024px+)
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) {
  :root {
    --section-padding: 100px 64px;
  }

  .navbar__inner {
    padding: 0 64px;
  }

  .hero__content {
    padding: 0 64px 120px;
    max-width: 1000px;
  }

  /* La Carte */
  .section--carte {
    padding: 100px 64px;
  }

  /* Agenda */
  .agenda__timeline {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* --------------------------------------------------------------------------
   14. Responsive — Mobile (max 767px)
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  /* Safe area insets for notch devices */
  .navbar__inner {
    padding-left: max(24px, env(safe-area-inset-left));
    padding-right: max(24px, env(safe-area-inset-right));
  }

  .navbar__links {
    padding-bottom: env(safe-area-inset-bottom);
  }

  /* Hero: CTA pinned to bottom of hero viewport */
  .hero__cta {
    position: absolute;
    bottom: 100px;
    left: 24px;
    right: 24px;
    z-index: var(--z-card);
    display: block;
    text-align: center;
    width: auto;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
  }

  /* Keywords: wrap on small mobile */
  .lieu__keywords {
    justify-content: flex-start;
    margin-bottom: 32px;
  }

  .lieu__keyword {
    font-size: 0.7rem;
  }

  /* Event cards: tighter padding, symmetric left/right */
  .event-card {
    padding: 20px 24px;
  }

  /* Contact: center title + text on mobile */
  .section__title {
    text-align: center;
  }

  .contact-item {
    text-align: center;
  }

  .contact__horaires-title {
    display: block;
    text-align: center;
  }

  .contact__horaires-grid {
    grid-template-columns: auto auto;
    justify-content: center;
  }

  /* Footer: center */
  .footer__instagram {
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   15. Hover Effects (only on devices with hover support)
   -------------------------------------------------------------------------- */

.lieu__image-wrapper img,
.lieu__wide-image img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (hover: hover) {
  .lieu__image-wrapper:hover img {
    transform: scale(1.03);
  }

  .lieu__wide-image:hover img {
    transform: scale(1.02);
  }
}

/* --------------------------------------------------------------------------
   16. Skeleton Loaders
   -------------------------------------------------------------------------- */
@keyframes skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.skeleton-line {
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(
    90deg,
    rgba(44, 24, 16, 0.06) 25%,
    rgba(44, 24, 16, 0.1) 50%,
    rgba(44, 24, 16, 0.06) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.8s ease-in-out infinite;
}

.skeleton-line--long {
  width: 80%;
}
.skeleton-line--medium {
  width: 60%;
}
.skeleton-line--short {
  width: 40%;
}
.skeleton-line--xs {
  width: 25%;
  height: 10px;
}
.skeleton-line--tag {
  width: 70px;
  height: 22px;
  border-radius: 0;
  margin-top: 4px;
}

/* Carte skeleton (dark background) */
.skeleton-item--carte .skeleton-line {
  background: linear-gradient(
    90deg,
    rgba(212, 164, 64, 0.08) 25%,
    rgba(212, 164, 64, 0.15) 50%,
    rgba(212, 164, 64, 0.08) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.8s ease-in-out infinite;
}

.skeleton-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(44, 24, 16, 0.04);
}

.skeleton-item--carte {
  border-bottom-color: rgba(212, 164, 64, 0.08);
}

/* Event skeleton cards */
.skeleton-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 28px 28px 32px;
  background: var(--color-white);
  border-left: 3px solid rgba(44, 24, 16, 0.06);
}

/* Error fallback (when Firestore fails) */
.carte__error,
.agenda__error {
  font-family: var(--font-body);
  font-size: 0.95rem;
  opacity: 0.7;
  padding: 20px 0;
}
.carte__error {
  color: var(--color-cream);
}
.agenda__error {
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   17. FAQ Page
   -------------------------------------------------------------------------- */
.faq-page {
  padding-top: calc(var(--navbar-height) + 48px);
  min-height: 100vh;
}

.faq-page__intro {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.faq-page__list {
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid rgba(44, 24, 16, 0.1);
}

.faq-item__question {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  color: var(--color-text);
  transition: color var(--transition);
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::before {
  content: "+";
  display: inline-block;
  width: 24px;
  font-weight: 600;
  color: var(--color-terracotta);
  transition: transform var(--transition);
}

.faq-item[open] > .faq-item__question::before {
  content: "−";
}

.faq-item__question:hover {
  color: var(--color-terracotta);
}

.faq-item__answer {
  padding: 0 0 24px 24px;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.faq-item__answer p {
  margin-bottom: 12px;
}

.faq-item__answer p:last-child {
  margin-bottom: 0;
}

.faq-item__answer ul {
  padding-left: 20px;
  margin-bottom: 12px;
  list-style: disc;
}

.faq-item__answer li {
  margin-bottom: 4px;
}

.faq-item__answer a {
  color: var(--color-terracotta);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-item__answer a:hover {
  color: var(--color-olive);
}

.faq-page__cta {
  margin-top: 48px;
  padding: 24px;
  background: var(--color-cream);
  border-radius: 8px;
  max-width: 720px;
}

.faq-page__cta p {
  color: var(--color-text-muted);
}

.faq-page__cta a {
  color: var(--color-terracotta);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-page__cta a:hover {
  color: var(--color-olive);
}

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

/* --------------------------------------------------------------------------
   18. Coming Soon Gate
   -------------------------------------------------------------------------- */
.gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-dark);
  transition: opacity 0.5s ease;
}

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

.gate__content {
  text-align: center;
  padding: 32px 24px;
  max-width: 400px;
  width: 100%;
}

.gate__title {
  font-family: var(--font-accent);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--color-cream);
  margin-bottom: 16px;
}

.gate__message {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-golden);
  margin-bottom: 8px;
}

.gate__subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(245, 237, 224, 0.5);
  margin-bottom: 40px;
}

.gate__login-toggle {
  background: none;
  border: 1px solid rgba(245, 237, 224, 0.2);
  color: rgba(245, 237, 224, 0.4);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 24px;
  cursor: pointer;
  transition: all var(--transition);
}

.gate__login-toggle:hover {
  border-color: rgba(245, 237, 224, 0.4);
  color: rgba(245, 237, 224, 0.7);
}

.gate__login {
  margin-top: 24px;
  flex-direction: column;
  gap: 12px;
}

.gate__login:not([hidden]) {
  display: flex;
}

.gate__login input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-cream);
  background: rgba(245, 237, 224, 0.08);
  border: 1px solid rgba(245, 237, 224, 0.2);
  border-radius: 0;
  transition: border-color var(--transition);
}

.gate__login input::placeholder {
  color: rgba(245, 237, 224, 0.35);
}

.gate__login input:focus {
  border-color: var(--color-golden);
  outline: none;
}

.gate__login button[type="submit"] {
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-dark);
  background: var(--color-golden);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}

.gate__login button[type="submit"]:hover {
  background: #c49a38;
}

.gate__error {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-coral);
  min-height: 1.2em;
}
