/* =================================================================
   NOCTE — Feuille de style partagée
   Restaurant gastronomique nocturne · Le Marais, Paris
   -----------------------------------------------------------------
   Toutes les variables réglables sont regroupées ci-dessous.
   Modifiez-les pour adapter le site à votre propre système de design.
   ================================================================= */

:root {
  /* ---- Couleurs : neutres nocturnes ---- */
  --ink:        #0d0d10;   /* fond sombre principal */
  --ink-2:      #15151b;   /* sombre alterné */
  --ink-3:      #1f1f27;   /* cartes sombres / bordures */
  --paper:      #f4efe6;   /* fond clair principal (crème chaude) */
  --paper-2:    #ece4d6;   /* clair alterné */
  --card:       #faf6ee;   /* surface de carte claire */

  /* ---- Couleurs : texte ---- */
  --text:       #1a1a1e;   /* texte sur fond clair */
  --text-soft:  #56524a;   /* texte secondaire clair */
  --text-mute:  #8a857b;   /* texte tertiaire clair */
  --on-ink:     #ece6da;   /* texte sur fond sombre */
  --on-ink-soft:#a8a298;   /* texte secondaire sombre */

  /* ---- Couleurs : accent ---- */
  --accent:     #c39b46;   /* or raffiné */
  --accent-deep:#a8822f;   /* or foncé (survol) */
  --accent-soft:#e8d8ad;   /* or pâle */

  /* ---- Lignes & ombres ---- */
  --line:       #ddd3c2;          /* trait sur clair */
  --line-ink:   #2c2c35;          /* trait sur sombre */
  --shadow:     0 24px 60px -28px rgba(13,13,16,.45);
  --shadow-sm:  0 12px 30px -18px rgba(13,13,16,.35);

  /* ---- Typographie ---- */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:    "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --tracking:     .22em;   /* interlettrage des suréchelles */

  /* ---- Espacement ---- */
  --space-xs:  .5rem;
  --space-sm:  1rem;
  --space-md:  1.75rem;
  --space-lg:  3rem;
  --space-xl:  5rem;
  --section:   clamp(4rem, 9vw, 8rem);   /* respiration verticale des sections */
  --container: 1200px;
  --gutter:    clamp(1.25rem, 4vw, 2.5rem);

  /* ---- Rayon de bordure ---- */
  --radius:    3px;
  --radius-lg: 6px;
  --radius-pill: 999px;
}

/* =================================================================
   RESET
   ================================================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }
input, textarea, select, button { font: inherit; }
::selection { background: var(--accent); color: var(--ink); }

/* =================================================================
   TYPOGRAPHIE
   ================================================================= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.01em;
  color: var(--text);
  text-wrap: balance;
}
.display {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 500;
  line-height: .96;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.75rem); }
h2 { font-size: clamp(2.1rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
h4 { font-size: 1.35rem; }
p  { text-wrap: pretty; }

.eyebrow {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: var(--tracking);
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: "";
  width: 1.75rem; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.centered { justify-content: center; }
.lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-soft);
  font-weight: 300;
}
.muted { color: var(--text-mute); }
em.serif { font-family: var(--font-display); font-style: italic; }

/* =================================================================
   UTILITAIRES DE MISE EN PAGE
   ================================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-wide { max-width: 1440px; }
.container-narrow { max-width: 820px; }
.section { padding-block: var(--section); }
.section-tight { padding-block: clamp(3rem, 6vw, 5rem); }
.ink-section { background: var(--ink); color: var(--on-ink); }
.ink-section h1, .ink-section h2, .ink-section h3, .ink-section h4 { color: var(--on-ink); }
.paper-2-section { background: var(--paper-2); }

.section-head { max-width: 640px; margin-bottom: var(--space-lg); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: .5rem; }
.section-head p { margin-top: 1rem; }

.grid { display: grid; gap: var(--gutter); }
.flow > * + * { margin-top: 1.1rem; }

/* Accessibilité : lien d'évitement + focus visibles */
.skip-link {
  position: absolute; left: 1rem; top: -3rem;
  background: var(--ink); color: var(--on-ink);
  padding: .65rem 1.1rem; border-radius: var(--radius);
  z-index: 200; transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* =================================================================
   BOUTONS
   ================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 1.05em 2.1em;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--ink);
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.btn:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn:active { transform: translateY(1px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--text); color: var(--paper); border-color: var(--text); }
.ink-section .btn-ghost { color: var(--on-ink); border-color: var(--line-ink); }
.ink-section .btn-ghost:hover { background: var(--on-ink); color: var(--ink); border-color: var(--on-ink); }
.btn-line {
  background: transparent; border: none; border-radius: 0;
  padding: .4em 0;
  color: var(--text);
  border-bottom: 1px solid currentColor;
  letter-spacing: .14em;
}
.btn-line:hover { color: var(--accent-deep); }
.ink-section .btn-line { color: var(--on-ink); }
.ink-section .btn-line:hover { color: var(--accent); }

