/* ============================================================
   L'ÉCHEVIN — feuille de style commune
   Aide à la décision communale
   v1.0 — mai 2026
   ============================================================ */

:root {
  /* Palette V4 — institutionnelle, contemporaine sobre */
  --bleu: #0B1426;
  --bleu-soft: #182338;
  --bleu-warm: #1F2B45;
  --gris-fort: #4A5063;
  --gris: #7B7F8A;
  --gris-clair-typo: #B0B3BB;
  --filet: #D9D6CF;
  --filet-fort: #BFBCB4;
  --gris-clair: #E9E7E2;
  --fond: #F4F2EC;
  --fond-2: #ECE9E1;
  --blanc: #FFFFFF;
  --signal: #8C5A0E;

  --serif: 'Cormorant Garamond', 'Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  --shell: 1180px;
}

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

html, body {
  background: var(--fond);
  font-family: var(--sans);
  color: var(--bleu);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

/* ============================================================
   HEADER NAVIGATION
   ============================================================ */

.site-header {
  background: var(--fond);
  border-bottom: 0.5pt solid var(--filet-fort);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background-color: rgba(244, 242, 236, 0.94);
}

.header-inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 22px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  color: var(--bleu);
  letter-spacing: -0.005em;
  line-height: 0.95;
}

.brand-base {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 8px;
  color: var(--bleu);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-top: 5px;
  padding-top: 4px;
  border-top: 0.5pt solid var(--bleu);
  align-self: stretch;
  text-align: center;
}

.nav {
  display: flex;
  gap: 36px;
  align-items: center;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav a {
  color: var(--bleu);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.nav a:hover,
.nav a.active {
  border-bottom-color: var(--bleu);
}

.nav a.nav-cta {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  background: var(--bleu);
  color: var(--gris-clair);
  padding: 11px 20px;
  border: 0.5pt solid var(--bleu);
  transition: background 0.2s, color 0.2s;
}

.nav a.nav-cta:hover {
  background: transparent;
  color: var(--bleu);
  border-bottom-color: var(--bleu);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--bleu);
}

/* ============================================================
   PAGE & SECTIONS
   ============================================================ */

main { display: block; }

.shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 80px 48px;
}

.shell-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 80px 48px;
}

/* Section header — lecture en blocs */
.section-marker {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--gris-fort);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-marker::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 0.5pt;
  background: var(--gris-fort);
}

.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 56px;
  line-height: 1.05;
  color: var(--bleu);
  letter-spacing: -0.005em;
  margin-bottom: 18px;
  max-width: 780px;
}

.section-baseline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  font-weight: 500;
  color: #2A2F3A;
  line-height: 1.45;
  max-width: 720px;
  margin-bottom: 48px;
}

h2.bloc-title {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bleu);
  font-weight: 600;
  margin: 56px 0 18px 0;
  padding-bottom: 6px;
  border-bottom: 0.5pt solid var(--bleu);
  display: inline-block;
}

h3.sub-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
  color: var(--bleu);
  letter-spacing: -0.005em;
  margin: 36px 0 14px 0;
}

p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--bleu);
  margin-bottom: 14px;
  font-weight: 400;
}

p.lead {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.55;
  color: var(--bleu);
  margin-bottom: 24px;
  max-width: 720px;
}

p.notice {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--gris-fort);
  line-height: 1.6;
}

ul.dash, ol.roman {
  list-style: none;
  margin: 12px 0 22px 0;
  padding: 0;
}

ul.dash li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--bleu);
}

ul.dash li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gris-fort);
  font-weight: 500;
}

ol.roman {
  counter-reset: roman;
}

ol.roman li {
  counter-increment: roman;
  position: relative;
  padding-left: 36px;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--bleu);
}

ol.roman li::before {
  content: "(" counter(roman, lower-roman) ")";
  position: absolute;
  left: 0;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gris-fort);
  font-weight: 500;
  top: 3px;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  padding: 96px 48px 88px 48px;
  max-width: var(--shell);
  margin: 0 auto;
  border-bottom: 0.5pt solid var(--filet-fort);
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--gris-fort);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 0.5pt;
  background: var(--gris-fort);
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 88px;
  line-height: 0.98;
  color: var(--bleu);
  letter-spacing: -0.01em;
  margin-bottom: 30px;
  max-width: 920px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--bleu-warm);
}

.hero-strap {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 500;
  color: #2A2F3A;
  line-height: 1.45;
  max-width: 740px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 14px 26px;
  border: 0.5pt solid var(--bleu);
  background: var(--bleu);
  color: var(--gris-clair);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}

.btn:hover {
  background: transparent;
  color: var(--bleu);
}

.btn-ghost {
  background: transparent;
  color: var(--bleu);
}

.btn-ghost:hover {
  background: var(--bleu);
  color: var(--gris-clair);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 0.5pt solid var(--filet-fort);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gris-fort);
}

