:root {
  --red: #e10600;
  --red-dark: #b10500;
  --red-glow: rgba(225, 6, 0, .38);
  --ink: #0c0c0c;
  --muted: #5f5c57;
  --line: #e4dfd6;
  --paper: #f3efe8;
  --white: #faf8f5;
  --char: #0c0c0c;
  --shadow: 0 30px 80px rgba(0,0,0,.12);
  --grad-brand: linear-gradient(135deg, #ff3b30 0%, #e10600 48%, #7a0300 100%);
  --grad-dark: radial-gradient(ellipse at 12% 0%, rgba(225,6,0,.42), transparent 46%),
               radial-gradient(ellipse at 90% 80%, rgba(225,6,0,.18), transparent 42%),
               #0c0c0c;
  --mark-apache: url("../img/logo-apache-color.png");
}
* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  font-family: Lato, system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, .display {
  font-family: "Uni Sans", Outfit, sans-serif;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.08;
  margin: 0 0 .35em;
  text-transform: none;
}
.container { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 32px;
  padding: 12px 28px;
  background: rgba(250,248,245,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.home .site-header {
  position: fixed; left: 0; right: 0; top: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55), transparent);
  border: 0; color: #fff;
}
.home .site-header.is-scrolled {
  background: rgba(250,248,245,.92);
  color: var(--ink);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.home .brand img { filter: brightness(0) invert(1); }
.home .site-header.is-scrolled .brand img { filter: none; }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 68px; width: auto; }
.nav { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 20px; margin-left: auto; font-size: 15px; font-weight: 600; }
.nav > a, .nav-products { flex: 0 0 auto; }
.nav a { opacity: .7; position: relative; transition: opacity .25s ease; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  border-radius: 7px; background: var(--grad-brand);
  transition: width .35s cubic-bezier(.22,1,.36,1);
}
.nav a:hover, .nav a.is-active { opacity: 1; }
.nav a:hover::after, .nav a.is-active::after { width: 100%; }
.nav-products { position: relative; }
.nav-products > a { display: flex; align-items: center; gap: 5px; }
.nav-products > a svg { transition: transform .25s ease; }
.nav-products-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: 460px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 8px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  background: rgba(250,248,245,.98);
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(0,0,0,.16);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}
.nav-products-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -19px;
  height: 19px;
}
.nav-products-menu > span {
  display: block;
  grid-column: 1 / -1;
  padding: 7px 10px 9px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav .nav-products-menu a {
  display: block;
  padding: 9px 10px;
  border-radius: 6px;
  opacity: 1;
  font-size: 13px;
}
.nav .nav-products-menu a::after { display: none; }
.nav .nav-products-menu a:hover { background: #eee9e1; color: var(--red); }
.nav-products-menu small {
  display: block;
  margin-bottom: 1px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.nav-products:hover .nav-products-menu,
.nav-products:focus-within .nav-products-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav-products:hover > a svg,
.nav-products:focus-within > a svg { transform: rotate(180deg); }
.header-tools { display: flex; align-items: center; gap: 10px; }
.search { position: relative; z-index: 2; }
.search-backdrop {
  position: fixed; inset: 0; z-index: 40;
  width: 100vw; height: 100vh;
  background: rgba(6, 4, 4, .58);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .4s ease, visibility .4s ease;
}
.search-backdrop.is-on {
  opacity: 1; visibility: visible; pointer-events: auto;
}
body.search-open { overflow: hidden; }
body.search-open .site-header { z-index: 60; }
body.search-open .wa-float { opacity: 0; pointer-events: none; }
.search-btn {
  width: 40px; height: 40px; border: 1px solid currentColor; background: transparent;
  color: inherit; border-radius: 7px; cursor: pointer; opacity: .7;
  transition: background .3s ease, color .3s ease, border-color .3s ease, opacity .3s ease;
}
.search-btn:hover { opacity: 1; background: var(--red); border-color: var(--red); color: #fff; }
.search.is-open .search-btn { opacity: 1; background: var(--red); border-color: var(--red); color: #fff; }
.search input {
  position: absolute; right: 48px; top: 0; width: 0; opacity: 0;
  height: 40px; border: 0; padding: 0 14px; font: 14px Lato, sans-serif; background: #fff; color: #111;
}
.search.is-open input {
  width: min(360px, 58vw); opacity: 1;
  background: #fff;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}
.search-panel {
  position: absolute; right: 0; top: 50px; width: min(420px, 88vw);
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 12px;
  overflow: hidden;
}
.search-group { padding: 10px 6px 4px; }
.search-group h5 { margin: 0 12px 6px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.search-item { display: flex; gap: 12px; align-items: center; padding: 10px 12px; }
.search-item:hover { background: var(--paper); }
.search-item img { width: 56px; height: 40px; object-fit: cover; background: #eee; }
.search-item small { color: var(--muted); display: block; }
.search-empty { padding: 18px; color: var(--muted); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 22px; border: 0; cursor: pointer;
  font-family: inherit; font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 7px; overflow: hidden; position: relative;
}
.btn-red {
  color: #fff;
  background: var(--grad-brand);
  background-size: 160% 160%;
  box-shadow: 0 10px 28px var(--red-glow);
  animation: grad-shift 10s ease infinite;
}
.btn-red:hover { filter: brightness(1.08); }
.btn-line {
  background: transparent; border: 1px solid currentColor;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.btn-line:hover { background: var(--grad-brand); color: #fff; border-color: transparent; }
.catalog-home .btn-line:hover { color: #fff; }
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  padding: 10px 8px;
  margin-left: auto;
  color: inherit;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 3px;
  background: currentColor;
  border-radius: 2px;
  margin: 5px 0;
}

.hero { position: relative; height: 100vh; min-height: 640px; overflow: hidden; background: #000; color: #fff; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity .4s ease;
  background-color: #080000;
  overflow: hidden;
}
.hero-slide.is-on { opacity: 1; }
.hero-slide::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: scale(1);
  transform-origin: 58% 45%;
  will-change: transform;
}
.hero-slide.is-on::before {
  animation: hero-zoom 22s ease-in-out forwards;
}
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(225,6,0,.18) 0%, transparent 26%),
    linear-gradient(180deg, rgba(0,0,0,.1) 0%, transparent 18%, transparent 62%, rgba(50,0,0,.38) 84%, rgba(8,0,0,.72) 100%);
}
.hero::before {
  content: "";
  position: absolute; inset: -50%; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 34% 32% at 16% 88%, rgba(225,6,0,.36), transparent 62%),
    radial-gradient(ellipse 28% 32% at 86% 14%, rgba(255,60,40,.14), transparent 55%);
  animation: mesh-travel 10s ease-in-out infinite alternate;
}
.hero-copy {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 6vw 12vh; max-width: 860px; color: #fff;
}
.hero-copy h1 {
  font-size: clamp(48px, 8vw, 108px);
  background: linear-gradient(180deg, #fff 28%, #ffc2bd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy p { font-size: 18px; max-width: 420px; margin: 0 0 28px; color: rgba(255,255,255,.82); font-weight: 500; }
.hero-dots { position: absolute; left: 6vw; bottom: 40px; z-index: 3; display: flex; gap: 6px; }
.hero-dots button { width: 48px; height: 2px; border: 0; background: rgba(255,255,255,.35); cursor: pointer; padding: 0; }
.hero-dots button.is-on { background: #fff; }
.hero-arrows { position: absolute; right: 6vw; bottom: 28px; z-index: 3; display: flex; gap: 8px; }
.hero-arrows button {
  width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.35); background: transparent; color: #fff; cursor: pointer;
}

.stats {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(90deg, #0c0c0c 0%, #8a0400 38%, #e10600 52%, #8a0400 66%, #0c0c0c 100%);
  background-size: 260% 100%;
  animation: grad-shift 7s ease-in-out infinite;
}
.stats::before {
  content: ""; position: absolute; inset: -40% -20%;
  background:
    radial-gradient(ellipse 40% 80% at 20% 50%, rgba(255,40,30,.45), transparent 55%),
    radial-gradient(ellipse 40% 80% at 85% 50%, rgba(225,6,0,.28), transparent 55%);
  animation: mesh-travel 9s ease-in-out infinite alternate;
}
.stats::after {
  content: "";
  position: absolute; right: -18%; top: 50%;
  width: min(980px, 90vw); height: 220%;
  background: var(--mark-apache) center / contain no-repeat;
  opacity: .1;
  filter: brightness(.1);
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translateY(-50%);
}
.stats-row { position: relative; z-index: 1; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); padding: 36px 0; gap: 16px; }
.stats-row div { border-left: 2px solid var(--red); padding-left: 16px; }
.stats-row b { display: block; font-family: "Uni Sans", Outfit, sans-serif; font-size: 28px; letter-spacing: -.03em; }
.stats-row span { color: rgba(255,255,255,.55); font-size: 13px; }

.section { padding: 100px 0; }
.section-kicker {
  display: inline-block;
  font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  font-size: 11px; margin: 0 0 12px;
  color: var(--red);
  position: relative;
}
.section-kicker::after {
  content: ""; display: block; height: 2px; width: 0; margin-top: 6px;
  border-radius: 7px; background: var(--grad-brand);
  transition: width .45s cubic-bezier(.22,1,.36,1);
}
.section-kicker:hover::after { width: 100%; }
.lead { font-size: 20px; color: #2a2a2a; max-width: 640px; font-weight: 500; }
.head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 40px; }
.catalog-home {
  position: relative; overflow: hidden; color: var(--ink);
  background-color: #e5e5e3;
  background-image:
    radial-gradient(ellipse 72% 100% at 18% 35%, rgba(255,255,255,.95) 0%, rgba(255,255,255,.38) 38%, transparent 68%),
    radial-gradient(ellipse 58% 80% at 88% 78%, rgba(255,255,255,.72) 0%, transparent 58%),
    linear-gradient(125deg, #f1f1ef 0%, #d7d8d9 54%, #ececea 100%);
  background-size: 240% 240%, 200% 200%;
  background-repeat: no-repeat;
  animation: grad-travel 8s ease-in-out infinite alternate;
}
.catalog-home::before {
  content: ""; position: absolute; inset: -45%;
  background: radial-gradient(ellipse 45% 55% at 70% 80%, rgba(255,255,255,.68), transparent 58%);
  animation: mesh-travel 11s ease-in-out infinite alternate-reverse;
  pointer-events: none;
}
.catalog-home::after {
  content: "";
  position: absolute; right: -16%; top: 50%;
  width: min(1400px, 95vw); height: 85%;
  background: var(--mark-apache) center / contain no-repeat;
  opacity: .04;
  filter: grayscale(1) brightness(.2);
  pointer-events: none;
  transform: translateY(-50%);
}
.catalog-home .container { position: relative; z-index: 1; }
.catalog-home .meta { color: var(--muted); }
.catalog-home .card-body small { color: #9c332d; }
.catalog-home .card {
  background: rgba(255,255,255,.96);
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(25,25,25,.12);
}
.about-home {
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(225,6,0,.1), transparent 42%),
    var(--paper);
}
.about-layout {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(360px, .8fr) minmax(560px, 1.2fr);
  align-items: stretch;
  gap: 0;
}
.about-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px clamp(30px, 5vw, 78px) 70px max(48px, calc((100vw - 1240px) / 2));
}
.about-photo {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}
.about-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, var(--paper) 0%, rgba(243,239,232,.82) 8%, rgba(243,239,232,.18) 28%, transparent 48%);
}
.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(46,20,14,.12);
}
.about-photo img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center;
}

.filters { display: flex; gap: 8px; flex-wrap: wrap; margin: 28px 0 40px; }
.filters a, .filters button {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); background: transparent;
  padding: 8px 16px; font-weight: 600; cursor: pointer; font-size: 13px;
  border-radius: 7px; color: var(--muted);
  transition: color .3s ease, background .3s ease, border-color .3s ease;
}
.filters a::before, .filters button::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 32%, rgba(255,255,255,.4) 50%, transparent 68%);
  transform: translateX(-140%) skewX(-16deg);
  transition: transform .55s cubic-bezier(.22,1,.36,1);
}
.filters a:hover, .filters button:hover {
  color: #fff; border-color: transparent; background: var(--grad-brand);
}
.filters a:hover::before, .filters button:hover::before,
.filters .is-on::before, .filters a.is-on::before {
  transform: translateX(140%) skewX(-16deg);
}
.filters .is-on, .filters a.is-on { background: var(--ink); color: #fff; border-color: var(--ink); }

.grid-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  position: relative;
  background: #fff; display: flex; flex-direction: column;
  overflow: hidden; border-radius: 7px;
}
.grid-products .card {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity .75s cubic-bezier(.22, 1, .36, 1),
    transform .75s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.grid-products .card.is-in {
  opacity: 1;
  transform: translateY(0);
}
.card::after {
  content: "";
  position: absolute; inset: 10px; z-index: 3; pointer-events: none;
  background:
    linear-gradient(#e10600,#e10600) left top / 0 2px no-repeat,
    linear-gradient(#e10600,#e10600) left top / 2px 0 no-repeat,
    linear-gradient(#e10600,#e10600) right top / 0 2px no-repeat,
    linear-gradient(#e10600,#e10600) right top / 2px 0 no-repeat,
    linear-gradient(#e10600,#e10600) left bottom / 0 2px no-repeat,
    linear-gradient(#e10600,#e10600) left bottom / 2px 0 no-repeat,
    linear-gradient(#e10600,#e10600) right bottom / 0 2px no-repeat,
    linear-gradient(#e10600,#e10600) right bottom / 2px 0 no-repeat;
  transition: background-size .45s cubic-bezier(.22,1,.36,1);
}
.card:hover::after {
  background-size: 28px 2px, 2px 28px, 28px 2px, 2px 28px, 28px 2px, 2px 28px, 28px 2px, 2px 28px;
}
.card-media { overflow: hidden; background: #111; position: relative; }
.card-media img {
  width: 100%; height: auto; display: block;
  object-fit: contain;
  transition: filter .5s ease;
}
.card-media::after {
  content: "";
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(115deg, transparent 32%, rgba(255,255,255,.38) 50%, transparent 68%);
  transform: translateX(-140%) skewX(-16deg);
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.card:hover .card-media img {
  filter: saturate(1.12) contrast(1.04);
}
.card:hover .card-media::after { transform: translateX(140%) skewX(-16deg); }
.card:hover .card-body h3 { color: var(--red); }
.badge {
  display: inline-block; color: #fff;
  background: var(--grad-brand);
  font-size: 11px; font-weight: 700; letter-spacing: .12em; padding: 8px 12px;
  margin: 2px 0 10px;
}
.card-body { padding: 18px 12px 16px; text-align: center; }
.card-body small { display: block; letter-spacing: .14em; text-transform: uppercase; font-size: 11px; margin-bottom: 6px; color: var(--muted); transition: color .3s ease; }
.card-body h3 { font-size: 22px; letter-spacing: -.03em; transition: color .3s ease; }
.meta { color: var(--muted); font-size: 13px; transition: color .3s ease; }
.card:hover .card-body small,
.card:hover .meta { color: #c45a54; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.paper { background: var(--paper); }
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.promo {
  position: relative; min-height: 340px; overflow: hidden; color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 32px;
  background: #222 center/cover no-repeat;
  border-radius: 7px;
  background-size: 108% 108%;
  transition: background-position .8s ease;
}
.promo::before {
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(225,6,0,.08) 0%, transparent 35%, rgba(80,0,0,.55) 70%, rgba(0,0,0,.88) 100%);
  transition: background .4s ease;
}
.promo::after {
  content: "";
  position: absolute; inset: 14px; z-index: 2; pointer-events: none;
  background:
    linear-gradient(#fff,#fff) left top / 0 2px no-repeat,
    linear-gradient(#fff,#fff) left top / 2px 0 no-repeat,
    linear-gradient(#fff,#fff) right top / 0 2px no-repeat,
    linear-gradient(#fff,#fff) right top / 2px 0 no-repeat,
    linear-gradient(#fff,#fff) left bottom / 0 2px no-repeat,
    linear-gradient(#fff,#fff) left bottom / 2px 0 no-repeat,
    linear-gradient(#fff,#fff) right bottom / 0 2px no-repeat,
    linear-gradient(#fff,#fff) right bottom / 2px 0 no-repeat;
  transition: background-size .45s cubic-bezier(.22,1,.36,1);
}
.promo:hover { background-position: 42% 58%; }
.promo:hover::after {
  background-size: 32px 2px, 2px 32px, 32px 2px, 2px 32px, 32px 2px, 2px 32px, 32px 2px, 2px 32px;
}
.promo:hover::before {
  background: linear-gradient(180deg, rgba(225,6,0,.18) 0%, transparent 35%, rgba(90,0,0,.62) 70%, rgba(0,0,0,.9) 100%);
}
.promo > * { position: relative; z-index: 1; }
.promo small { letter-spacing: .16em; text-transform: uppercase; font-size: 11px; opacity: .7; }
.promo h3 { font-size: 36px; }

.gallery { display: grid; grid-template-columns: 1.5fr .5fr; gap: 10px; }
.gallery-main { overflow: hidden; background: #eee; min-height: 460px; border-radius: 7px; }
.gallery-main img, .thumbs img { width: 100%; height: 100%; object-fit: cover; }
.thumbs { display: grid; gap: 10px; }
.thumbs button { border: 0; padding: 0; overflow: hidden; cursor: pointer; height: 148px; background: #eee; border-radius: 7px; }
.specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.spec-sheet { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 56px; margin-top: 28px; }
.spec-block h3 {
  color: var(--red); font-size: 18px; margin: 0 0 4px;
  padding-bottom: 8px; border-bottom: 2px solid var(--red);
}
.spec-block dl { margin: 0; }
.spec { display: grid; grid-template-columns: .95fr 1.05fr; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.spec dt { color: var(--muted); }
.spec dd { margin: 0; font-weight: 600; }
.spec-note { margin-top: 36px; font-size: 12px; color: var(--muted); max-width: 820px; }
.video-wrap { position: relative; padding-top: 56.25%; overflow: hidden; background: #000; }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.dealers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.dealer-card {
  position: relative; overflow: hidden;
  background: #fff; padding: 24px 16px 16px;
  border-radius: 7px;
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, #ff3b30, #e10600, #7a0300) 1;
  transition: transform .35s ease, box-shadow .35s ease;
}
.dealer-card:hover { box-shadow: 0 12px 32px rgba(225,6,0,.12); }
.dealer-card h3 { font-size: 22px; }
.form { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; display: grid; gap: 6px; }
input, select, textarea {
  width: 100%; border: 0; border-bottom: 1px solid #ccc; border-radius: 0; padding: 12px 0;
  font: 16px Lato, sans-serif; background: transparent;
}
textarea { min-height: 120px; resize: vertical; }
.alert {
  margin-bottom: 18px; padding: 14px 16px;
  border: 1px solid #b9dfc7; border-left: 4px solid #23864a; border-radius: 7px;
  background: #e9f7ee; color: #185e35; font-weight: 600;
}
.alert-err { border-color: #efc1c1; border-left-color: var(--red); background: #fde8e8; color: #8d1717; }

/* Warranty claim */
.warranty-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(225,6,0,.07), transparent 24%),
    var(--paper);
}
.warranty-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, .62fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}
.warranty-main { min-width: 0; }
.warranty-form {
  gap: 0;
  padding: clamp(24px, 4vw, 48px);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(41, 28, 20, .1);
}
.warranty-form-heading { margin-bottom: 38px; }
.warranty-form-heading > span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.warranty-form-heading h2 { margin-bottom: 12px; font-size: clamp(32px, 4vw, 48px); }
.warranty-form-heading p { margin: 0; color: var(--muted); font-size: 14px; }
.warranty-fields {
  display: grid;
  gap: 18px;
  min-width: 0;
  margin: 0;
  padding: 32px 0;
  border: 0;
  border-top: 1px solid var(--line);
}
.warranty-fields legend {
  float: left;
  width: 100%;
  margin: 0 0 22px;
  padding: 0;
  color: var(--ink);
  font: 800 20px/1.1 "Uni Sans", Outfit, sans-serif;
  letter-spacing: -.03em;
}
.warranty-fields legend + * { clear: both; }
.warranty-fields legend span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-right: 10px;
  place-items: center;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  font: 700 11px/1 Lato, sans-serif;
  letter-spacing: .04em;
  vertical-align: middle;
}
.warranty-form input,
.warranty-form select,
.warranty-form textarea {
  padding: 13px 14px;
  border: 1px solid #d9d3ca;
  border-radius: 7px;
  background: #fbfaf8;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.warranty-form input:focus,
.warranty-form select:focus,
.warranty-form textarea:focus {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(225,6,0,.1);
}
.warranty-form textarea { min-height: 132px; }
.warranty-form input[type="file"] {
  padding: 8px;
  color: var(--muted);
  cursor: pointer;
}
.warranty-form input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 10px 14px;
  border: 0;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font: 700 11px Lato, sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
}
.file-field small { color: var(--muted); font-size: 12px; font-weight: 500; letter-spacing: 0; text-transform: none; }
.warranty-submit {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.warranty-submit p { max-width: 280px; margin: 0; color: var(--muted); font-size: 12px; }
.warranty-guide {
  position: sticky;
  top: 116px;
  padding: clamp(26px, 3vw, 38px);
  border-radius: 14px;
  background: #111;
  color: #fff;
  box-shadow: 0 22px 60px rgba(0,0,0,.16);
}
.warranty-guide h2 { max-width: 340px; margin: 4px 0 30px; font-size: clamp(30px, 3vw, 42px); }
.warranty-guide ol { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.warranty-guide li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.warranty-guide li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: #ff6f67;
  font-weight: 800;
}
.warranty-guide strong { display: block; font-size: 14px; }
.warranty-guide li small { display: block; margin-top: 5px; color: rgba(255,255,255,.58); line-height: 1.55; }
.warranty-contact {
  display: grid;
  gap: 4px;
  margin-top: 24px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(225,6,0,.18);
}
.warranty-contact small { color: rgba(255,255,255,.58); }
.warranty-contact a { color: #fff; font-weight: 700; }

.site-footer {
  position: relative; overflow: hidden;
  color: #cfc9c0; padding: 72px 28px 0;
  background-color: #0a0000;
  background-image:
    radial-gradient(ellipse 70% 90% at 16% 30%, #e10600 0%, rgba(225,6,0,.48) 30%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 88% 85%, rgba(255,50,30,.28) 0%, transparent 52%);
  background-size: 240% 240%, 200% 200%;
  background-repeat: no-repeat;
  animation: grad-travel 9s ease-in-out infinite alternate;
}
.site-footer::before {
  content: ""; position: absolute; inset: -45%;
  background: radial-gradient(ellipse 40% 50% at 80% 20%, rgba(225,6,0,.38), transparent 55%);
  animation: mesh-travel 12s ease-in-out infinite alternate-reverse;
  pointer-events: none;
}
.site-footer::after {
  content: "";
  position: absolute; right: -14%; top: 42%;
  width: min(1300px, 92vw); height: 70%;
  background: var(--mark-apache) center / contain no-repeat;
  opacity: .1;
  filter: brightness(.1);
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translateY(-50%);
}
.footer-grid { position: relative; z-index: 1; width: min(1240px, 100%); margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-logo { height: 72px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-links a, .site-footer a {
  transition: color .25s ease;
}
.footer-links a:hover, .site-footer a:hover { color: #fff; }
.site-footer h4 { color: #fff; font-family: "Uni Sans", Outfit, sans-serif; margin: 0 0 12px; letter-spacing: -.02em; }
.footer-bottom {
  position: relative; z-index: 1;
  border-top: 1px solid #262626;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1240px, 100%); margin: 0 auto; padding: 18px 0 24px; font-size: 13px;
}
.footer-bottom > span { justify-self: start; }
.dev-credit { display: flex; align-items: center; gap: 10px; color: #fff; justify-self: center; }
.dev-credit img { height: 26px; width: auto; }

.page-hero {
  position: relative; overflow: hidden; padding: 140px 0 48px; color: #fff;
  background-color: #0a0000;
  background-image:
    radial-gradient(ellipse 75% 110% at 16% 38%, #e10600 0%, rgba(225,6,0,.55) 26%, transparent 58%),
    radial-gradient(ellipse 55% 80% at 88% 78%, rgba(255,48,38,.32) 0%, transparent 52%);
  background-size: 240% 240%, 200% 200%;
  background-repeat: no-repeat;
  animation: grad-travel 8s ease-in-out infinite alternate;
}
.page-hero::before {
  content: ""; position: absolute; inset: -50%;
  background: radial-gradient(ellipse 42% 52% at 40% 50%, rgba(255,50,40,.32), transparent 58%);
  animation: mesh-travel 10s ease-in-out infinite alternate-reverse;
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute; right: -12%; top: 50%;
  width: min(1500px, 98vw); height: 120%;
  background: var(--mark-apache) center / contain no-repeat;
  opacity: .1;
  filter: brightness(.1);
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translateY(-50%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(44px, 7vw, 84px);
  background: linear-gradient(180deg, #fff 36%, #ffc2bd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-hero h1::after,
.hero-copy h1::after,
h2::after {
  content: ""; display: block; width: 72px; height: 3px; margin-top: 16px;
  border-radius: 7px; background: var(--grad-brand);
  transform: scaleX(.4); transform-origin: left center;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.page-hero h1:hover::after,
.hero-copy h1:hover::after,
h2:hover::after { transform: scaleX(1.85); }
.page-hero p { max-width: 560px; color: rgba(255,255,255,.7); }
.news-home { background: var(--paper); }
.news-home .lead { margin: 0 0 22px; }
.news-home .news-grid .card { opacity: 1; transform: none; }
.news-more { display: flex; justify-content: center; margin: 36px 0 0; }
.news-card .card-media { aspect-ratio: 16 / 10; background: #1a1210; }
.news-card .card-media img {
  height: 100%;
  object-fit: cover;
}
.news-card .card-body { text-align: left; padding: 20px 18px 22px; }
.news-card .card-body h3 { font-size: 20px; }
.news-hero {
  background-image:
    linear-gradient(90deg, rgba(20,0,0,.92) 0%, rgba(40,0,0,.72) 50%, rgba(8,0,0,.66) 100%),
    var(--news-hero-image, none);
  background-size: cover, cover;
  background-position: center, center;
  animation: none;
}
.news-hero::before {
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.4));
  animation: none;
}
.news-article-section { padding-top: 56px; }
.news-article { max-width: 760px; }
.news-cover { margin: 0 0 32px; }
.news-cover img { width: 100%; height: auto; display: block; border-radius: 7px; }
.news-body { font-size: 18px; line-height: 1.75; color: #2a2a2a; }
.news-body img { width: 100%; height: auto; border-radius: 7px; margin: 18px 0; }
.news-body figure { margin: 18px 0; }
.news-body p { margin: 0 0 1em; }
.news-body h2, .news-body h3 { margin: 1.2em 0 .4em; }
.news-back { margin: 36px 0 0; }
.news-back a { color: var(--red); font-weight: 600; }
.news-page .page-hero { padding: 92px 0 38px; }
.products-page .page-hero { padding: 92px 0 38px; }
.products-page .page-hero h1 { margin-bottom: .25em; }
.products-page .section { padding-top: 58px; }
.products-page .filters { margin-top: 10px; }
.timeline { display: grid; gap: 28px; }
.tl { display: grid; grid-template-columns: 100px 1fr; gap: 20px; }
.tl b { color: var(--red); font-size: 32px; font-family: "Uni Sans", Outfit, sans-serif; }

/* Product detail */
.product-detail { background: #f5f2ed; }
.product-hero {
  min-height: 280px;
  padding: 58px 0 40px;
  background-color: #160000;
  background-image:
    linear-gradient(90deg, rgba(48, 0, 0, .92) 0%, rgba(61, 0, 0, .78) 42%, rgba(8, 0, 0, .68) 100%),
    var(--product-hero-image);
  background-position: center, center 42%;
  background-size: cover, cover;
  animation: none;
}
.product-hero::before {
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.45));
  animation: none;
}
.product-hero::after { opacity: .055; }
.product-hero h1 {
  max-width: 920px;
  font-size: clamp(40px, 5vw, 68px);
}
.product-hero p { max-width: 760px; }
.product-intro { padding: 72px 0 88px; }
.product-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .7fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: start;
}
.product-gallery { min-width: 0; }
.product-gallery-main {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(29, 23, 18, .1);
}
.product-gallery-main img {
  width: 100%;
  height: auto;
  display: block;
}
.product-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(72px, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.product-thumbs button {
  position: relative;
  aspect-ratio: 4 / 3;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 7px;
  background: #fff;
  cursor: pointer;
  transition: border-color .25s ease, transform .25s ease;
}
.product-thumbs button:hover { transform: translateY(-2px); }
.product-thumbs button.is-active { border-color: var(--red); }
.product-thumbs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.product-summary {
  position: sticky;
  top: 110px;
  padding-top: 18px;
}
.product-summary h2 {
  margin: 8px 0 18px;
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: .98;
}
.product-meta {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}
.product-description {
  margin: 24px 0;
  color: #4b4640;
  font-size: 17px;
  line-height: 1.7;
}
.product-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.product-highlights {
  padding: 0;
  color: #fff;
  background: #111;
}
.product-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.product-highlight {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px clamp(22px, 3vw, 46px);
  border-right: 1px solid #303030;
}
.product-highlight:last-child { border-right: 0; }
.product-highlight strong {
  color: #fff;
  font: 700 clamp(30px, 3.4vw, 54px)/1 "Uni Sans", Outfit, sans-serif;
  letter-spacing: -.05em;
}
.product-highlight span {
  margin-top: 10px;
  color: #aaa;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.product-stories { background: #fff; }
.product-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}
.product-story.is-reverse .product-story-media { order: 2; }
.product-story.is-reverse .product-story-copy { order: 1; }
.product-story-media {
  min-width: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f1eee9;
}
.product-story-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.product-story-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 8vw, 130px);
  overflow: hidden;
  background: #fff;
}
.product-story-copy::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 3px;
  top: 0;
  left: 0;
  background: var(--grad-brand);
}
.product-story-copy h2 {
  max-width: 580px;
  margin: 10px 0 22px;
  font-size: clamp(36px, 4vw, 66px);
  line-height: .98;
}
.product-story-copy > p:last-child {
  max-width: 600px;
  color: #57514b;
  font-size: 18px;
  line-height: 1.75;
}
.story-number {
  position: absolute;
  right: 6%;
  top: 5%;
  color: rgba(225, 6, 0, .07);
  font: 800 clamp(90px, 13vw, 210px)/1 "Uni Sans", Outfit, sans-serif;
  letter-spacing: -.08em;
}
.product-spec-section { background: #eeeae4; }
.product-spec-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 40px;
}
.product-spec-heading h2 { max-width: 680px; font-size: clamp(42px, 5vw, 76px); }
.product-spec-heading p { max-width: 360px; color: var(--muted); }
.product-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.product-spec-card {
  padding: 30px;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(30, 24, 18, .04);
}
.product-spec-card h3 {
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
  color: var(--red);
  font-size: 20px;
}
.product-spec-card dl { margin: 0; }
.product-video-section { background: #111; color: #fff; }
.product-video-section h2 { margin-bottom: 30px; }
.product-video-section .video-wrap { border-radius: 7px; }

@media (max-width: 980px) {
  .grid-products, .dealers, .duo, .split, .gallery, .form-row, .footer-grid, .specs, .stats-row, .spec-sheet { grid-template-columns: 1fr; }
  .site-header { flex-wrap: wrap; }
  .nav, .header-tools { display: none; width: 100%; }
  .nav.is-open, .header-tools.is-open { display: flex; flex-direction: column; align-items: flex-start; }
  .nav.is-open { gap: 18px; }
  .nav-products { width: 100%; }
  .nav-products-menu {
    position: static;
    width: 100%;
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }
  .nav-products-menu > span { grid-column: 1 / -1; }
  .nav-products:hover .nav-products-menu,
  .nav-products:focus-within .nav-products-menu { transform: none; }
  .nav-toggle { display: block; }
  .search input, .search.is-open input { position: static; width: 100%; opacity: 1; margin-top: 8px; }
  .hero { height: 88vh; }
  .gallery-main { min-height: 260px; }
  .head-row { flex-direction: column; align-items: flex-start; }
  .about-layout { grid-template-columns: 1fr; }
  .about-copy { padding: 48px 24px; }
  .about-photo { min-height: 420px; }
  .about-photo::before { background: linear-gradient(180deg, var(--paper) 0%, rgba(243,239,232,.28) 18%, transparent 42%); }
  .about-photo img { height: 420px; }
  .brand img { height: 52px; }
  .product-stage,
  .product-story,
  .product-spec-grid { grid-template-columns: 1fr; }
  .product-summary { position: static; }
  .product-highlight-grid { grid-template-columns: repeat(2, 1fr); }
  .product-highlight:nth-child(2) { border-right: 0; }
  .product-highlight:nth-child(-n+2) { border-bottom: 1px solid #303030; }
  .product-story { min-height: 0; }
  .product-story.is-reverse .product-story-media,
  .product-story.is-reverse .product-story-copy { order: initial; }
  .product-story-media { aspect-ratio: 4 / 3; }
  .product-story-copy { min-height: 460px; padding: 56px 28px; }
  .product-spec-heading { display: block; }
  .product-spec-heading p { margin-top: 16px; }
  .warranty-layout { grid-template-columns: 1fr; }
  .warranty-guide { position: static; }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding: 18px 76px 28px;
  }
  .footer-bottom > span { justify-self: center; }
}

@media (max-width: 620px) {
  .product-hero { min-height: 230px; padding: 42px 0 32px; }
  .product-intro { padding: 42px 0 58px; }
  .product-thumbs { grid-template-columns: repeat(4, 1fr); }
  .product-highlight { min-height: 130px; padding: 24px 18px; }
  .product-highlight strong { font-size: 28px; }
  .product-story-copy { min-height: 400px; }
  .product-spec-card { padding: 22px 18px; }
  .about-photo { min-height: 320px; }
  .about-photo img { height: 320px; }
  .warranty-form { padding: 24px 18px; }
  .warranty-fields { padding: 26px 0; }
  .warranty-submit { align-items: stretch; flex-direction: column; }
  .warranty-submit .btn { width: 100%; }
}

body::after {
  content: "";
  pointer-events: none;
  position: fixed; inset: 0; z-index: 80;
  opacity: .04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.filters .is-on, .filters a.is-on {
  background: var(--grad-brand);
  border-color: transparent;
  color: #fff;
}

@keyframes mesh-travel {
  from { transform: translate(-18%, -12%) scale(1.05); }
  to { transform: translate(20%, 14%) scale(1.28); }
}
@keyframes mark-drift {
  from { transform: translate(0, 0); }
  to { transform: translate(-3%, 2%); }
}
@keyframes drift {
  from { background-position: 50% 40%; }
  to { background-position: 50% 60%; }
}
@keyframes hero-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
@keyframes grad-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes grad-travel {
  0% { background-position: 0% 35%, 100% 85%; }
  100% { background-position: 88% 70%, 8% 15%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide.is-on,
  .hero-slide.is-on::before,
  .hero::before,
  .stats, .stats::before, .stats::after,
  .page-hero, .page-hero::before, .page-hero::after,
  .catalog-home, .catalog-home::before, .catalog-home::after,
  .site-footer, .site-footer::before, .site-footer::after,
  .btn-red, .section-kicker {
    animation: none;
  }
  .card:hover .card-media img,
  .card:hover .card-media::after,
  .card:hover::after,
  .promo:hover,
  .promo:hover::after {
    transform: none;
    transition: none;
    background-size: 0 0;
  }
  .grid-products .card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .42);
}
.wa-float:hover { background: #1ebe57; }
.wa-float svg { width: 30px; height: 30px; display: block; }
