/* =========================================================================
   PERMIS SÛR 78 — Design system
   Concept : « Le permis, ça se gagne » — athletic editorial
   Palette dérivée des assets de marque (emblème rouge/noir/argent)
   ========================================================================= */

/* ----------------------------------------------------------------- TOKENS */
:root {
  /* Couleurs */
  --red:        #c70000;
  --red-dark:   #9e0000;
  --red-ink:    #7a0000;
  --ink:        #1d1d1b;        /* noir de marque */
  --ink-soft:   #2c2c2a;
  --paper:      #f6f4f1;        /* blanc cassé */
  --paper-2:    #eeebe6;
  --silver:     #b9bec2;        /* laurier */
  --silver-2:   #d7dadd;
  --white:      #ffffff;
  --muted:      #6a6a67;
  --line:       rgba(29,29,27,.12);
  --line-soft:  rgba(29,29,27,.08);

  /* Surfaces */
  --bg:         var(--paper);
  --surface:    var(--white);
  --on-dark:    rgba(255,255,255,.74);

  /* Typo */
  --font-display: "Anton", "Arial Narrow", system-ui, sans-serif;
  --font-body:    "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono:    "Space Mono", "SFMono-Regular", ui-monospace, monospace;

  /* Échelle typographique (fluide) */
  --step--1: clamp(0.83rem, 0.79rem + 0.18vw, 0.93rem);
  --step-0:  clamp(1rem, 0.95rem + 0.25vw, 1.13rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --step-2:  clamp(1.6rem, 1.35rem + 1.2vw, 2.4rem);
  --step-3:  clamp(2.2rem, 1.7rem + 2.4vw, 3.6rem);
  --step-4:  clamp(2.9rem, 2rem + 4.4vw, 5.5rem);
  --step-5:  clamp(3.6rem, 2.2rem + 6.8vw, 8rem);

  /* Espacement */
  --sp-1: .35rem;  --sp-2: .6rem;   --sp-3: 1rem;   --sp-4: 1.5rem;
  --sp-5: 2.25rem; --sp-6: 3.25rem; --sp-7: 5rem;   --sp-8: 7.5rem;

  /* Rayons & ombres */
  --r-sm: 6px; --r-md: 12px; --r-lg: 20px; --r-pill: 999px;
  --shadow-1: 0 2px 8px rgba(29,29,27,.06), 0 10px 30px rgba(29,29,27,.05);
  --shadow-2: 0 8px 24px rgba(29,29,27,.10), 0 24px 60px rgba(29,29,27,.10);
  --shadow-red: 0 10px 28px rgba(199,0,0,.28);

  /* Layout */
  --container: 1200px;
  --gutter: clamp(1.1rem, 4vw, 3rem);

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --dur: .55s;
}

/* ------------------------------------------------------------------ RESET */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul[role="list"] { list-style: none; padding: 0; }

/* Focus visible : accessibilité WCAG */
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}
a:focus-visible, button:focus-visible { outline-offset: 4px; }

::selection { background: var(--red); color: #fff; }

/* Skip link */
.skip-link {
  position: absolute; left: 50%; top: -100px; transform: translateX(-50%);
  background: var(--ink); color: #fff; padding: .8rem 1.4rem; z-index: 200;
  border-radius: 0 0 var(--r-sm) var(--r-sm); font-weight: 700;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ------------------------------------------------------------- TYPOGRAPHY */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: .96;
  letter-spacing: .01em; text-transform: uppercase; }
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-family: var(--font-body); font-weight: 800; font-size: var(--step-1); line-height: 1.2; }
p { max-width: 65ch; }

.display-xl { font-family: var(--font-display); font-size: var(--step-5);
  line-height: .9; text-transform: uppercase; }

.eyebrow {
  font-family: var(--font-mono); font-size: var(--step--1);
  text-transform: uppercase; letter-spacing: .22em; font-weight: 700;
  color: var(--red); display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); }
