/* =========================================================
   CARTHAGE ANNECY — STYLE.CSS FINAL PREMIUM
   Bleu nuit / ivoire chaud / doré noble
   Header chic + logo complet visible
========================================================= */

/* =========================
   01. VARIABLES
========================= */

:root {
  --navy: #071b33;
  --navy-2: #0d2b4d;
  --navy-3: #173f66;

  --gold: #c4a05a;
  --gold-light: #e4c982;
  --gold-soft: #f4e6c3;
  --gold-dark: #9a7130;

  --ivory: #fff8ec;
  --ivory-2: #fff3df;
  --cream: #f6ead8;
  --cream-2: #ead7ba;
  --sand: #d9bf92;

  --white: #ffffff;
  --black: #111111;

  --text: #16283b;
  --text-soft: #4c5b68;
  --muted: #75695c;

  --border-gold: rgba(196, 160, 90, 0.28);
  --border-soft: rgba(7, 27, 51, 0.10);

  --shadow-soft: 0 18px 45px rgba(7, 27, 51, 0.09);
  --shadow-medium: 0 26px 70px rgba(7, 27, 51, 0.14);
  --shadow-strong: 0 34px 90px rgba(7, 27, 51, 0.18);

  --font-title: "Cormorant Garamond", serif;
  --font-luxury: "Cinzel", serif;
  --font-body: "Inter", sans-serif;

  --radius-xs: 14px;
  --radius-sm: 22px;
  --radius-md: 32px;
  --radius-lg: 46px;
  --radius-xl: 64px;

  --container: 1180px;
  --header-height: 96px;

  --transition: 0.35s ease;
}

/* =========================
   02. RESET GLOBAL
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 8% -4%, rgba(196, 160, 90, 0.15), transparent 30%),
    radial-gradient(circle at 92% 8%, rgba(7, 27, 51, 0.08), transparent 34%),
    linear-gradient(180deg, #fff8ec 0%, #f8eddd 45%, #efe0c8 100%);
  overflow-x: hidden;
  font-weight: 400;
}

body.no-scroll {
  overflow: hidden;
}

main {
  overflow: hidden;
}

img {
  width: 100%;
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

button {
  border: none;
  cursor: pointer;
}

::selection {
  color: var(--navy);
  background: var(--gold-light);
}

/* =========================
   03. CONTAINERS
========================= */

.section-container,
.header-container,
.footer-container,
.quick-reservation-container,
.values-container,
.footer-bottom {
  width: min(var(--container), calc(100% - 44px));
  margin-inline: auto;
}

/* =========================
   04. HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  background:
    radial-gradient(circle at top left, rgba(228, 201, 130, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(7, 27, 51, 0.985) 0%, rgba(13, 43, 77, 0.975) 100%);
  border-bottom: 1px solid rgba(228, 201, 130, 0.30);
  box-shadow: 0 14px 38px rgba(7, 27, 51, 0.22);
  backdrop-filter: blur(22px);
}

.header-container {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

/* =========================
   05. LOGO COMPLET
========================= */

.logo-area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: auto;
  flex-shrink: 0;
  padding: 7px 16px 7px 10px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 248, 236, 0.98), rgba(244, 230, 195, 0.94));
  border: 1px solid rgba(228, 201, 130, 0.44);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.20),
    inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.logo-area::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 999px;
  border: 1px solid rgba(7, 27, 51, 0.08);
  pointer-events: none;
}

.logo-img {
  position: relative;
  z-index: 2;
  display: block;
  width: auto;
  height: 72px;
  max-width: 360px;
  object-fit: contain;
  border-radius: 0;
  filter:
    drop-shadow(0 7px 13px rgba(7, 27, 51, 0.18))
    saturate(1.08)
    contrast(1.04);
}

/* Cache l'ancien texte du logo si présent */
.logo-text,
.logo-name,
.logo-subtitle,
.logo-city {
  display: none !important;
}

/* =========================
   06. NAVIGATION
========================= */

