/* ═══════════════════════════════════════════════════════════════
   Couleur Terroir — v3
   DA : Ancré · Aéré · Authentique
   Polices : Cormorant Garamond (display) + DM Sans (body)
   Palette : vert forêt / bordeaux / brun terroir / lin
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ═══════════════════════════════════════
   TOKENS — toutes les valeurs en variables
═══════════════════════════════════════ */
:root {
  /* Couleurs — palette validée */
  --color-primary:      #4e5b3e;   /* Vert forêt */
  --color-primary-dk:   #3a4430;   /* Vert foncé hover */
  --color-secondary:    #702828;   /* Bordeaux */
  --color-secondary-md: #8a3232;   /* Bordeaux hover */
  --color-accent:       #643b0a;   /* Brun terroir */
  --color-bg:           #faf7f2;   /* Fond principal */
  --color-bg-alt:       #d2c4af;   /* Fond sable */
  --color-bg-warm:      #f0e9dd;   /* Fond intermédiaire */
  --color-text:         #1a1a1a;   /* Texte principal */
  --color-muted:        #5a5349;   /* Texte secondaire */
  --color-white:        #ffffff;
  --color-border:       rgba(78, 91, 62, 0.15);

  /* Ombres */
  --shadow-sm:  0 2px 12px rgba(26,26,26,.06);
  --shadow-md:  0 8px 32px rgba(26,26,26,.10);
  --shadow-lg:  0 20px 60px rgba(26,26,26,.13);

  /* Typographies */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  /* Espacements */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  2rem;
  --sp-lg:  4rem;
  --sp-xl:  6.5rem;

  /* Bordures */
  --radius:    4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Transitions */
  --dur-1: 200ms;
  --dur-2: 420ms;
  --ease:  cubic-bezier(.22,.8,.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }
html, body { max-width: 100%; overflow-x: hidden; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img, picture { display: block; }
img { max-width: 100%; height: auto; vertical-align: middle; }
figure { margin: 0; }
address { font-style: normal; }

/* Utilitaires */
.container { width: min(1160px, 92%); margin-inline: auto; }
.muted { color: var(--color-muted); }

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

/* Focus visible — contraste minimum */
:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 3px;
}

/* Label de section — petite étiquette au-dessus des H2 */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.85rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 1.75rem;
  height: 1px;
  background: var(--color-accent);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   ANIMATIONS REVEAL (IntersectionObserver)
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--dur-2) var(--ease),
    transform var(--dur-2) var(--ease);
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-1), box-shadow var(--dur-1) var(--ease);
}

.site-header.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1rem;
}

/* Logo */
.brand, .brand a {
  display: flex;
  align-items: center;
  transition: opacity var(--dur-1);
}

.brand:hover, .brand a:hover { opacity: 0.82; }

.brand-logo,
.custom-logo-link img {
  height: 52px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 3px 8px rgba(26,26,26,.09));
}

@media (min-width: 900px) {
  .brand-logo, .custom-logo-link img { height: 64px; }
}

/* Menu nav */
.nav { display: block; }

.menu {
  display: flex;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.menu a {
  display: block;
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  position: relative;
  transition: color var(--dur-1);
}

/* Underline animé */
.menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem; right: 1rem;
  height: 1px;
  background: var(--color-secondary);
  transform: scaleX(0);
  transition: transform var(--dur-2) var(--ease);
}

.menu a:hover { color: var(--color-primary); }
.menu a:hover::after { transform: scaleX(1); }

/* CTAs header — masqués sur mobile (le nav couvre déjà ces liens) */
.header-ctas {
  display: none;
}

@media (min-width: 900px) {
  .header-ctas {
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }
}

/* Badge ouverture */
.badge-opening {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-muted);
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 99px;
  white-space: nowrap;
}

/* ═══════════════════════════════════════
   BOUTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background var(--dur-1),
    color var(--dur-1),
    border-color var(--dur-1),
    transform var(--dur-1) var(--ease),
    box-shadow var(--dur-1) var(--ease);
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Primaire — bordeaux */
.btn-primary {
  background: var(--color-secondary);
  color: var(--color-white);
  box-shadow: 0 3px 14px rgba(112,40,40,.25);
}

.btn-primary:hover {
  background: var(--color-secondary-md);
  box-shadow: 0 8px 28px rgba(112,40,40,.32);
}

