:root {
  --blanc-rose: #FFF9F6;
  --vert-sauge: #728a5c;
  --vert-sauge-fonce: #5c7249;
  --orange-grise: #d59876;
  --noir: #1a1a1a;
  --jaune-sable: #E7C98A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--noir);
  background: var(--blanc-rose);
  line-height: 1.6;
}

h1, h2, h3, .titre-accent {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

a { text-decoration: none; color: inherit; }

img { display: block; max-width: 100%; }

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blanc-rose);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--vert-sauge-fonce);
  flex-shrink: 0;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 36px;
}

nav a {
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--orange-grise);
  transition: width 0.25s ease;
}

nav a:hover::after { width: 100%; }
 
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--noir);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(26,26,26,0.45), rgba(26,26,26,0.55)),
              url('Images/Assiète\ hero.jpg') center/cover;
}

.hero-content {
  position: relative;
  color: var(--blanc-rose);
  padding: 0 24px;
  max-width: 720px;
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--jaune-sable);
  margin-bottom: 18px;
  display: block;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: 1.02;
  margin-bottom: 22px;
}
 
.hero p {
  font-size: 1.15rem;
  color: rgba(255,249,246,0.92);
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
 
.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
 
.btn-primary {
  background: var(--vert-sauge);
  color: var(--blanc-rose);
}
 
.btn-secondary {
  background: transparent;
  color: var(--blanc-rose);
  border: 1.5px solid rgba(255,249,246,0.7);
}
 
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
 
/* ===== PRESENTATION ===== */
.presentation {
  max-width: 1180px;
  margin: 0 auto;
  padding: 110px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
 
.presentation-text .surtitre {
  color: var(--orange-grise);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  margin-bottom: 16px;
  display: block;
}
 
.presentation-text h2 {
  font-size: 2.4rem;
  margin-bottom: 24px;
  color: var(--vert-sauge-fonce);
}
 
.presentation-text p {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 18px;
  text-align: justify;
}
 
.presentation-img {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
 
.presentation-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 
/* ===== GALERIE ===== */
.galerie {
  background: var(--vert-sauge);
  padding: 110px 32px;
}
 
.galerie-header {
  max-width: 1180px;
  margin: 0 auto 56px;
  text-align: center;
  color: var(--blanc-rose);
}
 
.galerie-header .surtitre {
  color: var(--jaune-sable);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  margin-bottom: 16px;
  display: block;
}
 
.galerie-header h2 { font-size: 2.4rem; }
 
.galerie-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
 
.galerie-grid figure {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: rgba(255,249,246,0.15);
}
 
.galerie-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
 
.galerie-grid figure:hover img { transform: scale(1.06); }
 
/* ===== FOOTER ===== */
footer {
  background: var(--noir);
  color: var(--blanc-rose);
  padding: 80px 32px 32px;
}
 
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
}
 
.footer-brand .logo { color: var(--jaune-sable); margin-bottom: 14px; }
 
.footer-brand p {
  color: rgba(255,249,246,0.65);
  font-size: 0.95rem;
  max-width: 320px;
}
 
.footer-col h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--jaune-sable);
  margin-bottom: 18px;
}
 
.footer-col p, .footer-col a {
  color: rgba(255,249,246,0.8);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 10px;
}
 
.footer-col a:hover { color: var(--jaune-sable); }
 
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}
 
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,249,246,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.footer-bottom {
  max-width: 1180px;
  margin: 0;
  border-top: 1px solid rgba(255,249,246,0.15);
  padding-top: 20px;
  font-size: 0.85rem;
  color: rgba(255,249,246,0.5);
  text-align: center;
}
 
 
/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  nav ul { display: none; }
  .nav-toggle { display: flex; }
  .presentation { grid-template-columns: 1fr; gap: 40px; padding: 70px 24px; }
  .galerie { padding: 70px 24px; }
  .galerie-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3.2rem); }

  /* Menu mobile déroulant, activé par JavaScript via la classe .nav-open */
  nav.nav-open ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--blanc-rose);
    padding: 24px 32px;
    gap: 22px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  }
 
  header { position: sticky; }
 
  .header-inner { position: relative; }
 
  /* Transforme le hamburger en croix quand le menu est ouvert */
  .nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
 
  .nav-toggle span {
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
}
 