.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.nav-link {
  position: relative;
  padding: 36px 0;
  color: rgba(255, 248, 236, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 27px;
  width: 0;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 38px;
}

/* =========================
   07. HEADER BUTTON
========================= */

.header-btn {
  min-width: 170px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: linear-gradient(135deg, #f3d98f 0%, var(--gold) 100%);
  border: 1px solid rgba(255, 248, 236, 0.35);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(196, 160, 90, 0.22);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  transition: var(--transition);
}

.header-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #f7e2a4 0%, #caa761 100%);
  box-shadow: 0 20px 45px rgba(196, 160, 90, 0.30);
}

/* =========================
   08. MENU MOBILE
========================= */

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  background: rgba(255, 248, 236, 0.10);
  border: 1px solid rgba(228, 201, 130, 0.36);
  border-radius: 16px;
}

.menu-toggle span {
  width: 23px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 20px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  z-index: 998;
  width: 100%;
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 18px 24px 26px;
  background:
    radial-gradient(circle at top left, rgba(228, 201, 130, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(7, 27, 51, 0.985), rgba(13, 43, 77, 0.985));
  border-bottom: 1px solid rgba(228, 201, 130, 0.26);
  box-shadow: 0 20px 45px rgba(7, 27, 51, 0.24);
  transform: translateY(-120%);
  transition: var(--transition);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-link {
  padding: 15px 16px;
  color: rgba(255, 248, 236, 0.86);
  border-radius: 16px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

.mobile-link:hover,
.mobile-link.active {
  color: var(--gold-light);
  background: rgba(228, 201, 130, 0.08);
}

/* =========================
   09. BUTTONS
========================= */

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn span {
  font-size: 16px;
  line-height: 1;
}

.btn-primary,
.btn-dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border: 1px solid rgba(196, 160, 90, 0.28);
  box-shadow: 0 14px 30px rgba(7, 27, 51, 0.13);
}

.btn-primary:hover,
.btn-dark:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--navy-2), var(--navy-3));
  box-shadow: 0 18px 40px rgba(7, 27, 51, 0.18);
}

.btn-secondary {
  color: var(--navy);
  background: linear-gradient(135deg, #f3d98f 0%, var(--gold) 100%);
  border: 1px solid rgba(154, 113, 48, 0.24);
  box-shadow: 0 12px 28px rgba(196, 160, 90, 0.20);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(196, 160, 90, 0.28);
}

/* =========================
   10. TITRES
========================= */

.ornament-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--gold);
}

.ornament-line.centered {
  justify-content: center;
}

.ornament-line span {
  width: 76px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.ornament-line span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.ornament-line i {
  font-style: normal;
  font-size: 14px;
}

.section-kicker {
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 3.4px;
  text-transform: uppercase;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.hero-content h1,
.page-hero-content h1,
.section-heading h2,
.menu-intro h2,
.gallery-experience-content h2,
.reservation-form-heading h2,
.legal-content h2,
.about-intro-text h2,
.about-ambiance-text h2,
.specialite-feature-content h2,
.experience-text h2,
.special-moment-text h2,
.about-story-text h2,
.menu-cta-text h2 {
  color: var(--navy);
  font-family: var(--font-title);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.section-heading h2 {
  margin-top: 10px;
  font-size: clamp(40px, 5vw, 64px);
}

.hero-content h1 span,
.text-gold {
  color: var(--gold-dark);
}

.section-heading p:last-child,
.hero-description,
.page-hero-content p:not(.section-kicker),
.menu-intro p:not(.section-kicker),
.gallery-experience-content p:not(.section-kicker),
.about-intro-text p:not(.section-kicker),
.about-ambiance-text p:not(.section-kicker),
.specialite-feature-content p:not(.section-kicker),
.experience-text p:not(.section-kicker),
.special-moment-text p:not(.section-kicker),
.about-story-text p:not(.section-kicker) {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.92;
}

/* =========================
   11. HERO ACCUEIL
========================= */

.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(255, 248, 236, 0.99) 0%,
      rgba(255, 248, 236, 0.94) 36%,
      rgba(255, 248, 236, 0.60) 64%,
      rgba(7, 27, 51, 0.18) 100%
    ),
    url("../assets/images/home/hero-carthage.jpg") center right / cover no-repeat;
  border-bottom: 1px solid rgba(196, 160, 90, 0.28);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 15%, rgba(196, 160, 90, 0.13), transparent 28%),
    linear-gradient(180deg, transparent 0%, rgba(7, 27, 51, 0.035) 100%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 44px));
  margin-inline: auto;
  padding: 76px 0 90px;
}