/* Secondaire — vert */
.btn-secondary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 3px 14px rgba(78,91,62,.2);
}

.btn-secondary:hover {
  background: var(--color-primary-dk);
  box-shadow: 0 8px 28px rgba(78,91,62,.28);
}

/* Ghost — transparent fond clair */
.btn-ghost {
  background: rgba(255,255,255,.7);
  color: var(--color-text);
  border-color: rgba(26,26,26,.18);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: var(--color-white);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Ghost inversé — sur fond sombre */
.btn-ghost-inv {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,.4);
}

.btn-ghost-inv:hover {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* État bientôt */
.btn-soon {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero { overflow: hidden; }

/* Override container so the image column stretches to the viewport edge */
.hero .hero-inner {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 56fr 44fr;
  min-height: 100svh;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem var(--sp-md) var(--sp-lg);
  /* Push text to align with the rest of the page content */
  padding-left: max(var(--sp-md), calc((100vw - 1160px) / 2 + var(--sp-md)));
  padding-right: var(--sp-md);
}

/* Kicker */
.kicker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.kicker > span:first-child {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.kicker > span:first-child::before {
  content: '';
  display: block;
  width: 1.75rem;
  height: 1px;
  background: var(--color-accent);
}

/* SEO : H1 */
.hero-copy > h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--color-primary);
  margin: 0 0 1.25rem;
  letter-spacing: -0.01em;
}

.hero-copy > h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--color-secondary);
}

.hero-copy > p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-muted);
  max-width: 40ch;
  margin: 0 0 2rem;
  line-height: 1.8;
}

/* CTAs — above the fold sur mobile */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

/* Mini infos pratiques */
.mini-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.mini-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.mini-icon {
  flex-shrink: 0;
  color: var(--color-accent);
  margin-top: 0.1rem;
}

.mini-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.mini-text strong {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.mini-link, .mini-muted {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--color-muted);
  transition: color var(--dur-1);
}

.mini-link:hover { color: var(--color-secondary); }

/* Partie image hero */
.hero-media {
  position: relative;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-photo picture, .hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Dégradé de liaison gauche */
.hero-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--color-bg) 0%, transparent 8%);
  z-index: 1;
  pointer-events: none;
}

/* Carte flottante */
.hero-float-card {
  position: absolute;
  bottom: var(--sp-md);
  left: var(--sp-md);
  z-index: 2;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  min-width: 200px;
  box-shadow: var(--shadow-md);
}

.float-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.6rem;
}

.float-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.3rem;
  border-bottom: 1px solid var(--color-border);
}

.float-row:last-child { border-bottom: none; }
.float-label { font-size: 0.75rem; font-weight: 300; color: var(--color-muted); }
.float-value { font-size: 0.78rem; font-weight: 500; color: var(--color-primary); text-align: right; }

.float-value a, a.float-value {
  color: var(--color-primary);
  transition: color var(--dur-1);
}

.float-value a:hover, a.float-value:hover { color: var(--color-secondary); }

/* ═══════════════════════════════════════
   SECTION ACCÈS RAPIDE
═══════════════════════════════════════ */
.section--paper { background: var(--color-bg-warm); }

.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  padding-block: var(--sp-lg);
}

.quick-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition:
    transform var(--dur-2) var(--ease),
    box-shadow var(--dur-2) var(--ease);
}

.quick-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.quick-card.is-disabled { pointer-events: none; opacity: 0.72; }

.quick-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.quick-thumb picture, .quick-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.quick-card:hover .quick-thumb img { transform: scale(1.04); }

.quick-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-primary);
  padding: 1rem 1.25rem 0.25rem;
  line-height: 1.2;
}

.quick-value {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--color-muted);
  padding: 0 1.25rem 1.25rem;
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   SECTIONS GÉNÉRIQUES
═══════════════════════════════════════ */
.section { padding-block: var(--sp-xl); }

.section-head { margin-bottom: var(--sp-lg); }

/* SEO : H2 */
.section-head h2, h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1.1;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}

h2 em { font-style: italic; color: var(--color-secondary); }

/* SEO : H3 */
h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.2;
  margin: 0 0 0.5rem;
}