@media (max-width: 480px) {
  .galerie-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .btn { width: 100%; text-align: center; }
}
 
/* Accessibilité : focus visible */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--orange-grise);
  outline-offset: 3px;
}
 
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

/* ===== PAGE RESERVATION ===== */
.reservation-hero {
  background: var(--vert-sauge);
  padding: 100px 32px 70px;
  text-align: center;
  color: var(--blanc-rose);
}
 
.reservation-hero-content {
  max-width: 640px;
  margin: 0 auto;
}
 
.reservation-hero-content .hero-eyebrow {
  color: var(--jaune-sable);
}
 
.reservation-hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  margin: 14px 0 18px;
}
 
.reservation-hero-content p {
  font-size: 1.05rem;
  color: rgba(255,249,246,0.9);
}
 
.reservation-options {
  max-width: 680px;
  margin: 0 auto;
  padding: 90px 32px;
}
 
.reservation-form-wrap .surtitre {
  color: var(--orange-grise);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  margin-bottom: 14px;
  display: block;
}
 
.reservation-form-wrap h2 {
  font-size: 2rem;
  margin-bottom: 28px;
  color: var(--vert-sauge-fonce);
}
 
.form-row {
  margin-bottom: 20px;
}
 
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
 
.form-row label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--noir);
}
 
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  background: white;
  color: var(--noir);
}
 
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--vert-sauge);
}
 
.hidden-field { display: none; }
 
.form-submit {
  border: none;
  cursor: pointer;
  margin-top: 8px;
}
 
.form-result {
  margin-top: 16px;
  font-size: 0.92rem;
  min-height: 1.2em;
}
 