.hero-content {
  max-width: 620px;
}

.hero-content h1 {
  margin-top: 10px;
  font-size: clamp(52px, 7vw, 92px);
  line-height: 0.94;
}

.hero-description {
  max-width: 520px;
  margin-top: 26px;
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.hero-features {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
}

.feature-icon,
.hero-feature .feature-icon,
.value-item span,
.gallery-value span,
.about-signature-card span,
.reservation-benefit span,
.reservation-info-card span,
.contact-info-card span,
.quick-benefits span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(255, 248, 236, 0.92), rgba(244, 230, 195, 0.60));
  border: 1px solid rgba(196, 160, 90, 0.28);
  border-radius: 18px;
}

.hero-feature p {
  max-width: 145px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.28;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}

/* =========================
   12. PAGE HERO
========================= */

.page-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(196, 160, 90, 0.28);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(196, 160, 90, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(255, 248, 236, 0.08), rgba(255, 248, 236, 0.22));
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 36px));
  padding: 74px 0;
}

.page-hero-content h1 {
  margin-top: 10px;
  font-size: clamp(56px, 8vw, 94px);
}

.page-hero-content p:not(.section-kicker) {
  max-width: 700px;
  margin: 24px auto 0;
  font-size: 17px;
}

.page-hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.menu-hero {
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.99), rgba(255, 248, 236, 0.82), rgba(7, 27, 51, 0.18)),
    url("../assets/images/menu/menu-hero.jpg") center right / cover no-repeat;
}

.specialites-hero {
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.99), rgba(255, 248, 236, 0.82), rgba(7, 27, 51, 0.18)),
    url("../assets/images/specialites/specialites-hero.jpg") center right / cover no-repeat;
}

.galerie-hero {
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.99), rgba(255, 248, 236, 0.82), rgba(7, 27, 51, 0.18)),
    url("../assets/images/galerie/galerie-hero.jpg") center right / cover no-repeat;
}

.reservation-hero {
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.99), rgba(255, 248, 236, 0.82), rgba(7, 27, 51, 0.18)),
    url("../assets/images/reservation/reservation-hero.jpg") center right / cover no-repeat;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.99), rgba(255, 248, 236, 0.82), rgba(7, 27, 51, 0.18)),
    url("../assets/images/about/about-hero.jpg") center right / cover no-repeat;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.99), rgba(255, 248, 236, 0.82), rgba(7, 27, 51, 0.18)),
    url("../assets/images/contact/contact-hero.jpg") center right / cover no-repeat;
}

.merci-hero,
.legal-hero,
.privacy-hero {
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.99), rgba(255, 248, 236, 0.84), rgba(7, 27, 51, 0.16)),
    url("../assets/images/home/hero-carthage.jpg") center right / cover no-repeat;
}

/* =========================
   13. GLOBAL SECTIONS
========================= */

.univers-section,
.menu-page-section,
.specialites-page-section,
.gallery-page-section,
.reservation-page-section,
.about-intro-section,
.contact-page-section,
.contact-form-section,
.legal-section,
.dishes-section,
.gallery-experience-section,
.about-signature-section,
.about-ambiance-section,
.reservation-info-section,
.map-section,
.specialites-cards-section,
.values-section,
.reservation-benefits-section {
  position: relative;
  padding: 84px 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(196, 160, 90, 0.10), transparent 30%),
    radial-gradient(circle at 100% 0%, rgba(7, 27, 51, 0.035), transparent 28%),
    linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
}

.univers-section::before,
.menu-page-section::before,
.specialites-page-section::before,
.gallery-page-section::before,
.reservation-page-section::before,
.about-intro-section::before,
.contact-page-section::before,
.contact-form-section::before,
.legal-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(7, 27, 51, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 27, 51, 0.022) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.univers-section .section-container,
.menu-page-section .section-container,
.specialites-page-section .section-container,
.gallery-page-section .section-container,
.reservation-page-section .section-container,
.about-intro-section .section-container,
.contact-page-section .section-container,
.contact-form-section .section-container,
.legal-section .section-container {
  position: relative;
  z-index: 2;
}

/* =========================
   14. HOME UNIVERS
========================= */

