/* =========================================================================
   Coin Typique — Bleu Majorelle & or, sobre et chic
   Réécriture propre (remplace l'empilement de thèmes précédent).
   Palette : bleu Majorelle + or, blanc cassé, motifs marocains discrets.
   ========================================================================= */

:root {
  /* Bleu Majorelle */
  --majorelle: #2e4bd0;
  --majorelle-deep: #1f3aa6;
  --night: #121736;        /* bleu nuit profond */

  /* Or / safran */
  --gold: #c8a04a;
  --gold-bright: #d6a83f;

  /* Neutres */
  --ink: #1a1c2e;
  --muted: #6b7090;
  --paper: #f6f8fd;        /* blanc cassé bleuté */
  --card: #ffffff;
  --line: #e4e7f3;

  /* Accents */
  --whatsapp: #1f9d55;
  --whatsapp-deep: #178a49;

  /* Statuts */
  --ok: #157a4a;
  --ok-bg: rgba(31, 157, 85, 0.14);
  --warn: #9a6a12;
  --warn-bg: rgba(214, 168, 63, 0.18);
  --cancel: #b1452f;
  --cancel-bg: rgba(177, 69, 47, 0.12);

  --shadow: 0 30px 70px rgba(18, 23, 54, 0.16);
  --soft-shadow: 0 14px 34px rgba(31, 58, 166, 0.08);
  --ring: 0 0 0 3px rgba(46, 75, 208, 0.18);

  --radius: 16px;
  --radius-sm: 11px;
  --container: 1180px;

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-ar: "Noto Kufi Arabic", "Segoe UI", sans-serif;
}

/* ----------------------------------------------------------------- Reset */
* { box-sizing: border-box; }
*, *::before, *::after { min-width: 0; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.6;
  background:
    radial-gradient(1200px 520px at 88% -8%, rgba(46, 75, 208, 0.07), transparent 60%),
    radial-gradient(900px 460px at -6% 4%, rgba(200, 160, 74, 0.07), transparent 55%),
    var(--paper);
  overflow-x: hidden;
}

[dir="rtl"] body { font-family: var(--font-ar); }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.1;
  margin: 0 0 0.4em;
  color: var(--night);
  letter-spacing: -0.01em;
}
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3 { font-family: var(--font-ar); letter-spacing: 0; }

h1 { font-size: clamp(2.6rem, 5.6vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); font-weight: 700; }
h3 { font-size: 1.18rem; font-weight: 700; }
p { margin: 0 0 1em; }

:focus-visible { outline: 3px solid rgba(46, 75, 208, 0.45); outline-offset: 2px; }
button:focus-visible, a:focus-visible { outline-offset: 3px; }

/* --------------------------------------------------------- Motifs / déco */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--majorelle);
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 2px;
}

/* fine ligne zellige (séparateur) */
.zellige-rule {
  width: min(var(--container), calc(100% - 34px));
  height: 18px;
  margin: 6px auto;
  background-image: repeating-linear-gradient(
    45deg,
    var(--gold) 0, var(--gold) 2px,
    transparent 2px, transparent 9px
  );
  -webkit-mask: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
          mask: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  opacity: 0.5;
}

