/* =========================================================
   PEAKY LOCATION — Feuille de style
   Direction : néo-rétro chic (noir / or / crème)
   ========================================================= */

:root {
  --black:      #0d0d0d;
  --black-2:    #141210;
  --black-3:    #1b1814;
  --cream:      #efe6d0;
  --cream-soft: #d9cfb8;
  --gold:       #c9a45c;
  --gold-soft:  #e7cf94;
  --gold-deep:  #9c7a3c;
  --line:       rgba(201,164,92,.25);
  --text:       #ece6da;
  --text-dim:   #b3aa98;
  --gold-grad:  linear-gradient(135deg, #b8893f 0%, #e7cf94 45%, #c9a45c 100%);
  --maxw: 1180px;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.65;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

h1, h2, h3, .brand-wordmark { font-family: "Cinzel", serif; font-weight: 600; letter-spacing: .5px; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.6rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
  letter-spacing: .4px; cursor: pointer; border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn-gold { background: var(--gold-grad); color: #1a1306; box-shadow: 0 8px 24px rgba(201,164,92,.28); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(201,164,92,.42); }
.btn-ghost { border-color: var(--line); color: var(--cream); background: rgba(255,255,255,.02); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); transform: translateY(-2px); }
/* Bouton téléphone du hero : effet verre dépoli pour la lisibilité sur photo */
.hero-actions .btn-ghost {
  background: rgba(20,16,12,.38); border-color: rgba(231,207,148,.45); color: var(--cream);
  backdrop-filter: blur(10px) saturate(1.1); -webkit-backdrop-filter: blur(10px) saturate(1.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 8px 24px rgba(0,0,0,.35);
}
.hero-actions .btn-ghost:hover { background: rgba(28,22,16,.5); border-color: var(--gold); color: var(--gold-soft); }
.btn-block { width: 100%; }

/* ---------- Titres de section ---------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.eyebrow, .hero-eyebrow {
  text-transform: uppercase; letter-spacing: 3px; font-size: .78rem; font-weight: 600;
  color: var(--gold); margin-bottom: .8rem;
}
.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); color: var(--cream); }
.section-head h2::after {
  content: ""; display: block; width: 64px; height: 2px; margin: 1rem auto 0;
  background: var(--gold-grad);
}
.section-lead { color: var(--text-dim); margin-top: 1rem; }
.degressif-badge {
  display: inline-flex; align-items: center; gap: .55rem; margin-top: 1.4rem;
  padding: .55rem 1.2rem; border: 1px solid var(--gold); border-radius: 999px;
  background: rgba(201,164,92,.08); color: var(--gold-soft);
  font-size: .85rem; font-weight: 600; letter-spacing: .3px;
}
.degressif-badge svg { width: 18px; height: 18px; flex: 0 0 18px; fill: none; stroke: var(--gold); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 480px) { .degressif-badge { font-size: .78rem; text-align: left; } }

/* ---------- En-tête ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s, box-shadow .35s, padding .35s;
  padding: .55rem 0;
}
.site-header.scrolled {
  background: rgba(13,13,13,.92); backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: flex; align-items: center; gap: .7rem; }
.brand-logo { height: 58px; width: auto; }
.brand-wordmark { display: none; flex-direction: column; line-height: .92; }
.footer-logo { height: 88px; width: auto; margin-bottom: .4rem; }
.brand-peaky { font-size: 1.45rem; color: var(--cream); letter-spacing: 2px; }
.brand-location { font-size: .62rem; letter-spacing: 4px; color: var(--gold); }

.nav { display: flex; align-items: center; gap: 1.8rem; }
.nav a { font-size: .92rem; font-weight: 400; color: var(--cream-soft); position: relative; }
.nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1.5px;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav a:not(.nav-cta):hover { color: var(--gold-soft); }
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { padding: .6rem 1.3rem; }
.nav a.btn-gold, .nav a.btn-gold:hover { color: #1a1306; }

/* Icônes dans les boutons */
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.btn-gold svg { stroke: #1a1306; }
/* Icônes pleines (logos de marque) dans les boutons : pas de contour */
.btn svg.ico-solid { stroke: none; fill: currentColor; width: 19px; height: 19px; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 2px; background: var(--cream); transition: .3s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: 120px 0 80px;
  background:
    radial-gradient(120% 90% at 50% 0%, #221d16 0%, var(--black) 55%),
    var(--black);
  overflow: hidden;
}
.hero-skyline {
  position: absolute; inset: auto 0 -1px 0; height: 58%; pointer-events: none;
  -webkit-mask-image: linear-gradient(to top, #000 55%, transparent);
          mask-image: linear-gradient(to top, #000 55%, transparent);
}
.hero-skyline svg { width: 100%; height: 100%; }
.hero-skyline-photo {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1;
  object-fit: cover; object-position: center bottom;
  -webkit-mask-image: linear-gradient(to top, #000 60%, transparent);
          mask-image: linear-gradient(to top, #000 60%, transparent);
}
.hero-skyline .layer-back  { opacity: .35; }
.hero-skyline .layer-front { opacity: .7; }
.hero-skyline .smoke { animation: smoke-rise 9s ease-in-out infinite; transform-origin: center bottom; }
.hero-skyline .smoke.s2 { animation-duration: 11s; animation-delay: -3s; }
.hero-skyline .smoke.s3 { animation-duration: 13s; animation-delay: -6s; }
@keyframes smoke-rise {
  0%   { opacity: 0;   transform: translateY(6px) scale(.85); }
  35%  { opacity: .5; }
  100% { opacity: 0;   transform: translateY(-26px) scale(1.5); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-skyline .smoke { animation: none; opacity: .3; }
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 180px 40px rgba(0,0,0,.7);
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 820px; }
.hero-title {
  font-size: clamp(1.55rem, 7.8vw, 4.4rem); line-height: 1.08; color: var(--cream);
  text-shadow: 0 2px 30px rgba(0,0,0,.6); margin-bottom: 1.2rem;
}
/* Garantit exactement deux lignes (desktop + mobile) sans retour à la ligne interne */
.hero-title span { display: block; white-space: nowrap; }
.hero-tagline { font-family: "Cinzel", serif; color: var(--gold-soft); font-size: clamp(1.1rem, 2.2vw, 1.5rem); letter-spacing: 1px; margin-bottom: 1.2rem; }
.hero-sub { font-size: clamp(1rem, 1.6vw, 1.18rem); color: var(--cream-soft); max-width: 620px; margin: 0 auto 2rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-badges {
  list-style: none; display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; justify-content: center;
  margin-top: 2.4rem;
}
.hero-badges li {
  font-size: .8rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gold);
  position: relative; padding-left: 1.2rem;
}
.hero-badges li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 7px; height: 7px;
  background: var(--gold-deep); transform: rotate(45deg);
}

/* ---------- Atouts ---------- */
.features { padding: 4.5rem 0; background: var(--black-2); border-block: 1px solid var(--line); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.feature { text-align: center; padding: 1rem; }
.feature-ico {
  display: inline-grid; place-items: center; width: 64px; height: 64px; margin-bottom: 1rem;
  border: 1px solid var(--line); border-radius: 50%; color: var(--gold);
}
.feature-ico svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.feature-ico .chk { stroke: var(--gold-soft); }
.feature h3 { font-size: 1.02rem; color: var(--cream); margin-bottom: .4rem; }
.feature p { font-size: .9rem; color: var(--text-dim); }

/* ---------- Flotte ---------- */
.fleet { padding: 5.5rem 0; }
.cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.8rem; }
.card {
  position: relative; background: linear-gradient(180deg, var(--black-3), var(--black-2));
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  /* 3 par ligne ; la dernière ligne incomplète est centrée par justify-content */
  flex: 0 1 calc((100% - 2 * 1.8rem) / 3);
  display: flex; flex-direction: column; transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow); }
.card-flag {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--gold-grad); color: #1a1306; font-size: .74rem; font-weight: 700;
  letter-spacing: .4px; padding: .4rem .85rem; border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0,0,0,.35);
}
.card-flag svg { width: 15px; height: 15px; fill: none; stroke: #1a1306; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card-media {
  position: relative; aspect-ratio: 16 / 10; overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
  background: #100d09 url('../assets/car-background.png') center bottom / cover no-repeat;
}
.card-media .car-photo {
  position: relative; z-index: 1; width: 84%; height: 74%;
  object-fit: contain; object-position: center bottom; margin-bottom: 7%;
}
.card-media .car-placeholder { position: relative; z-index: 1; margin-bottom: 9%; width: 60%; }
.car-placeholder { display: grid; place-items: center; gap: .5rem; color: var(--gold-deep); width: 70%; }
.car-placeholder svg { width: 100%; fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.car-placeholder span { font-size: .75rem; letter-spacing: 2px; text-transform: uppercase; }
.card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.car-name { font-size: 1.45rem; color: var(--cream); }
.car-tags { font-size: .82rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin: .3rem 0 1.2rem; }
.price-list { list-style: none; margin-bottom: 1.5rem; }
.price-list li {
  display: flex; align-items: baseline; gap: .6rem; padding: .7rem 0; border-top: 1px solid var(--line);
}
.price-list li:last-child { border-bottom: 1px solid var(--line); }
.price-list span { color: var(--text-dim); font-size: .9rem; min-width: 70px; }
.price-list strong { font-family: "Cinzel", serif; font-size: 1.35rem; color: var(--cream); }
.price-list em { margin-left: auto; font-style: normal; font-size: .78rem; color: var(--gold); }
.card .btn { margin-top: auto; }
.fleet-note { text-align: center; margin-top: 2.5rem; color: var(--text-dim); font-size: .92rem; }
.fleet-note strong { color: var(--gold-soft); }

/* ---------- Services / étapes ---------- */
.services { padding: 5.5rem 0; background: var(--black-2); border-block: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.step { text-align: center; padding: 2rem 1.4rem; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.012); }
.step-num {
  display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 50%;
  font-family: "Cinzel", serif; font-size: 1.4rem; color: var(--gold-soft);
  border: 1px solid var(--gold); margin-bottom: 1.1rem; background: rgba(201,164,92,.06);
}
.step h3 { font-size: 1.15rem; color: var(--cream); margin-bottom: .5rem; }
.step p { font-size: .92rem; color: var(--text-dim); }

/* ---------- À propos ---------- */
.about { padding: 5.5rem 0; }
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: center; }
.about-text h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--cream); margin: .4rem 0 1.2rem; }
.about-text p { color: var(--text-dim); margin-bottom: 1rem; }
.about-text strong { color: var(--cream); font-weight: 500; }
.welcome-note {
  display: flex; gap: 1rem; align-items: flex-start; margin-top: 1.6rem; padding: 1.2rem 1.4rem;
  border: 1px solid var(--line); border-radius: var(--radius); background: rgba(201,164,92,.05);
}
.welcome-ico { flex: 0 0 auto; color: var(--gold-soft); }
.welcome-ico svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* Réseaux sociaux — « Suivez-nous » */
.socials-block { margin-top: 1.6rem; }
.socials-title { font-family: "Cinzel", serif; color: var(--gold-soft); font-size: 1.15rem; letter-spacing: .5px; }
.socials-lead { font-size: .85rem; color: var(--text-dim); margin: .2rem 0 .85rem; }
.socials { display: flex; gap: .7rem; flex-wrap: wrap; align-items: center; }
.social {
  display: inline-flex; align-items: center; gap: .55rem; padding: .62rem 1.2rem;
  border-radius: 999px; font-size: .9rem; font-weight: 600; color: #fff; border: 0;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s;
}
.social svg { width: 19px; height: 19px; fill: currentColor; }
.social:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.4); filter: brightness(1.08); }
.social-ig { background: linear-gradient(45deg, #feda75 0%, #fa7e1e 28%, #d62976 55%, #962fbf 78%, #4f5bd5 100%); }
.social-fb { background: #1877f2; }

/* Sièges enfants & rehausseurs */
.family-note {
  display: flex; align-items: center; gap: 1.1rem; max-width: 760px; margin: 2.6rem auto 0;
  padding: 1.2rem 1.5rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--black-3), var(--black-2));
}
.family-ico { flex: 0 0 auto; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: rgba(201,164,92,.1); color: var(--gold-soft); }
.family-ico svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.family-text strong { display: block; color: var(--gold-soft); font-size: 1.02rem; margin-bottom: .2rem; }
.family-text p { margin: 0; color: var(--text-dim); font-size: .9rem; line-height: 1.55; }
.welcome-note p { margin: 0; font-size: .92rem; color: var(--cream-soft); }
.welcome-note strong { color: var(--gold-soft); }
.about-stats { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-stats li {
  text-align: center; padding: 1.6rem 1rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--black-3), var(--black-2));
}
.about-stats strong { display: block; font-family: "Cinzel", serif; font-size: 1.7rem; color: var(--gold-soft); }
.about-stats span { font-size: .82rem; color: var(--text-dim); }

/* ---------- Contact ---------- */
.contact { padding: 5.5rem 0; background: var(--black-2); border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; }
.contact-row { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.contact-row:first-child { padding-top: 0; }
.contact-ico { width: 34px; height: 34px; flex: 0 0 34px; display: grid; place-items: center; color: var(--gold); }
.contact-ico svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-row span:last-child { display: flex; flex-direction: column; }
.contact-row strong { color: var(--gold-soft); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: 1px; }
a.contact-row:hover strong { color: var(--gold); }
.contact-cta { display: flex; gap: .8rem; flex-wrap: wrap; margin: 1.6rem 0 1.2rem; }
.contact-map { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; min-height: 340px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(.3) contrast(1.05); }

/* ---------- Pied de page ---------- */
.site-footer { background: var(--black); border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1.5rem; padding-block: 2.6rem; }
.footer-brand { justify-self: start; }
.footer-brand p { font-size: .82rem; color: var(--text-dim); margin-top: .3rem; }
.footer-tag { font-family: "Cinzel", serif; color: var(--gold-soft); font-size: 1.05rem; text-align: center; }
.footer-contact { justify-self: end; display: flex; flex-direction: column; gap: .25rem; text-align: right; font-size: .9rem; color: var(--text-dim); }
.footer-contact a:hover { color: var(--gold-soft); }
.footer-bottom { border-top: 1px solid var(--line); }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .4rem; padding-block: 1.1rem; }
.footer-bottom p { font-size: .8rem; color: var(--text-dim); }
.footer-mini { color: var(--gold-deep) !important; }

/* ---------- Bouton d'appel flottant ---------- */
.fab-call {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; display: none; place-items: center;
  background: var(--gold-grad); color: #1a1306; box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.fab-call svg { width: 24px; height: 24px; fill: none; stroke: #1a1306; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Animations au scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 920px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .cards { max-width: 460px; margin-inline: auto; }
  .cards .card { flex-basis: 100%; }
  .steps { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }

  .burger { display: flex; }
  /* Évite que le header (backdrop-filter au scroll) ne devienne le bloc
     conteneur du menu fixed et ne le « piège » dans sa hauteur. */
  .site-header.scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(13,13,13,.96); }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem;
    background: rgba(15,13,11,.98); backdrop-filter: blur(12px); padding: 2rem 2.4rem;
    transform: translateX(100%); transition: transform .35s var(--ease);
    border-left: 1px solid var(--line);
  }
  .nav.open { transform: none; }
  .nav a { font-size: 1.1rem; }
  .nav-cta { margin-top: .5rem; }
  .fab-call { display: grid; }
}

@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 1.6rem; padding-block: 2.4rem; }
  .footer-brand, .footer-contact { justify-self: center; }
  .footer-contact { text-align: center; }
  /* Bas de footer : centré et dégagé du bouton d'appel flottant */
  .footer-bottom .container { flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: .55rem; padding-bottom: 90px; }
  .footer-bottom p { width: 100%; }
  .family-note { flex-direction: column; text-align: center; gap: .8rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero-actions .btn { flex: 1 1 auto; }
  .card-flag { font-size: .66rem; padding: .3rem 2.6rem; }
}