.eyebrow.on-dark { color: #fff; } .eyebrow.on-dark::before { background: var(--red); }

.lead { font-size: var(--step-1); line-height: 1.45; color: var(--ink-soft); }
.text-red { color: var(--red); }
.text-mono { font-family: var(--font-mono); }

/* --------------------------------------------------------------- LAYOUT */
.container { width: 100%; max-width: var(--container); margin-inline: auto;
  padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--dark { background: var(--ink); color: var(--paper); }
.section--dark p { color: var(--on-dark); }
.section--red { background: var(--red); color: #fff; }
.section--red p { color: rgba(255,255,255,.9); }

.stack > * + * { margin-top: var(--sp-3); }
.stack-lg > * + * { margin-top: var(--sp-5); }
.center { text-align: center; }
.measure { max-width: 56ch; }
.measure-center { max-width: 56ch; margin-inline: auto; }

.grid { display: grid; gap: var(--sp-4); }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* SIGNATURE — couronne de laurier en filet de section */
.laurel {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  color: var(--silver); margin-bottom: var(--sp-4);
}
.laurel svg { width: 30px; height: auto; flex: none; }
.laurel::before, .laurel::after {
  content: ""; height: 1px; width: min(90px, 14vw);
  background: linear-gradient(90deg, transparent, var(--silver));
}
.laurel::after { transform: scaleX(-1); }
.section--dark .laurel, .section--red .laurel { color: rgba(255,255,255,.55); }
.section--dark .laurel::before, .section--dark .laurel::after,
.section--red .laurel::before, .section--red .laurel::after {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5));
}

/* --------------------------------------------------------------- BUTTONS */
.btn {
  --bg-btn: var(--red); --fg-btn: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  background: var(--bg-btn); color: var(--fg-btn);
  font-weight: 800; font-size: var(--step-0); line-height: 1;
  padding: 1rem 1.6rem; border: 2px solid var(--bg-btn); border-radius: var(--r-pill);
  cursor: pointer; text-align: center;
  transition: transform .2s var(--ease), background .2s var(--ease),
              box-shadow .2s var(--ease), color .2s var(--ease);
  will-change: transform;
}
.btn:hover { background: var(--red-dark); border-color: var(--red-dark);
  transform: translateY(-2px); box-shadow: var(--shadow-red); }
.btn:active { transform: translateY(0); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink);
  box-shadow: none; }
.btn--light { background: #fff; color: var(--ink); border-color: #fff; }
.btn--light:hover { background: var(--ink); color: #fff; border-color: var(--ink);
  box-shadow: none; }
.btn--on-dark.btn--ghost { color: #fff; border-color: rgba(255,255,255,.6); }
.btn--on-dark.btn--ghost:hover { background: #fff; color: var(--ink); border-color:#fff; }
.btn--lg { padding: 1.15rem 2rem; font-size: var(--step-1); }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .5; cursor: not-allowed;
  transform: none; box-shadow: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

/* link with underline animation */
.link-arrow { display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 800; color: var(--red); }
.link-arrow .arrow { transition: transform .25s var(--ease); }
.link-arrow:hover .arrow { transform: translateX(5px); }

/* --------------------------------------------------------------- HEADER */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,244,241,.85); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-1); }
.nav { display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 72px; }
/* Desktop : la liste de liens ET le bloc téléphone/CTA sur une seule ligne */
.nav-menu { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem);
  margin-left: auto; }
.brand { display: flex; align-items: center; gap: .65rem; font-family: var(--font-display);
  text-transform: uppercase; font-size: 1.15rem; letter-spacing: .02em; line-height: 1; }
.brand img { width: 42px; height: 42px; }
.brand small { display:block; font-family: var(--font-mono); font-size: .55rem;
  letter-spacing: .25em; color: var(--red); font-weight: 700; }

.nav-list { display: flex; align-items: center; gap: .35rem; list-style: none; }
.nav-list a { display: inline-block; padding: .55rem .8rem; font-weight: 700; white-space: nowrap;
  font-size: var(--step--1); border-radius: var(--r-sm); position: relative;
  transition: color .2s var(--ease); }
.nav-list a::after { content:""; position:absolute; left:.8rem; right:.8rem; bottom:.35rem;
  height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease); }
.nav-list a:hover::after, .nav-list a[aria-current="page"]::after { transform: scaleX(1); }
.nav-list a[aria-current="page"] { color: var(--red); }

