/* ==========================================================================
   Lumière City RP — feuille de style commune
   ========================================================================== */

:root {
  --bg: #0a0a0c;
  --bg-soft: #111114;
  --card: #17171b;
  --card-hover: #1d1d22;
  --border: #2a2a30;
  --border-soft: #232328;

  --gold: #d4af5a;
  --gold-light: #f0d795;
  --gold-dim: #9c7f3d;

  --text: #f2f0ea;
  --text-muted: #a6a4ab;
  --text-faint: #706e77;

  --red: #e0645c;
  --green: #6bc27a;

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--gold-dim); color: #101012; }

/* Texture de fond : léger dégradé + grain subtil */
body {
  background-image:
    radial-gradient(circle at 15% 0%, rgba(212, 175, 90, 0.07), transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(212, 175, 90, 0.05), transparent 40%);
  background-attachment: fixed;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typographie ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.2px;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.25rem; color: var(--gold-light); }
p { color: var(--text-muted); margin: 0 0 1em; }
strong { color: var(--text); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 12, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border-soft);
}

.nav-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-wrap > .btn-connect,
.nav-wrap > .nav-toggle {
  margin-left: auto;
}

.brand,
.nav-wrap > .btn-connect {
  flex-shrink: 0;
  white-space: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}
.brand .palm { color: var(--gold); font-size: 1.1rem; }
.brand .city { color: var(--gold-light); }
.brand-logo { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.footer-brand .brand-logo { width: 46px; height: 46px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links > li { position: relative; list-style: none; flex-shrink: 0; }

.nav-links a.nav-link,
.nav-links > li > span.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-links a.nav-link:hover,
.nav-links > li > span.nav-link:hover,
.nav-links a.nav-link.active {
  color: var(--gold-light);
  background: rgba(212, 175, 90, 0.08);
}

.has-dropdown .dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.18s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-radius: 6px;
}
.dropdown a:hover { color: var(--gold-light); background: rgba(212,175,90,0.08); }
.dropdown-divider { height: 1px; background: var(--border-soft); margin: 6px 4px; }
.dropdown-label {
  padding: 8px 12px 4px;
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-faint);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
}

.btn-connect {
  border: 1px solid var(--gold-dim);
  color: var(--gold-light) !important;
  font-weight: 600;
}
.btn-connect:hover { background: var(--gold); color: #14140f !important; border-color: var(--gold); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #17140a;
  box-shadow: 0 8px 24px rgba(212, 175, 90, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(212, 175, 90, 0.35); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--gold-dim); color: var(--gold-light); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 110px 0 90px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 400px at 50% -10%, rgba(212, 175, 90, 0.18), transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; text-align: center; max-width: 780px; margin: 0 auto; }
.hero .eyebrow { justify-content: center; }
.hero-inner .eyebrow::before { display: none; }
.hero p.lead {
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 34px;
}
.hero-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 42px;
  flex-wrap: wrap;
}
.hero-stats .stat { text-align: center; }
.hero-stats .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold-light);
}
.hero-stats .stat span { font-size: 0.8rem; color: var(--text-faint); letter-spacing: 0.5px; }

.hero-banner {
  margin-top: 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.hero-banner img { width: 100%; height: auto; }

/* ---------- Sections génériques ---------- */
section { padding: 84px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::before { display: none; }

.alt-bg { background: var(--bg-soft); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }

/* ---------- Cards / Grid ---------- */
.grid {
  display: grid;
  gap: 22px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card:hover { transform: translateY(-4px); border-color: var(--gold-dim); background: var(--card-hover); }
.card .icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(212, 175, 90, 0.1);
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 8px; }
.card p { margin-bottom: 0; font-size: 0.94rem; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
}

/* Cartes de règlement (hub) */
.rule-card { display: flex; flex-direction: column; height: 100%; }
.rule-card .tag {
  align-self: flex-start;
  font-size: 0.68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-faint);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ---------- Page interne : layout avec sidebar ---------- */
.page-header {
  padding: 58px 0 40px;
  border-bottom: 1px solid var(--border-soft);
  background: linear-gradient(180deg, rgba(212,175,90,0.06), transparent);
}
.breadcrumb {
  font-size: 0.82rem;
  color: var(--text-faint);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--text-faint); }
.breadcrumb a:hover { color: var(--gold-light); }
.page-header h1 { margin-bottom: 10px; }
.page-header .lead { max-width: 640px; margin: 0; font-size: 1.02rem; }

.content-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
  padding: 60px 0 100px;
}