.form-result-pending { color: #777; }
.form-result-success { color: var(--vert-sauge-fonce); font-weight: 500; }
.form-result-error { color: #b04a3a; font-weight: 500; }

.reservation-image-section {
  padding: 0px 20px 80px;
}

.reservation-image {
  width: 85%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 15px;
}

.reservation-image img {
  width: 100%;
  height: auto;
  display: block;
}

.reservation-caption {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 32px;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  font-style: italic;
}
 
@media (max-width: 860px) {
  .reservation-options {
    padding: 60px 24px;
  }
  .form-row-split {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
 
/* ===== PAGE A PROPOS ===== */
.apropos-hero {
  background: var(--vert-sauge);
  padding: 100px 32px 70px;
  text-align: center;
  color: var(--blanc-rose);
}
 
.apropos-hero-content {
  max-width: 780px;
  margin: 0 auto;
}
 
.apropos-hero-content .hero-eyebrow {
  color: var(--jaune-sable);
}
 
.apropos-hero-content h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  margin-top: 14px;
  line-height: 1.15;
}
 
.apropos-bloc {
  max-width: 1400px;
  margin: 0 auto;
  padding: 90px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
 
.apropos-bloc-inverse .apropos-img {
  order: 2;
}
 
.apropos-bloc-inverse .apropos-text {
  order: 1;
}
 
.apropos-img {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
 
.apropos-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 
.apropos-text .surtitre {
  color: var(--orange-grise);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  margin-bottom: 14px;
  display: block;
}
 
.apropos-text h2 {
  font-size: 2.1rem;
  margin-bottom: 22px;
  color: var(--vert-sauge-fonce);
}
 
.apropos-text p {
  font-size: 1.02rem;
  color: #444;
  margin-bottom: 16px;
  text-align: justify;
  max-width: 15cm;
}
 
.apropos-valeurs {
  background: var(--jaune-sable);
  padding: 100px 32px;
}
 
.apropos-valeurs-header {
  max-width: 1400px;
  margin: 0 auto 50px;
  text-align: center;
}
 
.apropos-valeurs-header .surtitre {
  color: var(--vert-sauge-fonce);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  margin-bottom: 14px;
  display: block;
}
 
.apropos-valeurs-header h2 {
  font-size: 2.2rem;
  color: var(--noir);
}
 
.apropos-valeurs-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
 
.valeur-card {
  background: var(--blanc-rose);
  border-radius: 8px;
  padding: 36px 28px;
  text-align: center;
}
 
.valeur-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--vert-sauge-fonce);
}
 
.valeur-card p {
  color: #555;
  font-size: 0.95rem;
}
 
.apropos-cta {
  max-width: 680px;
  margin: 0 auto;
  padding: 100px 32px;
  text-align: center;
}
 
.apropos-cta h2 {
  font-size: 2.2rem;
  color: var(--vert-sauge-fonce);
  margin-bottom: 16px;
}
 
.apropos-cta p {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 32px;
}
 
@media (max-width: 860px) {
  .apropos-bloc {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 24px;
  }
  .apropos-bloc-inverse .apropos-img,
  .apropos-bloc-inverse .apropos-text {
    order: initial;
  }
  .apropos-valeurs { padding: 70px 24px; }
  .apropos-valeurs-grid { grid-template-columns: 1fr; gap: 20px; }
  .apropos-cta { padding: 70px 24px; }
}

/* ===== PAGE MENU ===== */
.menu-hero {
  background: linear-gradient(180deg, rgba(26,26,26,0.5), rgba(26,26,26,0.6)),
              url('Images/Assiète\ d\'escargots\ 2.jpg') center/cover;
  padding: 120px 32px 80px;
  text-align: center;
  color: var(--blanc-rose);
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.menu-hero-content {
  max-width: 640px;
}
 
.menu-hero-content .hero-eyebrow { color: var(--jaune-sable); }
 
.menu-hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin: 14px 0 18px;
}
 
.menu-hero-content p {
  font-size: 1.05rem;
  color: rgba(255,249,246,0.9);
}
 
/* Navigation sections */
.menu-nav {
  position: sticky;
  top: 57px;
  z-index: 90;
  background: var(--blanc-rose);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
 
.menu-nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
 
.menu-nav-inner::-webkit-scrollbar { display: none; }
 
.menu-nav-link {
  padding: 18px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
 
.menu-nav-link:hover { color: var(--vert-sauge); }
.menu-nav-link.active {
  color: var(--vert-sauge-fonce);
  border-bottom-color: var(--vert-sauge);
}
 
/* Sections menu */
.menu-section { padding: 80px 0; }
.menu-section-alt { background: #f7f4ef; }
 
.menu-section-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px;
}
 
.menu-section-header {
  text-align: center;
  margin-bottom: 48px;
}
 
.menu-section-header .surtitre {
  color: var(--orange-grise);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  margin-bottom: 12px;
  display: block;
}
 
.menu-section-header h2 {
  font-size: 2.2rem;
  color: var(--vert-sauge-fonce);
}
 
/* Photo banner */
.menu-photo-banner {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 21/6;
  margin-bottom: 48px;
}
 
.menu-photo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 
/* Formules */
.menu-grid-formules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
 
.formule-card {
  background: white;
  border-radius: 8px;
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,0.07);
  text-align: center;
}
 
.formule-card h3 {
  font-size: 1.15rem;
  color: var(--vert-sauge-fonce);
  margin-bottom: 10px;
}
 
.formule-card ul {
  list-style: none;
  margin-bottom: 12px;
}
 
.formule-card ul li {
  font-size: 0.92rem;
  color: #555;
  padding: 3px 0;
}
 
.formule-card ul li::before {
  content: "- ";
  color: var(--orange-grise);
}
 
.formule-card p { font-size: 0.92rem; color: #555; }
 
.formule-prix {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem !important;
  color: var(--vert-sauge-fonce) !important;
  margin-top: 14px !important;
}
 
.formule-desc {
  font-size: 0.82rem !important;
  color: var(--orange-grise) !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px !important;
  margin-top: 15px !important;
}

.formule-link {
  display: inline-block;
  margin-top: 60px;
  padding: 8px 14px;
  background: var(--jaune-sable);
  color: var(--noir);
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(0,0,0,0.1);
}

#formules {
  text-align: center;
}
 
.formule-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--jaune-sable);
  color: var(--noir);
  padding: 2px 8px;
  border-radius: 20px;
  vertical-align: middle;
}
 
/* Accordéons */
.accordeons { display: flex; flex-direction: column; gap: 2px; }
 
.accordeon {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}
 
.accordeon-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: white;
  border: none;
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--vert-sauge-fonce);
  text-align: left;
  transition: background 0.2s;
}
 
