/* =====================================================================
   WARDESQ — Strategy Map-Room Club
   LAYOUT SYSTEM (fixed, do not mix):
     Container scheme : A — boxed-1200
       .container { max-width: 1200px; margin-inline: auto; padding-inline: 32px }
       (16px inline padding on mobile; full-bleed used only for contour backgrounds)
     Spacing scale    : regular — sections 96px (48px mobile), inner blocks 56px
   Tokens live in :root. Naming: BEM-lite (.block__elem--mod), sections .s-*, utils .u-*.
   ===================================================================== */

:root {
  /* palette */
  --c-bg: #efe9dc;        /* map paper */
  --c-bg-dark: #22261f;   /* field khaki dark */
  --c-ink: #22261f;       /* ink on light */
  --c-ink-inv: #efe9dc;   /* ink on dark */
  --c-a1: #b3542e;        /* red lead / sanguine */
  --c-a2: #48604e;        /* field green */
  --c-line: rgba(34,38,31,0.35);
  --c-line-inv: rgba(239,233,220,0.32);

  /* type */
  --f-display: "Spectral", Georgia, serif;
  --f-display-sc: "Spectral SC", "Spectral", Georgia, serif;
  --f-body: "Sora", system-ui, sans-serif;

  /* radius / border */
  --r-card: 4px;

  /* spacing scale — 8px step */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 40px;
  --s-6: 56px;
  --s-section: 96px;

  /* layout */
  --w-container: 1200px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 600; line-height: 1.12; margin: 0; }

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--w-container);
  margin-inline: auto;
  padding-inline: 32px;
}
.section { padding-block: var(--s-section); position: relative; }
.section--dark {
  background: var(--c-bg-dark);
  color: var(--c-ink-inv);
  position: relative;
  overflow: hidden;
}

/* ---------- utilities ---------- */
.u-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;
}
.u-kicker {
  font-family: var(--f-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-a1);
  margin: 0 0 var(--s-2);
  font-weight: 600;
}
.section--dark .u-kicker { color: var(--c-a1); }

