/* Le Sequoia — 2 rue Pablo Neruda, Bagneux
   Structure repensée : panneau fixe (identité + infos + réservation
   toujours visibles) + colonne éditoriale unique en flux continu, plutôt
   que des sections empilées avec en-têtes répétés. Voir DESIGN.md pour
   les tokens (couleur/typo inchangés, seule l'architecture de page change). */

:root {
  --bg: #e9e0d0;
  --surface: #f6f1e5;
  --surface-2: #ddd0b8;
  --nav: #3b2a1f;
  --nav-ink: #f6f1e5;
  --ink: #221d18;
  --ink-secondary: #4a4038;
  --muted: #5c4f40;
  --accent: #8a4a1e;
  --accent-dark: #6e3a16;
  --accent-glow: #d98a3f;
  --line: rgba(34, 29, 24, 0.18);
  --shadow: 0 10px 24px rgba(59, 42, 31, 0.14);

  --font-display: "Spectral", Georgia, "Times New Roman", serif;
  --font-body: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1c1712;
    --surface: #241d17;
    --surface-2: #2d251d;
    --nav: #17120d;
    --nav-ink: #f6f1e5;
    --ink: #efe7d9;
    --ink-secondary: #cfc2ae;
    --muted: #a89a89;
    --accent: #d98a3f;
    --accent-dark: #c8752e;
    --accent-glow: #e6a05c;
    --line: rgba(239, 231, 217, 0.14);
    --shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
  }
}
:root[data-theme="dark"] {
  --bg: #1c1712; --surface: #241d17; --surface-2: #2d251d; --nav: #17120d; --nav-ink: #f6f1e5;
  --ink: #efe7d9; --ink-secondary: #cfc2ae; --muted: #a89a89; --accent: #d98a3f;
  --accent-dark: #c8752e; --accent-glow: #e6a05c; --line: rgba(239, 231, 217, 0.14);
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}
:root[data-theme="light"] {
  --bg: #e9e0d0; --surface: #f6f1e5; --surface-2: #ddd0b8; --nav: #3b2a1f; --nav-ink: #f6f1e5;
  --ink: #221d18; --ink-secondary: #4a4038; --muted: #5c4f40; --accent: #8a4a1e;
  --accent-dark: #6e3a16; --accent-glow: #d98a3f; --line: rgba(34, 29, 24, 0.18);
  --shadow: 0 10px 24px rgba(59, 42, 31, 0.14);
}

* { box-sizing: border-box; }

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

a { color: var(--accent); }
img { max-width: 100%; display: block; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; text-wrap: balance; margin: 0; }

/* ---------- Mise en page : panneau fixe + colonne éditoriale ---------- */
.layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  min-height: 100vh;
}
@media (max-width: 900px) {
  .layout { grid-template-columns: 1fr; }
}

.panel {
  background: var(--nav);
  color: var(--nav-ink);
  padding: 2.5rem 2rem;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
@media (max-width: 900px) {
  .panel { position: static; height: auto; padding: 1.5rem 1.25rem; }
}

.panel .wordmark { font-size: 1.7rem; margin-bottom: .3rem; }
.panel .tagline { color: rgba(246, 241, 229, .7); font-size: .88rem; margin-bottom: 2.2rem; }

.panel .block { margin-bottom: 1.6rem; }
.panel .block h3 {
  font-family: var(--font-body); font-weight: 700; font-size: .68rem;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--accent-glow); margin-bottom: .5rem;
}
.panel .block p { margin: 0; font-size: .88rem; color: rgba(246, 241, 229, .85); line-height: 1.7; }

.panel .spacer { flex: 1; }
@media (max-width: 900px) { .panel .spacer { display: none; } }

.panel .btn {
  display: block;
  text-align: center;
  background: var(--accent);
  color: var(--nav-ink);
  font-weight: 700;
  font-size: .9rem;
  padding: .9rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color .15s ease;
}
.panel .btn:hover { background: var(--accent-dark); }

/* ---------- Colonne éditoriale ---------- */
.editorial { max-width: 720px; margin: 0 auto; padding: 0 1.5rem 5rem; }

.lead-image {
  width: calc(100% + 3rem);
  margin: 0 -1.5rem 2.5rem;
  aspect-ratio: 16/10;
  overflow: hidden;
}
@media (min-width: 700px) {
  .lead-image { width: 100%; margin: 0 0 2.5rem; border-radius: 8px; aspect-ratio: 16/8; }
}
.lead-image img { width: 100%; height: 100%; object-fit: cover; }

.editorial .kicker {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin: 3rem 0 1.2rem;
}
.editorial .kicker:first-of-type { margin-top: 1.5rem; }

.editorial h2 { font-size: clamp(1.6rem, 4vw, 2.1rem); margin-bottom: 1.2rem; }
.editorial p { font-size: 1.02rem; color: var(--ink-secondary); margin: 0 0 1.3rem; }
.editorial p.drop::first-letter {
  font-family: var(--font-display); font-size: 3.4rem; float: left; line-height: .8;
  padding: .1rem .5rem 0 0; color: var(--accent);
}

/* Plats inline — pas de grille de cartes, un plat = une ligne de texte
   accompagnée de sa photo, comme dans une critique gastronomique. */
.dish-inline {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1rem;
  align-items: start;
  margin: 0 0 1.6rem;
}
.dish-inline img { width: 96px; height: 96px; object-fit: cover; border-radius: 6px; }
.dish-inline .name { font-weight: 700; font-size: 1.02rem; }
.dish-inline .price { color: var(--accent); font-variant-numeric: tabular-nums; font-weight: 700; }
.dish-inline .desc { color: var(--muted); font-size: .88rem; margin-top: .2rem; }

.menu-plain { margin: 0 0 1.5rem; padding: 0; list-style: none; }
.menu-plain li {
  display: flex; align-items: baseline; gap: .5rem;
  padding: .55rem 0; border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.menu-plain li:first-child { padding-top: 0; }
.menu-plain .leader { flex: 1; border-bottom: 1px dotted var(--line); margin-bottom: .25rem; }
.menu-plain .price { color: var(--accent); font-weight: 700; font-variant-numeric: tabular-nums; }

.break-image {
  width: calc(100% + 3rem);
  margin: 2.5rem -1.5rem;
  aspect-ratio: 16/9;
  overflow: hidden;
}
@media (min-width: 700px) {
  .break-image { width: 100%; margin: 2.5rem 0; border-radius: 8px; }
}
.break-image img { width: 100%; height: 100%; object-fit: cover; }

.editorial .signoff {
  border-top: 1px solid var(--line);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  font-size: .85rem;
  color: var(--muted);
  font-style: italic;
}

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: .001ms !important; animation-duration: .001ms !important; }
}