.text-link {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .78rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent-deep);
}
.text-link svg { transition: transform .25s ease; }
.text-link:hover svg { transform: translateX(.35rem); }

/* =================================================================
   EN-TÊTE / NAVIGATION
   ================================================================= */
.topbar {
  background: var(--ink);
  color: var(--on-ink-soft);
  font-size: .76rem;
  letter-spacing: .1em;
  border-bottom: 1px solid var(--line-ink);
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 42px; padding-block: .35rem;
}
.topbar-info { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.topbar-info span { display: inline-flex; align-items: center; gap: .5em; }
.topbar-info svg { width: 14px; height: 14px; color: var(--accent); }
.topbar-social { display: flex; align-items: center; gap: .35rem; }
.topbar-social a {
  width: 30px; height: 30px; display: grid; place-items: center;
  border-radius: 50%; color: var(--on-ink-soft);
  transition: background .25s ease, color .25s ease;
}
.topbar-social a:hover { background: var(--accent); color: var(--ink); }
.topbar-social svg { width: 15px; height: 15px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,13,16,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-ink);
  color: var(--on-ink);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 76px;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.85rem; font-weight: 600;
  letter-spacing: .28em; text-indent: .28em;
  color: var(--paper);
  display: inline-flex; align-items: baseline; gap: .15em;
}
.brand .dot { color: var(--accent); }
.brand small {
  display: block; font-family: var(--font-body);
  font-size: .56rem; letter-spacing: .42em; text-indent: .42em;
  color: var(--on-ink-soft); font-weight: 400; margin-top: -.1rem;
}

.nav-desktop { display: none; }
.nav-desktop ul { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.2rem); }
.nav-desktop a {
  font-size: .76rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--on-ink-soft);
  padding-block: .4rem; position: relative;
  transition: color .25s ease;
}
.nav-desktop a:hover { color: var(--paper); }
.nav-desktop a[aria-current="page"] { color: var(--accent); }
.nav-desktop a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--accent);
}
.nav-cta { display: none; }

/* Menu mobile — uniquement CSS via <details> */
.menu-mobile { position: relative; }
.menu-mobile summary {
  list-style: none; cursor: pointer;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1px solid var(--line-ink); border-radius: var(--radius);
  color: var(--paper);
}
.menu-mobile summary::-webkit-details-marker { display: none; }
.menu-mobile summary .ic-open { display: block; }
.menu-mobile summary .ic-close { display: none; }
.menu-mobile[open] summary .ic-open { display: none; }
.menu-mobile[open] summary .ic-close { display: block; }
.menu-panel {
  position: absolute; right: 0; top: calc(100% + .9rem);
  width: min(78vw, 320px);
  background: var(--ink-2);
  border: 1px solid var(--line-ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1rem;
}
.menu-panel a {
  display: block; padding: .85rem 1rem;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--on-ink-soft); border-radius: var(--radius);
  transition: background .2s ease, color .2s ease;
}
.menu-panel a:hover { background: var(--ink-3); color: var(--paper); }
.menu-panel a[aria-current="page"] { color: var(--accent); }
.menu-panel .btn { width: 100%; justify-content: center; margin-top: .6rem; }

/* =================================================================
   HÉROS
   ================================================================= */