.side-nav {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px;
}
.side-nav .side-title {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-faint);
  padding: 10px 12px 8px;
}
.side-nav a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  font-size: 0.89rem;
  color: var(--text-muted);
  border-radius: 8px;
  margin-bottom: 2px;
}
.side-nav a:hover { color: var(--gold-light); background: rgba(212,175,90,0.07); }
.side-nav a.active { color: var(--gold-light); background: rgba(212,175,90,0.12); font-weight: 600; }

.prose { max-width: 760px; }
.prose h2 {
  margin-top: 2.2em;
  padding-top: 0.4em;
  border-top: 1px solid var(--border-soft);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.prose ul, .prose ol { color: var(--text-muted); padding-left: 1.3em; margin: 0 0 1.1em; }
.prose li { margin-bottom: 0.5em; }
.prose blockquote {
  margin: 1.2em 0;
  padding: 14px 18px;
  border-left: 3px solid var(--gold);
  background: rgba(212, 175, 90, 0.06);
  border-radius: 0 8px 8px 0;
  color: var(--text);
  font-style: italic;
  font-size: 0.95rem;
}

/* Callouts / badges statut */
.callout {
  display: flex;
  gap: 12px;
  padding: 16px 18px;
  border-radius: var(--radius);
  margin: 1.4em 0;
  font-size: 0.92rem;
  border: 1px solid var(--border);
}
.callout strong { display: block; margin-bottom: 2px; }
.callout-danger { border-color: rgba(224, 100, 92, 0.35); background: rgba(224, 100, 92, 0.08); }
.callout-danger strong { color: var(--red); }
.callout-ok { border-color: rgba(107, 194, 122, 0.3); background: rgba(107, 194, 122, 0.07); }
.callout-ok strong { color: var(--green); }
.callout-gold { border-color: var(--gold-dim); background: rgba(212, 175, 90, 0.07); }
.callout-gold strong { color: var(--gold-light); }

.pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.3px;
}
.pill-interdit { background: rgba(224,100,92,0.12); color: var(--red); }
.pill-autorise { background: rgba(107,194,122,0.12); color: var(--green); }
.pill-gold { background: rgba(212,175,90,0.14); color: var(--gold-light); }

/* Accordéon (règlement légal / illégal) */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--card);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
}
.accordion-trigger .chevron {
  color: var(--gold);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.accordion-item.open .accordion-trigger .chevron { transform: rotate(180deg); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}
.accordion-item.open .accordion-panel { padding: 0 20px 22px; }
.accordion-panel .prose { max-width: none; }
.accordion-panel h2 { display: none; }

/* Lexique */
.glossary { display: grid; gap: 14px; }
.glossary dt {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1.05rem;
  font-weight: 700;
}
.glossary dd { margin: 4px 0 14px; color: var(--text-muted); border-bottom: 1px solid var(--border-soft); padding-bottom: 14px; }
.glossary dd:last-child { border-bottom: none; }

/* Table (braquages) */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); margin: 1.4em 0; }
table { width: 100%; border-collapse: collapse; font-size: 0.88rem; min-width: 640px; }
thead th {
  text-align: left;
  background: var(--bg-soft);
  color: var(--gold-light);
  font-family: var(--font-display);
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
tbody td { padding: 13px 16px; border-bottom: 1px solid var(--border-soft); color: var(--text-muted); }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: rgba(212,175,90,0.04); }

/* Quartiers */
.district-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  background-color: #0c0c0d;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}
.district-card:hover { transform: translateY(-4px); }
.district-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 10%, rgba(0,0,0,0.1) 65%);
}
.district-card .district-body { position: relative; padding: 26px; width: 100%; }
.district-card h3 { color: var(--text); margin-bottom: 6px; font-size: 1.5rem; }
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.status-badge.actif { background: rgba(107,194,122,0.15); color: var(--green); }
.status-badge.attente { background: rgba(212,175,90,0.15); color: var(--gold-light); }
.status-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ---------- CTA bande ---------- */
.cta-band {
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  background: linear-gradient(135deg, rgba(212,175,90,0.12), rgba(212,175,90,0.02));
  border: 1px solid var(--gold-dim);
}
.cta-band h2 { margin-bottom: 10px; }
.cta-band p { max-width: 480px; margin: 0 auto 28px; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 56px 0 30px;
  background: var(--bg-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-brand .brand { margin-bottom: 12px; }
.footer-brand p { font-size: 0.88rem; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.76rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 0.89rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  font-size: 0.8rem;
  color: var(--text-faint);
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  height: 36px;
  padding: 0 16px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}
.footer-socials a:hover { border-color: var(--gold-dim); color: var(--gold-light); }

/* ---------- Lore : livre anime (double page, comme un vrai livre ouvert) ---------- */
.book-wrap {
  max-width: 1060px;
  margin: 0 auto;
}

.book {
  --flip-ms: 850ms;
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 2;
  perspective: 2800px;
  margin: 0 auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.55));
  transition: aspect-ratio 0.25s ease;
  overflow: hidden;
  border-radius: 6px;
}

