/* ATV Warehouse — header + hero
   Brand colours and spacing live in :root. */

:root {
  --red: #d81f26;
  --red-dark: #a9161c;
  --ink: #111417;

  --wrap: 1280px;
  --gutter: clamp(1.1rem, 3.5vw, 2.5rem);

  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-head: "Barlow Condensed", "Arial Narrow", Impact, var(--font-body);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; cursor: pointer; }

:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 4px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px; left: 1rem;
  z-index: 200;
  padding: .7rem 1.1rem;
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  border-radius: 0 0 10px 10px;
}
.skip-link:focus { top: 0; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.i { width: 1em; height: 1em; fill: currentColor; flex: none; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .18s var(--ease), background-color .18s, border-color .18s, color .18s;
}
.btn:hover { transform: translateY(-2px); }
.btn--lg { padding: .95rem 2rem; font-size: 1.12rem; }

.btn--red { background: var(--red); color: #fff; box-shadow: 0 10px 24px rgba(216, 31, 38, .35); }
.btn--red:hover { background: var(--red-dark); }

.btn--glass {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .6);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn--glass:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn--outline { border-color: rgba(0, 0, 0, .2); color: var(--ink); }
.btn--outline:hover { border-color: var(--ink); }

/* ---------- Hero shell ---------- */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: clamp(700px, 94vh, 1000px);
  padding: clamp(240px, 28vh, 320px) 0 0;
  overflow: visible;
  isolation: isolate;
  text-align: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom,
      rgba(8, 10, 12, .82) 0%,
      rgba(8, 10, 12, .42) 26%,
      rgba(8, 10, 12, .34) 48%,
      rgba(8, 10, 12, .66) 78%,
      rgba(8, 10, 12, .9) 100%);
}

/* ---------- Masthead ---------- */

.masthead {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 30;
  padding-block: 1.15rem .5rem;
}

.masthead__bar {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.logo { flex: none; display: block; }
.logo img {
  width: clamp(196px, 21vw, 278px);
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .55));
}

.masthead__meta {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: clamp(1.75rem, 3.5vw, 3.25rem);
  row-gap: .85rem;
  align-items: start;
  margin-left: auto;
  color: #fff;
}

.masthead__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .35rem;
}

.dealer-address {
  margin: 0;
  font-size: .8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .88);
  text-align: left;
}