.univers-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.univers-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid rgba(196, 160, 90, 0.22);
  border-radius: 108px 108px 34px 34px;
  background: var(--navy);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.univers-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  border: 1px solid rgba(228, 201, 130, 0.36);
  border-radius: 94px 94px 26px 26px;
  pointer-events: none;
}

.univers-card img {
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(0.94) contrast(1.025) brightness(1.01);
  transition: 0.55s ease;
}

.univers-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 18%, rgba(7, 27, 51, 0.92) 100%);
}

.univers-card-content {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 20px;
  z-index: 3;
  text-align: center;
}

.univers-card h3 {
  color: var(--white);
  font-size: 15px;
  font-weight: 950;
  line-height: 1.2;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.univers-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-strong);
}

.univers-card:hover img {
  transform: scale(1.08);
}

.center-action {
  margin-top: 42px;
  text-align: center;
}

/* =========================
   15. EXPERIENCE
========================= */

.experience-section,
.special-moment-section,
.about-story-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 540px;
  background: var(--cream);
  border-top: 1px solid rgba(196, 160, 90, 0.22);
  border-bottom: 1px solid rgba(196, 160, 90, 0.22);
}

.experience-text,
.special-moment-text,
.about-story-text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 82px max(40px, calc((100vw - var(--container)) / 2)) 74px;
  background:
    radial-gradient(circle at top left, rgba(196, 160, 90, 0.10), transparent 30%),
    linear-gradient(90deg, rgba(255, 248, 236, 0.97), rgba(246, 234, 216, 0.96));
}

.experience-text h2,
.special-moment-text h2,
.about-story-text h2 {
  margin-top: 14px;
  font-size: clamp(38px, 5vw, 62px);
}

.experience-text p:not(.section-kicker),
.special-moment-text p:not(.section-kicker),
.about-story-text p:not(.section-kicker) {
  max-width: 540px;
  margin: 24px 0 30px;
}

.experience-image,
.special-moment-image,
.about-story-image {
  position: relative;
  min-height: 540px;
  overflow: hidden;
}

.experience-image img,
.special-moment-image img,
.about-story-image img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.025) brightness(1.01);
}

.experience-image::after,
.special-moment-image::after,
.about-story-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 27, 51, 0.10), transparent 45%);
}

.play-btn {
  position: absolute;
  left: 50%;
  bottom: 38px;
  z-index: 3;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  color: var(--navy);
  background: rgba(255, 248, 236, 0.96);
  border: 1px solid rgba(196, 160, 90, 0.36);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  font-size: 20px;
  transition: var(--transition);
}

.play-btn:hover {
  transform: translateX(-50%) scale(1.08);
  background: var(--gold-soft);
}

/* =========================
   16. QUICK RESERVATION / BANDES FONCÉES
========================= */

.quick-reservation,
.call-band,
.menu-cta-section,
.reservation-note,
.contact-side-card,
.site-footer {
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(228, 201, 130, 0.12), transparent 28%),
    linear-gradient(135deg, #071b33 0%, #0d2b4d 100%);
}

.quick-reservation {
  position: relative;
  padding: 42px 0 38px;
  border-top: 1px solid rgba(228, 201, 130, 0.25);
  border-bottom: 1px solid rgba(228, 201, 130, 0.25);
}

.quick-reservation::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 190px;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(7, 27, 51, 0.25), transparent),
    url("../assets/images/home/tile-pattern.jpg") center / cover no-repeat;
  opacity: 0.24;
}

.quick-reservation-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  align-items: center;
}

.quick-title p {
  color: var(--white);
  font-family: var(--font-title);
  font-size: 42px;
  line-height: 0.96;
}

.quick-title span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.6;
}

.quick-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(228, 201, 130, 0.32);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
}

.quick-field label {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.quick-field input,
.quick-field select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  outline: none;
}

.quick-field select option {
  color: var(--navy);
}

.quick-benefits {
  position: relative;
  z-index: 2;
  width: min(860px, calc(100% - 44px));
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(228, 201, 130, 0.24);
}

.quick-benefits div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  text-align: center;
}

.quick-benefits p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 850;
}