/* ---------- headings ---------- */
.section__head { max-width: 760px; margin-bottom: var(--s-6); position: relative; }
.section__title {
  font-family: var(--f-display-sc);
  font-size: clamp(30px, 4.5vw, 52px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: var(--s-2);
}
.section__intro { max-width: 60ch; margin: 0; opacity: 0.92; }

/* ---------- coordinate-notch border (shared motif) ---------- */
.notch {
  position: relative;
  border: 1px solid currentColor;
  border-radius: var(--r-card);
}
.notch::before, .notch::after {
  content: "";
  position: absolute;
  inset: 5px;
  pointer-events: none;
  background:
    repeating-linear-gradient(to right, currentColor 0 6px, transparent 6px 22px) top / 100% 1px no-repeat,
    repeating-linear-gradient(to right, currentColor 0 6px, transparent 6px 22px) bottom / 100% 1px no-repeat;
  opacity: 0.35;
}
.notch::after {
  background:
    repeating-linear-gradient(to bottom, currentColor 0 6px, transparent 6px 22px) left / 1px 100% no-repeat,
    repeating-linear-gradient(to bottom, currentColor 0 6px, transparent 6px 22px) right / 1px 100% no-repeat;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 12px 22px;
  border: 1px solid currentColor;
  border-radius: var(--r-card);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  background: transparent;
  transition: color .2s ease, background-color .2s ease;
}
.btn--primary {
  background: var(--c-a1);
  color: var(--c-ink-inv);
  border-color: var(--c-a1);
}
.btn--primary:hover { background: #9c4826; border-color: #9c4826; }
.btn--ghost { color: inherit; }
.btn--ghost:hover { background: rgba(34,38,31,0.06); }
.section--dark .btn--ghost:hover { background: rgba(239,233,220,0.08); }
/* dashed route drawn under button on hover */
.btn::after {
  content: "";
  position: absolute;
  left: 6px; right: 6px; bottom: -7px;
  height: 6px;
  background-image: linear-gradient(to right, var(--c-a1) 0 8px, transparent 8px 16px);
  background-size: 16px 2px;
  background-repeat: repeat-x;
  background-position: bottom;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.btn:hover::after, .btn:focus-visible::after { transform: scaleX(1); }

/* ---------- NAV : nav-split-logo ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color .3s ease, border-color .3s ease, padding .3s ease;
}
.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-block: 22px;
  transition: padding .3s ease;
}
.nav.is-scrolled {
  background: var(--c-bg);
  border-bottom-color: var(--c-line);
}
.nav.is-scrolled .nav__inner { padding-block: 12px; }
.nav__side { display: flex; gap: var(--s-3); align-items: center; }
.nav__side--right { justify-content: flex-end; }
.nav__side a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}
.nav__side a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1px;
  background: var(--c-a1); transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav__side a:not(.btn):hover::after,
.nav__side a:not(.btn).is-current::after { transform: scaleX(1); }
.nav__brand { text-align: center; }
.nav__brand a {
  font-family: var(--f-display-sc);
  font-size: 22px;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}
.nav__toggle {
  display: none;
  justify-self: end;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: var(--r-card);
  padding: 8px 12px;
  font-family: var(--f-body);
  font-weight: 600;
  cursor: pointer;
  color: inherit;
}
.nav__mobile { display: none; }

/* ---------- HERO : hero-stacked-devicemockup ---------- */
.s-hero {
  position: relative;
  overflow: hidden;
  background: var(--c-bg-dark);
  color: var(--c-ink-inv);
  padding-block: clamp(64px, 12vh, 130px) var(--s-section);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__contour { width: 100%; height: 100%; }
.hero__contour-lines path {
  fill: none;
  stroke: var(--c-a2);
  stroke-width: 1.2;
  opacity: 0.5;
}
.hero__contour-lines { will-change: transform; animation: contourMarch 30s ease-in-out infinite alternate; }
@keyframes contourMarch {
  from { transform: translate(0, 0); }
  to   { transform: translate(7px, -6px); }
}
.hero__flag { stroke: var(--c-a1); stroke-width: 1.4; fill: var(--c-a1); opacity: 0; }
.hero__flag.is-lit { animation: flagFade 6s ease-in-out infinite; }
@keyframes flagFade {
  0%, 70%, 100% { opacity: 0; }
  20%, 45% { opacity: 0.9; }
}
.hero__inner { position: relative; z-index: 1; text-align: center; max-width: 860px; }
.hero__title {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 600;
  margin-bottom: var(--s-4);
}
.hero__title-sc {
  display: block;
  font-family: var(--f-display-sc);
  font-size: clamp(16px, 2vw, 24px);
  letter-spacing: 0.08em;
  color: var(--c-a1);
  text-transform: uppercase;
  margin-top: var(--s-2);
}
.hero__lede { max-width: 58ch; margin: 0 auto var(--s-5); opacity: 0.9; }
.hero__actions { display: flex; gap: var(--s-3); justify-content: center; flex-wrap: wrap; margin-bottom: var(--s-6); }
.hero__mockup {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid var(--c-line-inv);
  border-radius: 10px;
  padding: 12px;
  background: rgba(239,233,220,0.03);
}
.hero__mockup img { border-radius: 6px; filter: sepia(0.1) contrast(1.05); }
.hero__route {
  position: absolute; top: -30px; left: 50%; width: 2px; height: 30px;
  background-image: linear-gradient(var(--c-a1) 0 6px, transparent 6px 12px);
  background-size: 2px 12px;
  transform: translateX(-50%) scaleY(0); transform-origin: top;
  transition: transform .6s ease;
}
.hero__route.is-drawn { transform: translateX(-50%) scaleY(1); }

/* ---------- figure captions (map legends) ---------- */
.fig {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.02em;
  margin-top: var(--s-2);
  opacity: 0.8;
}
.hero__mockup .fig { text-align: center; color: var(--c-ink-inv); }

/* ---------- routes (dashed decorative connectors) ---------- */
.route {
  display: block;
  width: 2px; height: 40px;
  margin: var(--s-3) 0;
  background-image: linear-gradient(var(--c-a1) 0 6px, transparent 6px 12px);
  background-size: 2px 12px;
  transform: scaleY(0); transform-origin: top;
  transition: transform .6s ease;
  position: relative;
}
.route::after {
  content: ""; position: absolute; bottom: -2px; left: -3px;
  border: 4px solid transparent; border-top-color: var(--c-a1);
}
.route.is-drawn { transform: scaleY(1); }
.route--in { height: 30px; }

/* ---------- MAP ROOMS cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
.card {
  position: relative;
  border: 1px solid var(--c-line);
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--c-bg);
}
.card::before, .card::after {
  content: ""; position: absolute; inset: 5px; pointer-events: none; z-index: 2;
  background:
    repeating-linear-gradient(to right, var(--c-ink) 0 6px, transparent 6px 22px) top / 100% 1px no-repeat,
    repeating-linear-gradient(to right, var(--c-ink) 0 6px, transparent 6px 22px) bottom / 100% 1px no-repeat;
  opacity: 0.3;
}
.card::after {
  background:
    repeating-linear-gradient(to bottom, var(--c-ink) 0 6px, transparent 6px 22px) left / 1px 100% no-repeat,
    repeating-linear-gradient(to bottom, var(--c-ink) 0 6px, transparent 6px 22px) right / 1px 100% no-repeat;
}
.card__compass { position: absolute; top: 12px; right: 12px; z-index: 3; width: 40px; height: 40px; }
.card__compass svg { width: 100%; height: 100%; }
.card__compass circle { fill: rgba(239,233,220,0.85); stroke: var(--c-a2); stroke-width: 1; }
.card__compass path { fill: var(--c-a1); }
.card__compass text { font-family: var(--f-body); font-size: 8px; fill: var(--c-a2); font-weight: 600; }
.card__compass .compass__needle { transform-origin: 20px 20px; transform: rotate(-20deg); transition: transform .8s ease; }
.card__compass.is-north .compass__needle { transform: rotate(0deg); }
.card__media { margin: 0; }
.card__media img { filter: sepia(0.1) contrast(1.05); aspect-ratio: 1/1; object-fit: cover; }
.card__body { padding: var(--s-4); }
.card__title {
  font-family: var(--f-display-sc);
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 0.03em;
  margin-bottom: var(--s-2);
}
.card__text { margin: 0; }

/* ---------- contour background for dark sections (motif) ---------- */
.section__contour {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.28;
  background-image:
    repeating-radial-gradient(ellipse 120% 80% at 30% 40%, transparent 0 38px, var(--c-a2) 38px 39px, transparent 39px 78px);
  background-size: cover;
}
.section--dark .container { position: relative; z-index: 1; }

/* ---------- OPERATIONS ---------- */
.ops { display: grid; grid-template-columns: 1fr 280px; gap: var(--s-6); align-items: start; }
.ops__table { width: 100%; border-collapse: collapse; }
.ops__table caption { text-align: left; }
.ops__table th, .ops__table td {
  text-align: left; padding: var(--s-3) var(--s-2);
  border-bottom: 1px solid var(--c-line-inv); vertical-align: top;
}
.ops__table thead th {
  font-family: var(--f-display-sc); text-transform: uppercase;
  font-size: 12px; letter-spacing: 0.14em; color: var(--c-a1);
}
.ops__table td:first-child { font-family: var(--f-display-sc); text-transform: uppercase; letter-spacing: 0.1em; white-space: nowrap; }
.ops__note { display: block; opacity: 0.75; font-size: 13.5px; margin-top: 4px; }
.stars { display: inline-flex; gap: 4px; }
.stars i {
  width: 12px; height: 12px; display: inline-block;
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  background: var(--c-line-inv);
  transition: background-color .3s ease;
}
.stars i.is-filled { background: var(--c-a1); }
.legend {
  border: 1px solid var(--c-line-inv);
  border-radius: var(--r-card);
  padding: var(--s-4);
}
.legend__title { font-family: var(--f-display-sc); text-transform: uppercase; font-size: 14px; letter-spacing: 0.12em; margin-bottom: var(--s-3); }
.legend__list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-3); font-size: 13.5px; }
.legend__list li { display: grid; grid-template-columns: 40px 1fr; align-items: center; gap: var(--s-2); }
.legend__mark { height: 2px; background-repeat: no-repeat; }
.legend__mark--solid { background: var(--c-a1); }
.legend__mark--dash { background-image: linear-gradient(to right, var(--c-a1) 0 6px, transparent 6px 12px); background-size: 12px 2px; }
.legend__mark--dot { background: transparent; position: relative; }
.legend__mark--dot::before { content: ""; position: absolute; left: 16px; top: -3px; width: 7px; height: 7px; border-radius: 50%; background: var(--c-a1); }

/* ---------- MAP WALL zigzag ---------- */
.zigzag { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-6); align-items: center; }
.zigzag__media { margin: 0; }
.zigzag__media img { border: 1px solid var(--c-line); border-radius: var(--r-card); filter: sepia(0.1) contrast(1.05); }
.zigzag__text p:not(.u-kicker) { margin: 0 0 var(--s-3); }

/* ---------- DEBRIEF manifesto ---------- */
.debrief { text-align: center; max-width: 720px; }
.debrief__seal { width: 80px; height: 80px; margin: 0 auto var(--s-4); }
.debrief__seal svg { width: 100%; height: 100%; }
.debrief__seal circle { fill: var(--c-a1); }
.debrief__seal path { fill: var(--c-bg-dark); }
.debrief__seal[data-seal] { transform: scale(1); }
.debrief__seal.is-stamped { animation: stamp .5s ease; }
@keyframes stamp {
  0% { transform: scale(1.2); opacity: 0.4; }
  100% { transform: scale(1); opacity: 1; }
}
.debrief__quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.4;
  margin: 0 0 var(--s-4);
  quotes: none;
}
.debrief__body { margin: 0 auto; max-width: 56ch; opacity: 0.9; }

