/* ==========================================================================
   ENGINE IMPORTERS CT — Design System
   Industrial engine-dealer register. Red / white / black. Committed strategy.
   ========================================================================== */

/* ---------- Fonts ---------- */
/* Anton (display), Barlow Semi Condensed (subhead/ui), Barlow (body) */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --red:       oklch(0.575 0.222 26);
  --red-600:   oklch(0.505 0.196 26);
  --red-700:   oklch(0.435 0.168 26);
  --red-tint:  oklch(0.575 0.222 26 / 0.12);

  /* Neutrals — true, non-cream */
  --white:     #ffffff;
  --surface:   oklch(0.977 0.001 250);
  --surface-2: oklch(0.945 0.002 250);
  --line:      oklch(0.885 0.003 250);
  --line-2:    oklch(0.82 0.004 250);

  --ink:       oklch(0.175 0.006 40);   /* near-black text */
  --black:     oklch(0.135 0.004 40);   /* structural black */
  --black-2:   oklch(0.205 0.006 40);   /* raised black surface */
  --muted:     oklch(0.445 0.006 260);  /* secondary text on light — ~7:1 */
  --muted-2:   oklch(0.56 0.006 260);   /* tertiary on light */
  --on-dark:   oklch(0.97 0.002 250);
  --on-dark-mut: oklch(0.74 0.006 260);

  /* Type */
  --f-display: "Anton", "Arial Narrow", system-ui, sans-serif;
  --f-head:    "Barlow Semi Condensed", system-ui, sans-serif;
  --f-body:    "Barlow", system-ui, sans-serif;

  /* Spacing scale */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;   --sp-6: 2rem;     --sp-7: 3rem;      --sp-8: 4rem;
  --sp-9: 6rem;     --sp-10: 8rem;

  --container: 1240px;
  --radius: 3px;

  /* Elevation */
  --shadow-sm: 0 1px 2px oklch(0.2 0.01 40 / 0.10);
  --shadow-md: 0 8px 24px -8px oklch(0.2 0.01 40 / 0.28);
  --shadow-lg: 0 24px 60px -18px oklch(0.15 0.01 40 / 0.45);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.55s;

  /* z-scale */
  --z-header: 100;
  --z-dropdown: 200;
  --z-overlay: 300;
  --z-modal: 400;
}

/* ---------- 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(--f-body);
  font-size: clamp(1rem, 0.97rem + 0.15vw, 1.075rem);
  line-height: 1.62;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul[role="list"] { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--f-display); font-weight: 400; line-height: 0.98;
  letter-spacing: 0.005em; text-transform: uppercase; text-wrap: balance; }
.h-display { font-size: clamp(2.75rem, 1.9rem + 4.2vw, 5.25rem); line-height: 0.92; }
h2 { font-size: clamp(2rem, 1.4rem + 2.8vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 1.15rem + 0.9vw, 1.75rem); }
p { max-width: 68ch; text-wrap: pretty; }
.lead { font-size: clamp(1.1rem, 1.02rem + 0.5vw, 1.3rem); line-height: 1.55; color: var(--muted); font-weight: 500; }
strong, b { font-weight: 700; }

.eyebrow {
  font-family: var(--f-head); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.82rem; color: var(--red);
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--red); display: inline-block; }

/* ---------- Layout ---------- */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.container-wide { width: min(100% - 2.5rem, 1440px); margin-inline: auto; }
.section { padding-block: clamp(3.5rem, 2.5rem + 4vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 2rem + 2.5vw, 4.5rem); }
.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 1.4rem + 2vw, 3.25rem); }
.section-head p { margin-top: 1rem; }
.stack > * + * { margin-top: var(--sp-4); }