.hero {
  position: relative;
  background: var(--ink); color: var(--on-ink);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,16,.55) 0%, rgba(13,13,16,.35) 45%, rgba(13,13,16,.92) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  min-height: clamp(520px, 78vh, 760px);
  display: flex; flex-direction: column; justify-content: center;
  padding-block: var(--space-xl);
  max-width: 760px;
}
.hero h1 { color: var(--paper); margin: 1.2rem 0 1.5rem; }
.hero .lead { color: var(--on-ink-soft); max-width: 48ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero-meta {
  position: relative; z-index: 2;
  border-top: 1px solid var(--line-ink);
  display: grid; grid-template-columns: repeat(2, 1fr);
}
.hero-meta div { padding: 1.5rem var(--gutter); }
.hero-meta strong {
  font-family: var(--font-display); font-size: 1.6rem;
  font-weight: 500; color: var(--accent); display: block;
}
.hero-meta span { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--on-ink-soft); }

/* Hero secondaire (pages intérieures) */
.page-hero {
  background: var(--ink); color: var(--on-ink);
  position: relative; overflow: hidden;
}
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.page-hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,16,.6), rgba(13,13,16,.9));
}
.page-hero-inner {
  position: relative; z-index: 2;
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
  text-align: center; max-width: 760px; margin-inline: auto;
}
.page-hero h1 { color: var(--paper); margin: 1rem 0 1.1rem; }
.page-hero p { color: var(--on-ink-soft); max-width: 56ch; margin-inline: auto; }
.breadcrumb {
  display: flex; justify-content: center; gap: .6rem; flex-wrap: wrap;
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--on-ink-soft); margin-top: 1.6rem;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }

/* =================================================================
   GRILLES RÉUTILISABLES
   ================================================================= */
.cols { display: grid; gap: var(--gutter); }
@media (min-width: 720px)  { .cols-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 720px)  { .cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 720px)  { .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cols-4 { grid-template-columns: repeat(4, 1fr); } }

.split { display: grid; gap: var(--space-lg); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: var(--space-xl); } }
.split.media-right .split-media { order: 2; }
.split-media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.split-media.tall img { aspect-ratio: 4/5; }

/* =================================================================
   IMAGES & CADRES
   ================================================================= */
.framed { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.img-tag {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  background: rgba(13,13,16,.78); color: var(--paper);
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  padding: .5rem .9rem; border-radius: var(--radius);
  backdrop-filter: blur(4px);
}

/* =================================================================
   « À PROPOS » + HEURES (accueil)
   ================================================================= */
.hours {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.5rem);
}
.hours h3 { margin-bottom: 1.2rem; }
.hours-list li {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; padding: .85rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: .98rem;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { letter-spacing: .08em; text-transform: uppercase; font-size: .82rem; color: var(--text-soft); }
.hours-list .time { font-family: var(--font-display); font-size: 1.25rem; color: var(--text); }
.hours-list .closed { color: var(--text-mute); font-style: italic; font-family: var(--font-display); }
.hours-list li.today { color: var(--accent-deep); }
.hours-list li.today .day { color: var(--accent-deep); font-weight: 500; }

/* =================================================================
   GALERIE MENU ASYMÉTRIQUE
   ================================================================= */
.mosaic { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.mosaic .framed img { width: 100%; height: 100%; object-fit: cover; }
.mosaic .framed { aspect-ratio: 4/3; }
@media (min-width: 760px) {
  .mosaic {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }
  .mosaic .framed { aspect-ratio: auto; }
  .m-tall { grid-row: span 2; }
  .m-wide { grid-column: span 2; }
  .m-big  { grid-column: span 2; grid-row: span 2; }
}

/* =================================================================
   CARTES (plats / menu liste)
   ================================================================= */
.menu-list { display: grid; gap: 1.6rem; }
@media (min-width: 800px) { .menu-list { grid-template-columns: 1fr 1fr; gap: 1.6rem 4rem; } }
.menu-item { padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.menu-item-head {
  display: flex; align-items: baseline; gap: .9rem;
}
.menu-item-head h4 { font-size: 1.45rem; white-space: nowrap; }
.menu-item-head .leader { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-.3rem); }
.menu-item-head .price { font-family: var(--font-display); font-size: 1.4rem; color: var(--accent-deep); }
.menu-item p { font-size: .96rem; color: var(--text-soft); margin-top: .35rem; }
.menu-item .tags { margin-top: .5rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.tag {
  font-size: .64rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-mute); border: 1px solid var(--line);
  padding: .25rem .6rem; border-radius: var(--radius-pill);
}

/* Carte plat (portfolio / blog) */
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent-soft); }
.card-media { aspect-ratio: 4/3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.card-meta {
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-mute); display: flex; gap: .8rem; flex-wrap: wrap;
}
.card-meta .dot-sep::before { content: "·"; margin-right: .8rem; color: var(--accent); }
.card h3 { font-size: 1.45rem; }
.card h4 { font-size: 1.25rem; }
.card p { font-size: .95rem; color: var(--text-soft); }
.card .text-link { margin-top: auto; }