/* Dropdown "Formules" */
.nav-trigger { display: inline-flex; align-items: center; gap: .35rem; padding: .55rem .8rem;
  background: none; border: 0; cursor: pointer; font-weight: 700; font-size: var(--step--1);
  border-radius: var(--r-sm); position: relative; }
.nav-trigger svg { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.nav-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav-trigger::after { content:""; position:absolute; left:.8rem; right:1.6rem; bottom:.35rem;
  height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease); }
.has-dropdown:hover .nav-trigger::after, .has-dropdown:focus-within .nav-trigger::after { transform: scaleX(1); }
.has-dropdown { position: relative; }
.dropdown { position: absolute; top: calc(100% + 6px); left: 0; min-width: 248px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-2); padding: .4rem; display: grid; gap: 2px; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s; z-index: 10; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown, .dropdown.is-open {
  opacity: 1; visibility: visible; transform: none; }
.dropdown a { display: block; padding: .65rem .85rem; border-radius: var(--r-sm);
  font-weight: 700; font-size: var(--step--1); }
.dropdown a::after { display: none; }
.dropdown a:hover, .dropdown a[aria-current="page"] { background: rgba(199,0,0,.08); color: var(--red); }

.nav-cta { display: flex; align-items: center; gap: .75rem; }
.nav-phone { display: inline-flex; align-items: center; gap: .45rem; font-weight: 800;
  font-size: var(--step--1); white-space: nowrap; }
.nav-phone:hover { color: var(--red); }

.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: var(--white); border-radius: var(--r-sm); cursor: pointer;
  align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--ink);
  transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav-toggle span::before { transform: translateY(-7px); }
.nav-toggle span::after  { transform: translateY(7px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: rotate(-45deg); }

@media (max-width: 1040px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: fixed; inset: 72px 0 auto 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: var(--sp-3) var(--gutter) var(--sp-5);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
    box-shadow: var(--shadow-2);
  }
  .nav-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list a, .nav-trigger { padding: .9rem .4rem; font-size: var(--step-0);
    border-bottom: 1px solid var(--line-soft); border-radius: 0; width: 100%;
    justify-content: space-between; }
  .nav-list a::after, .nav-trigger::after { display: none; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; padding: 0 0 0 1rem; background: transparent; }
  .dropdown a { border-bottom: 1px solid var(--line-soft); }
  .nav-cta { margin-top: var(--sp-3); flex-direction: column; align-items: stretch; }
  .nav-cta .btn { width: 100%; }
  .nav-phone { justify-content: center; padding: .6rem; }
}

/* --------------------------------------------------------------- HERO */
.hero { position: relative; background: var(--ink); color: var(--paper);
  overflow: hidden; padding-block: clamp(3.5rem, 9vw, 6.5rem); }
.hero::before { /* halo rouge */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 85% 10%, rgba(199,0,0,.45), transparent 60%),
    radial-gradient(50% 60% at 10% 100%, rgba(199,0,0,.18), transparent 60%);
  pointer-events: none;
}
.hero__emblem {
  position: absolute; right: -6%; top: 50%; transform: translateY(-50%);
  width: min(620px, 55%); opacity: .07; pointer-events: none;
  filter: grayscale(1) brightness(2);
}
.hero__inner { position: relative; max-width: 880px; }
.hero h1 { font-size: var(--step-5); margin-block: var(--sp-3) var(--sp-4); }
.hero h1 .stroke { color: transparent; -webkit-text-stroke: 2px var(--silver); }
.hero p { color: var(--on-dark); font-size: var(--step-1); }
.hero .btn-row { margin-top: var(--sp-5); }

/* ruban diagonal — repris du logo */
.ribbon {
  display: inline-block; background: var(--red); color: #fff;
  font-family: var(--font-mono); font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; font-size: var(--step--1);
  padding: .4rem 1rem; transform: rotate(-2deg);
  box-shadow: var(--shadow-red);
}

/* --------------------------------------------------------------- SCOREBOARD (signature stats) */
.scoreboard {
  display: grid; gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .scoreboard { grid-template-columns: repeat(4, 1fr); } }
.scoreboard--dark { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.15); }
.stat { background: var(--surface); padding: var(--sp-4) var(--sp-3); text-align: center; }
.scoreboard--dark .stat { background: var(--ink); }
.stat__num { font-family: var(--font-display); font-size: var(--step-3);
  line-height: 1; color: var(--red); }