.dealer-phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: #fff;
}
.dealer-phone .i { font-size: 1.25rem; color: var(--red); }
.dealer-phone:hover { color: var(--red); }
.dealer-phone:hover .i { color: #fff; }

.masthead__tools {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .55rem;
}

.inv-search {
  display: flex;
  align-items: center;
  gap: .5rem;
  width: clamp(210px, 20vw, 258px);
  padding: .5rem .95rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  transition: background-color .2s, border-color .2s;
}
.inv-search:focus-within { background: rgba(255, 255, 255, .12); border-color: #fff; }
.inv-search__icon { width: 17px; height: 17px; fill: rgba(255, 255, 255, .85); flex: none; }
.inv-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: none;
  color: #fff;
  font-size: .88rem;
}
.inv-search input::placeholder { color: rgba(255, 255, 255, .72); }
.inv-search input:focus { outline: none; }
.inv-search input::-webkit-search-cancel-button { filter: invert(1) opacity(.6); }

.connect { display: flex; align-items: center; gap: .5rem; }
.connect__label {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: rgba(255, 255, 255, .85);
}
.connect__icon {
  display: grid;
  place-items: center;
  width: 27px; height: 27px;
  background: var(--red);
  border-radius: 6px;
  transition: background-color .2s, transform .2s;
}
.connect__icon svg { width: 17px; height: 17px; fill: #fff; }
.connect__icon:hover { background: #fff; transform: translateY(-2px); }
.connect__icon:hover svg { fill: var(--red); }

.quick-pills {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: .5rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1.15rem;
  background: var(--red);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #fff;
  transition: background-color .2s, transform .2s, color .2s;
}
.pill .i { font-size: .95rem; fill: currentColor; }
.pill:hover { background: #fff; color: var(--red); transform: translateY(-2px); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  margin-left: auto;
  padding: 0 11px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 10px;
}
.hamburger span { display: block; height: 2px; background: #fff; border-radius: 2px; }

/* ---------- Primary navigation ---------- */

.nav { margin-top: 1.35rem; overflow: visible; }
.nav__head, .nav__mobile-extra { display: none; }

.nav__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__list > li { position: relative; }

.nav__list > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  padding: .45rem 0;
  font-family: var(--font-head);
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.nav__list > li > a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav__list > li > a:hover::after,
.nav__list > li:hover > a::after,
.nav__list > li > a:focus-visible::after,
.nav__list > li.has-sub:focus-within > a::after { transform: scaleX(1); }

.nav__caret {
  width: .85em;
  height: .85em;
  fill: currentColor;
  flex: none;
  transition: transform .2s var(--ease);
}
.nav__list > li:hover > a .nav__caret,
.nav__list > li:focus-within > a .nav__caret {
  transform: rotate(180deg);
}

.nav__sub {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 50;
  min-width: 240px;
  max-height: min(70vh, 420px);
  margin: 0;
  padding: 0;
  overflow-y: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(11, 14, 20, .18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(.2rem);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.nav__list > li.has-sub:nth-last-child(-n+4) .nav__sub {
  left: auto;
  right: 0;
}
.nav__list > li:hover > .nav__sub,
.nav__list > li:focus-within > .nav__sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.nav__sub a {
  display: block;
  padding: .78rem 1.15rem;
  border-bottom: 1px solid #eceff3;
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: #1f2430;
  white-space: nowrap;
}
.nav__sub li:last-child a { border-bottom: 0; }
.nav__sub a:hover,
.nav__sub a:focus-visible {
  background: #f5f7fa;
  color: var(--red);
}

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 25;
  background: rgba(6, 8, 10, .6);
  backdrop-filter: blur(2px);
}

/* ---------- Hero content ---------- */

.hero__content {
  position: relative;
  z-index: 5;
  margin-block: auto;
  padding-top: 100px;
  padding-bottom: 100px;
}

.hero__title {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(2.9rem, 9.2vw, 6.8rem);
  font-weight: 700;
  line-height: .95;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 6px 30px rgba(0, 0, 0, .55);
}

.hero__tagline {
  margin: 1rem 0 0;
  font-family: var(--font-head);
  font-size: clamp(.86rem, 2.2vw, 1.5rem);
  font-weight: 500;
  letter-spacing: clamp(.14em, .55vw, .34em);
  text-transform: uppercase;
  color: rgba(255, 255, 255, .95);
  text-shadow: 0 3px 18px rgba(0, 0, 0, .6);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .85rem;
  margin-top: clamp(1.75rem, 4vh, 2.75rem);
}
.hero__actions .btn {
  padding-left: 2.75rem;
  padding-right: 2.75rem;
}

/* ---------- Choose your type of adventure ---------- */

.adventure {
  position: relative;
  z-index: 5;
  width: 100%;
  margin-top: 0;
  padding-bottom: 0;
}

.adventure__title {
  margin: 0 0 clamp(.9rem, 2vh, 1.35rem);
  font-size: clamp(1.35rem, 3.4vw, 2.15rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .6);
}

.adventure__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.6rem, 1.4vw, 1.1rem);
}

.adv-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .3rem;
  width: 100%;
  min-height: 104px;
  padding: 1.15rem 1.35rem;
  background: rgba(226, 230, 236, .22);
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 10px 10px 0 0;
  font: inherit;
  color: inherit;
  backdrop-filter: blur(9px);
  text-align: center;
  cursor: pointer;
  appearance: none;
  transition: background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}

.adv-card h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.9vw, 1.4rem);
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: #fff;
  transition: color .25s;
}

.adv-card p {
  margin: 0;
  font-size: clamp(.66rem, 1.05vw, .78rem);
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1.45;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .86);
  transition: color .25s;
}