.section-head p.muted {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-muted);
  max-width: 44ch;
  line-height: 1.8;
  margin: 0 0 var(--sp-md);
}

/* Split 2 colonnes */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: start;
}

/* ═══════════════════════════════════════
   SECTION CARTE
═══════════════════════════════════════ */
#carte .section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: end;
  margin-bottom: var(--sp-lg);
}

/* Tags catégories */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: var(--sp-sm);
}

.tag {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.85rem;
  border-radius: 99px;
  border: 1px solid rgba(78, 91, 62, 0.3);
  color: var(--color-primary);
  transition: all var(--dur-1);
}

.tag:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* Aperçu carte image */
.menu-cartes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--sp-md);
  margin-top: var(--sp-lg);
}

.menu-cartes-grid .menu-preview {
  max-width: none;
  margin-inline: 0;
}

.menu-preview {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 760px;
  margin-inline: auto;
}

.menu-preview img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease);
}

.menu-preview:hover img { transform: scale(1.015); }

.menu-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-md);
  opacity: 0;
  transition: opacity var(--dur-2) var(--ease);
}

.menu-preview:hover .menu-preview-overlay { opacity: 1; }

.menu-actions {
  display: flex;
  justify-content: center;
  gap: var(--sp-sm);
  margin-top: var(--sp-lg);
}

/* ═══════════════════════════════════════
   SECTION AMBIANCE (galerie)
═══════════════════════════════════════ */
.section--warm { background: var(--color-bg-alt); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 300px 220px;
  gap: 0.75rem;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gallery-item--tall { grid-row: 1 / 3; }

.gallery-item picture, .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}

.gallery-item:hover img { transform: scale(1.05); }

/* ═══════════════════════════════════════
   SECTION RÉSERVATION (fond vert)
═══════════════════════════════════════ */
.section--green { background: var(--color-primary); }

.section--green .section-label { color: var(--color-bg-alt); }
.section--green .section-label::before { background: var(--color-bg-alt); }
.section--green h2 { color: var(--color-white); }
.section--green h2 em { color: var(--color-bg-alt); }
.section--green p.muted { color: rgba(255,255,255,.6); }

/* Carte horaires */
.card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: var(--sp-md) 1.75rem;
}

.card-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-bg-alt);
  margin-bottom: 0.75rem;
}

.card-big {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.card-note { font-size: 0.85rem; }

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.4rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 0.85rem;
}

.hours-row:last-child { border-bottom: none; }
.hours-day { color: rgba(255,255,255,.6); font-weight: 300; }
.hours-time { color: var(--color-white); font-weight: 400; }
.hours-closed { color: rgba(255,255,255,.3); }

/* ═══════════════════════════════════════
   SECTION CONTACT
═══════════════════════════════════════ */
.contact-cards {
  display: flex;
  gap: var(--sp-md);
  margin-bottom: var(--sp-md);
  flex-wrap: wrap;
}

.contact-card { display: flex; flex-direction: column; gap: 0.3rem; }

.contact-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.contact-value {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.5;
}

.contact-value a, a.contact-value {
  color: var(--color-primary);
  border-bottom: 1px solid rgba(78,91,62,.25);
  padding-bottom: 1px;
  transition: color var(--dur-1), border-color var(--dur-1);
}

.contact-value a:hover, a.contact-value:hover {
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

/* Carte avec image + map */
.card-media {
  background: var(--color-white);
  border: none;
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
}

.card-photo { aspect-ratio: 4 / 3; overflow: hidden; }
.card-photo picture, .card-photo img {
  width: 100%; height: 100%; object-fit: cover;
}

.card-body { padding: var(--sp-md) 1.5rem 1.5rem; }

.map-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  height: 200px;
  margin-bottom: 1rem;
}

.map-embed iframe { width: 100%; height: 100%; border: none; display: block; }

.map-btn { margin-top: 0.25rem; }

/* ═══════════════════════════════════════
   FORMULAIRES
   Accessibilité WCAG AA — contraste 4.5:1
═══════════════════════════════════════ */
.form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* Labels sur fond vert */
.section--green .form label { color: rgba(255,255,255,.5); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* Inputs — fond clair */
.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form input[type="date"],
.form select,
.form textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-white);
  border: 1.5px solid rgba(78,91,62,.2);
  border-radius: var(--radius);
  padding: 0.75rem 0.9rem;
  width: 100%;
  transition: border-color var(--dur-1), box-shadow var(--dur-1);
  -webkit-appearance: none;
}