.scoreboard--dark .stat__num { color: #fff; }
.stat__label { font-family: var(--font-mono); font-size: var(--step--1);
  text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-top: .4rem; }
.scoreboard--dark .stat__label { color: var(--on-dark); }

/* --------------------------------------------------------------- CARDS */
.card { background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: var(--sp-5); box-shadow: var(--shadow-1);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              border-color .3s var(--ease); height: 100%; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2);
  border-color: rgba(199,0,0,.4); }
.card h3 { font-size: var(--step-2); margin-bottom: var(--sp-2); }
.card__icon { width: 56px; height: 56px; display: grid; place-items: center;
  background: rgba(199,0,0,.08); color: var(--red); border-radius: var(--r-md);
  margin-bottom: var(--sp-3); }
.card__icon svg { width: 28px; height: 28px; }

/* Feature row (img + text) */
.feature { display: grid; gap: var(--sp-5); align-items: center; }
@media (min-width: 900px) {
  .feature { grid-template-columns: 1fr 1fr; gap: var(--sp-7); }
  .feature--reverse .feature__media { order: 2; }
}
.feature__media { position: relative; }
.feature__media img { border-radius: var(--r-lg); }
.feature__media--plain { background: var(--ink); border-radius: var(--r-lg);
  display: grid; place-items: center; padding: var(--sp-5); }

/* --------------------------------------------------------------- PRICE CARDS */
.price-card { background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-1);
  display: flex; flex-direction: column; transition: transform .3s var(--ease),
  box-shadow .3s var(--ease); }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.price-card--featured { border-color: var(--red); box-shadow: var(--shadow-red); }
.price-card__head { padding: var(--sp-4) var(--sp-5); background: var(--ink); color:#fff;
  position: relative; }