/* =========================
   17. DISHES / VALUES
========================= */

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.dish-card {
  overflow: hidden;
  background: rgba(255, 248, 236, 0.96);
  border: 1px solid rgba(196, 160, 90, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.dish-card img {
  height: 195px;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.025) brightness(1.01);
  transition: 0.55s ease;
}

.dish-info {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 248, 236, 0.96);
  border-top: 1px solid rgba(196, 160, 90, 0.20);
}

.dish-info h3 {
  color: var(--navy);
  font-family: var(--font-title);
  font-size: 23px;
  line-height: 1;
}

.dish-info span {
  color: var(--navy);
  font-size: 16px;
  font-weight: 950;
}

.dish-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-strong);
}

.dish-card:hover img {
  transform: scale(1.06);
}

.values-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid rgba(196, 160, 90, 0.22);
  border-radius: var(--radius-lg);
  background: rgba(255, 248, 236, 0.72);
}

.value-item {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 11px;
  padding: 16px 18px;
  text-align: center;
  border-right: 1px solid rgba(196, 160, 90, 0.18);
}

.value-item:last-child {
  border-right: none;
}

.value-item span {
  font-size: 26px;
}

.value-item h3 {
  color: var(--navy);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.3;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}

/* =========================
   18. MENU PAGE
========================= */

.menu-tabs-section,
.gallery-filter-section {
  position: sticky;
  top: var(--header-height);
  z-index: 90;
  padding: 12px 0;
  background: rgba(255, 248, 236, 0.955);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196, 160, 90, 0.18);
  box-shadow: 0 8px 26px rgba(7, 27, 51, 0.055);
}

.menu-tabs-wrapper {
  width: min(1320px, calc(100% - 32px));
  margin-inline: auto;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

.menu-tab,
.gallery-filter {
  color: var(--navy);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(244, 230, 195, 0.42));
  border: 1px solid rgba(196, 160, 90, 0.24);
  border-radius: 999px;
  font-weight: 950;
  text-transform: uppercase;
  transition: var(--transition);
}

.menu-tab {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 7px;
  padding: 0 20px;
  font-size: 11px;
  letter-spacing: 0.7px;
  white-space: nowrap;
}

.menu-tab span {
  color: var(--gold-dark);
  font-size: 21px;
}

.menu-tab:hover,
.menu-tab.active,
.gallery-filter:hover,
.gallery-filter.active {
  color: var(--gold-light);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.menu-tab:hover span,
.menu-tab.active span {
  color: var(--gold-light);
}

.menu-intro {
  max-width: 830px;
  margin: 0 auto 58px;
  text-align: center;
}

.menu-intro h2 {
  margin-top: 12px;
  font-size: clamp(42px, 6vw, 66px);
}

.menu-intro p:not(.section-kicker) {
  max-width: 720px;
  margin: 22px auto 0;
}

.menu-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 42px;
  align-items: start;
}

.menu-side-panel {
  position: sticky;
  top: 205px;
  display: grid;
  gap: 22px;
}