.adv-card:hover,
.adv-card:focus-visible,
.adv-card.is-active {
  background: #fff;
  border-color: #fff;
}
.adv-card:hover h3, .adv-card:focus-visible h3, .adv-card.is-active h3 { color: var(--ink); }
.adv-card:hover p, .adv-card:focus-visible p, .adv-card.is-active p { color: #6b7280; }

/* ---------- Category showcase (shown when a tab is clicked) ---------- */

.showcase {
  background: #fff;
  padding: clamp(1.75rem, 4vw, 2.75rem) 0 clamp(3rem, 7vw, 5rem);
  scroll-margin-top: 96px;
}
.showcase[hidden] { display: none; }

.cat-panel[hidden] { display: none; }

.cat-panel__head {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.75rem;
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  padding: .7rem 1.35rem;
  background: #fff;
  border: 2px solid var(--red);
  border-radius: 999px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color .2s, color .2s, transform .2s;
}
.ghost-btn svg { width: 1.15em; height: 1.15em; fill: var(--red); flex: none; }
.ghost-btn:hover {
  background: var(--red);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}
.ghost-btn:hover svg { fill: #fff; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}
.cat-grid--two {
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
}
.cat-grid--kids {
  gap: clamp(1.25rem, 3vw, 2.25rem) clamp(1rem, 2.5vw, 2rem);
}
.cat-grid--kids .ghost-btn {
  min-width: min(100%, 180px);
  padding: .55rem 1rem;
  font-size: .75rem;
}

/* ---------- Promo slider ---------- */

.promo {
  background: #fff;
  padding: 0 0 clamp(2.5rem, 5vw, 4rem);
}

.promo__stage {
  position: relative;
  overflow: hidden;
  background: #111417;
  aspect-ratio: 16 / 7;
  min-height: 280px;
}

.promo__track { height: 100%; }

.promo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
}
.promo-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.promo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.promo-slide--studio { background: #fff; }
.promo-slide--studio img {
  object-fit: contain;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.promo-slide__caption {
  position: absolute;
  right: clamp(1rem, 3vw, 2.25rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 2;
  margin: 0;
  max-width: 16ch;
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  text-align: right;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .55);
}
.promo-slide--studio .promo-slide__caption {
  color: var(--ink);
  text-shadow: none;
}

.promo__controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0 0;
}

.promo__arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: none;
  border: 0;
  color: var(--red);
}
.promo__arrow svg { width: 32px; height: 32px; fill: currentColor; }
.promo__arrow:hover { color: var(--red-dark); }

.promo__dashes {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.promo__dash {
  width: 32px;
  height: 5px;
  padding: 0;
  background: #d0d4da;
  border: 0;
  border-radius: 1px;
  cursor: pointer;
}
.promo__dash.is-active { background: var(--red); }
.promo__dash:hover:not(.is-active) { background: #9aa3b2; }

/* ---------- Brand logos ---------- */

.brands {
  background: #fff;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.brands__list {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.brand-logo {
  display: grid;
  place-items: center;
  min-width: 140px;
  height: 72px;
  opacity: .95;
  transition: opacity .2s, transform .2s;
}
.brand-logo img {
  width: auto;
  max-width: min(200px, 42vw);
  height: 64px;
  object-fit: contain;
  object-position: center;
}
.brand-logo:hover { opacity: 1; transform: translateY(-2px); }

/* ---------- Featured vehicles ---------- */

.featured {
  background: #fff;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.featured__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.featured__title {
  margin: 0;
  font-size: clamp(1.7rem, 3.4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--ink);
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
  align-items: stretch;
}

.feat-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid #e6e8ec;
  background: #fff;
}

.feat-card__media {
  position: relative;
  display: block;
  flex: none;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #fff;
}
.feat-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 15px;
}

.feat-photos {
  position: absolute;
  top: .7rem;
  right: .7rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .22rem .5rem;
  background: #4a4f57;
  border-radius: 4px;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
}
.feat-photos svg { width: 13px; height: 13px; fill: currentColor; }

.feat-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem 1.05rem 1.15rem;
}

.feat-card__meta {
  margin: 0 0 .25rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8a9099;
}