.price-card--featured .price-card__head { background: var(--red); }
.price-card__head h3 { color: #fff; font-size: var(--step-2); }
.price-card__tag { position: absolute; top: var(--sp-3); right: var(--sp-3);
  font-family: var(--font-mono); font-size: .65rem; letter-spacing: .12em;
  text-transform: uppercase; background:#fff; color: var(--red); padding: .25rem .6rem;
  border-radius: var(--r-pill); font-weight: 700; }
.price-card__body { padding: var(--sp-5); display: flex; flex-direction: column;
  gap: var(--sp-4); flex: 1; }
.price { font-family: var(--font-display); font-size: var(--step-4); line-height: 1;
  color: var(--ink); }
.price small { font-family: var(--font-mono); font-size: var(--step--1);
  color: var(--muted); display: block; text-transform: uppercase; letter-spacing: .1em;
  margin-top: .3rem; font-weight: 400; }
.price-list { list-style: none; padding: 0; display: grid; gap: .7rem; }
.price-list li { display: flex; gap: .6rem; align-items: flex-start; font-size: var(--step--1); }
.price-list svg { flex: none; width: 18px; height: 18px; color: var(--red); margin-top: 3px; }
.price-card .btn { width: 100%; margin-top: auto; }

/* Tableau prestations à l'unité */
.price-table { width: 100%; border-collapse: collapse; font-size: var(--step-0); }
.price-table caption { text-align: left; font-family: var(--font-mono);
  text-transform: uppercase; letter-spacing: .12em; font-size: var(--step--1);
  color: var(--muted); margin-bottom: var(--sp-3); }
.price-table th, .price-table td { text-align: left; padding: 1rem .5rem;
  border-bottom: 1px solid var(--line); }
.price-table td:last-child, .price-table th:last-child { text-align: right;
  font-family: var(--font-mono); font-weight: 700; white-space: nowrap; }
.price-table tr:last-child td { border-bottom: none; }

/* --------------------------------------------------------------- STEPS / PROCESS */
.steps { counter-reset: step; display: grid; gap: var(--sp-4); }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step-item { position: relative; padding-top: var(--sp-5); }
.step-item::before { counter-increment: step; content: "0" counter(step);
  font-family: var(--font-display); font-size: var(--step-3); color: var(--silver-2);
  line-height: .8; display: block; margin-bottom: var(--sp-2); }
.step-item h3 { font-size: var(--step-1); font-family: var(--font-body); font-weight: 800;
  text-transform: none; letter-spacing: 0; }

/* --------------------------------------------------------------- FAQ */
.faq { max-width: 820px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem; padding: var(--sp-4) 0;
  font-weight: 800; font-size: var(--step-1); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { flex: none; width: 28px; height: 28px; position: relative;
  border: 2px solid var(--red); border-radius: 50%; transition: background .2s var(--ease); }
.faq summary .plus::before, .faq summary .plus::after { content:""; position:absolute;
  background: var(--red); top: 50%; left: 50%; transition: transform .25s var(--ease); }
.faq summary .plus::before { width: 12px; height: 2px; transform: translate(-50%,-50%); }
.faq summary .plus::after  { width: 2px; height: 12px; transform: translate(-50%,-50%); }
.faq details[open] summary .plus { background: var(--red); }
.faq details[open] summary .plus::before,
.faq details[open] summary .plus::after { background: #fff; }
.faq details[open] summary .plus::after { transform: translate(-50%,-50%) scaleY(0); }
.faq__answer { padding-bottom: var(--sp-4); color: var(--ink-soft); }
.faq__answer p { max-width: 70ch; }

/* --------------------------------------------------------------- FORM */
.form { display: grid; gap: var(--sp-4); }
.field { display: grid; gap: .5rem; }
.field label { font-weight: 700; font-size: var(--step--1); }
.field .req { color: var(--red); }
.field input, .field textarea, .field select {
  width: 100%; padding: .85rem 1rem; background: var(--white);
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(199,0,0,.15); }
.field textarea { min-height: 140px; resize: vertical; }
.field .error-msg { font-size: var(--step--1); color: var(--red-dark); font-weight: 700;
  display: none; }
.field[data-invalid] input, .field[data-invalid] textarea, .field[data-invalid] select {
  border-color: var(--red-dark); }
.field[data-invalid] .error-msg { display: block; }
.form__status { font-weight: 700; padding: 1rem 1.2rem; border-radius: var(--r-sm);
  display: none; }
.form__status.is-success { display: block; background: rgba(20,140,60,.12);
  color: #146c34; border: 1px solid rgba(20,140,60,.3); }
.form__status.is-error { display: block; background: rgba(199,0,0,.1);
  color: var(--red-dark); border: 1px solid rgba(199,0,0,.3); }
.form__hint { font-size: var(--step--1); color: var(--muted); }

/* --------------------------------------------------------------- CONTACT INFO */
.info-list { list-style: none; padding: 0; display: grid; gap: var(--sp-4); }
.info-list li { display: flex; gap: var(--sp-3); align-items: flex-start; }
.info-list .ic { flex: none; width: 44px; height: 44px; border-radius: var(--r-md);
  background: rgba(199,0,0,.08); color: var(--red); display: grid; place-items: center; }
.info-list .ic svg { width: 22px; height: 22px; }
.info-list__label { display: block; font-family: var(--font-mono); text-transform: uppercase;
  font-size: .7rem; letter-spacing: .12em; color: var(--muted); }
.info-list__val { display: block; font-weight: 700; }
.info-list a:hover { color: var(--red); }

/* --------------------------------------------------------------- MAP CARD */
.map-card { position: relative; overflow: hidden; border-radius: var(--r-lg);
  background: var(--ink); color: #fff; text-align: center;
  padding: clamp(2.5rem, 6vw, 5rem) var(--gutter); }
.map-card__grid { position: absolute; inset: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    radial-gradient(60% 80% at 50% 40%, rgba(199,0,0,.35), transparent 60%);
  background-size: 40px 40px, 40px 40px, 100% 100%; }
.map-card__inner { position: relative; display: grid; gap: var(--sp-3); justify-items: center; }
.map-card .ic--lg { width: 64px; height: 64px; border-radius: 50%; background: var(--red);
  color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-red); }
.map-card .ic--lg svg { width: 30px; height: 30px; }

/* --------------------------------------------------------------- BADGES / TRUST */
.trust { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-5);
  justify-content: center; }
.trust img { height: 64px; width: auto; opacity: .95; }
.trust__label { font-family: var(--font-mono); font-size: var(--step--1);
  text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }

.pill { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-mono);
  font-size: var(--step--1); text-transform: uppercase; letter-spacing: .1em; font-weight: 700;
  background: rgba(199,0,0,.08); color: var(--red); padding: .4rem .9rem;
  border-radius: var(--r-pill); }
.pill svg { width: 16px; height: 16px; }

/* --------------------------------------------------------------- CTA BAND */
.cta-band { background: var(--red); color: #fff; text-align: center; position: relative;
  overflow: hidden; }
.cta-band::before { content:""; position:absolute; inset:0;
  background: radial-gradient(60% 120% at 50% -20%, rgba(255,255,255,.18), transparent 60%); }
.cta-band__inner { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); margin-inline: auto; }