/* ------------------------------------------------------------- Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn i { font-size: 1.05em; }

.btn.primary {
  background: linear-gradient(135deg, var(--majorelle), var(--majorelle-deep));
  color: #fff;
  box-shadow: 0 14px 30px rgba(31, 58, 166, 0.28);
}
.btn.primary:hover { box-shadow: 0 18px 38px rgba(31, 58, 166, 0.38); }

.btn.soft {
  background: #fff;
  color: var(--majorelle-deep);
  border-color: var(--line);
  box-shadow: var(--soft-shadow);
}
.btn.soft:hover { border-color: var(--majorelle); color: var(--majorelle); }

.btn.outline {
  background: transparent;
  color: var(--majorelle-deep);
  border-color: rgba(46, 75, 208, 0.35);
}
.btn.outline:hover { background: rgba(46, 75, 208, 0.06); border-color: var(--majorelle); }

.btn.whatsapp {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-deep));
  color: #fff;
  box-shadow: 0 14px 30px rgba(31, 157, 85, 0.28);
}
.btn.whatsapp:hover { box-shadow: 0 18px 38px rgba(31, 157, 85, 0.36); }

/* --------------------------------------------------------------- Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 40px);
  background: rgba(246, 248, 253, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--majorelle), var(--majorelle-deep));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.18rem;
  box-shadow: inset 0 0 0 2px rgba(214, 168, 63, 0.55);
}
.brand strong { display: block; font-family: var(--font-display); font-size: 1.16rem; color: var(--night); }
.brand small { display: block; font-size: 0.74rem; color: var(--muted); letter-spacing: 0.06em; }

.main-nav { display: flex; align-items: center; gap: 6px; justify-self: center; }
.main-nav a {
  position: relative;
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.18s ease, background 0.18s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 14px;
  bottom: 5px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}
.main-nav a:hover { color: var(--majorelle); }
.main-nav a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--majorelle-deep);
  font-size: 1.15rem;
}

.language-switcher {
  display: inline-flex;
  gap: 2px;
  padding: 4px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.language-switcher button {
  min-width: 38px;
  padding: 6px 10px;
  border: none;
  border-radius: 999px;
  background: transparent;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--muted);
  transition: background 0.18s ease, color 0.18s ease;
}
.language-switcher button.active {
  background: linear-gradient(135deg, var(--majorelle), var(--majorelle-deep));
  color: #fff;
}

/* --------------------------------------------------------------- Layout */
main > section {
  width: min(var(--container), calc(100% - 34px));
  margin-inline: auto;
}
.family-section, .menu-section, .booking-section, .manager-section, .contact-band {
  padding-block: clamp(48px, 7vw, 96px);
}

.section-head { max-width: 720px; margin-bottom: 30px; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin-bottom: 0; }
.lead { font-size: 1.18rem; color: var(--muted); }

/* ----------------------------------------------------------------- Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1.05fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  min-height: min(720px, calc(100svh - 78px));
  padding-block: clamp(38px, 6vw, 80px);
}
.hero-copy h1 { margin-bottom: 0.3em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 36px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.hero-stats article {
  padding: 18px 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--soft-shadow);
}
.hero-stats span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--majorelle-deep);
}
.hero-stats small { color: var(--muted); font-weight: 600; font-size: 0.86rem; }

/* photo en arche (signature riad) */
.hero-image {
  position: relative;
  margin: 0;
  border-radius: 220px 220px var(--radius) var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  padding: 10px;
  background: linear-gradient(135deg, rgba(214, 168, 63, 0.9), rgba(200, 160, 74, 0.55));
}
.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  max-height: 640px;
  object-fit: cover;
  border-radius: 210px 210px 8px 8px;
}
.hero-image figcaption {
  position: absolute;
  inset-inline: 22px;
  bottom: 22px;
  display: grid;
  gap: 3px;
  padding: 14px 18px;
  color: #fff;
  background: rgba(18, 23, 54, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(10px);
}
.hero-image figcaption strong { font-family: var(--font-display); font-size: 1.05rem; }
.hero-image figcaption span { font-size: 0.84rem; opacity: 0.85; }

/* -------------------------------------------------------------- Histoire */
.family-section > div:first-child { max-width: 760px; }
.family-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}
.family-grid article {
  padding: 28px 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.family-grid article:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.family-grid article i {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: rgba(46, 75, 208, 0.08);
  color: var(--majorelle);
  font-size: 1.3rem;
}
.family-grid article p { color: var(--muted); margin-bottom: 0; }

/* ----------------------------------------------------------------- Menu */
.menu-controls { display: grid; gap: 16px; margin-bottom: 26px; }
.tabs, .filters { display: flex; flex-wrap: wrap; gap: 10px; }
.tabs button, .filters button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  transition: all 0.18s ease;
}
.tabs button i, .filters button i { color: var(--gold); }
.tabs button:hover, .filters button:hover { border-color: var(--majorelle); color: var(--majorelle); }
.tabs button.active, .filters button.active {
  background: linear-gradient(135deg, var(--majorelle), var(--majorelle-deep));
  border-color: transparent;
  color: #fff;
}
.tabs button.active i, .filters button.active i { color: #fff; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 18px;
}
.menu-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 22px 22px 16px;
  font: inherit;
  color: inherit;
  text-align: start;
  cursor: pointer;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.menu-card-top h3 { margin-bottom: 0; }