/* Page 7 (double-page finale, format tres large) : le livre s'ouvre en pleine
   largeur sur une seule page au lieu de deux demi-pages, pour rester lisible. */
.book.is-centerfold { aspect-ratio: 43 / 10; }
.book.is-centerfold .book-pages { left: 0; width: 100%; }

/* Conteneur de droite : c'est ici que vivent TOUTES les pages (chacune y est
   "posee" a plat quand elle n'est pas encore tournee). Le pivot de rotation
   (transform-origin a gauche de ce conteneur) tombe donc pile sur la reliure
   au centre du livre. */
.book-pages {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  transform-style: preserve-3d;
  transition: left 0.25s ease, width 0.25s ease;
}

.book-page {
  position: absolute;
  inset: 0;
  transform-origin: left center;
  transform: rotateY(0deg);
  transform-style: preserve-3d;
}
.book-page.is-flipping { transition: transform var(--flip-ms) cubic-bezier(0.62, 0.04, 0.35, 1); }
.book-page.is-flipped { transform: rotateY(-180deg); }

/* Chaque page a deux faces avec la MEME image (nos "unes" n'ont pas de verso
   dessine) : quelle que soit la rotation, on voit donc toujours le contenu a
   l'endroit, jamais en miroir. */
.book-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  border-radius: 6px;
  background: #ece6d6;
  border: 1px solid rgba(0, 0, 0, 0.35);
}
.book-face-front { transform: rotateY(0deg); }
.book-face-back { transform: rotateY(180deg); }

.book-face img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #ece6d6;
}

/* Ombre de "pli" qui balaie la page pendant le retournement, pour l'illusion de courbure du papier. */
.book-page::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0) 35%);
  opacity: 0;
  pointer-events: none;
  z-index: 5;
}
.book-page.is-flipping::after { animation: pageCurlShadow var(--flip-ms) ease-in-out; }

@keyframes pageCurlShadow {
  0% { opacity: 0; }
  45% { opacity: 0.9; }
  55% { opacity: 0.9; }
  100% { opacity: 0; }
}

/* Ombre de reliure au centre du livre, statique, pour donner du volume. */
.book::before {
  content: "";
  position: absolute;
  top: 2%;
  bottom: 2%;
  left: calc(50% - 14px);
  width: 28px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4), transparent 70%);
  z-index: 40;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.book.is-centerfold::before { opacity: 0; }

.book-hitzone {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 14%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 60;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.book-hitzone-left { left: 0; background: linear-gradient(90deg, rgba(240, 215, 149, 0.18), transparent); }
.book-hitzone-right { right: 0; background: linear-gradient(-90deg, rgba(240, 215, 149, 0.18), transparent); }
.book-hitzone:hover { opacity: 1; }
.book-hitzone:focus-visible { opacity: 1; outline: 2px solid var(--gold-dim); outline-offset: -2px; }

.book-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 26px;
}
.book-controls .btn:disabled,
.book-controls .btn.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
.book-counter {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-muted);
  min-width: 64px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.book-hint {
  text-align: center;
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--text-faint);
}

@media (prefers-reduced-motion: reduce) {
  .book { --flip-ms: 1ms; }
  .book-page.is-flipping::after { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .content-layout { grid-template-columns: 1fr; }
  .side-nav { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-links, .btn-connect.desktop-only { display: none; }
  .nav-toggle { display: flex; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  section { padding: 60px 0; }
  .hero { padding: 80px 0 60px; }
  .cta-band { padding: 36px 22px; }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border-soft);
    padding: 10px;
    gap: 0;
  }
  .nav-links.mobile-open .has-dropdown .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    border: none;
    background: rgba(0,0,0,0.2);
    margin: 4px 0 8px;
  }
  .nav-links.mobile-open .has-dropdown.open .dropdown { display: block; }

  .book-wrap { max-width: 100%; }
  .book-controls { gap: 12px; }
  .book-controls .btn { padding: 11px 18px; font-size: 0.88rem; }
  .book-hitzone { width: 20%; }
}