.menu-side-image,
.menu-side-card,
.menu-category {
  border: 1px solid rgba(196, 160, 90, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.menu-side-image {
  overflow: hidden;
  padding: 10px;
  background: rgba(255, 248, 236, 0.94);
}

.menu-side-image img {
  height: 330px;
  object-fit: cover;
  border-radius: 32px;
}

.menu-side-image.small img {
  height: 240px;
}

.menu-side-card,
.menu-category,
.specialite-feature,
.gallery-value,
.about-signature-card,
.reservation-benefit,
.reservation-info-card,
.contact-info-card,
.reservation-form-card,
.contact-form-card,
.legal-content,
.about-story-stats div {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(196, 160, 90, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 248, 236, 0.985), rgba(246, 234, 216, 0.96));
  border: 1px solid rgba(196, 160, 90, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.menu-side-card {
  padding: 34px 28px;
  text-align: center;
}

.menu-side-card::before,
.menu-category::before,
.reservation-form-card::before,
.contact-form-card::before,
.legal-content::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(196, 160, 90, 0.12);
  border-radius: 32px;
  pointer-events: none;
}

.menu-side-card span {
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.menu-side-card h3 {
  margin-top: 12px;
  color: var(--navy);
  font-family: var(--font-title);
  font-size: 34px;
  line-height: 1;
}

.menu-side-card p {
  margin-top: 16px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.8;
}

.menu-content {
  display: grid;
  gap: 30px;
}

.menu-category {
  scroll-margin-top: 205px;
  overflow: hidden;
  padding: 38px 42px 28px;
}

.menu-category-title {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
  text-align: center;
}

.menu-category-title span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.menu-category-title span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.menu-category-title h2 {
  color: var(--navy);
  font-family: var(--font-luxury);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.menu-items {
  position: relative;
  z-index: 2;
  display: grid;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px dotted rgba(196, 160, 90, 0.34);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item h3 {
  color: var(--navy);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.menu-item p {
  max-width: 650px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.menu-item strong {
  min-width: 76px;
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 0 14px;
  color: var(--navy);
  background: linear-gradient(135deg, #fff8e8, #ead1a0);
  border: 1px solid rgba(196, 160, 90, 0.26);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 950;
}

.menu-item.highlight {
  margin: 8px -18px 0;
  padding: 20px 18px;
  background: rgba(196, 160, 90, 0.08);
  border: 1px solid rgba(196, 160, 90, 0.22);
  border-radius: 22px;
}

.menu-item.highlight strong {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

/* =========================
   19. SPECIALITES
========================= */

.specialites-mini-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.specialite-mini-card,
.gallery-card {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid rgba(196, 160, 90, 0.22);
  border-radius: 44px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.specialite-mini-card {
  min-height: 230px;
}

.specialite-mini-card::before,
.gallery-card::before {
  content: "";
  position: absolute;
  inset: 9px;
  z-index: 3;
  border: 1px solid rgba(228, 201, 130, 0.34);
  border-radius: 34px;
  pointer-events: none;
}

.specialite-mini-card img {
  height: 230px;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(0.94) contrast(1.025) brightness(1.01);
  transition: 0.55s ease;
}

.specialite-mini-card::after,
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 16%, rgba(7, 27, 51, 0.92) 100%);
}

.specialite-mini-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 20px;
  z-index: 4;
  text-align: center;
}

.specialite-mini-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-family: var(--font-luxury);
  font-size: 13px;
  letter-spacing: 2px;
}

.specialite-mini-card h3 {
  color: var(--white);
  font-size: 14px;
  font-weight: 950;
  line-height: 1.25;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.specialite-mini-card:hover,
.gallery-card:hover,
.gallery-value:hover,
.reservation-info-card:hover,
.about-signature-card:hover,
.contact-info-card:hover,
.reservation-benefit:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-strong);
}

.specialite-mini-card:hover img {
  transform: scale(1.08);
}

.specialite-feature {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 460px;
  margin-bottom: 34px;
  overflow: hidden;
}

.specialite-feature.reverse {
  grid-template-columns: 0.92fr 1.08fr;
}

.specialite-feature.reverse .specialite-feature-image {
  order: 2;
}

.specialite-feature.reverse .specialite-feature-content {
  order: 1;
}

.specialite-feature-image {
  min-height: 460px;
  overflow: hidden;
}

.specialite-feature-image img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.025) brightness(1.01);
  transition: 0.65s ease;
}

.specialite-feature:hover .specialite-feature-image img {
  transform: scale(1.05);
}

.specialite-feature-content {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 64px 62px;
}

.special-number {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(135deg, #fff8e8, #ead1a0);
  border: 1px solid rgba(196, 160, 90, 0.26);
  border-radius: 18px;
  font-family: var(--font-luxury);
  font-size: 21px;
  font-weight: 700;
}

.specialite-feature-content h2 {
  margin-top: 12px;
  font-size: clamp(38px, 5vw, 58px);
}

.specialite-feature-content p:not(.section-kicker) {
  margin-top: 22px;
}

.specialite-feature-content ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 30px;
  list-style: none;
}

.specialite-feature-content li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

.specialite-feature-content li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-dark);
  font-size: 12px;
}

/* =========================
   20. GALERIE
========================= */

.gallery-filter-wrapper {
  width: min(980px, calc(100% - 32px));
  margin-inline: auto;
  display: flex;
  justify-content: center;
  gap: 10px;
  overflow-x: auto;
}

.gallery-filter {
  min-width: 112px;
  height: 46px;
  padding: 0 22px;
  font-size: 12px;
  letter-spacing: 0.8px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 275px;
  gap: 22px;
}

.gallery-card.large {
  grid-row: span 2;
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.025) brightness(1.01);
  transition: 0.65s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  padding: 18px;
  text-align: center;
  background: rgba(255, 248, 236, 0.95);
  border: 1px solid rgba(196, 160, 90, 0.30);
  border-radius: 26px;
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 34px rgba(7, 27, 51, 0.14);
}

