/* ==========================================================================
   Le Jardin de Loulou — Radical Editorial Redesign v20
   Inspired by theskylarknyc.com & chalet-des-iles.com
   Mobile-first · Asymmetric layouts · Condensed typography
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Custom Properties
   -------------------------------------------------------------------------- */
:root {
  /* Palette */
  --color-bg:         #FFF8F0;
  --color-bg-warm:    #F5EDE0;
  --color-bg-green:   #EEF2E6;
  --color-bg-carte:   #2C1810;
  --color-bg-yellow:  #FDF6E9;
  --color-text:       #2C1810;
  --color-text-muted: #6B5744;
  --color-terracotta: #C67B5C;
  --color-olive:      #5A7247;
  --color-golden:     #D4A440;
  --color-coral:      #C85A4A;
  --color-cream:      #F5F0E1;
  --color-dark:       #1E1108;
  --color-white:      #FFFFFF;

  /* Typography — radical change */
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', 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;
}

/* --------------------------------------------------------------------------
   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: 600;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

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: 9998;
  opacity: 0.04;
  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: 1000;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar--solid {
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(44, 24, 16, 0.06);
}

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

.navbar__logo {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
  z-index: 1001;
  letter-spacing: 0;
}

/* 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: 999;
}

.navbar__links a {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  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: 1001;
}

.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: 1001;
  width: 32px;
  height: 32px;
  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 .nav-toggle {
  color: var(--color-text);
}

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

.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) !important;
  border-color: rgba(44, 24, 16, 0.2) !important;
}

/* --------------------------------------------------------------------------
   4. Hero — Cinematic, photo-dominant
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 17, 8, 0) 0%,
    rgba(30, 17, 8, 0.1) 25%,
    rgba(30, 17, 8, 0.55) 50%,
    rgba(30, 17, 8, 0.85) 75%,
    rgba(30, 17, 8, 0.92) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 24px 80px;
  max-width: 900px;
  text-align: center;
}

.hero__lights {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  width: 100%;
  height: 60px;
  z-index: 3;
  pointer-events: none;
}

.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 3;
}

/* Tagline hidden in radical redesign */
.hero__tagline {
  display: none;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(2.8rem, 8vw, 4.5rem);
  line-height: 0.9;
  margin-bottom: 24px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

/* Hero info strip */
.hero__info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}

.hero__info-item {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero__info-sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  padding: 0 12px;
  font-weight: 300;
}

/* Ghost CTA button */
.hero__cta {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 14px 40px;
  margin-top: -40px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 0;
  text-decoration: none;
  transition: all var(--transition);
}

.hero__cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
  color: var(--color-white);
  transform: scale(1.02);
  box-shadow: none;
}

.hero__scroll {
  display: none;
}

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

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

/* Section titles — DRAMATIC condensed uppercase */
.section__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(2.8rem, 8vw, 4.5rem);
  line-height: 0.9;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 48px;
  color: var(--color-text);
}

/* Remove ALL decorative ornaments under titles */
.section__title::after {
  display: none;
}

/* Section wave separators */
.section__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  display: block;
  z-index: 2;
}

/* 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 — Asymmetric 35/65 split
   -------------------------------------------------------------------------- */
.lieu__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
}

.lieu__text {
  max-width: 100%;
  padding: 32px 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: 480px;
}

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

.lieu__image-wrapper {
  overflow: hidden;
  position: relative;
  border-radius: 0;
  box-shadow: none;
}

/* Remove decorative border overlay on images */
.lieu__image-wrapper::before {
  display: none;
}

.lieu__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.image-reveal {
  position: relative;
  overflow: hidden;
}

.image-reveal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-terracotta);
  transform-origin: left;
  z-index: 2;
}

/* Keywords — horizontal subtitle under section title */
.lieu__keywords {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
}

.lieu__keyword {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: none;
  padding: 0;
  border-radius: 0;
  border: none;
  transition: color var(--transition), transform var(--transition);
}

.lieu__keyword + .lieu__keyword::before {
  content: '·';
  padding: 0 12px;
  color: var(--color-terracotta);
  font-weight: 400;
}

/* Remove rotations */
.lieu__keyword:nth-child(odd),
.lieu__keyword:nth-child(even) {
  transform: none;
}

.lieu__keyword:hover {
  color: var(--color-terracotta);
  transform: translateY(-2px);
  box-shadow: none;
}

/* Pull quote — clean, editorial */
.lieu__pullquote {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--color-terracotta);
  border-left: 2px solid var(--color-terracotta);
  padding: 0 0 0 24px;
  margin: 32px 0;
  max-width: 420px;
  background: none;
  border-radius: 0;
}

.lieu__pullquote::before {
  display: none;
}

/* Wide image — in reverse split */
.lieu__wide-image {
  display: block;
}

.lieu__wide-image {
  overflow: hidden;
  position: relative;
}

.lieu__image--wide {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: 0;
}

/* Reverse grid: photo left, text right on desktop */
.lieu__grid--reverse {
  margin-top: 48px;
}

.lieu__grid--reverse .lieu__text {
  padding: 24px 0 0;
}