/* =========================================================
   PAGE 404
   ========================================================= */
.error-page {
  min-height: 100svh; display: flex; align-items: center; text-align: center;
  background: radial-gradient(120% 90% at 50% 0%, #221d16 0%, var(--black) 55%), var(--black);
  padding: 80px 0;
}
.error-page .container { max-width: 640px; }
.error-brand { display: inline-flex !important; flex-direction: column; align-items: center; margin-bottom: 2rem; }
.error-page h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); color: var(--cream); margin: .4rem 0 1rem; }
.error-text { color: var(--text-dim); margin: 0 auto 2rem; max-width: 460px; }
.error-page .hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   PAGE MENTIONS LÉGALES & CGL
   ========================================================= */
.legal { padding: 120px 0 80px; }
.legal-head { text-align: center; max-width: 760px; margin: 0 auto 2.5rem; }
.legal-head h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: var(--cream); line-height: 1.25; }
.legal-head .legal-cgv-title { font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--cream); }
.legal-head h1::after, .legal-head .legal-cgv-title::after {
  content: ""; display: block; width: 64px; height: 2px; margin: 1rem auto 0; background: var(--gold-grad);
}
.legal-updated { color: var(--text-dim); font-size: .85rem; margin-top: .9rem; }
.legal-block { max-width: 820px; margin: 0 auto 2rem; }
.legal-block h2 {
  font-size: 1.15rem; color: var(--gold-soft); margin-bottom: .6rem; letter-spacing: .3px;
}
.legal-block p { color: var(--text-dim); margin-bottom: .7rem; }
.legal-block a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.legal-block a:hover { color: var(--gold-soft); }
.legal-block ul { list-style: none; padding: 0; }
.legal-block ul li { color: var(--text-dim); padding: .35rem 0 .35rem 1.3rem; position: relative; }
.legal-block ul li::before {
  content: ""; position: absolute; left: 0; top: .95em; width: 6px; height: 6px;
  border-radius: 50%; background: var(--gold); opacity: .8;
}
.legal-block ul.legal-info li strong { color: var(--cream); font-weight: 600; }
.legal-sep { border: 0; height: 1px; background: var(--line); max-width: 820px; margin: 3rem auto; }
.legal-back { max-width: 820px; margin: 3rem auto 0; text-align: center; }
