@import url('https://fonts.googleapis.com/css2?family=Spectral:wght@500;600;700&display=swap');

/* =============================================================
   place-du-trocadero.fr — Design system "Belvédère heure dorée"
   App-like premium · mobile-first · responsive (mobile + desktop)
   Calcaire chaud + bronze Eiffel (éditorial) + ambre (action).
   Single source of truth for all pages. No build step required.
   ============================================================= */

:root{
  /* ---- Couleur : calcaire chaud, bronze Eiffel (éditorial), ambre heure dorée (action) ---- */
  --bg:        oklch(0.967 0.012 80);
  --paper:     oklch(0.995 0.006 80);
  --ink:       oklch(0.24 0.016 62);
  --muted:     oklch(0.50 0.018 66);
  --line:      oklch(0.91 0.012 80);
  --line-2:    oklch(0.85 0.014 78);
  --accent:    oklch(0.47 0.055 64);     /* bronze : liens, pastilles, filets */
  --accent-d:  oklch(0.40 0.055 60);
  --accent-soft:oklch(0.93 0.030 72);
  --accent-tint:oklch(0.95 0.020 72);
  --action:    oklch(0.63 0.152 54);     /* ambre : boutons d'action */
  --action-d:  oklch(0.53 0.142 50);
  --band:      oklch(0.30 0.034 58);     /* bandeau CTA : dusk chaud profond */
  --glow-1:    oklch(0.63 0.152 54 / .28);

  /* ---- Forme & rythme ---- */
  --r: 22px;          /* grandes cartes */
  --rs: 16px;         /* cartes / champs */
  --wrap: 1180px;     /* largeur de contenu max */
  --pad: 32px;        /* gouttière desktop */
  --safe: env(safe-area-inset-bottom, 0px);
  --ease: cubic-bezier(.22, 1, .36, 1);

  /* ---- Typographie ---- */
  --fb: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --fh: "Spectral", "Iowan Old Style", Palatino, Georgia, serif;  /* titres : chaleur éditoriale */
}

*{ box-sizing: border-box; }
html{ -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body{
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--fb); font-size: 17px; line-height: 1.55;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img{ max-width: 100%; display: block; }
a{ color: var(--accent-d); text-underline-offset: 3px; }
h1, h2, h3{ margin: 0; font-family: var(--fh); line-height: 1.08; font-weight: 600; letter-spacing: -.018em; text-wrap: balance; }
p{ margin: 0 0 1rem; text-wrap: pretty; }
:where(h1,h2,h3){ scroll-margin-top: 90px; }
::selection{ background: oklch(0.63 0.152 54 / .20); }

.wrap{ max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
section{ padding-block: 36px; }
.lede{ color: var(--muted); font-size: 1.08rem; }
.muted{ color: var(--muted); }

/* ---------- Boutons ---------- */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 52px; padding: .7rem 1.4rem; border-radius: 14px;
  font-family: var(--fb); font-weight: 700; font-size: 1rem; text-decoration: none;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .12s var(--ease), box-shadow .15s, background .15s, border-color .15s, color .15s;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }
.btn-action{ background: var(--action); color: oklch(0.20 0.03 50); box-shadow: 0 8px 20px var(--glow-1); }
.btn-action:hover{ background: var(--action-d); box-shadow: 0 12px 26px var(--glow-1); }
.btn-outline{ background: var(--paper); color: var(--ink); border-color: var(--line-2); }
.btn-outline:hover{ border-color: var(--accent); color: var(--accent-d); }
a:focus-visible, .btn:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline: 2.5px solid var(--accent); outline-offset: 3px; border-radius: 12px;
}