.feat-card__name {
  margin: 0 0 .85rem;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--ink);
}

.feat-card__fees {
  margin: 0 -1.05rem .85rem;
  padding: .55rem 1.05rem;
  background: var(--ink);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: center;
}

.feat-card__stock {
  margin: 0 0 .35rem;
  font-size: .92rem;
  color: var(--ink);
}

.feat-card__price {
  margin: 0 0 1rem;
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--ink);
}

.feat-card__cta {
  display: block;
  margin-top: auto;
  padding: .85rem 1rem;
  background: var(--red);
  border-radius: 6px;
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: center;
}
.feat-card__cta:hover { background: var(--red-dark); text-decoration: none; }

@media (max-width: 900px) {
  .feat-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
}

/* ---------- About ---------- */

.about {
  position: relative;
  isolation: isolate;
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  overflow: hidden;
  color: #fff;
}

.about__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.05);
}

.about::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(8, 10, 12, .72);
}

.about__inner {
  display: grid;
  grid-template-columns: 1.65fr .95fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}

.about__title {
  margin: 0 0 .45rem;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #fff;
}

.about__lede {
  margin: 0 0 1.4rem;
  font-size: clamp(.92rem, 1.6vw, 1.12rem);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
}

.about__copy p {
  margin: 0 0 1em;
  font-size: .98rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .92);
}

.about__copy a { color: var(--red); font-weight: 600; }
.about__copy a:hover { color: #fff; }

.about__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .85rem 1.1rem;
  margin-top: 1.6rem;
}

.ghost-btn--on-dark {
  background: transparent;
  color: #fff;
  border-color: var(--red);
}
.ghost-btn--on-dark svg { fill: var(--red); }
.ghost-btn--on-dark:hover {
  background: var(--red);
  color: #fff;
}
.ghost-btn--on-dark:hover svg { fill: #fff; }

.about__rule {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, .45);
}

.about__social {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .9rem;
}
.about__social a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: var(--red);
  border-radius: 4px;
  color: #fff;
}
.about__social a svg { width: 16px; height: 16px; fill: #fff; }
.about__social a:hover { background: #fff; }
.about__social a:hover svg { fill: var(--red); }

.about__photo {
  margin: 0;
}
.about__photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__photo { order: -1; }
  .about__photo img { min-height: 200px; max-height: 280px; }
  .about__rule { display: none; }
}

.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  color: inherit;
  height: 100%;
}
.cat-item:hover { text-decoration: none; }
.cat-item img {
  display: block;
  width: 100%;
  max-width: 250px;
  height: 220px;
  object-fit: contain;
  object-position: center;
  background: #fff;
}
.cat-item .ghost-btn { min-width: min(100%, 260px); }