/* ---------- FIELD REPORTS ---------- */
.s-reports { padding-block: 0 var(--s-section); }
.reports__band {
  height: clamp(200px, 34vw, 380px);
  background-size: cover;
  background-position: center;
  filter: sepia(0.1) contrast(1.05);
  border-bottom: 1px solid var(--c-line);
  margin-bottom: var(--s-section);
}
.s-reports .section__head { margin-top: 0; }
.reports { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); }
.report {
  margin: 0;
  border: 1px solid var(--c-line);
  border-radius: var(--r-card);
  padding: var(--s-4);
  position: relative;
}
.report__date { font-family: var(--f-display-sc); text-transform: uppercase; font-size: 11px; letter-spacing: 0.14em; color: var(--c-a1); margin: 0 0 var(--s-2); }
.report__text { font-family: var(--f-display); font-style: italic; margin: 0; quotes: none; }

/* ---------- ARCHIVE gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
.gallery__item { margin: 0; }
.gallery__item img { aspect-ratio: 1/1; object-fit: cover; border: 1px solid var(--c-line-inv); border-radius: var(--r-card); filter: sepia(0.1) contrast(1.05); }
.section--dark .fig { color: var(--c-ink-inv); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; }
.faq__item {
  border-bottom: 1px solid var(--c-line);
  padding: var(--s-3) 0;
}
.faq__item summary {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: var(--s-3);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--c-a1); font-family: var(--f-body); transition: transform .2s ease; }
.faq__item[open] summary::after { content: "\2212"; }
.faq__item p { margin: var(--s-3) 0 var(--s-1); max-width: 66ch; }

/* ---------- FORM ---------- */
.book { max-width: 780px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); margin-bottom: var(--s-4); }
.form__row:has(> .field:nth-child(3)) { grid-template-columns: repeat(3, 1fr); }
.field { display: flex; flex-direction: column; }
.field label {
  font-family: var(--f-display-sc);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
  margin-bottom: var(--s-1);
  color: var(--c-ink-inv);
  transition: letter-spacing .2s ease;
}
.field input, .field select {
  font-family: var(--f-body);
  font-size: 15px;
  padding: 12px 14px;
  background: transparent;
  color: var(--c-ink-inv);
  border: 1px solid var(--c-line-inv);
  border-radius: var(--r-card);
}
.field select option { color: var(--c-ink); }
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--c-a1);
  box-shadow: inset 0 0 0 1px var(--c-a1);
}
.field:focus-within label { letter-spacing: 0.2em; color: var(--c-a1); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__status { margin-top: var(--s-3); font-weight: 600; }
.form__status.success { color: #7fae86; }
.form__status.error { color: #e08a6b; }

/* ---------- FOOTER ---------- */
.footer { background: var(--c-bg-dark); color: var(--c-ink-inv); padding-top: var(--s-section); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-5);
  padding-bottom: var(--s-6);
}
.footer__col h4 { font-family: var(--f-display-sc); text-transform: uppercase; font-size: 13px; letter-spacing: 0.12em; color: var(--c-a1); margin-bottom: var(--s-3); }
.footer__col a { display: block; text-decoration: none; margin-bottom: var(--s-1); opacity: 0.88; font-size: 14px; }
.footer__col a:hover { opacity: 1; color: var(--c-a1); }
.footer__col p { margin: 0 0 var(--s-1); font-size: 14px; opacity: 0.85; }
.footer__logo { font-family: var(--f-display-sc); text-transform: uppercase; font-size: 24px; letter-spacing: 0.14em; text-decoration: none; }
.footer__tag { font-family: var(--f-display); font-style: italic; opacity: 0.8; margin-top: var(--s-1); }
.footer__disclaimer {
  font-size: 15px;
  font-family: var(--f-display);
  font-style: italic;
  color: var(--c-ink-inv);
  padding-top: var(--s-4);
  padding-bottom: var(--s-3);
  border-top: 1px solid var(--c-line-inv);
}
.footer__bottom { font-size: 13px; opacity: 0.7; padding-bottom: var(--s-5); }
.footer__col--contact { display: flex; flex-direction: column; align-items: flex-start; gap: var(--s-2); }
.footer__email { align-self: flex-start; margin-bottom: var(--s-1); font-size: 13px; padding: 9px 16px; }
.footer__phone {
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.88;
  letter-spacing: 0.02em;
}
.footer__phone:hover { opacity: 1; color: var(--c-a1); }
.footer__address {
  font-style: normal;
  font-size: 14px;
  opacity: 0.85;
  max-width: 26ch;
  line-height: 1.5;
}

/* ---------- COOKIE CONSENT ---------- */
.cookie {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  padding-bottom: var(--s-3);
}
.cookie[hidden] { display: none; }
.cookie__inner {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-4) var(--s-5);
  background: var(--c-bg-dark);
  color: var(--c-ink-inv);
  border: 1px solid var(--c-line-inv);
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(34,38,31,0.4);
  /* entrance: slide up + fade */
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .45s ease, transform .45s ease;
}
.cookie.is-shown .cookie__inner {
  opacity: 1;
  transform: none;
}
.cookie__text {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}
.cookie__text a { color: var(--c-a1); text-decoration: underline; }
.cookie__accept { flex-shrink: 0; }
@media (max-width: 768px) {
  .cookie__inner { flex-direction: column; align-items: flex-start; gap: var(--s-3); }
}
@media (prefers-reduced-motion: reduce) {
  .cookie__inner { transition: none; opacity: 1; transform: none; }
}

/* ---------- LEGAL PAGES (narrow reading column) ---------- */
.legal { background: var(--c-bg); }
.nav__inner--legal { grid-template-columns: 1fr auto; }
.legal__wrap { max-width: 760px; padding-block: var(--s-section) var(--s-6); }
.legal__seal { margin-bottom: var(--s-3); }
.legal__title {
  font-family: var(--f-display-sc);
  text-transform: uppercase;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: 0.02em;
  margin-bottom: var(--s-3);
}
.legal__intro { font-size: 16px; max-width: 62ch; margin: 0 0 var(--s-6); opacity: 0.9; }
.legal h2 {
  font-family: var(--f-display-sc);
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: 0.06em;
  color: var(--c-a2);
  margin-top: var(--s-5);
  margin-bottom: var(--s-2);
}
.legal p { max-width: 66ch; margin: 0 0 var(--s-3); }
.legal__disclaimer {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 16px;
  border-top: 1px solid var(--c-line);
  padding-top: var(--s-4);
  margin-top: var(--s-6);
}
.legal__back { font-size: 14px; }
.legal__back a { color: var(--c-a1); }
.legal__footer { padding-top: var(--s-5); }

/* ---------- scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* =====================================================================
   RESPONSIVE — mobile-first breakpoints 480 / 768 / 1024 / 1200
   ===================================================================== */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .ops { grid-template-columns: 1fr; gap: var(--s-5); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --s-section: 48px; }
  .container { padding-inline: 16px; }
  .nav__side { display: none; }
  .nav__inner { grid-template-columns: 1fr auto; }
  .nav__brand { grid-column: 1; justify-self: start; }
  .nav__toggle { display: inline-block; grid-column: 2; }
  .nav__mobile.is-open {
    display: flex; flex-direction: column; gap: var(--s-2);
    padding: var(--s-3) 16px var(--s-4);
    background: var(--c-bg); border-top: 1px solid var(--c-line);
  }
  .nav__mobile a { text-decoration: none; font-weight: 500; padding: 8px 0; }
  .cards { grid-template-columns: 1fr; }
  .zigzag { grid-template-columns: 1fr; }
  .reports { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .form__row, .form__row:has(> .field:nth-child(3)) { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  body { font-size: 14.5px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .footer__inner { grid-template-columns: 1fr; }
}

/* ---------- reduced motion : kill ALL motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__route, .route { transform: none !important; }
  .compass__needle { transform: rotate(0deg) !important; }
}