.hero-meta .label {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 10px;
  margin-bottom: 5px;
}

.hero-meta .value {
  font-family: var(--sans);
  color: var(--bleu);
  font-size: 14px;
  font-weight: 500;
}

/* ============================================================
   GRILLES / CARTES
   ============================================================ */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 28px 0 36px 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin: 28px 0 36px 0;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 28px 0 36px 0;
}

.principle {
  border-top: 1pt solid var(--bleu);
  padding-top: 18px;
}

.principle .num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--gris-fort);
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}

.principle .title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--bleu);
  letter-spacing: -0.005em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.principle p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  color: var(--bleu);
}

/* Carte prestation */
.card {
  background: var(--blanc);
  border: 0.5pt solid var(--filet-fort);
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
}

.card .num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--gris-fort);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.card .title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--bleu);
  letter-spacing: -0.005em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gris-fort);
  margin: 0;
}

/* Tickets — colonnes prix */
.tickets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 28px 0;
  border: 0.5pt solid var(--filet-fort);
}

.ticket {
  padding: 36px 32px 32px 32px;
  border-right: 0.5pt solid var(--filet-fort);
  background: var(--blanc);
  display: flex;
  flex-direction: column;
}

.ticket:last-child { border-right: 0; }

.ticket-tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--gris-fort);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ticket-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 36px;
  color: var(--bleu);
  letter-spacing: -0.005em;
  line-height: 1.0;
  margin-bottom: 14px;
}

.ticket-price {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 500;
  color: var(--bleu-warm);
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 0.5pt solid var(--filet-fort);
}

.ticket-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  margin-bottom: 20px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--gris-fort);
}

.ticket-meta .label {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 9px;
  margin-bottom: 3px;
}

.ticket-meta .value {
  font-family: var(--sans);
  color: var(--bleu);
  font-size: 13px;
  font-weight: 500;
}

.ticket-examples {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.55;
  color: var(--gris-fort);
  margin-top: auto;
  padding-top: 16px;
  border-top: 0.5pt solid var(--filet-fort);
}

/* ============================================================
   CALLOUT
   ============================================================ */

.callout {
  background: var(--bleu);
  color: var(--gris-clair);
  padding: 32px 38px;
  margin: 36px 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
}

.callout .label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gris-clair-typo);
  padding-top: 4px;
}

.callout .body {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  color: var(--gris-clair);
}

.callout .body strong {
  font-style: normal;
  font-weight: 600;
  color: var(--blanc);
}

.note {
  background: var(--fond-2);
  padding: 18px 22px;
  margin: 22px 0;
  border-left: 2pt solid var(--signal);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.6;
  color: var(--gris-fort);
}

.note strong { font-weight: 600; color: var(--bleu); }

/* ============================================================
   TABLEAU
   ============================================================ */

.tab {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-family: var(--sans);
  font-size: 14px;
}

.tab th, .tab td {
  text-align: left;
  padding: 14px 18px 14px 0;
  border-bottom: 0.5pt solid var(--filet);
  vertical-align: top;
}

.tab th {
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 10px;
  color: var(--bleu);
  border-bottom: 1pt solid var(--bleu);
  padding-bottom: 10px;
}

.tab td.mono { font-family: var(--mono); font-size: 12px; }

.tab td strong { color: var(--bleu); font-weight: 600; }

.tab .yes { color: var(--bleu); font-weight: 600; }
.tab .no { color: var(--signal); font-weight: 600; }

/* ============================================================
   FORMULAIRE
   ============================================================ */

.form {
  background: var(--blanc);
  border: 0.5pt solid var(--filet-fort);
  padding: 36px 38px;
  max-width: 640px;
  margin: 28px 0;
}

.form-group {
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gris-fort);
  margin-bottom: 8px;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form select,
.form textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--bleu);
  background: var(--fond);
  border: 0.5pt solid var(--filet-fort);
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--bleu);
}

.form textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--sans);
}

.form-hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.form .consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--gris-fort);
  line-height: 1.6;
  margin-bottom: 22px;
}

.form .consent input { margin-top: 4px; flex-shrink: 0; }

.form button[type="submit"] {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 26px;
  border: 0.5pt solid var(--bleu);
  background: var(--bleu);
  color: var(--gris-clair);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.form button[type="submit"]:hover {
  background: transparent;
  color: var(--bleu);
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  font-size: 13px;
  font-family: var(--sans);
  border-left: 2pt solid var(--bleu);
  background: var(--fond-2);
}

.form-status.show { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--bleu);
  color: var(--gris-clair);
  margin-top: 80px;
  padding: 64px 0 28px 0;
}

.footer-inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 0.5pt solid rgba(233, 231, 226, 0.18);
}

.footer-brand .brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.footer-brand .brand-name {
  color: var(--gris-clair);
  font-size: 32px;
  line-height: 0.95;
}
.footer-brand .brand-base {
  color: var(--gris-clair);
  border-top-color: var(--gris-clair);
  font-size: 9px;
}