.gallery-caption span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gallery-caption h3 {
  color: var(--navy);
  font-family: var(--font-title);
  font-size: 25px;
  line-height: 1;
}

.gallery-experience-content {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.gallery-experience-content h2 {
  margin-top: 12px;
  font-size: clamp(40px, 6vw, 66px);
}

.gallery-experience-content p:not(.section-kicker) {
  max-width: 680px;
  margin: 22px auto 0;
}

.gallery-values-grid,
.about-signature-grid,
.reservation-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.gallery-value,
.about-signature-card,
.reservation-benefit,
.reservation-info-card,
.contact-info-card {
  min-height: 220px;
  padding: 34px 26px;
  text-align: center;
  transition: var(--transition);
}

.gallery-value span,
.about-signature-card span,
.reservation-benefit span,
.reservation-info-card span,
.contact-info-card span {
  margin: 0 auto 18px;
  font-size: 25px;
}

.gallery-value h3,
.about-signature-card h3,
.reservation-benefit h3,
.reservation-info-card h3,
.contact-info-card h3 {
  color: var(--navy);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.gallery-value p,
.about-signature-card p,
.reservation-benefit p,
.reservation-info-card p,
.contact-info-card p {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
}

/* =========================
   21. RESERVATION / CONTACT
========================= */

.reservation-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: stretch;
}

.reservation-visual,
.contact-side {
  display: grid;
  gap: 22px;
}

.reservation-image,
.contact-side-image,
.about-intro-image,
.about-ambiance-gallery,
.map-wrapper {
  overflow: hidden;
  padding: 10px;
  background: rgba(255, 248, 236, 0.94);
  border: 1px solid rgba(196, 160, 90, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.reservation-image,
.contact-side-image {
  min-height: 620px;
}

.reservation-image img,
.contact-side-image img,
.about-intro-image img {
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  filter: saturate(0.94) contrast(1.025) brightness(1.01);
}

.reservation-note,
.contact-side-card {
  padding: 30px;
  border: 1px solid rgba(228, 201, 130, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.reservation-note span,
.contact-side-card span {
  color: var(--gold-light);
  font-size: 20px;
}

.reservation-note h3,
.contact-side-card h3 {
  margin-top: 10px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 34px;
  line-height: 1;
}

.reservation-note p,
.contact-side-card p {
  margin: 14px 0 22px;
  color: rgba(255, 255, 255, 0.80);
  font-size: 14px;
  line-height: 1.75;
}

.reservation-form-card,
.contact-form-card,
.legal-content {
  position: relative;
  padding: 46px;
}

.reservation-form-heading,
.reservation-form {
  position: relative;
  z-index: 2;
}

.reservation-form-heading {
  margin-bottom: 34px;
  text-align: center;
}

.reservation-form-heading h2 {
  margin-top: 10px;
  font-size: clamp(40px, 5vw, 60px);
}

.reservation-form-heading p:not(.section-kicker) {
  max-width: 640px;
  margin: 18px auto 0;
  font-size: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  color: var(--navy);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(196, 160, 90, 0.22);
  border-radius: 18px;
  outline: none;
  font-size: 14px;
  transition: var(--transition);
}

.form-group input,
.form-group select {
  height: 52px;
  padding: 0 16px;
}

.form-group textarea {
  min-height: 130px;
  padding: 16px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(22, 40, 59, 0.42);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(196, 160, 90, 0.66) !important;
  box-shadow: 0 0 0 4px rgba(196, 160, 90, 0.115);
}

.reservation-submit {
  width: 100%;
  height: 56px;
  margin-top: 24px;
  font-size: 13px;
}

.form-small-text {
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}

.reservation-info-grid,
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.reservation-info-card a,
.contact-info-card a {
  color: var(--gold-dark);
  font-weight: 850;
}

/* =========================
   22. ABOUT
========================= */

.about-intro-layout,
.about-ambiance-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.about-intro-text h2,
.about-ambiance-text h2 {
  margin-top: 12px;
  font-size: clamp(42px, 6vw, 66px);
}

.about-intro-text p:not(.section-kicker),
.about-ambiance-text p:not(.section-kicker) {
  margin-top: 22px;
}

.about-intro-text .btn,
.about-ambiance-text .btn {
  margin-top: 32px;
}

.about-intro-image img {
  height: 560px;
}

.about-story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.about-story-stats div {
  padding: 22px 18px;
  text-align: center;
}

.about-story-stats strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-luxury);
  font-size: 22px;
}

.about-story-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-ambiance-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  min-height: 500px;
}

.about-ambiance-gallery img {
  height: 500px;
  object-fit: cover;
  border-radius: 32px;
  filter: saturate(0.94) contrast(1.025) brightness(1.01);
}

.about-ambiance-gallery img:nth-child(2) {
  margin-top: 44px;
  height: 456px;
}

/* =========================
   23. MAP / LEGAL
========================= */

.contact-info-card address {
  font-style: normal;
}

.contact-info-card > a {
  display: inline-block;
  margin-top: 16px;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  min-height: 450px;
  border-radius: 32px;
  filter: saturate(0.86) contrast(1.04);
}

.legal-content {
  max-width: 930px;
  margin: 0 auto;
}

.legal-content h2 {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  font-size: clamp(38px, 5vw, 58px);
}

.legal-block {
  position: relative;
  z-index: 2;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(196, 160, 90, 0.20);
}

.legal-block h3 {
  margin-bottom: 14px;
  color: var(--navy);
  font-family: var(--font-luxury);
  font-size: 15px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.legal-block p,
.legal-block li,
.legal-block address {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.85;
  font-style: normal;
}

.legal-block strong {
  color: var(--navy);
}

.legal-block a {
  color: var(--gold-dark);
  font-weight: 850;
}

.legal-block ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0 20px;
}

.legal-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

/* =========================
   24. CTA / CALL BAND
========================= */

.menu-cta-section {
  padding: 62px 0;
  border-top: 1px solid rgba(228, 201, 130, 0.25);
}

.menu-cta-container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.menu-cta-text h2 {
  max-width: 740px;
  margin-top: 10px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.menu-cta-text p:not(.section-kicker) {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.80);
  font-size: 15px;
  line-height: 1.8;
}

.menu-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.call-band {
  padding: 26px 0;
  border-bottom: 1px solid rgba(228, 201, 130, 0.25);
}

.call-band-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.call-band p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.6;
}

.call-band p span {
  margin-right: 8px;
  color: var(--gold-light);
}

.call-band strong {
  color: var(--white);
}

/* =========================
   25. FOOTER
========================= */

.site-footer {
  color: var(--white);
  border-top: 1px solid rgba(228, 201, 130, 0.22);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 0.8fr;
  gap: 46px;
  padding: 58px 0 42px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo img {
  width: auto;
  height: 72px;
  max-width: 260px;
  object-fit: contain;
}

.footer-logo span,
.footer-logo small {
  display: none;
}

.footer-brand p {
  max-width: 340px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.8;
}

.footer-column {
  padding-left: 30px;
  border-left: 1px solid rgba(228, 201, 130, 0.22);
}

.footer-column h4 {
  margin-bottom: 18px;
  color: var(--white);
  font-family: var(--font-luxury);
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.footer-column p,
.footer-column a,
.footer-column address {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.8;
  font-style: normal;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-links a {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid rgba(228, 201, 130, 0.42);
  border-radius: 18px;
  font-weight: 950;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--navy);
  background: var(--gold-light);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 0 26px;
  color: rgba(255, 255, 255, 0.60);
  border-top: 1px solid rgba(228, 201, 130, 0.18);
  font-size: 12px;
}

.footer-bottom a {
  color: var(--gold-light);
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--white);
}

.footer-bottom div {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* =========================
   26. UTILITAIRES
========================= */

.text-gold {
  color: var(--gold-dark);
}

.hide {
  display: none !important;
}

.is-loading {
  opacity: 0.72;
  pointer-events: none;
}