/* Inputs — fond vert (réservation) */
.section--green .form input[type="text"],
.section--green .form input[type="email"],
.section--green .form input[type="tel"],
.section--green .form input[type="date"],
.section--green .form select,
.section--green .form textarea {
  color: var(--color-white);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
}

.form input::placeholder,
.form textarea::placeholder { color: rgba(90,83,73,.4); }

.section--green .form input::placeholder,
.section--green .form textarea::placeholder { color: rgba(255,255,255,.3); }

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(78,91,62,.12);
}

.section--green .form input:focus,
.section--green .form select:focus,
.section--green .form textarea:focus {
  border-color: var(--color-bg-alt);
  box-shadow: 0 0 0 3px rgba(210,196,175,.15);
}

.form textarea { min-height: 110px; resize: vertical; }

/* Retours formulaire */
.notice {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 400;
  margin-bottom: var(--sp-sm);
}

.notice--ok {
  background: rgba(78,91,62,.1);
  color: var(--color-primary);
  border: 1px solid rgba(78,91,62,.25);
}

.notice--err {
  background: rgba(112,40,40,.08);
  color: var(--color-secondary);
  border: 1px solid rgba(112,40,40,.2);
}

/* ═══════════════════════════════════════
   FOOTER — schema.org LocalBusiness
═══════════════════════════════════════ */
.site-footer {
  background: var(--color-text);
  padding-block: var(--sp-lg);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--sp-lg);
  padding-bottom: var(--sp-md);
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: var(--sp-md);
}

.footer-brand {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.footer-meta {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
}

.footer-link {
  color: rgba(255,255,255,.5);
  transition: color var(--dur-1);
}

.footer-link:hover { color: var(--color-white); }

.footer-hours { margin-top: 0.4rem; font-size: 0.82rem; }

.footer-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 0.85rem;
}

.footer-menu {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-menu a {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  transition: color var(--dur-1);
}

.footer-menu a:hover { color: var(--color-white); }

.footer-pdf { margin-top: 0.75rem; }

.footer-pdf a {
  font-size: 0.78rem;
  color: rgba(255,255,255,.35);
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding-bottom: 1px;
  transition: color var(--dur-1), border-color var(--dur-1);
}

.footer-pdf a:hover { color: var(--color-white); border-color: rgba(255,255,255,.4); }

.footer-copy {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255,255,255,.25);
  padding-top: 0.5rem;
}

/* ═══════════════════════════════════════
   PAGE CARTE — cartes menus
═══════════════════════════════════════ */

.carte-page { padding: var(--sp-xl) 0 var(--sp-xxl); }

.carte-header {
  text-align: center;
  margin-bottom: var(--sp-xl);
}

.carte-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.carte-subtitle {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.carte-menus-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
  align-items: start;
}

.carte-menu-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.carte-menu-box-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.carte-menu-box-body {
  padding: var(--sp-md) 1.75rem;
}

.carte-menu-box h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--color-secondary);
  margin: 0 0 var(--sp-sm);
  line-height: 1.1;
}

.carte-menu-box h2 em {
  font-style: italic;
  font-weight: 400;
}

.menu-section { margin-top: var(--sp-sm); }

.menu-section h3 {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-muted);
  margin: 0 0 0.5rem;
}

.menu-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-section li {
  font-size: 0.93rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  line-height: 1.4;
}

.menu-section li:last-child { border-bottom: none; }

.menu-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--color-secondary);
  margin-top: var(--sp-sm);
  padding-top: var(--sp-xs);
  border-top: 2px solid var(--color-border);
  line-height: 1;
}

.menu-price small {
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-muted);
  display: block;
  margin-top: 0.2rem;
}

.menu-pitchoun-row {
  margin-bottom: var(--sp-xl);
}

.menu-pitchoun-row .carte-menu-box {
  max-width: 420px;
}

.carte-section {
  margin-bottom: var(--sp-xl);
}

.carte-category-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--color-primary);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--sp-sm);
}

.carte-category-sub {
  font-size: 0.8rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-muted);
  margin-left: 0.75rem;
}