/* =================================================================
   STATISTIQUES / RÉSULTATS
   ================================================================= */
.stats { display: grid; gap: var(--gutter); }
@media (min-width: 600px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; padding: 1.5rem 1rem; border-left: 1px solid var(--line-ink); }
.stat:first-child { border-left: 0; }
.stat .num {
  font-family: var(--font-display); font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 500; line-height: 1; color: var(--accent);
}
.stat .label { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--on-ink-soft); margin-top: .7rem; }
@media (max-width: 599px) { .stat { border-left: 0; border-top: 1px solid var(--line-ink); } .stat:first-child { border-top: 0; } }

/* =================================================================
   FRISE DE PROCESSUS (timeline)
   ================================================================= */
.timeline { display: grid; gap: 0; }
.tl-item {
  display: grid; gap: 1rem;
  grid-template-columns: auto 1fr;
  padding-bottom: 2.5rem;
}
.tl-rail { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.tl-num {
  width: 56px; height: 56px; flex-shrink: 0;
  display: grid; place-items: center;
  border: 1px solid var(--accent); border-radius: 50%;
  font-family: var(--font-display); font-size: 1.5rem; color: var(--accent-deep);
  background: var(--card);
}
.tl-line { width: 1px; flex: 1; background: var(--line); min-height: 1.5rem; }
.tl-item:last-child .tl-line { display: none; }
.tl-body { padding-top: .4rem; }
.tl-body h3 { font-size: 1.6rem; margin-bottom: .5rem; }
.tl-body .step-label { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-deep); display: block; margin-bottom: .3rem; }
.tl-body p { color: var(--text-soft); max-width: 56ch; }

/* =================================================================
   TARIFS (pricing)
   ================================================================= */
.pricing { display: grid; gap: var(--gutter); align-items: stretch; }
@media (min-width: 860px) { .pricing { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2.25rem 1.9rem;
  display: flex; flex-direction: column;
}
.price-card.featured {
  background: var(--ink); color: var(--on-ink);
  border-color: var(--ink); box-shadow: var(--shadow);
  position: relative;
}
.price-card.featured h3 { color: var(--paper); }
.price-card.featured .price-amt { color: var(--accent); }
.price-card.featured li { color: var(--on-ink-soft); border-color: var(--line-ink); }
.price-badge {
  position: absolute; top: -.85rem; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--ink);
  font-size: .66rem; letter-spacing: .16em; text-transform: uppercase;
  padding: .4rem 1rem; border-radius: var(--radius-pill); white-space: nowrap;
}
.price-card .kicker { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-deep); }
.price-card.featured .kicker { color: var(--accent); }
.price-card h3 { font-size: 1.9rem; margin: .4rem 0 1rem; }
.price-amt { font-family: var(--font-display); font-size: 3.2rem; font-weight: 500; line-height: 1; color: var(--text); }
.price-amt small { font-size: .95rem; font-family: var(--font-body); color: var(--text-mute); letter-spacing: .04em; }
.price-card.featured .price-amt small { color: var(--on-ink-soft); }
.price-desc { color: var(--text-soft); margin: 1rem 0 1.4rem; font-size: .96rem; }
.price-card.featured .price-desc { color: var(--on-ink-soft); }
.price-feats { display: grid; gap: 0; margin-bottom: 1.8rem; }
.price-feats li { display: flex; gap: .7rem; align-items: flex-start; padding: .7rem 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.price-feats li:last-child { border-bottom: 0; }
.price-feats svg { width: 17px; height: 17px; color: var(--accent-deep); flex-shrink: 0; margin-top: .25rem; }
.price-card .btn { margin-top: auto; justify-content: center; }

/* =================================================================
   TABLEAU COMPARATIF
   ================================================================= */
.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); }
table.compare { width: 100%; border-collapse: collapse; min-width: 640px; background: var(--card); }
table.compare th, table.compare td { padding: 1.1rem 1.3rem; text-align: left; border-bottom: 1px solid var(--line); }
table.compare thead th {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 500;
  background: var(--ink); color: var(--paper);
}
table.compare thead th:first-child { font-size: .76rem; font-family: var(--font-body); letter-spacing: .14em; text-transform: uppercase; color: var(--on-ink-soft); }
table.compare tbody th {
  font-weight: 500; font-family: var(--font-body); font-size: .95rem;
  color: var(--text); width: 38%;
}
table.compare td { text-align: center; color: var(--text-soft); }
table.compare tbody tr:last-child th, table.compare tbody tr:last-child td { border-bottom: 0; }
table.compare .yes { color: var(--accent-deep); }
table.compare .no { color: var(--text-mute); }
table.compare svg { width: 18px; height: 18px; display: inline-block; }
table.compare .col-feat { background: rgba(195,155,70,.08); }