.accordeon-btn:hover { background: #faf8f4; }
.accordeon-btn[aria-expanded="true"] { background: var(--vert-sauge); color: var(--blanc-rose); }
 
.accordeon-icon {
  font-size: 1.3rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s;
}
 
.accordeon-content {
  padding: 24px 22px;
  background: white;
}
 
/* Liste plats */
.plat-list { display: flex; flex-direction: column; gap: 0; }
 
.plat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
}
 
.plat:last-child { border-bottom: none; }
 
.plat-nom {
  font-size: 0.95rem;
  color: var(--noir);
  flex: 1;
}
 
.plat-sous {
  display: block;
  font-size: 0.82rem;
  color: #888;
  font-weight: 400;
  margin-top: 2px;
}

.sous-plat {
  padding-left: 20px;
}

.sous-plat .plat-nom::before {
  content: "- ";
  color: var(--orange-grise);
}

.sous-plat .plat-nom {
  font-size: 0.82rem; 
  font-weight: 400;
}

.plat-quantite {
  font-size: 0.82rem;
  color: #888;
  font-weight: 400;
  display: inline;
  margin-left: 4px;
}
 
.plat-prix {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--vert-sauge-fonce);
  white-space: nowrap;
}
 
.plat-desc { justify-content: flex-start; }
 
.menu-sous-titre {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--orange-grise);
  margin: 22px 0 10px;
}
 
.menu-sous-titre .plat-sous { display: inline; margin-left: 6px; }

/* ===== BREAKFAST CENTRÉ ===== */

.breakfast-section .breakfast-item {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 15px;
}

.breakfast-section .plat-nom {
  line-height: 2;
}

.breakfast-section .plat-prix {
  margin-top: 5px;
}
 
/* Happy Hours */
.happy-hours {
  background: var(--vert-sauge);
  padding: 80px 32px;
  color: var(--blanc-rose);
}
 
.happy-hours-inner {
  max-width: 860px;
  margin: 0 auto;
}
 
.happy-hours .surtitre { color: var(--jaune-sable); font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; margin-bottom: 12px; display: block; }
 
.happy-hours h2 { font-size: 2.2rem; margin-bottom: 40px; }
 
.happy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
 
.happy-card {
  background: rgba(255,249,246,0.12);
  border-radius: 8px;
  padding: 28px 24px;
}
 
.happy-card h3 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: var(--jaune-sable);
}
 
.happy-card .plat { border-bottom-color: rgba(255,249,246,0.15); }
.happy-card .plat-nom { color: var(--blanc-rose); }
.happy-card .plat-prix { color: var(--jaune-sable); }
 
/* Mention légale */
.mention-legale {
  text-align: center;
  font-size: 0.8rem;
  color: #999;
  padding: 20px 32px;
  background: var(--blanc-rose);
}
 
@media (max-width: 860px) {
  .menu-grid-formules { grid-template-columns: 1fr; }
  .happy-grid { grid-template-columns: 1fr; }
  .menu-section { padding: 60px 0; }
  .menu-section-inner { padding: 0 20px; }
  .menu-nav-link { padding: 16px 16px; font-size: 0.85rem; }
  .menu-photo-banner { aspect-ratio: 16/6; }
}

/* Nouvelle règle pour l'ordre mobile des formules */
@media (max-width: 860px) {
  #formules .menu-section-inner {
    display: flex;
    flex-direction: column;
  }

  #formules .menu-grid-formules {
    display: contents;
  }

  #formules .formule-card:first-child {
    order: 1;
  }

  #formules .formule-link {
    order: 2;
    align-self: center;
    margin-top: 30px;
  }

  #formules .formule-card:nth-child(2) {
    order: 3;
    margin-top: 30px;
  }
}

/* Accessibilité : focus visible */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--orange-grise);
  outline-offset: 3px;
}
 
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