.menu-card .badges { display: inline-flex; flex-wrap: wrap; gap: 6px; }
.menu-card-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--majorelle);
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0.85;
}
.menu-card:hover .menu-card-more { opacity: 1; }
.menu-card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--majorelle), var(--gold));
  opacity: 0;
  transition: opacity 0.2s ease;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(46, 75, 208, 0.25); }
.menu-card:hover::before { opacity: 1; }
.menu-card h3 { margin-bottom: 6px; }
.menu-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 0; }
.dish-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px !important;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(200, 160, 74, 0.12);
  color: var(--warn);
  font-size: 0.78rem;
  font-weight: 700;
}
.dish-note i { font-size: 0.9em; }

/* Fiche détaillée du plat (modale) */
.dish-dialog {
  width: min(520px, calc(100vw - 32px));
  padding: 0;
  border: none;
  border-radius: var(--radius);
  background: var(--card);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.dish-dialog::backdrop {
  background: rgba(18, 23, 54, 0.55);
  backdrop-filter: blur(3px);
}
.dish-dialog-body { padding: clamp(26px, 4vw, 38px); }
.dish-dialog-body h3 { font-size: 1.55rem; margin-bottom: 12px; }
.dish-dialog-desc { color: var(--muted); font-size: 1.02rem; margin-bottom: 14px; }
.dish-options {
  list-style: none;
  margin: 4px 0 16px;
  padding: 0;
  display: grid;
  gap: 2px;
}
.dish-options li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 2px;
  border-bottom: 1px solid var(--line);
}
.dish-options li:last-child { border-bottom: none; }
.dish-options li span { color: var(--ink); font-weight: 600; }
.dish-options li strong {
  flex-shrink: 0;
  padding: 3px 12px;
  border-radius: 999px;
  background: rgba(46, 75, 208, 0.08);
  color: var(--majorelle-deep);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
}
.dish-dialog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.dish-dialog-footer .badges { display: inline-flex; flex-wrap: wrap; gap: 6px; }
.dish-dialog-close {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.dish-dialog-close:hover { color: var(--majorelle); border-color: var(--majorelle); }

.origin-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(200, 160, 74, 0.14);
  color: var(--warn);
  font-size: 0.74rem;
  font-weight: 700;
}
.origin-chip i { font-size: 0.85em; }

.dish-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.price { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--majorelle-deep); }
.dish-footer > span { display: inline-flex; flex-wrap: wrap; gap: 6px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(46, 75, 208, 0.07);
  color: var(--majorelle-deep);
  font-size: 0.72rem;
  font-weight: 700;
}
.badge i { font-size: 0.85em; color: var(--gold); }

/* -------------------------------------------------------------- Réserver */
.booking-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 30px;
  align-items: start;
}
.booking-info p { color: var(--muted); }
.flow { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.flow span {
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(46, 75, 208, 0.06);
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--majorelle-deep);
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}
.booking-form label { display: grid; gap: 7px; font-weight: 600; font-size: 0.92rem; }
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fcfdff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
  outline: none;
  border-color: var(--majorelle);
  box-shadow: var(--ring);
}
.booking-form textarea { resize: vertical; min-height: 96px; }
.form-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.booking-preview {
  padding: 16px 18px;
  background:
    radial-gradient(circle at 1px 1px, rgba(46, 75, 208, 0.06) 1.4px, transparent 0) 0 0 / 18px 18px,
    #fbfcff;
  border: 1px dashed rgba(46, 75, 208, 0.3);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.form-status { margin: 0; font-weight: 700; color: var(--majorelle-deep); }

/* ------------------------------------------------------------- Gérant */
.manager-section {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  padding: clamp(26px, 4vw, 44px);
}
.manager-login { display: grid; gap: 16px; max-width: 420px; margin-top: 6px; }
.manager-login label { display: grid; gap: 7px; font-weight: 600; }
.manager-login input {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fcfdff;
}
.manager-login input:focus { outline: none; border-color: var(--majorelle); box-shadow: var(--ring); }
.manager-login .btn { justify-self: start; }

.manager-dashboard { margin-top: 6px; }
.manager-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.reservation-list { display: grid; gap: 14px; }
.reservation-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  background: #fbfcff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.reservation-card > i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(46, 75, 208, 0.08);
  color: var(--majorelle);
  font-size: 1.25rem;
}
.reservation-card h3 { margin-bottom: 4px; font-size: 1.05rem; }
.reservation-card p { margin-bottom: 0; color: var(--muted); font-size: 0.92rem; }