/* =================================================================
   TÉMOIGNAGES
   ================================================================= */
.testimonials { display: grid; gap: var(--gutter); }
@media (min-width: 760px) { .testimonials { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px){ .testimonials { grid-template-columns: repeat(3, 1fr); } }
.quote {
  background: var(--ink-2); border: 1px solid var(--line-ink);
  border-radius: var(--radius-lg); padding: 2rem 1.9rem;
  display: flex; flex-direction: column; gap: 1.2rem;
}
.quote .stars { display: flex; gap: .2rem; color: var(--accent); }
.quote .stars svg { width: 17px; height: 17px; }
.quote blockquote {
  font-family: var(--font-display); font-size: 1.5rem; line-height: 1.35;
  color: var(--on-ink); font-style: italic;
}
.quote figcaption { margin-top: auto; display: flex; align-items: center; gap: .85rem; }
.quote .avatar {
  width: 46px; height: 46px; border-radius: 50%; object-fit: cover;
  border: 1px solid var(--line-ink);
}
.quote .who strong { display: block; color: var(--paper); font-weight: 500; }
.quote .who span { font-size: .8rem; color: var(--on-ink-soft); letter-spacing: .05em; }

/* =================================================================
   BANDEAU PARTENAIRES / PRESSE
   ================================================================= */
.press { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(2rem, 6vw, 4.5rem); }
.press span {
  font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 500; letter-spacing: .08em; color: var(--text-mute);
  transition: color .25s ease;
}
.press span:hover { color: var(--text); }

/* =================================================================
   FAQ — uniquement CSS (<details>/<summary>)
   ================================================================= */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem 0;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .icon {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center;
  position: relative; transition: background .25s ease, border-color .25s ease;
}
.faq summary .icon::before, .faq summary .icon::after {
  content: ""; position: absolute; background: var(--text); transition: transform .25s ease, background .25s ease;
}
.faq summary .icon::before { width: 13px; height: 1.5px; }
.faq summary .icon::after  { width: 1.5px; height: 13px; }
.faq details[open] summary .icon { background: var(--accent); border-color: var(--accent); }
.faq details[open] summary .icon::before,
.faq details[open] summary .icon::after { background: var(--ink); }
.faq details[open] summary .icon::after { transform: scaleY(0); }
.faq summary:hover { color: var(--accent-deep); }
.faq .faq-body { padding: 0 0 1.6rem; max-width: 64ch; }
.faq .faq-body p { color: var(--text-soft); }

/* =================================================================
   FORMULAIRE
   ================================================================= */
.form { display: grid; gap: 1.3rem; }
.form-row { display: grid; gap: 1.3rem; }
@media (min-width: 620px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: .5rem; }
.field label {
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-soft); font-weight: 500;
}
.field label .req { color: var(--accent-deep); }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .95rem 1.1rem;
  color: var(--text);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-mute); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(195,155,70,.18);
}
.field input:invalid:not(:placeholder-shown) { border-color: #b4543f; }
.form .btn { justify-self: start; }
.form-note { font-size: .82rem; color: var(--text-mute); }

/* Encadré coordonnées */
.contact-cards { display: grid; gap: 1rem; }
.contact-card {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.4rem; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.contact-card .ic {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%;
  background: var(--ink); color: var(--accent); display: grid; place-items: center;
}
.contact-card .ic svg { width: 19px; height: 19px; }
.contact-card h4 { font-size: 1.2rem; margin-bottom: .2rem; }
.contact-card p, .contact-card a { font-size: .95rem; color: var(--text-soft); }
.contact-card a:hover { color: var(--accent-deep); }

/* Carte / plan (placeholder) */
.map-frame {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--paper-2);
  min-height: 320px; position: relative;
  display: grid; place-items: center;
  background-image: repeating-linear-gradient(45deg, var(--paper-2), var(--paper-2) 14px, #e4dac8 14px, #e4dac8 15px);
}
.map-frame .pin {
  text-align: center; background: var(--ink); color: var(--paper);
  padding: 1rem 1.4rem; border-radius: var(--radius); font-size: .8rem;
  letter-spacing: .1em; text-transform: uppercase;
}
.map-frame .pin svg { width: 22px; height: 22px; color: var(--accent); margin: 0 auto .5rem; }

/* =================================================================
   NEWSLETTER (CTA bandeau)
   ================================================================= */
.newsletter {
  background: var(--ink); color: var(--on-ink);
  border-radius: var(--radius-lg); overflow: hidden;
  display: grid; gap: 0;
}
@media (min-width: 880px) { .newsletter { grid-template-columns: 1fr 1fr; } }
.newsletter-media { min-height: 240px; }
.newsletter-media img { width: 100%; height: 100%; object-fit: cover; }
.newsletter-body { padding: clamp(2rem, 5vw, 3.5rem); display: flex; flex-direction: column; justify-content: center; }
.newsletter-body h2 { color: var(--paper); margin: .6rem 0 1rem; }
.newsletter-body p { color: var(--on-ink-soft); margin-bottom: 1.6rem; }
.newsletter-form { display: flex; gap: .6rem; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1; min-width: 200px;
  background: transparent; border: 1px solid var(--line-ink);
  border-radius: var(--radius); padding: .95rem 1.1rem; color: var(--paper);
}
.newsletter-form input::placeholder { color: var(--on-ink-soft); }
.newsletter-form input:focus { outline: none; border-color: var(--accent); }

/* =================================================================
   APPEL FINAL (bandeau réservation)
   ================================================================= */
.cta-band {
  text-align: center;
  background:
    linear-gradient(rgba(13,13,16,.82), rgba(13,13,16,.92)),
    var(--ink-2);
  color: var(--on-ink);
  border-radius: var(--radius-lg);
  padding: clamp(3rem, 7vw, 5.5rem) var(--gutter);
}
.cta-band h2 { color: var(--paper); margin: .8rem 0 1.2rem; max-width: 18ch; margin-inline: auto; }
.cta-band p { color: var(--on-ink-soft); max-width: 52ch; margin: 0 auto 2rem; }

/* =================================================================
   PIED DE PAGE
   ================================================================= */
.site-footer { background: var(--ink); color: var(--on-ink-soft); }
.footer-top { padding-block: var(--space-xl); }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 720px)  { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1.4fr; } }
.footer-brand .brand { margin-bottom: 1.2rem; }
.footer-brand p { font-size: .95rem; max-width: 34ch; }
.footer-brand .footer-social { display: flex; gap: .5rem; margin-top: 1.4rem; }
.footer-social a {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--line-ink); border-radius: 50%; color: var(--on-ink-soft);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.footer-social a:hover { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 {
  color: var(--paper); font-family: var(--font-body);
  font-size: .76rem; letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: 1.2rem; font-weight: 500;
}
.footer-col ul { display: grid; gap: .7rem; }
.footer-col a { font-size: .95rem; transition: color .2s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-contact li { display: flex; gap: .7rem; font-size: .95rem; margin-bottom: .9rem; }
.footer-contact svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: .35rem; }
.footer-bottom {
  border-top: 1px solid var(--line-ink);
  padding-block: 1.6rem;
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
  font-size: .82rem;
}
.footer-bottom nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--accent); }

/* =================================================================
   POINTS DE RUPTURE — NAVIGATION DESKTOP
   ================================================================= */
@media (min-width: 980px) {
  .nav-desktop { display: block; }
  .nav-cta { display: inline-flex; }
  .menu-mobile { display: none; }
}

/* Réduction des animations */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
