/* ================================================
   KhalisO — Design System
   Palette : #EDD77A (or) · #111111 (fond) · #FFFFFF (texte)
   Fonts   : Playfair Display SC (titres) · Karla (corps)
   ================================================ */

/* ---------------------- TOKENS ---------------------- */
:root {
  --gold:         #EDD77A;
  --gold-dark:    #C4A84C;
  --gold-light:   rgba(237,215,122,0.12);
  --gold-border:  rgba(237,215,122,0.25);
  --dark:         #111111;
  --dark-2:       #1a1a1a;
  --dark-3:       #222222;
  --dark-border:  #2e2e2e;
  --white:        #FFFFFF;
  --muted:        #888888;
  --danger:       #DC2626;

  --ff-heading: 'Playfair Display SC', serif;
  --ff-body:    'Karla', sans-serif;

  --shadow-sm:   0 2px 8px  rgba(0,0,0,0.35);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.45);
  --shadow-gold: 0 4px 20px rgba(237,215,122,0.18);

  --radius:    8px;
  --radius-lg: 16px;
  --transition: 200ms ease;
}

/* ---------------------- RESET ---------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background-color: var(--dark);
  color: var(--white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  line-height: 1.2;
}

a { text-decoration: none; transition: color var(--transition); }
img { display: block; max-width: 100%; height: auto; }

/* ---------------------- NAVBAR ---------------------- */
.navbar-khaliso {
  background-color: rgba(17,17,17,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--dark-border);
  padding: 12px 0;
}

.navbar-brand-text {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 1px;
}

.nav-link-khaliso {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.nav-link-khaliso:hover,
.nav-link-khaliso.active {
  color: var(--gold);
  background: var(--gold-light);
}

.btn-nav-call {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background-color: var(--gold);
  color: var(--dark);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 18px;
  border-radius: 50px;
  border: none;
  transition: background var(--transition), transform var(--transition);
}

.btn-nav-call:hover {
  background-color: var(--gold-dark);
  color: var(--dark);
  transform: translateY(-1px);
}

.btn-nav-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
}

.btn-nav-phone:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ---------------------- HERO ---------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('../img/gallery/background.jpeg') center center / cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(17,17,17,0.88) 0%,
    rgba(17,17,17,0.55) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: 18px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}

.hero h1 .accent { color: var(--gold); }

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------------------- BUTTONS ---------------------- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--gold);
  color: var(--dark);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.btn-gold:hover {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: var(--gold);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-outline-gold:hover {
  background-color: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--gold);
  color: var(--dark);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.btn-call:hover {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ---------------------- STRIP CATÉGORIES ---------------------- */
.strip-cats {
  background-color: var(--gold);
  padding: 14px 0;
}

.strip-cats-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 36px;
}

.strip-cat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dark);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: opacity var(--transition);
}

.strip-cat:hover { opacity: 0.7; color: var(--dark); }

/* ---------------------- SECTIONS ---------------------- */
.section-dark  { background-color: var(--dark);  padding: 80px 0; }
.section-dark2 { background-color: var(--dark-2); padding: 80px 0; }

.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 8px;
}

.section-title .accent { color: var(--gold); }

.section-sub {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 48px;
}

/* ---------------------- FOOD CARDS ---------------------- */
.food-card {
  background-color: var(--dark-2);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.food-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.food-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.food-card-body {
  padding: 20px;
}

.food-card-name {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 6px;
}

.food-card-desc {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.55;
}

/* ---------------------- SECTION CONTACT ---------------------- */
.contact-section { background-color: var(--dark-2); padding: 80px 0; }

.contact-card {
  background-color: var(--dark-3);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
}

.contact-card-title {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Horaires */
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--dark-border);
  font-size: 0.9rem;
}
.hours-row:last-child { border-bottom: none; }

.hours-day  { color: var(--muted); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; }
.hours-time { color: var(--white); font-weight: 600; text-align: right; line-height: 1.4; }
.hours-closed { color: var(--danger); font-weight: 700; }

/* Infos contact */
.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-info-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
}

.contact-info-label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.contact-info-value { color: var(--white); font-weight: 600; font-size: 0.92rem; }
.contact-info-value a { color: var(--white); }
.contact-info-value a:hover { color: var(--gold); }