.footer-brand p {
  margin-top: 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--gris-clair-typo);
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gris-clair);
  margin-bottom: 18px;
  padding-bottom: 6px;
  border-bottom: 0.5pt solid rgba(233, 231, 226, 0.30);
}

.footer-col ul { list-style: none; }

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--gris-clair-typo);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gris-clair); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--gris-clair-typo);
  letter-spacing: 0.06em;
}

.footer-bottom a { color: var(--gris-clair-typo); }
.footer-bottom a:hover { color: var(--gris-clair); border-bottom: 0.5pt solid var(--gris-clair-typo); }

/* ============================================================
   COOKIES BANNER
   ============================================================ */

.cookies {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  background: var(--bleu);
  color: var(--gris-clair);
  padding: 22px 26px;
  z-index: 100;
  display: none;
  box-shadow: 0 6px 24px rgba(11, 20, 38, 0.18);
}

.cookies.show { display: block; }

.cookies h4 {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gris-clair);
  margin-bottom: 10px;
}

.cookies p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gris-clair);
  line-height: 1.55;
  margin-bottom: 16px;
}

.cookies-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookies-actions button,
.cookies-actions a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 10px 16px;
  border: 0.5pt solid var(--gris-clair);
  background: transparent;
  color: var(--gris-clair);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.cookies-actions .accept {
  background: var(--gris-clair);
  color: var(--bleu);
}

.cookies-actions button:hover,
.cookies-actions a:hover {
  background: var(--gris-clair);
  color: var(--bleu);
}

/* ============================================================
   PAGE QUI SUIS-JE
   ============================================================ */

.bio-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: stretch;
  margin: 24px 0 36px 0;
}

.portrait {
  position: relative;
  display: flex;
  flex-direction: column;
}

.portrait img {
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  display: block;
  border: 0.5pt solid var(--filet-fort);
  background: var(--fond-2);
  object-fit: cover;
  object-position: center 25%;
}

.portrait .legend {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gris-fort);
  margin-top: 12px;
  padding-top: 8px;
  border-top: 0.5pt solid var(--filet-fort);
}

.portrait .legend .name {
  font-family: var(--serif);
  font-size: 18px;
  font-style: normal;
  text-transform: none;
  letter-spacing: -0.005em;
  color: var(--bleu);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.bio-text p { font-size: 17px; line-height: 1.8; margin-bottom: 18px; }
.bio-text p.lead { font-size: 22px; line-height: 1.55; margin-bottom: 26px; }
.bio-text p strong { font-weight: 600; }

/* Parcours en blocs typographiés */
.cv-list {
  list-style: none;
  margin: 8px 0 24px 0;
  padding: 0;
}

.cv-list li {
  padding: 18px 0;
  border-bottom: 0.5pt solid var(--filet);
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  align-items: baseline;
}

.cv-list li:first-child { border-top: 1pt solid var(--bleu); }

.cv-list .date {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--gris-fort);
  letter-spacing: 0.06em;
}

.cv-list .role {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--bleu);
  letter-spacing: -0.005em;
  line-height: 1.25;
  margin-bottom: 4px;
}

.cv-list .org {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--gris-fort);
  line-height: 1.55;
}

.cv-list .org strong { color: var(--bleu); font-weight: 500; }

@media (max-width: 760px) {
  .bio-grid { grid-template-columns: 1fr; gap: 32px; }
  .portrait { max-width: 280px; }
  .cv-list li { grid-template-columns: 1fr; gap: 6px; }
}

/* ============================================================
   FAQ / Accordéons légers
   ============================================================ */

.faq-item {
  border-bottom: 0.5pt solid var(--filet-fort);
  padding: 22px 0;
}

.faq-item h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--bleu);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}

.faq-item p {
  font-size: 14px;
  color: var(--gris-fort);
  margin: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 920px) {
  .header-inner { padding: 18px 24px; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--fond);
    border-bottom: 0.5pt solid var(--filet-fort);
    padding: 24px 24px 28px 24px;
    gap: 18px;
  }
  .nav-toggle { display: inline-block; }

  .shell, .shell-narrow { padding: 56px 24px; }
  .hero { padding: 56px 24px; }
  .hero h1 { font-size: 48px; }
  .hero-strap { font-size: 22px; }
  .section-title { font-size: 38px; }
  .hero-meta { grid-template-columns: 1fr; gap: 16px; }

  .grid-3, .grid-2, .grid-4, .tickets { grid-template-columns: 1fr; }
  .ticket { border-right: 0; border-bottom: 0.5pt solid var(--filet-fort); }
  .ticket:last-child { border-bottom: 0; }

  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .callout { grid-template-columns: 1fr; gap: 8px; padding: 22px 24px; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 38px; }
  .ticket-name { font-size: 28px; }
  .ticket-meta { grid-template-columns: 1fr; }
}