/* --------------------------------------------------------------- BREADCRUMB */
.breadcrumb { font-family: var(--font-mono); font-size: var(--step--1);
  text-transform: uppercase; letter-spacing: .08em; color: var(--muted);
  padding-block: var(--sp-4) 0; }
.breadcrumb ol { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.breadcrumb li::after { content: "/"; margin-left: .5rem; color: var(--silver); }
.breadcrumb li:last-child::after { content: none; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb [aria-current="page"] { color: var(--ink); }

/* --------------------------------------------------------------- PAGE HEAD */
.page-head { background: var(--ink); color: var(--paper); position: relative;
  overflow: hidden; padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.page-head::before { content:""; position:absolute; inset:0;
  background: radial-gradient(55% 90% at 90% 0%, rgba(199,0,0,.4), transparent 60%); }
.page-head__inner { position: relative; max-width: 760px; }
.page-head h1 { margin-block: var(--sp-2) var(--sp-3); }
.page-head p { color: var(--on-dark); font-size: var(--step-1); }
.page-head .breadcrumb { color: rgba(255,255,255,.6); padding-top: 0; }
.page-head .breadcrumb a:hover { color: #fff; }
.page-head .breadcrumb [aria-current="page"] { color: #fff; }
.page-head .breadcrumb li::after { color: rgba(255,255,255,.4); }

/* --------------------------------------------------------------- FOOTER */
.site-footer { background: var(--ink); color: var(--on-dark); padding-block: var(--sp-7) var(--sp-5); }
.footer-grid { display: grid; gap: var(--sp-5); }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.site-footer h2 { font-size: var(--step-1); color: #fff; font-family: var(--font-body);
  font-weight: 800; text-transform: uppercase; letter-spacing: .05em; margin-bottom: var(--sp-3); }
.footer-brand img { width: 64px; height: 64px; margin-bottom: var(--sp-3); }
.footer-links { list-style: none; padding: 0; display: grid; gap: .6rem; }
.footer-links a:hover { color: #fff; }
.footer-contact { list-style: none; padding: 0; display: grid; gap: .6rem; font-size: var(--step--1); }
.footer-contact strong { color: #fff; }
.footer-bottom { margin-top: var(--sp-6); padding-top: var(--sp-4);
  border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap;
  gap: var(--sp-3); justify-content: space-between; align-items: center;
  font-size: var(--step--1); }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.footer-bottom a:hover { color: #fff; }

/* --------------------------------------------------------------- 404 */
.error-page { min-height: 70vh; display: grid; place-items: center; text-align: center;
  background: var(--ink); color: var(--paper); padding-block: var(--sp-7); }
.error-page .code { font-family: var(--font-display); font-size: clamp(6rem, 28vw, 18rem);
  line-height: .8; color: transparent; -webkit-text-stroke: 2px var(--red); }

/* --------------------------------------------------------------- UTILITIES */
.flow > * + * { margin-top: var(--sp-4); }
.mt-0{margin-top:0}.mt-3{margin-top:var(--sp-3)}.mt-5{margin-top:var(--sp-5)}
.muted { color: var(--muted); }
.tag-list { display: flex; flex-wrap: wrap; gap: .6rem; }
.visually-hidden { position:absolute!important; width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0; }

/* --------------------------------------------------------------- MOTION (reveal) */
[data-reveal] { opacity: 0; transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-reveal="2"] { transition-delay: .08s; }
[data-reveal][data-reveal="3"] { transition-delay: .16s; }
[data-reveal][data-reveal="4"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important;
    transition-duration: .001ms !important; animation-iteration-count: 1 !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