/* Réseaux sociaux */
.social-links { display: flex; gap: 10px; margin-top: 22px; }

.social-link {
  width: 44px;
  height: 44px;
  background: var(--dark-2);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.05rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.social-link:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ---------------------- FOOTER ---------------------- */
.site-footer {
  background-color: #0a0a0a;
  padding: 22px 0;
  border-top: 1px solid var(--dark-border);
  text-align: center;
}

.footer-text { color: var(--muted); font-size: 0.85rem; margin-bottom: 4px; }
.footer-mention { color: #555; font-size: 0.73rem; }

/* ---------------------- PAGE MENU ---------------------- */
.menu-header {
  background-color: var(--gold);
  padding: 120px 0 50px;
  text-align: center;
}

.menu-header h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--dark);
}

.menu-header p {
  color: rgba(17,17,17,0.65);
  font-size: 1rem;
  margin-top: 8px;
}

.menu-body { background-color: var(--dark); padding: 60px 0 80px; }

.menu-category { margin-bottom: 56px; }

.menu-category-title {
  font-family: var(--ff-heading);
  font-size: 1.6rem;
  color: var(--gold);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--dark-border);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-category-desc {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

/* En-têtes colonnes prix */
.menu-price-headers {
  display: flex;
  justify-content: flex-end;
  gap: 48px;
  padding: 0 20px 4px;
  margin-bottom: 2px;
}

.menu-price-header-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  min-width: 52px;
  text-align: right;
}

/* Items */
.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background-color: var(--dark-2);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 14px 20px;
  margin-bottom: 8px;
  transition: border-color var(--transition), background var(--transition);
}

.menu-item:hover {
  border-color: var(--gold-border);
  background-color: var(--dark-3);
}

.menu-item-left { flex: 1; min-width: 0; }

.menu-item-name {
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 3px;
}

.menu-item-desc {
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.45;
}

.menu-item-right {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}

.menu-price {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  color: var(--gold);
  min-width: 52px;
  text-align: right;
  white-space: nowrap;
}

.menu-price-secondary {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  color: rgba(237,215,122,0.55);
  min-width: 52px;
  text-align: right;
  white-space: nowrap;
}

/* Badges */
.badge-popular {
  background: var(--gold);
  color: var(--dark);
  font-size: 0.62rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-new {
  background: var(--danger);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Viandes au choix */
.viandes-section { margin-bottom: 48px; }

.viandes-label {
  font-family: var(--ff-heading);
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.viandes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.viande-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--dark-2);
  border: 1px solid var(--dark-border);
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 16px;
  border-radius: 50px;
}

/* Note de bas de menu */
.menu-note {
  background: var(--dark-2);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 14px 20px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.menu-note strong { color: var(--gold); }

/* ---------------------- STICKY NAV MENU ---------------------- */
.menu-sticky-nav {
  position: sticky;
  top: 60px;
  z-index: 100;
  background-color: var(--dark-2);
  border-bottom: 1px solid var(--dark-border);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.menu-sticky-nav::-webkit-scrollbar { display: none; }

.menu-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 16px;
  min-width: max-content;
  margin: 0 auto;
}

.menu-sticky-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 16px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color var(--transition), border-color var(--transition);
}

.menu-sticky-link:hover,
.menu-sticky-link.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Offset ancres : navbar fixe (~60px) + sticky nav (~48px) + marge */
[id^="cat-"] {
  scroll-margin-top: 120px;
}

/* ---------------------- PLATS À EMPORTER ---------------------- */
.menu-commande { border-top: 2px solid var(--gold-border); padding-top: 48px; }

.commande-header { margin-bottom: 32px; }

.commande-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.commande-notice {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-top: 10px;
}

.commande-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: 100%;
  overflow: hidden;
}

.commande-card-img {
  margin: -24px -24px 20px;
  height: 200px;
  overflow: hidden;
  background: var(--dark-3);
}

.commande-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.commande-card:hover .commande-card-img img {
  transform: scale(1.05);
}