@media (max-width: 720px) {
  .cat-grid { grid-template-columns: 1fr; }
  .cat-grid--kids { grid-template-columns: 1fr 1fr; }
  .cat-panel__head { justify-content: center; }
  .cat-item img { height: 200px; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1180px) {
  .nav__list { gap: .5rem; }
  .nav__list > li > a { font-size: .98rem; letter-spacing: .06em; }
}

@media (max-width: 1024px) {
  .masthead__tools,
  .quick-pills { display: none; }
  .masthead__meta { grid-template-columns: auto; }
  .dealer-phone { justify-content: flex-end; }
}

@media (max-width: 860px) {
  .hero { padding-top: clamp(150px, 22vh, 200px); padding-bottom: 0; }
  .hamburger { display: flex; margin-left: 0; }

  .masthead__bar { align-items: center; gap: .9rem; }
  .masthead__meta { grid-template-columns: auto; margin-left: auto; }
  .dealer-address { display: none; }
  .dealer-phone { grid-row: auto; font-size: 1.3rem; }

  .nav {
    position: fixed;
    top: 0; right: 0;
    z-index: 40;
    display: flex;
    flex-direction: column;
    width: min(330px, 86vw);
    height: 100dvh;
    margin: 0;
    padding: 1.1rem 1.25rem 2rem;
    background: #fff;
    box-shadow: -12px 0 40px rgba(0, 0, 0, .4);
    overflow-y: auto;
    text-align: left;
    transform: translateX(100%);
    transition: transform .3s var(--ease);
  }
  .nav.is-open { transform: none; }

  .nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: .9rem;
    margin-bottom: .6rem;
    border-bottom: 1px solid #e4e7ec;
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink);
  }
  .nav__close {
    display: grid;
    place-items: center;
    width: 40px; height: 40px;
    background: #f2f4f7;
    border: 0;
    border-radius: 50%;
  }
  .nav__close svg { width: 22px; height: 22px; fill: var(--ink); }

  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list > li { width: 100%; }
  .nav__list > li > a {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: .95rem .25rem;
    border-bottom: 1px solid #eef1f4;
    color: var(--ink);
    font-size: 1.18rem;
    letter-spacing: .06em;
  }
  .nav__list > li > a::after { display: none; }
  .nav__list > li > a:hover { color: var(--red); }

  .nav__sub {
    position: static;
    display: none;
    min-width: 0;
    max-height: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    background: #f7f8fa;
  }
  .has-sub.is-open > .nav__sub { display: block; }
  .has-sub.is-open > a .nav__caret { transform: rotate(180deg); }
  .nav__caret { transition: transform .2s var(--ease); }

  .nav__sub a {
    padding: .7rem .25rem .7rem 1rem;
    border-bottom: 1px solid #eceff3;
    font-size: 1rem;
    color: #384152;
    white-space: normal;
  }
  .nav__sub a:hover { background: transparent; color: var(--red); }

  .nav__mobile-extra {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-top: 1.5rem;
  }
  .nav__mobile-extra .btn { width: 100%; font-size: .95rem; }
}

@media (max-width: 720px) {
  .adventure__grid { grid-template-columns: 1fr; }
  .adv-card { min-height: 0; padding: .95rem 1.1rem; }
}

@media (max-width: 560px) {
  .logo img { width: 152px; }
  .hero { min-height: 0; }
  .hero__actions .btn { width: 100%; }
  .dealer-phone { font-size: 1.12rem; }
  .dealer-phone span { display: none; }
  .dealer-phone {
    width: 42px; height: 42px;
    justify-content: center;
    background: var(--red);
    border-radius: 50%;
  }
  .dealer-phone .i { font-size: 1.15rem; color: #fff; }
}

/* ── Footer ── */
.site-footer {
  background: #000;
  color: #fff;
  padding: 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr .9fr 1.1fr;
  gap: 3.5rem 2.5rem;
  padding-block: 3.5rem 3rem;
}

.site-footer__logo {
  display: inline-block;
  margin-bottom: .85rem;
}

.site-footer__logo img {
  display: block;
  width: 200px;
  height: auto;
  filter: drop-shadow(0 0 1px rgba(255,255,255,.9)) drop-shadow(0 2px 6px rgba(0,0,0,.45));
}

.site-footer__brand p {
  margin: 0 0 1.25rem;
  max-width: 28rem;
  color: #fff;
  font-size: .95rem;
  line-height: 1.65;
}

.site-footer__social {
  display: flex;
  gap: .7rem;
}

.site-footer__social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1a1a1a;
  border: 1px solid var(--red);
  color: var(--red);
  transition: background .18s var(--ease), color .18s var(--ease);
}

.site-footer__social a:hover {
  background: var(--red);
  color: #fff;
}

.site-footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.site-footer__col h2 {
  margin: .2rem 0 1.1rem;
  color: var(--red);
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .7rem;
}

.site-footer__col a {
  color: #fff;
  font-size: .95rem;
}

.site-footer__col a:hover { color: var(--red); }

.site-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: #fff;
  font-size: .95rem;
  line-height: 1.5;
}

.site-footer__contact svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: .15rem;
  fill: var(--red);
}

.site-footer__legal {
  border-top: 1px solid #2a2a2a;
  padding: 1.1rem 1.4rem;
  text-align: center;
}

.site-footer__legal p {
  margin: 0;
  color: #fff;
  font-size: .88rem;
}

@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    padding-block: 2.6rem 2.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
