:root {
  --ink: #15202b;
  --muted: #4a5b6a;
  --paper: #f3f6f8;
  --paper-deep: #e7eef2;
  --line: #cdd8e0;
  --navy: #1d4f73;
  --navy-deep: #14374f;
  --amber: #c27a1a;
  --white: #ffffff;
  --disclosure-bg: #fff8e8;
  --disclosure-border: #e6cf8a;
  --radius: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--navy);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.wrap {
  width: min(760px, calc(100% - 2rem));
  margin: 0 auto;
}

.wide {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.disclosure-bar {
  background: var(--disclosure-bg);
  border-bottom: 2px solid var(--disclosure-border);
  padding: 0.85rem 0;
}

.disclosure-bar p {
  margin: 0;
  font-size: 0.86rem;
  color: #5c4a18;
  text-align: center;
}

.topbar,
.top {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(243, 246, 248, 0.96);
  border-bottom: 1px solid var(--line);
}

.topbar-inner,
.top-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand,
.pub-mark {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy-deep);
  text-decoration: none;
}

.brand span,
.pub-mark span {
  color: var(--navy);
  font-weight: 500;
}

.brand:hover,
.pub-mark:hover {
  text-decoration: none;
}

.topbar nav,
.top nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

.topbar nav a,
.top nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}

.topbar nav a:hover,
.top nav a:hover,
.top nav a[aria-current="page"] {
  color: var(--navy-deep);
  text-decoration: none;
}

.hero {
  padding: 3.2rem 0 2.5rem;
  background: linear-gradient(180deg, #fff 0%, transparent 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 1.5rem;
  align-items: start;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}

h1,
h2,
.home-list h2,
.related h2 {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
}

h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.15;
  color: var(--ink);
}

.lead,
.dek {
  margin: 0;
  color: var(--muted);
  max-width: 42rem;
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0.72rem 1.2rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
}

.btn-primary:hover {
  background: var(--navy-deep);
  color: #fff;
  text-decoration: none;
}

.btn-secondary {
  border: 1px solid var(--navy);
  color: var(--navy);
  background: #fff;
}

.btn-secondary:hover {
  background: var(--paper-deep);
  text-decoration: none;
}

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
  border-top: 3px solid var(--amber);
}

.info-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.info-card p {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.info-card p:last-child {
  margin-bottom: 0;
}

.section {
  padding: 2.8rem 0;
}

.alt-bg {
  background: var(--paper-deep);
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  color: var(--ink);
}

.section-head p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.cards.two-col,
.notes-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  color: inherit;
  display: block;
}

.card-link:hover {
  border-color: #9eb3c2;
  text-decoration: none;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.12rem;
  color: var(--ink);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.card .verify {
  margin-top: 0.65rem;
  font-size: 0.85rem;
  font-style: italic;
}

.card span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.provider-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.provider-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}

.provider-box p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.table-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow-x: auto;
  margin-top: 1.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

thead th {
  background: var(--navy-deep);
  color: #fff;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
}

th,
td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.93rem;
  vertical-align: top;
}