.commande-card-title {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.commande-part {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  min-width: 36px;
  text-align: right;
}

.commande-footer {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.commande-footer a { color: var(--gold); }
.commande-footer a:hover { text-decoration: underline; }

.commande-card-large {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  border: 1px dashed var(--gold-border);
}

.commande-large-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.commande-large-content {
  flex: 1;
  min-width: 240px;
}

.commande-large-text {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.commande-large-cta {
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .commande-card-large {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .commande-large-cta { width: 100%; justify-content: center; }
}

/* ---------------------- REVIEWS ---------------------- */
.reviews-rating-global {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}

.reviews-stars-global {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 1.1rem;
}

.reviews-score {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.review-card {
  background-color: var(--dark-2);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
  transition: border-color var(--transition), transform var(--transition);
}

.review-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.review-text {
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 22px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 2px;
}

.review-meta {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ---------------------- BOUTON APPEL FLOTTANT ---------------------- */
.phone-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--gold);
  color: var(--dark);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 22px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(237,215,122,0.35);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.phone-float i { font-size: 1.2rem; }

.phone-float:hover {
  background-color: var(--gold-dark);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(237,215,122,0.45);
}

@media (prefers-reduced-motion: reduce) {
  .phone-float,
  .review-card { transition: none; }
}

/* ---------------------- RESPONSIVE ---------------------- */
@media (max-width: 991px) {
  .menu-price-headers { display: none; }
  .menu-item-right { gap: 20px; }
}

@media (max-width: 767px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-desc { font-size: 1rem; }
  .hero-btns { flex-direction: column; }
  .btn-gold, .btn-outline-gold, .btn-call { width: 100%; justify-content: center; }

  .strip-cats-inner { gap: 16px 24px; }
  .strip-cat { font-size: 0.78rem; }

  .section-dark, .section-dark2, .contact-section { padding: 56px 0; }

  .menu-item { flex-direction: column; align-items: flex-start; }
  .menu-item-right { width: 100%; justify-content: flex-end; gap: 24px; }

  .contact-card { padding: 22px; }
  .menu-header { padding: 100px 0 40px; }

  /* Labels "Seul" / "En menu" sous chaque prix sur mobile */
  .menu-item-right:has(.menu-price-secondary) .menu-price,
  .menu-item-right:has(.menu-price-secondary) .menu-price-secondary {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.15;
    min-width: 0;
  }
  .menu-item-right:has(.menu-price-secondary) .menu-price::after,
  .menu-price-secondary::after {
    font-family: var(--ff-body);
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-top: 3px;
  }
  .menu-item-right:has(.menu-price-secondary) .menu-price::after {
    content: "Seul";
  }
  .menu-price-secondary::after {
    content: "En menu";
  }

  .phone-float {
    bottom: 20px;
    right: 16px;
    padding: 13px 18px;
  }
  .phone-float-label { display: none; }
}

@media (max-width: 480px) {
  .menu-item-right { gap: 16px; }
}

/* ---------------------- À PROPOS ---------------------- */
.about-text {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.about-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}

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

.text-start { text-align: left; }

@media (max-width: 991px) {
  .about-img { aspect-ratio: 16 / 10; }
  .section-title.text-start { text-align: center; }
  .about-cta { justify-content: center; }
}

/* ---------------------- POURQUOI NOUS ---------------------- */
.why-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  height: 100%;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.why-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.why-title {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 10px;
}

.why-text {
  color: #aaa;
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

/* ---------------------- ZONE / COMMUNES ---------------------- */
.zone-text {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.zone-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 32px 0;
}

.zone-chip {
  display: inline-block;
  padding: 8px 16px;
  background: var(--dark-2);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 500;
  transition: background var(--transition);
}

.zone-chip:hover {
  background: var(--gold-light);
}

/* ---------------------- FAQ ---------------------- */
.faq-item {
  background: var(--dark-3);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item[open] {
  border-color: var(--gold-border);
}

.faq-q {
  padding: 18px 22px;
  font-family: var(--ff-heading);
  font-size: 1rem;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 48px;
  transition: color var(--transition);
}

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

.faq-q::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform var(--transition);
}

.faq-item[open] .faq-q::after {
  content: '−';
}

.faq-q:hover { color: var(--gold); }

.faq-a {
  padding: 0 22px 20px;
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ---------------------- GALLERY ---------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 8px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--dark-3);
}

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: var(--radius);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item--large {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
}

/* ---------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}