/* ---------- En-tête + navigation ---------- */
.site-header{
  position: sticky; top: 0; z-index: 40;
  background: oklch(0.967 0.012 80 / .82); backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .bar{ display: flex; align-items: center; gap: 24px; min-height: 70px; }
.brand{ font-weight: 800; font-size: 1.1rem; color: var(--ink); text-decoration: none; line-height: 1.05; letter-spacing: -.02em; flex: 0 0 auto; }
.brand small{ display: block; font-weight: 600; font-size: .6rem; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.nav{ display: flex; gap: 2px; margin-left: auto; align-items: center; }
.nav a{ color: var(--ink); text-decoration: none; font-weight: 600; font-size: .95rem; padding: 9px 12px; border-radius: 10px; white-space: nowrap; transition: background .15s, color .15s; }
.nav a:hover{ background: var(--accent-soft); color: var(--accent-d); }
.nav a[aria-current="page"]{ color: var(--accent-d); background: var(--accent-soft); }
.header-cta{ margin-left: 12px; flex: 0 0 auto; }
.menu{
  display: none; width: 48px; height: 48px; margin-left: auto; flex: 0 0 auto;
  border: 1px solid var(--line-2); background: var(--paper); border-radius: 13px;
  flex-direction: column; gap: 4px; align-items: center; justify-content: center; cursor: pointer;
}
.menu i{ width: 18px; height: 1.8px; background: var(--ink); border-radius: 2px; transition: transform .2s var(--ease), opacity .2s; }
.site-header.open .menu i:nth-child(1){ transform: translateY(5.8px) rotate(45deg); }
.site-header.open .menu i:nth-child(2){ opacity: 0; }
.site-header.open .menu i:nth-child(3){ transform: translateY(-5.8px) rotate(-45deg); }

/* ---------- Fil d'Ariane ---------- */
.crumbs{ font-size: .9rem; color: var(--muted); padding-top: 22px; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.crumbs a{ color: var(--muted); text-decoration: none; }
.crumbs a:hover{ color: var(--accent-d); }
.crumbs .sep{ color: var(--line-2); }

/* ---------- Hero accueil (deux colonnes) ---------- */
.hero{ padding-top: 16px; }
.hero-grid{ display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.locpill{ display: inline-flex; align-items: center; gap: 7px; background: var(--accent-soft); color: var(--accent-d); font-weight: 700; font-size: .82rem; padding: 8px 15px; border-radius: 999px; margin-bottom: 20px; }
.hero h1{ font-size: clamp(2.7rem, 4.6vw, 4.1rem); line-height: .98; letter-spacing: -.03em; }
.hero .lede{ margin: 20px 0 0; max-width: 42ch; font-size: 1.15rem; }
.hero-cta{ display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.hcard{ position: relative; border-radius: 26px; overflow: hidden; height: 480px; box-shadow: 0 24px 50px oklch(.2 .04 235 / .22); }
.hcard img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05); }
.hcard::before{ content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, oklch(.18 .03 58 / .72) 100%); }
.hcard .cap{ position: absolute; left: 22px; right: 22px; bottom: 20px; color: #fff; font-weight: 700; font-size: 1rem; display: flex; align-items: center; gap: 9px; text-shadow: 0 1px 12px oklch(.15 .03 235 / .6); }

/* ---------- Hero de page (rubriques / éditorial) ---------- */
.page-hero{ padding-top: 18px; }
.page-hero .eyebrow{ display: inline-flex; align-items: center; gap: 7px; background: var(--accent-soft); color: var(--accent-d); font-weight: 700; font-size: .8rem; padding: 7px 14px; border-radius: 999px; margin-bottom: 18px; }
.page-hero h1{ font-size: clamp(2.3rem, 4vw, 3.4rem); line-height: 1.0; letter-spacing: -.03em; max-width: 18ch; }
.page-hero .lede{ margin: 18px 0 0; max-width: 60ch; font-size: 1.12rem; }
.page-hero-cta{ display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }

/* ---------- Bandeau repères "sur place" ---------- */
.onsite{ border-block: 1px solid var(--line); background: var(--paper); }
.onsite .row{ display: grid; grid-template-columns: repeat(4, 1fr); }
.stat{ padding: 22px 26px; display: flex; flex-direction: column; gap: 3px; border-left: 1px solid var(--line); }
.stat:first-child{ border-left: 0; }
.stat .ic{ color: var(--accent-d); font-size: 1.15rem; }
.stat b{ font-size: 1.02rem; color: var(--ink); font-weight: 700; }
.stat span{ font-size: .88rem; color: var(--muted); }

/* ---------- En-tête de section + contrôle segmenté ---------- */
.sec-head{ display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 26px; }
.sec-head h2{ font-size: 2.05rem; }
.sec-head .lede{ margin: 8px 0 0; max-width: 52ch; }
.seg{ display: flex; gap: 4px; background: oklch(0.93 0.008 80); border-radius: 13px; padding: 5px; flex: 0 0 auto; }
.seg button{ border: none; background: transparent; font-family: var(--fb); font-weight: 700; font-size: .9rem; color: var(--muted); padding: 9px 18px; border-radius: 9px; cursor: pointer; transition: background .15s, color .15s; }
.seg button.on{ background: var(--paper); color: var(--ink); box-shadow: 0 1px 3px oklch(.2 .02 235 / .12); }
.seg button:not(.on):hover{ color: var(--ink); }

/* ---------- Cartes-photo "feature" ---------- */
.feature{ display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.fcard{ position: relative; isolation: isolate; min-height: 330px; border-radius: var(--r); overflow: clip; display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; color: #fff; text-decoration: none; box-shadow: 0 12px 30px oklch(.2 .03 235 / .18); transition: transform .3s var(--ease), box-shadow .3s; }
.fcard img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; filter: saturate(1.06); transition: transform .5s var(--ease); }
.fcard::before{ content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(178deg, oklch(.2 .03 58 / .05), oklch(.16 .03 58 / .84)); }
.fcard:hover{ transform: translateY(-3px); box-shadow: 0 20px 44px oklch(.2 .03 235 / .26); }
.fcard:hover img{ transform: scale(1.04); }
.fcard h3{ color: #fff; font-size: 1.7rem; }
.fcard p{ color: oklch(.93 .01 80); margin: .4rem 0 0; font-size: 1rem; max-width: 34ch; }
.fcard .go{ margin-top: .8rem; font-weight: 700; color: #fff; display: inline-flex; gap: .4rem; transition: gap .2s var(--ease); }
.fcard:hover .go{ gap: .7rem; }

/* ---------- Tuiles ---------- */
.tiles{ display: grid; grid-template-columns: repeat(auto-fit, minmax(206px, 1fr)); gap: 16px; margin-top: 22px; }
.tile{ display: flex; flex-direction: column; gap: .35rem; padding: 22px; border-radius: var(--rs); background: var(--paper); box-shadow: 0 1px 3px oklch(.2 .02 235 / .08); text-decoration: none; color: var(--ink); transition: transform .15s var(--ease), box-shadow .2s; }
.tile:hover{ transform: translateY(-3px); box-shadow: 0 12px 26px oklch(.2 .02 235 / .12); }
.tile .ico{ display: none; }  /* pastille-icône au-dessus du titre retirée (pattern template banni) */
.tile h3{ font-size: 1.08rem; font-weight: 800; }
.tile p{ margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.4; }
.tile .go{ margin-top: auto; padding-top: .6rem; color: var(--accent-d); font-weight: 700; }

/* ---------- Cartes "enfants" de rubrique (photo + texte) ---------- */
.children{ display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.child{ display: flex; flex-direction: column; background: var(--paper); border-radius: var(--r); overflow: hidden; box-shadow: 0 1px 3px oklch(.2 .02 235 / .08); text-decoration: none; color: var(--ink); transition: transform .18s var(--ease), box-shadow .25s; }
.child:hover{ transform: translateY(-3px); box-shadow: 0 14px 32px oklch(.2 .02 235 / .14); }
.child .media{ aspect-ratio: 16 / 10; }
.child .body{ padding: 20px 22px 22px; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.child .tags{ display: flex; gap: .4rem; flex-wrap: wrap; }
.child h3{ font-size: 1.22rem; }
.child p{ margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.45; }
.child .go{ margin-top: auto; padding-top: .7rem; color: var(--accent-d); font-weight: 700; display: inline-flex; gap: .4rem; transition: gap .2s var(--ease); }
.child:hover .go{ gap: .7rem; }
.badge{ display: inline-block; white-space: nowrap; font-size: .68rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.badge-book{ background: var(--accent-soft); color: var(--accent-d); }
.badge-soon{ background: oklch(0.94 0.006 225); color: var(--muted); }

/* ---------- Emplacement photo annoté (handoff) ---------- */
.ph{
  position: relative; width: 100%; height: 100%; min-height: 120px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background:
    repeating-linear-gradient(135deg, oklch(0.88 0.012 220) 0 1.5px, transparent 1.5px 12px),
    var(--accent-soft);
  color: var(--accent-d);
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: .76rem; letter-spacing: .02em; line-height: 1.4; padding: 16px;
}
.ph::before{ content: "▦"; position: absolute; top: 10px; left: 12px; font-size: .9rem; opacity: .5; }
.ph span{ max-width: 30ch; }
.ph.rounded{ border-radius: var(--rs); overflow: hidden; }

/* ---------- Bloc CTA réservation ---------- */
.band{ background: var(--band); color: #fff; border-radius: 28px; padding: 48px; box-shadow: 0 24px 50px oklch(.25 .03 58 / .35); display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; }
.band h2{ font-size: 2.05rem; color: #fff; }
.band .lede{ color: oklch(0.90 0.02 72); margin: .7rem 0 0; font-size: 1.1rem; max-width: 46ch; }
.band .col{ display: flex; flex-direction: column; gap: 12px; }
.band .btn-action{ background: var(--action); color: oklch(0.20 0.03 50); box-shadow: none; }
.band .btn-action:hover{ background: var(--action-d); box-shadow: 0 8px 20px oklch(.15 .03 50 / .3); }
.band .btn-outline{ background: transparent; color: #fff; border-color: oklch(1 0 0 / .5); }
.band .btn-outline:hover{ background: oklch(1 0 0 / .12); color: #fff; border-color: #fff; }

/* ---------- Prose / pages éditoriales ---------- */
.prose-card{ background: var(--paper); border-radius: var(--r); padding: 44px; box-shadow: 0 1px 3px oklch(.2 .02 235 / .07); }
.prose-card.split{ display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; }
.prose{ max-width: 70ch; }
.prose h2{ font-size: 1.6rem; margin: 1.8rem 0 .7rem; }
.prose h2:first-child{ margin-top: 0; }
.prose p{ color: var(--ink); }
.prose ul{ padding-left: 1.1rem; margin: 0 0 1rem; }
.prose li{ margin-bottom: .45rem; }
.prose .chips{ display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.chip{ display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 18px; border-radius: 14px; background: var(--bg); color: var(--ink); font-weight: 700; font-size: .95rem; text-decoration: none; transition: background .15s, color .15s; }
.chip:hover{ background: var(--accent-soft); color: var(--accent-d); }
.note{ background: var(--accent-soft); color: var(--accent-d); border-radius: var(--rs); padding: 16px 20px; font-size: .95rem; font-weight: 600; }

/* ---------- Formulaire (contact) ---------- */
.form{ display: grid; gap: 16px; max-width: 560px; }
.field{ display: grid; gap: 7px; }
.field label{ font-weight: 700; font-size: .92rem; }
.field input, .field textarea{ font-family: var(--fb); font-size: 1rem; color: var(--ink); background: var(--paper); border: 1.5px solid var(--line-2); border-radius: 14px; padding: 14px 16px; min-height: 52px; }
.field textarea{ min-height: 140px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder{ color: oklch(0.66 0.014 225); }

/* ---------- Pied de page ---------- */
.site-footer{ background: var(--paper); border-top: 1px solid var(--line); margin-top: 28px; padding-block: 48px 32px; }
.site-footer .grid{ display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.site-footer .mast{ font-weight: 800; font-size: 1.2rem; color: var(--ink); letter-spacing: -.02em; margin-bottom: .5rem; }
.site-footer .blurb{ font-size: .98rem; line-height: 1.5; color: var(--muted); max-width: 38ch; }
.site-footer h4{ font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin: 0 0 1rem; font-weight: 700; }
.site-footer ul{ list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; font-size: .95rem; }
.site-footer a{ color: var(--ink); text-decoration: none; }
.site-footer a:hover{ color: var(--accent-d); }
.disclosure{ font-size: .85rem; color: var(--muted); border-top: 1px solid var(--line); margin-top: 36px; padding-top: 22px; line-height: 1.55; max-width: 92ch; }

/* ---------- Barre d'action mobile (réservation) ---------- */
.actionbar{ display: none; }
body.has-bar{ padding-bottom: 0; }

@media (max-width: 860px){
  body.has-bar{ padding-bottom: calc(92px + var(--safe)); }
  .actionbar{
    position: fixed; left: 12px; right: 12px; bottom: 14px; z-index: 50;
    display: flex; gap: 10px; padding: 9px;
    background: oklch(1 0 0 / .92); backdrop-filter: blur(16px); border-radius: 20px;
    box-shadow: 0 10px 30px oklch(.2 .04 235 / .2), 0 0 0 1px var(--line);
    margin-bottom: var(--safe);
  }
  .actionbar .btn{ flex: 1; min-height: 50px; }
  .actionbar .btn-outline{ flex: 0 0 auto; padding-inline: 18px; box-shadow: none; border: none; background: var(--bg); }
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (min-width: 720px){ .wrap{ padding-inline: var(--pad); } }

@media (max-width: 980px){
  .site-header .bar{ flex-wrap: wrap; gap: 14px; }
  .nav{ display: none; flex-basis: 100%; flex-direction: column; gap: 2px; margin: 0; padding-bottom: 12px; }
  .site-header.open .nav{ display: flex; }
  .nav a{ padding: 13px 10px; font-size: 1rem; }
  .header-cta{ display: none; }
  .site-header.open .header-cta{ display: inline-flex; flex-basis: 100%; margin: 0 0 12px; }
  .menu{ display: flex; }
}

@media (max-width: 860px){
  .hero-grid{ grid-template-columns: 1fr; gap: 26px; }
  .hcard{ height: 300px; order: -1; }
  .onsite .row{ grid-template-columns: 1fr 1fr; }
  .stat{ border-left: 0; border-top: 1px solid var(--line); }
  .stat:nth-child(-n+2){ border-top: 0; }
  .stat:nth-child(odd){ border-left: 0; }
  .sec-head{ flex-direction: column; align-items: flex-start; }
  .feature{ grid-template-columns: 1fr; }
  .band{ grid-template-columns: 1fr; padding: 30px; gap: 24px; }
  .band h2{ font-size: 1.7rem; }
  .prose-card{ padding: 26px; }
  .prose-card.split{ grid-template-columns: 1fr; gap: 24px; }
  .site-footer .grid{ grid-template-columns: 1fr; gap: 26px; }
  section{ padding-block: 30px; }
}

@media (prefers-reduced-motion: reduce){ *{ transition: none !important; animation: none !important; scroll-behavior: auto; } }

/* =============================================================
   PAGE DÉTAIL (réservation / attraction) — money page
   ============================================================= */
.detail-hero{ padding-top: 18px; }
.detail-hero .eyebrow{ display:inline-flex; align-items:center; gap:7px; background:var(--accent-soft); color:var(--accent-d); font-weight:700; font-size:.8rem; padding:7px 14px; border-radius:999px; margin-bottom:16px; }
.detail-hero h1{ font-size:clamp(2.1rem,3.6vw,3rem); line-height:1.03; max-width:20ch; }
.detail-hero .lede{ margin:16px 0 0; max-width:60ch; font-size:1.12rem; }
.detail-hero .detail-cta{ display:flex; gap:12px; margin-top:22px; flex-wrap:wrap; }

/* faits clés */
.keyfacts{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--rs); overflow:hidden; margin-top:24px; }
.keyfacts .kf{ background:var(--paper); padding:18px 20px; display:flex; flex-direction:column; gap:3px; }
.keyfacts .kf .l{ font-size:.72rem; text-transform:uppercase; letter-spacing:.06em; color:var(--muted); font-weight:700; }
.keyfacts .kf .v{ font-weight:700; color:var(--ink); font-size:1.02rem; }
@media (max-width:860px){ .keyfacts{ grid-template-columns:1fr 1fr; } }

/* options de réservation */
.offers{ display:grid; grid-template-columns:repeat(auto-fit,minmax(248px,1fr)); gap:16px; margin-top:1.3rem; }
.offer{ display:flex; flex-direction:column; gap:.55rem; background:var(--paper); border:1px solid var(--line); border-radius:var(--rs); padding:22px; box-shadow:0 1px 3px oklch(.2 .02 60/.07); }
.offer.best{ border-color:var(--action); box-shadow:0 12px 28px var(--glow-1); }
.offer .who{ font-weight:800; font-size:1.08rem; }
.offer .price{ font-family:var(--fh); font-size:1.7rem; font-weight:600; color:var(--ink); line-height:1; }
.offer .price small{ font-family:var(--fb); font-size:.78rem; color:var(--muted); font-weight:600; }
.offer .feat{ font-size:.9rem; color:var(--muted); display:flex; flex-direction:column; gap:.3rem; }
.offer .feat span::before{ content:"✓ "; color:var(--accent-d); font-weight:800; }
.offer .btn{ margin-top:auto; }

/* table tarifs */
.ptable{ width:100%; border-collapse:collapse; margin-top:1rem; font-size:.96rem; }
.ptable th, .ptable td{ text-align:left; padding:11px 14px; border-bottom:1px solid var(--line); }
.ptable th{ font-size:.74rem; text-transform:uppercase; letter-spacing:.05em; color:var(--muted); font-weight:700; }
.ptable td:last-child, .ptable th:last-child{ text-align:right; font-weight:700; white-space:nowrap; }

/* FAQ */
.faq details{ border-bottom:1px solid var(--line); padding:14px 2px; }
.faq summary{ cursor:pointer; font-weight:700; font-size:1.05rem; list-style:none; display:flex; justify-content:space-between; gap:1rem; color:var(--ink); }
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{ content:"+"; color:var(--accent-d); font-weight:800; font-size:1.2rem; }
.faq details[open] summary::after{ content:"\2013"; }
.faq p{ margin:.7rem 0 0; color:var(--muted); }

.srcnote{ font-size:.82rem; color:var(--muted); border-top:1px solid var(--line); margin-top:18px; padding-top:14px; }
.srcnote a{ color:var(--accent-d); }

/* ---------- Icônes inline + titres à icône ---------- */
.ico-svg{ width:22px; height:22px; flex:0 0 auto; stroke:var(--accent-d); stroke-width:1.7; fill:none; stroke-linecap:round; stroke-linejoin:round; }
.h-ico{ display:flex; align-items:center; gap:.6rem; }
.h-ico .ico-svg{ width:27px; height:27px; }

/* ---------- Grille d'infos à icônes ---------- */
.infogrid{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin-top:1.3rem; }
@media (min-width:760px){ .infogrid{ grid-template-columns:repeat(4,1fr); } }
.infocard{ background:var(--paper); border:1px solid var(--line); border-radius:var(--rs); padding:18px; display:flex; flex-direction:column; gap:.55rem; box-shadow:0 1px 3px oklch(.2 .02 60/.06); }
.infocard .top{ display:flex; align-items:center; gap:.5rem; }
.infocard .top .ico-svg{ width:20px; height:20px; }
.infocard .top b{ font-size:.74rem; text-transform:uppercase; letter-spacing:.06em; color:var(--muted); }
.infocard .val{ font-size:.95rem; color:var(--ink); line-height:1.45; }
.infocard .val strong{ font-weight:700; }
.infonote{ margin-top:.9rem; font-size:.88rem; color:var(--muted); display:flex; gap:.5rem; align-items:flex-start; }
.infonote .ico-svg{ width:18px; height:18px; margin-top:1px; }

/* ---------- Pastilles de lignes (transports, couleurs RATP) ---------- */
.lines{ display:flex; flex-wrap:wrap; gap:6px; align-items:center; }
.lb{ width:26px; height:26px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; font-weight:800; font-size:.84rem; color:#1a1a1a; font-family:var(--fb); }
.lb.sq{ border-radius:8px; width:auto; padding:0 8px; }
.lb.m6{ background:#6ECA97; }      /* RATP ligne 6 */
.lb.m8{ background:#E19BD3; }      /* RATP ligne 8 */
.lb.m9{ background:#B6BD00; }      /* RATP ligne 9 */
.lb.rer{ background:#FFCB00; }     /* RER C */
.lb.bus{ width:auto; padding:0 10px; border-radius:13px; height:24px; background:var(--bg); border:1px solid var(--line-2); color:var(--muted); font-size:.78rem; font-weight:700; }

/* ---------- Chip-logo plateforme (offer) ---------- */
.offer .phead{ display:flex; align-items:center; gap:.6rem; margin-bottom:.1rem; }
.plogo{ width:40px; height:40px; border-radius:11px; display:flex; align-items:center; justify-content:center; font-family:var(--fb); font-weight:800; font-size:1.15rem; color:#fff; flex:0 0 auto; letter-spacing:-.02em; }
.plogo.tiqets{ background:#1a2b88; }
.plogo.gyg{ background:#ff5533; }
.plogo.official{ background:var(--accent); }

/* ---------- Liste d'horaires (lisible, icône par état) ---------- */
.hours{ display:flex; flex-direction:column; gap:.5rem; }
.hrow{ display:flex; align-items:flex-start; gap:.5rem; font-size:.93rem; line-height:1.4; }
.hrow .ico-svg{ width:17px; height:17px; margin-top:2px; }
.hrow .t{ font-weight:700; color:var(--ink); }
.hrow.closed .ico-svg{ stroke:#b14a32; }
.hrow.closed, .hrow.closed .t{ color:#b14a32; }

/* ---------- Adresse + liens carte ---------- */
.addr{ font-weight:700; color:var(--ink); display:block; margin-bottom:.25rem; }
.maplink{ display:inline-flex; align-items:center; gap:.35rem; margin-top:.55rem; font-weight:700; font-size:.88rem; color:var(--accent-d); text-decoration:none; }
.maplink:hover{ color:var(--ink); }
.maplink .ico-svg{ width:16px; height:16px; }

/* ---------- Icônes dans les faits clés ---------- */
.kf .l{ display:inline-flex; align-items:center; gap:.35rem; }
.kf .l .ico-svg{ width:13px; height:13px; stroke-width:2; }