.carte-accompagnements {
  font-size: 0.88rem;
  color: var(--color-muted);
  margin-bottom: var(--sp-sm);
}

.carte-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xs) var(--sp-md);
}

.carte-item { padding: 0.6rem 0; border-bottom: 1px solid var(--color-border); }
.carte-item:last-child { border-bottom: none; }

.carte-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}

.carte-item-name {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-primary);
}

.carte-item-price {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.carte-item-desc {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 0.15rem;
}

.carte-desserts .carte-item-desc {
  font-style: italic;
  font-size: 0.95rem;
}

.carte-item-price--label {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--color-muted);
}

.carte-coupes-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
}

.carte-coupes-subtitle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: var(--sp-xs);
}

.carte-parfums {
  margin-top: var(--sp-md);
  padding: var(--sp-sm);
  background: var(--color-bg-warm);
  border-radius: var(--radius-md);
}

.carte-parfums-prix {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

/* ═══════════════════════════════════════
   RESPONSIVE — Mobile first
═══════════════════════════════════════ */

/* ════════════════════════════════════════════════
   SOIRÉE BRASERO
════════════════════════════════════════════════ */

/* Carte sur fond clair (≠ .card qui est pour section--green) */
.brasero-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-md) 1.75rem;
}

.brasero-affiches {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--sp-md);
  margin-top: var(--sp-lg);
}


/* Header 2 colonnes (identique à #carte .section-head) */
#brasero .section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: end;
  margin-bottom: var(--sp-lg);
}

.brasero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: var(--sp-md);
  align-items: start;
}

.brasero-formule-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  margin-bottom: 0.2rem;
}

.brasero-formule-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-secondary);
  line-height: 1.05;
  margin-bottom: 0.2rem;
}

.brasero-formule-price {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.brasero-formule-price span {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--color-muted);
}

.brasero-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--color-border);
  padding-top: 0.75rem;
}

.brasero-menu-list li {
  padding: 0.45rem 0;
  font-size: 0.92rem;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  line-height: 1.5;
}

.brasero-menu-list li:last-child { border-bottom: none; }

.brasero-menu-list .ou {
  display: block;
  text-align: center;
  font-size: 0.72rem;
  font-style: italic;
  color: var(--color-muted);
  padding: 0.1rem 0;
}

.brasero-carte-title {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1.5px solid var(--color-secondary);
}

.brasero-carte-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.brasero-carte-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.88rem;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

.brasero-carte-list li:last-child { border-bottom: none; }

.brasero-carte-list li span:last-child {
  white-space: nowrap;
  font-weight: 600;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ≤ 900px */
@media (max-width: 900px) {
  :root { --sp-lg: 3rem; --sp-xl: 4.5rem; }

  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding: var(--sp-md) var(--sp-sm) var(--sp-md); order: 2; }
  .kicker { display: none; }
  .hero-media { order: 1; height: 56vw; min-height: 240px; }
  .hero-media::before {
    background: linear-gradient(to bottom, var(--color-bg) 0%, transparent 12%);
  }
  .hero-float-card { display: none; }

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

  #carte .section-head { grid-template-columns: 1fr; gap: var(--sp-md); }

  .split { grid-template-columns: 1fr; gap: var(--sp-lg); }

  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { aspect-ratio: 4 / 3; height: auto; }
  .gallery-item--tall { grid-row: auto; }

  .brasero-grid { grid-template-columns: 1fr; }
  #brasero .section-head { grid-template-columns: 1fr; gap: var(--sp-md); }
  .brasero-affiches { grid-template-columns: 1fr; }
  .menu-cartes-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: var(--sp-md); }
  .form-row { grid-template-columns: 1fr; }

  .split .btn,
  #brasero .section-head .btn {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    align-items: center;
  }

  .hero-actions .btn {
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 400px;
  }

  .carte-menus-row { grid-template-columns: 1fr; }
  .carte-grid { grid-template-columns: 1fr; }
  .menu-pitchoun-row .carte-menu-box { max-width: 100%; }
}

/* ≤ 480px */
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .contact-cards { flex-direction: column; gap: var(--sp-sm); }
  .menu-actions { flex-direction: column; align-items: center; }
  .menu-actions .btn { width: 100%; max-width: 420px; justify-content: center; }
  .hide-sm { display: none; }
}