tbody td:first-child {
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

tbody tr:nth-child(even) {
  background: #f5f9fb;
}

tbody tr:last-child td {
  border-bottom: none;
}

.table-note {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.pros-cons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.pros-cons article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.pros-cons h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

.pros-cons ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.pros-cons li + li {
  margin-top: 0.4rem;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem 1rem;
}

.faq-list details + details {
  margin-top: 0.7rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-list p {
  color: var(--muted);
  margin: 0.6rem 0 0;
}

.contact-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  margin-top: 1rem;
}

.contact-box p {
  margin: 0.3rem 0;
}

.footer,
footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 0;
}

.footer-inner,
.foot-inner {
  min-height: 72px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.86rem;
  color: var(--muted);
  padding: 1.2rem 0;
}

.footer-links,
.foot-links {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.foot-links a {
  color: var(--muted);
}

.legal-page,
.legal {
  padding: 2.5rem 0 4rem;
}

.legal-page h1,
.legal h1 {
  font-size: 2.2rem;
  margin: 0.5rem 0 1rem;
}

.legal-page h2,
.legal h2 {
  margin-top: 2rem;
  font-size: 1.15rem;
  color: var(--navy-deep);
}

.legal-page ul,
.legal ul {
  color: var(--muted);
}

.masthead {
  padding: 2.2rem 0 0.4rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.masthead > p:first-of-type {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
}

.masthead h1 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.35rem);
}

.masthead .dek {
  margin: 0.75rem auto 0;
}

.hero-article {
  padding: 2.4rem 0 1.2rem;
}

.kicker {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.cover {
  margin: 1.75rem 0 0;
  border-radius: 16px;
  overflow: hidden;
  min-height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.cover-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  margin: 0;
  color: #fff;
  font-size: 0.82rem;
  background: rgba(20, 55, 79, 0.62);
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
}

.cover-trafic {
  background:
    linear-gradient(165deg, rgba(20, 55, 79, 0.28), rgba(20, 55, 79, 0.05)),
    radial-gradient(circle at 18% 78%, #65a30d 0%, transparent 42%),
    radial-gradient(circle at 82% 18%, #c2410c 0%, transparent 38%),
    repeating-linear-gradient(90deg, #334155 0 18px, #1e293b 18px 36px);
}

.cover-itineraire {
  background:
    linear-gradient(160deg, rgba(20, 55, 79, 0.2), rgba(20, 55, 79, 0.05)),
    radial-gradient(circle at 70% 30%, #d97706 0%, transparent 45%),
    linear-gradient(180deg, #64748b, #1e293b);
}

.cover-alertes {
  background:
    linear-gradient(165deg, rgba(20, 55, 79, 0.35), rgba(20, 55, 79, 0.08)),
    radial-gradient(circle at 50% 100%, #c27a1a 0%, transparent 50%),
    linear-gradient(180deg, #0f172a, #334155);
}

.cover-weekends {
  background:
    linear-gradient(165deg, rgba(20, 55, 79, 0.15), rgba(20, 55, 79, 0.05)),
    radial-gradient(circle at 20% 20%, #86efac 0%, transparent 40%),
    linear-gradient(180deg, #65a30d, #365314);
}

.cover-ville {
  background:
    linear-gradient(165deg, rgba(20, 55, 79, 0.25), rgba(20, 55, 79, 0.08)),
    repeating-linear-gradient(90deg, #475569 0 28px, #1e293b 28px 36px),
    linear-gradient(180deg, #64748b, #0f172a);
}

.cover-ecran {
  background:
    linear-gradient(165deg, rgba(20, 55, 79, 0.2), rgba(20, 55, 79, 0.4)),
    radial-gradient(circle at 60% 40%, #fdba74 0%, transparent 35%),
    linear-gradient(180deg, #334155, #020617);
}

article.prose {
  padding: 2rem 0 3.5rem;
}

.prose p,
.prose li {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.08rem;
}

.prose h2 {
  font-size: 1.45rem;
  margin: 2.4rem 0 0.7rem;
}

.prose h3 {
  font-size: 1.12rem;
  margin: 1.6rem 0 0.45rem;
}

.prose .lede {
  font-size: 1.18rem;
}

.callout {
  background: #fff8e8;
  border-left: 3px solid var(--amber);
  padding: 0.9rem 1rem;
  margin: 1.5rem 0;
  border-radius: 0 10px 10px 0;
}

.callout p {
  margin: 0;
  font-size: 0.98rem;
  color: #7c4a12;
  font-family: "Source Sans 3", sans-serif;
}

.sources {
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  margin-top: 2rem;
}

.sources h2 {
  margin-top: 0;
  font-size: 1.1rem;
}

.sources ul {
  margin: 0.4rem 0 0;
  padding-left: 1.15rem;
}

.sources li {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.95rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.25rem 0;
}

.fact {
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.fact h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.fact p {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.95rem;
  color: var(--muted);
}

.related {
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 3rem;
}

.related h2 {
  margin: 0 0 1rem;
  font-size: 1.4rem;
}

.faq {
  padding: 0 0 1rem;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 650;
}

.faq p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.98rem;
}

.note-box {
  margin-top: 2.4rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.note-box h2 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.note-box p {
  margin: 0.35rem 0;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.95rem;
  color: var(--muted);
}

.home-list {
  padding: 1.6rem 0 3.5rem;
}

.featured {
  display: grid;
  gap: 1.1rem;
  padding: 1.6rem 0 1.8rem;
  border-bottom: 1px solid var(--line);
}

.featured .thumb {
  min-height: 220px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}

.featured h2 {
  margin: 0.2rem 0 0.45rem;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
}

.featured h2 a {
  color: inherit;
  text-decoration: none;
}

.home-list article.post {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.post-thumb {
  width: 140px;
  height: 96px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}

.home-list h2 {
  margin: 0.2rem 0 0.45rem;
  font-size: 1.32rem;
}

.home-list h2 a {
  color: inherit;
  text-decoration: none;
}

.home-list article p {
  margin: 0;
  color: var(--muted);
}

.cookie {
  position: sticky;
  bottom: 0;
  background: #15202b;
  color: #e2e8f0;
  font-size: 0.85rem;
  padding: 0.7rem 0;
  z-index: 30;
}

.cookie-inner,
.cookie .wrap {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie a {
  color: #fbbf24;
}

.cookie button {
  border: 0;
  background: #fff;
  color: #15202b;
  border-radius: 8px;
  padding: 0.4rem 0.75rem;
  font-weight: 650;
  cursor: pointer;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .topbar nav,
  .top nav {
    display: none;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .home-list article.post {
    grid-template-columns: 1fr;
  }

  .post-thumb {
    width: 100%;
    height: 150px;
  }

  .top-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.7rem 0;
  }
}