@media (min-width: 768px) {
  .lieu__grid--reverse {
    display: flex;
    align-items: stretch;
  }

  .lieu__grid--reverse .lieu__wide-image {
    flex: 1;
    min-height: 450px;
  }

  .lieu__grid--reverse .lieu__text {
    flex: 0 0 38%;
    padding: 48px 0 48px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .lieu__grid--reverse .lieu__text {
    flex: 0 0 35%;
    padding: 64px 0 64px 72px;
  }
}

/* --------------------------------------------------------------------------
   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,
    var(--color-bg-carte);
  padding: 80px 24px;
}

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

.section--carte .section__title {
  color: var(--color-cream);
  text-align: center;
}

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

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

.carte__category {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-golden);
  background: none;
  padding: 0 0 12px;
  border-radius: 0;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(212, 164, 64, 0.3);
  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;
}

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

.carte-item:hover {
  background: rgba(212, 164, 64, 0.04);
}

.carte-item__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.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;
}

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

/* --------------------------------------------------------------------------
   8. Agenda — Constrained grid
   -------------------------------------------------------------------------- */
.section--green .section__title {
  text-align: center;
}

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

.agenda__timeline::before {
  display: none;
}

.event-card {
  position: relative;
  background: var(--color-white);
  border-radius: 0;
  padding: 28px 28px 28px 32px;
  box-shadow: none;
  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;
}

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

.event-card::before {
  display: 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;
}

.event-card__tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  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: none;
  border: 1px solid var(--color-olive);
}

.event-card__tag--special {
  color: var(--color-terracotta);
  background: none;
  border: 1px solid var(--color-terracotta);
}

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

/* Event card accent bars */
.event-card--soiree::after,
.event-card--musique::after,
.event-card--dj::after,
.event-card--sport::after {
  display: none;
}

.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: 0 4px 16px rgba(44, 24, 16, 0.06);
  transform: translateY(-2px);
  border-left-color: var(--color-olive);
}

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

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

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

/* Left column: info items + Instagram */
.contact__left {
  display: flex;
  flex-direction: column;
}

.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: 32px 0;
  border-top: 1px solid rgba(44, 24, 16, 0.06);
}

.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 var(--color-terracotta);
  color: var(--color-terracotta);
  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;
}

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

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

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

/* Contact form — inside left column */
.contact-form {
  padding-top: 32px;
  border-top: 1px solid rgba(44, 24, 16, 0.06);
}

.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.15);
  border-radius: 0;
  outline: none;
  transition: border-color var(--transition);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--color-olive);
}

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

.contact-form__submit {
  display: inline-block;
  padding: 14px 40px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-olive);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background var(--transition);
  margin-top: 8px;
}

.contact-form__submit:hover {
  background: #4a6339;
}

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

.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, rounded, fills right column */
.contact__map {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 12px;
  min-height: 300px;
}

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

/* Hide Leaflet's default marker shadow */
.contact__map-marker {
  background: none !important;
  border: none !important;
}

/* --------------------------------------------------------------------------
   10. Footer — Minimal, dark contrast break
   -------------------------------------------------------------------------- */
.footer {
  position: relative;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 48px 24px 32px;
}

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

.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: none;
}

.footer__name {
  font-family: var(--font-accent);
  font-size: 2rem;
  font-weight: 500;
}

.footer__signoff {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.5;
}

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

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

.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: 20px;
  height: 20px;
  fill: currentColor;
  opacity: 0.6;
  flex-shrink: 0;
}

.footer__instagram-cta {
  display: inline-block;
  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);
}

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

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

/* --------------------------------------------------------------------------
   11. Utilities
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 8px;
  z-index: 10000;
  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);
}

.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;
  }

  /* Le Lieu: 35/65 asymmetric split */
  .lieu__grid {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }

  .lieu__text {
    flex: 0 0 38%;
    padding: 48px 48px 48px 0;
  }

  .lieu__image-wrapper {
    flex: 1;
  }

  .lieu__image-wrapper img {
    height: 100%;
    min-height: 450px;
  }

  /* Wide image — match bloc 1 height */
  .lieu__image--wide {
    height: 100%;
    min-height: 450px;
  }

  /* La Carte: 2-column */
  .carte__grid {
    flex-direction: row;
    gap: 64px;
  }

  .carte__column {
    flex: 1;
  }

  .carte__column:first-child {
    border-right: 1px solid rgba(212, 164, 64, 0.15);
    padding-right: 64px;
  }

  /* Agenda: 2-column grid */
  .agenda__timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .event-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  /* Contact: side-by-side layout */
  .contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
  }

  .contact__left {
    padding-right: 48px;
    justify-content: center;
  }

  /* 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: 800px;
  }

  /* Le Lieu: 35/65 with generous gutter */
  .lieu__text {
    flex: 0 0 35%;
    padding: 64px 72px 64px 0;
  }

  .lieu__image--wide {
    height: 100%;
    min-height: 450px;
  }

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

  /* Agenda */
  .agenda__timeline {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    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: 4;
    display: block;
    text-align: center;
    width: auto;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
  }

  /* Hero info: stack vertically, centered */
  .hero__info {
    flex-direction: column;
    gap: 4px;
    align-items: center;
  }

  .hero__info-sep {
    display: none;
  }

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

  .lieu__keyword {
    font-size: 0.7rem;
  }

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

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