.status {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
}
.status.new { color: var(--warn); background: var(--warn-bg); }
.status.confirmed { color: var(--ok); background: var(--ok-bg); }
.status.cancelled { color: var(--cancel); background: var(--cancel-bg); }

.status-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.status-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
  font-size: 0.84rem;
  transition: all 0.18s ease;
}
.status-actions button[data-status="confirmed"]:hover { border-color: var(--ok); color: var(--ok); background: var(--ok-bg); }
.status-actions button[data-status="cancelled"]:hover { border-color: var(--cancel); color: var(--cancel); background: var(--cancel-bg); }

/* -------------------------------------------------------------- Contact */
.contact-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: clamp(34px, 5vw, 56px) clamp(28px, 5vw, 56px);
  color: #fff;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 1px 1px, rgba(214, 168, 63, 0.16) 1.5px, transparent 0) 0 0 / 22px 22px,
    linear-gradient(135deg, var(--majorelle-deep), var(--night));
  box-shadow: var(--shadow);
}
.contact-band .eyebrow { color: var(--gold-bright); }
.contact-band .eyebrow::before { background: var(--gold-bright); }
.contact-band h2 { color: #fff; margin-bottom: 0; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.contact-band .btn.soft { background: #fff; color: var(--majorelle-deep); border-color: transparent; }
.contact-band .btn.primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--night);
  box-shadow: 0 14px 30px rgba(214, 168, 63, 0.32);
}

/* --------------------------------------------------------------- Footer */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  justify-content: space-between;
  width: min(var(--container), calc(100% - 34px));
  margin: 40px auto 0;
  padding: 26px 0 96px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
}
.site-footer p { margin: 0; }
.manager-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.86rem;
  transition: all 0.18s ease;
}
.manager-link:hover { color: var(--majorelle); border-color: var(--majorelle); }
.manager-link i { color: var(--gold); }

/* ------------------------------------------------------- Bouton flottant */
.floating-booking {
  position: fixed;
  inset-inline-end: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-deep));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(31, 157, 85, 0.34);
  transition: transform 0.18s ease;
}
.floating-booking:hover { transform: translateY(-3px); }

/* ----------------------------------------------------------- États vides */
.empty-state {
  grid-column: 1 / -1;
  padding: 28px;
  text-align: center;
  color: var(--muted);
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

/* ----------------------------------------------------------------- RTL */
[dir="rtl"] .hero-image { border-radius: 220px 220px var(--radius) var(--radius); }
[dir="rtl"] .eyebrow { letter-spacing: 0; }

/* -------------------------------------------------------- Responsive */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .hero-image img { min-height: 360px; max-height: 460px; }
  .booking-section { grid-template-columns: 1fr; }
  .family-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: grid; place-items: center; justify-self: end; }
  .main-nav {
    position: absolute;
    inset-inline: 12px;
    top: calc(100% + 8px);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 11px 14px; border-radius: var(--radius-sm); }
  .main-nav a::after { display: none; }
  .main-nav a:hover { background: rgba(46, 75, 208, 0.06); }

  .family-grid { grid-template-columns: 1fr; }
  .contact-band { grid-template-columns: 1fr; }
  .form-pair { grid-template-columns: 1fr; }
  .reservation-card { grid-template-columns: 1fr; }
  .reservation-card > i { width: 46px; height: 46px; }
  .manager-toolbar { flex-direction: column; align-items: stretch; }
  .manager-toolbar .btn { width: 100%; }
}

@media (max-width: 420px) {
  .hero-stats { grid-template-columns: 1fr; }
  .brand small { display: none; }
  .floating-booking span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .btn:hover, .menu-card:hover, .family-grid article:hover, .floating-booking:hover { transform: none; }
}