.bg-dark { background: var(--black); color: var(--on-dark); }
.bg-surface { background: var(--surface); }
.bg-red { background: var(--red); color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  --_bg: var(--red); --_fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--f-head); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em; font-size: 0.98rem; line-height: 1;
  padding: 0.95rem 1.6rem; background: var(--_bg); color: var(--_fg);
  border: 2px solid var(--_bg); border-radius: var(--radius);
  transition: transform 0.18s var(--ease-out), background 0.2s, box-shadow 0.2s, border-color 0.2s, color 0.2s;
  will-change: transform;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn:hover { background: var(--red-600); border-color: var(--red-600); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--ghost { --_bg: transparent; --_fg: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { --_fg: #fff; background: var(--ink); border-color: var(--ink); }
.btn--on-dark { --_bg: transparent; --_fg: #fff; border-color: oklch(1 0 0 / 0.35); }
.btn--on-dark:hover { background: #fff; color: var(--black); border-color: #fff; }
.btn--wa { --_bg: #25D366; --_fg: #06301a; border-color: #25D366; }
.btn--wa:hover { --_bg: #1eb856; border-color: #1eb856; color: #06301a; }
.btn--lg { padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.topbar {
  background: var(--black); color: var(--on-dark-mut);
  font-family: var(--f-head); font-size: 0.86rem; letter-spacing: 0.02em;
  border-bottom: 1px solid oklch(1 0 0 / 0.08);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; }
.topbar a { color: var(--on-dark); font-weight: 600; display: inline-flex; align-items: center; gap: 0.4rem; }
.topbar a:hover { color: var(--red); }
.topbar__meta { display: flex; align-items: center; gap: 1.4rem; }
.topbar__socials { display: flex; align-items: center; gap: 0.85rem; }
.topbar__socials svg { width: 18px; height: 18px; }
@media (max-width: 640px) { .topbar__meta .hide-sm { display: none; } }

.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: oklch(1 0 0 / 0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s, background 0.25s;
}
.site-header.is-scrolled { box-shadow: var(--shadow-md); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 74px; }

.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand__logo-img, .brand .custom-logo { height: 52px; width: auto; }
.brand__mark {
  font-family: var(--f-display); font-size: 1.5rem; text-transform: uppercase;
  letter-spacing: 0.01em; line-height: 0.9; color: var(--ink);
  display: flex; flex-direction: column;
}
.brand__mark .sub { font-family: var(--f-head); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.28em; color: var(--muted); -webkit-text-stroke: 0; }
.brand__ct { background: var(--red); color: #fff; padding: 0 0.32em; margin-left: 0.15em; }

.nav { display: flex; align-items: center; gap: 0.3rem; }
.nav a {
  font-family: var(--f-head); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; font-size: 0.98rem; color: var(--ink);
  padding: 0.55rem 0.95rem; position: relative;
}
.nav a::after { content: ""; position: absolute; left: 0.95rem; right: 0.95rem; bottom: 0.35rem;
  height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.25s var(--ease-out); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--red); }

.header__actions { display: flex; align-items: center; gap: 0.8rem; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 2px solid var(--line-2); border-radius: var(--radius);
  align-items: center; justify-content: center; }
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 940px) {
  .header__actions .btn--nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 340px);
    background: var(--black); color: #fff; flex-direction: column; align-items: stretch;
    gap: 0; padding: 6rem 1.5rem 2rem; transform: translateX(100%);
    transition: transform 0.4s var(--ease-out); z-index: var(--z-overlay);
    box-shadow: var(--shadow-lg);
  }
  .nav.is-open { transform: translateX(0); }
  .nav a { color: #fff; font-size: 1.4rem; padding: 1rem 0; border-bottom: 1px solid oklch(1 0 0 / 0.1); }
  .nav a::after { display: none; }
  .nav .btn { margin-top: 1.5rem; }
  .nav-backdrop { position: fixed; inset: 0; background: oklch(0.1 0 0 / 0.5); opacity: 0;
    visibility: hidden; transition: opacity 0.3s; z-index: var(--z-dropdown); }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--black); color: #fff; overflow: hidden; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 40%; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(105deg, oklch(0.12 0.004 40 / 0.94) 0%, oklch(0.12 0.004 40 / 0.72) 42%, oklch(0.12 0.004 40 / 0.35) 100%),
    linear-gradient(0deg, oklch(0.11 0.004 40 / 0.85) 0%, transparent 45%);
}
.hero__inner { display: grid; gap: 1.6rem; align-content: center;
  min-height: clamp(560px, 78vh, 820px); padding-block: 4rem; max-width: 42rem; }
.hero .h-display { color: #fff; }
.hero .h-display .accent { color: var(--red); display: inline-block; }
.hero__lead { font-size: clamp(1.1rem, 1rem + 0.6vw, 1.35rem); color: var(--on-dark-mut);
  font-weight: 500; max-width: 40ch; line-height: 1.5; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 0.6rem; }
.hero__strip {
  display: flex; flex-wrap: wrap; gap: 0.6rem 2rem; margin-top: 1.4rem;
  font-family: var(--f-head); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.04em; font-size: 0.92rem; color: var(--on-dark);
}
.hero__strip span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero__strip svg { width: 18px; height: 18px; color: var(--red); }

/* diagonal red accent ribbon at hero base */
.hero__ribbon { position: absolute; left: 0; right: 0; bottom: 0; height: 6px; background: var(--red); z-index: 1; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--red); color: #fff; }
.trustbar__inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.trustbar__item { display: flex; align-items: center; gap: 0.8rem; padding: 1.15rem 1.4rem;
  font-family: var(--f-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em;
  font-size: 0.98rem; line-height: 1.1; border-left: 1px solid oklch(1 0 0 / 0.18); }
.trustbar__item:first-child { border-left: 0; }
.trustbar__item svg { width: 26px; height: 26px; flex: none; }
@media (max-width: 820px) { .trustbar__inner { grid-template-columns: repeat(2, 1fr); }
  .trustbar__item:nth-child(3) { border-left: 0; } }
@media (max-width: 460px) { .trustbar__inner { grid-template-columns: 1fr; }
  .trustbar__item { border-left: 0; border-top: 1px solid oklch(1 0 0 / 0.18); }
  .trustbar__item:first-child { border-top: 0; } }

/* ---------- Engine cards ---------- */
.engine-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.6rem; }
.engine-card {
  position: relative; background: var(--white); border: 1px solid var(--line);
  display: flex; flex-direction: column; overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}
.engine-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--line-2); }
.engine-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--black); }
.engine-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.engine-card:hover .engine-card__media img { transform: scale(1.06); }
.engine-card__tag { position: absolute; top: 0; left: 0; z-index: 2;
  font-family: var(--f-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 0.76rem; color: #fff; background: var(--black); padding: 0.4rem 0.85rem; }
.engine-card__tag--sold { background: var(--muted); }
.engine-card__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.engine-card__title { font-family: var(--f-display); text-transform: uppercase; font-size: 1.55rem;
  line-height: 0.98; color: var(--ink); }
.engine-card__sub { font-family: var(--f-head); font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.85rem; margin-top: -0.15rem; }
.engine-card__specs { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.4rem; }
.spec-chip { font-family: var(--f-head); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.02em;
  color: var(--ink); background: var(--surface-2); padding: 0.28rem 0.6rem; border-radius: 2px; }
.engine-card__desc { color: var(--muted); font-size: 0.95rem; line-height: 1.5; }
.engine-card__foot { margin-top: auto; padding-top: 1.1rem; display: flex; align-items: flex-end;
  justify-content: space-between; gap: 1rem; }
.price { font-family: var(--f-display); color: var(--red); font-size: 1.9rem; line-height: 0.9; }
.price .cur { font-family: var(--f-head); font-weight: 700; font-size: 0.9rem; color: var(--muted);
  display: block; letter-spacing: 0.08em; }
.engine-card__foot .btn { padding: 0.7rem 1.15rem; font-size: 0.88rem; }

/* Full catalogue: wide detail rows on lg */
.catalogue-item { border: 1px solid var(--line); background: #fff; display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); overflow: hidden; }
.catalogue-item + .catalogue-item { margin-top: 1.6rem; }
.catalogue-item__media { position: relative; min-height: 300px; background: var(--black); }
.catalogue-item__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.catalogue-item__body { min-width: 0; padding: clamp(1.5rem, 1rem + 2vw, 2.75rem); display: flex; flex-direction: column; gap: 1rem; }
.catalogue-item__head { min-width: 0; display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem 1.5rem; flex-wrap: wrap; }
.catalogue-item__title { min-width: 0; overflow-wrap: break-word; }
.catalogue-item__title { font-family: var(--f-display); text-transform: uppercase; font-size: clamp(1.8rem, 1.4rem + 1.6vw, 2.6rem); line-height: 0.95; }
.catalogue-item__title .sub { display: block; font-family: var(--f-head); font-weight: 600; font-size: 0.95rem;
  color: var(--muted); letter-spacing: 0.05em; margin-top: 0.35rem; }
.spec-table { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.1rem 1.5rem; border-top: 2px solid var(--ink); padding-top: 1rem; }
.spec-table div { display: flex; justify-content: space-between; gap: 1rem; padding: 0.5rem 0; border-bottom: 1px solid var(--line); }
.spec-table dt { font-family: var(--f-head); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
  font-size: 0.82rem; color: var(--muted); }
.spec-table dd { font-weight: 600; font-size: 0.92rem; text-align: right; }
.catalogue-item__foot { margin-top: auto; padding-top: 0.5rem; display: flex; align-items: center;
  justify-content: space-between; gap: 1.2rem; flex-wrap: wrap; }
@media (max-width: 780px) { .catalogue-item { grid-template-columns: minmax(0, 1fr); }
  .catalogue-item__media { min-height: 240px; aspect-ratio: 16/10; } }
@media (max-width: 440px) { .spec-table { grid-template-columns: 1fr; } }

/* ---------- Feature / value props ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.feature { padding: 1.6rem 1.5rem; background: var(--white); border: 1px solid var(--line); }
.feature__ico { width: 52px; height: 52px; display: grid; place-items: center; background: var(--red-tint);
  color: var(--red); margin-bottom: 1.1rem; border-radius: var(--radius); }
.feature__ico svg { width: 28px; height: 28px; }
.feature h3 { font-family: var(--f-head); font-weight: 700; font-size: 1.2rem; text-transform: uppercase;
  letter-spacing: 0.02em; line-height: 1.1; margin-bottom: 0.5rem; color: var(--ink); }
.feature p { color: var(--muted); font-size: 0.96rem; }

/* Split feature (image + text) */
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split__media--tall img { aspect-ratio: 3/4; }
.split__badge { position: absolute; bottom: -1px; left: -1px; background: var(--red); color: #fff;
  padding: 1rem 1.4rem; font-family: var(--f-display); text-transform: uppercase; font-size: 1.6rem; line-height: 0.9; }
.split__badge span { display: block; font-family: var(--f-head); font-weight: 600; font-size: 0.75rem; letter-spacing: 0.1em; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; counter-reset: step; }
.step { position: relative; padding: 2rem 1.5rem 1.6rem; background: var(--black-2); color: var(--on-dark); border-top: 4px solid var(--red); }
.step__n { font-family: var(--f-display); font-size: 3rem; line-height: 0.8; color: var(--red); display: block; margin-bottom: 0.6rem; }
.step h3 { font-family: var(--f-head); font-weight: 700; font-size: 1.2rem; text-transform: uppercase; color: #fff; margin-bottom: 0.5rem; }
.step p { color: var(--on-dark-mut); font-size: 0.95rem; }

/* ---------- Map ---------- */
.map-block { display: grid; grid-template-columns: 1fr 1fr; }
.map-block__info { background: var(--black); color: var(--on-dark); padding: clamp(2rem, 1.5rem + 3vw, 4rem); display: flex; flex-direction: column; justify-content: center; gap: 1.5rem; }
.map-block__frame { min-height: 420px; position: relative; }
.map-block__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.15) contrast(1.05); }
.contact-line { display: flex; gap: 1rem; align-items: flex-start; }
.contact-line__ico { width: 44px; height: 44px; flex: none; display: grid; place-items: center; background: var(--red); color: #fff; border-radius: var(--radius); }
.contact-line__ico svg { width: 22px; height: 22px; }
.contact-line dt { font-family: var(--f-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.78rem; color: var(--on-dark-mut); }
.contact-line dd { font-size: 1.12rem; font-weight: 600; }
.contact-line dd a:hover { color: var(--red); }
@media (max-width: 860px) { .map-block { grid-template-columns: 1fr; } .map-block__frame { min-height: 340px; } }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: var(--red); color: #fff; overflow: hidden; }
.cta-band__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; padding-block: clamp(2.5rem, 2rem + 2vw, 4rem); }
.cta-band h2 { color: #fff; max-width: 20ch; }
.cta-band .btn--wa { --_bg: #fff; --_fg: var(--black); border-color: #fff; }
.cta-band .btn--wa:hover { --_bg: var(--black); --_fg: #fff; border-color: var(--black); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.4rem; }
.field label { font-family: var(--f-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.82rem; color: var(--ink); }
.field .req { color: var(--red); }
.field input, .field select, .field textarea {
  font-family: var(--f-body); font-size: 1rem; padding: 0.85rem 0.95rem; border: 2px solid var(--line-2);
  border-radius: var(--radius); background: #fff; color: var(--ink); transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px var(--red-tint); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.form__note { font-size: 0.85rem; color: var(--muted); }

/* ---------- Page hero (subpages) ---------- */
.page-hero { background: var(--black); color: #fff; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; top: 0; bottom: 0; right: -5%; width: 45%;
  background: linear-gradient(120deg, transparent, var(--red-tint)); transform: skewX(-12deg); }
.page-hero__inner { position: relative; padding-block: clamp(3rem, 2rem + 5vw, 6rem); }
.page-hero .h-display { color: #fff; max-width: 20ch; }
.page-hero p { color: var(--on-dark-mut); margin-top: 1rem; font-size: 1.15rem; }
.breadcrumb { font-family: var(--f-head); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.82rem; color: var(--on-dark-mut); margin-bottom: 1.2rem; display: flex; gap: 0.5rem; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--red); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stat { background: #fff; padding: 1.8rem 1.4rem; text-align: center; }
.stat__n { font-family: var(--f-display); font-size: clamp(2.4rem, 2rem + 2vw, 3.4rem); color: var(--red); line-height: 0.9; }
.stat__l { font-family: var(--f-head); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.85rem; color: var(--muted); margin-top: 0.4rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: var(--on-dark-mut); padding-block: clamp(3rem, 2rem + 3vw, 4.5rem) 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.site-footer h4 { font-family: var(--f-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.9rem; color: #fff; margin-bottom: 1.1rem; }
.site-footer a:hover { color: var(--red); }
.footer-links { display: grid; gap: 0.6rem; }
.footer-links a { color: var(--on-dark-mut); }
.footer-brand .brand__mark { color: #fff; }
.footer-brand p { font-size: 0.95rem; margin-top: 1rem; max-width: 34ch; }
.footer-socials { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.footer-socials a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid oklch(1 0 0 / 0.16); border-radius: var(--radius); color: #fff; transition: background 0.2s, border-color 0.2s, transform 0.2s; }
.footer-socials a:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); }
.footer-socials svg { width: 20px; height: 20px; }
.footer-contact { display: grid; gap: 0.8rem; font-size: 0.96rem; }
.footer-contact a { color: #fff; font-weight: 600; }
.footer-bottom { border-top: 1px solid oklch(1 0 0 / 0.1); padding-block: 1.4rem; display: flex; flex-wrap: wrap; gap: 0.8rem 1.5rem; justify-content: space-between; font-size: 0.85rem; }
.footer-bottom .credit a { color: var(--on-dark); font-weight: 600; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: var(--z-dropdown);
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #06301a;
  display: grid; place-items: center; box-shadow: var(--shadow-lg); transition: transform 0.2s var(--ease-out); }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Reveal motion ---------- */
.reveal { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
  .js .reveal.is-in { opacity: 1; transform: none; }
  .js .reveal[data-delay="1"] { transition-delay: 0.08s; }
  .js .reveal[data-delay="2"] { transition-delay: 0.16s; }
  .js .reveal[data-delay="3"] { transition-delay: 0.24s; }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }
.divider-angle { height: 0; border-bottom: 40px solid var(--black); border-right: 100vw solid transparent; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
