/* =========================================================
   Cache Moto — styles.css
   Plain CSS. Mobile-first. No frameworks, no build step.
   Sections:
     01  Tokens
     02  Reset & base
     03  Layout helpers
     04  Buttons
     05  Header / nav
     06  Mobile sticky call bar
     07  Hero
     08  Section headers
     09  Cards & grids
     10  Electric band
     11  Why us
     12  Gallery
     13  Inventory
     14  Reviews
     15  Service area
     16  CTA band
     17  Forms
     18  Detail blocks (service pages)
     19  Footer
     20  Utilities
     21  Reduced motion / print
   ========================================================= */

/* ---------- 01  Tokens ---------- */
:root {
  --bg:        #0d0f12;
  --bg-2:      #14171c;
  --bg-3:      #1b1f26;
  --bg-4:      #232830;
  --line:      #2b313b;
  --line-soft: #21262e;

  --text:      #f3f5f7;
  --muted:     #a8b1bd;
  --muted-2:   #838d9a;

  --orange:      #ff7a18;
  --orange-dark: #e2660a;
  --orange-tint: rgba(255, 122, 24, 0.12);

  --blue:      #46a6ff;
  --blue-dark: #1f7fd6;
  --blue-tint: rgba(70, 166, 255, 0.12);

  --radius:    12px;
  --radius-lg: 18px;
  --shadow:    0 10px 30px rgba(0, 0, 0, 0.45);

  --wrap:      1160px;
  --gutter:    20px;

  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
          Arial, "Noto Sans", sans-serif;

  --header-h: 64px;
}

/* ---------- 02  Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #7cc2ff; }

h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
}
h1 { font-size: clamp(2rem, 6.2vw, 3.35rem); }
h2 { font-size: clamp(1.55rem, 4.4vw, 2.3rem); }
h3 { font-size: clamp(1.12rem, 2.6vw, 1.3rem); }
h4 { font-size: 1.02rem; }

p  { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1rem; padding-left: 1.15rem; }
li { margin-bottom: 0.4rem; }

strong { color: #fff; font-weight: 700; }

hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--orange);
  color: #10120f;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- 03  Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding: 56px 0; }
.section--tight { padding: 40px 0; }
.section--alt  { background: var(--bg-2); border-block: 1px solid var(--line-soft); }
.section--deep { background: var(--bg-3); border-block: 1px solid var(--line-soft); }

@media (min-width: 800px) {
  .section { padding: 84px 0; }
  .section--tight { padding: 56px 0; }
}

/* ---------- 04  Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 10px;
  font: inherit;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.btn--primary {
  background: var(--orange);
  color: #171003;
  border-color: var(--orange);
}
.btn--primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: #171003; }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: #3b424e;
}
.btn--ghost:hover { background: #ffffff10; color: var(--text); border-color: #556071; }

.btn--electric {
  background: var(--blue);
  color: #04121f;
  border-color: var(--blue);
}
.btn--electric:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: #04121f; }

.btn--sm { min-height: 42px; padding: 0.5rem 0.95rem; font-size: 0.92rem; }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn-row > .btn { flex: 1 1 220px; }
@media (min-width: 560px) {
  .btn-row > .btn { flex: 0 1 auto; }
}

/* ---------- 05  Header / nav ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(13, 15, 18, 0.94);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.14rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.brand:hover { color: var(--text); }
.brand__mark {
  width: 30px; height: 30px; flex: none;
  border-radius: 8px;
  background: var(--orange);
  color: #171003;
  display: grid; place-items: center;
  font-size: 0.86rem; font-weight: 900; letter-spacing: 0;
}
.brand__sub {
  display: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted-2);
}
@media (min-width: 1000px) { .brand__sub { display: inline; } }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid #3b424e;
  color: var(--text);
  border-radius: 9px;
  padding: 9px 12px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}
.nav-toggle__bars { display: block; width: 18px; height: 2px; background: currentColor; position: relative; }
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor;
}
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after  { top: 6px; }

.nav {
  display: none;
  padding-bottom: 16px;
}
.nav.is-open { display: block; }
.nav__list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav__list li { margin: 0; }
.nav__link {
  display: block;
  padding: 12px 10px;
  border-radius: 9px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}
.nav__link:hover { background: var(--bg-3); color: var(--text); }
.nav__link[aria-current="page"] { color: var(--orange); background: var(--orange-tint); }
.nav__cta { display: grid; gap: 10px; }

@media (min-width: 980px) {
  .nav-toggle { display: none; }
  .nav { display: block !important; padding-bottom: 0; }
  .nav__list { flex-direction: row; align-items: center; gap: 4px; margin: 0 14px 0 0; }
  .nav__link { padding: 8px 12px; font-size: 0.97rem; }
  .header__bar { gap: 20px; }
  .nav { display: flex !important; align-items: center; }
  .nav__cta { display: flex; gap: 8px; }
}

/* ---------- 06  Mobile sticky call bar ---------- */
.callbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}
.callbar a {
  background: var(--bg-2);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 14px 8px;
  text-align: center;
  min-height: 52px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.callbar a:first-child { background: var(--orange); color: #171003; }
body { padding-bottom: 60px; }
@media (min-width: 980px) {
  .callbar { display: none; }
  body { padding-bottom: 0; }
}

/* ---------- 07  Hero ---------- */
.hero {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.32;
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,15,18,.72) 0%, rgba(13,15,18,.86) 55%, rgba(13,15,18,.97) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding: 48px 0 52px;
  max-width: 780px;
}
@media (min-width: 800px) { .hero__inner { padding: 88px 0 92px; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-tint);
  border: 1px solid rgba(255,122,24,.28);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow--electric {
  color: var(--blue);
  background: var(--blue-tint);
  border-color: rgba(70,166,255,.3);
}

.hero__lede {
  font-size: clamp(1.02rem, 2.6vw, 1.22rem);
  color: var(--muted);
  max-width: 62ch;
  margin-bottom: 26px;
}

.hero__strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  list-style: none;
  padding-left: 0;
  font-size: 0.92rem;
  color: var(--muted);
}
.hero__strip li {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__strip li::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange);
  flex: none;
}
.hero__strip li.is-electric::before { background: var(--blue); }

/* Page hero (interior pages) */
.pagehead {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  padding: 40px 0 44px;
}
@media (min-width: 800px) { .pagehead { padding: 66px 0 70px; } }
.pagehead p { color: var(--muted); max-width: 68ch; font-size: 1.05rem; }

.crumbs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0 0 14px;
  font-size: 0.85rem;
  color: var(--muted-2);
}
.crumbs li { margin: 0; }
.crumbs li + li::before { content: "/"; margin-right: 6px; color: #4b5361; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--text); text-decoration: underline; }

/* ---------- 08  Section headers ---------- */
.sec-head { max-width: 66ch; margin-bottom: 30px; }
.sec-head p { color: var(--muted); }
.sec-head--center { margin-inline: auto; text-align: center; }

/* ---------- 09  Cards & grids ---------- */
.grid { display: grid; gap: 16px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

@media (min-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 940px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .grid { gap: 20px; }
}

.card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
}
.card h3 { margin-bottom: 0.35em; }
.card p { color: var(--muted); font-size: 0.97rem; }
.card__icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--orange-tint);
  color: var(--orange);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.card__icon svg { width: 22px; height: 22px; }
.card--electric { border-color: rgba(70,166,255,.35); }
.card--electric .card__icon { background: var(--blue-tint); color: var(--blue); }

.card__link {
  margin-top: 14px;
  font-weight: 700;
  font-size: 0.94rem;
  text-decoration: none;
  color: var(--orange);
}
.card__link:hover { color: #ff9a4d; text-decoration: underline; }
.card--electric .card__link { color: var(--blue); }

.tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 14px 0 0;
}
.tags li {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
}

/* checklist */
.checks { list-style: none; padding: 0; margin: 0; }
.checks li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 0.6rem;
  color: var(--muted);
}
.checks li::before {
  content: "";
  position: absolute;
  left: 4px; top: 0.62em;
  width: 10px; height: 6px;
  border-left: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(-45deg);
}
.checks--electric li::before { border-color: var(--blue); }
.checks strong { color: var(--text); }

/* ---------- 10  Electric band ---------- */
.electric {
  background:
    radial-gradient(900px 340px at 12% 0%, rgba(70,166,255,.14), transparent 62%),
    var(--bg-2);
  border-block: 1px solid var(--line);
}
.electric__grid {
  display: grid;
  gap: 26px;
}
@media (min-width: 900px) {
  .electric__grid { grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
}
.electric__panel {
  background: var(--bg-3);
  border: 1px solid rgba(70,166,255,.28);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.electric__panel h3 { font-size: 1.05rem; }
.model-list {
  list-style: none;
  padding: 0;
  margin: 0 0 4px;
  display: grid;
  gap: 8px;
}
.model-list li {
  margin: 0;
  padding: 10px 12px;
  border-radius: 9px;
  background: var(--bg-4);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.95rem;
}
.disclaimer {
  font-size: 0.85rem;
  color: var(--muted-2);
  line-height: 1.55;
  margin-top: 14px;
}

/* ---------- 11  Why us ---------- */
.why {
  display: grid;
  gap: 18px;
  counter-reset: why;
}
@media (min-width: 700px) { .why { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .why { grid-template-columns: repeat(3, 1fr); } }
.why__item {
  border-top: 2px solid var(--orange);
  padding-top: 16px;
}
.why__item h3 { font-size: 1.08rem; }
.why__item p { color: var(--muted); font-size: 0.97rem; margin: 0; }

/* ---------- 12  Gallery ---------- */
.gallery { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .gallery { grid-template-columns: repeat(3, 1fr); } }

.shot {
  margin: 0;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.shot img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--bg-4);
}
.shot figcaption {
  padding: 12px 14px;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ---------- 13  Inventory ---------- */
.inv {
  background: var(--bg-2);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.inv img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--bg-4);
}
.inv__body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.inv__body h3 { font-size: 1.06rem; }
.inv__body p { color: var(--muted); font-size: 0.95rem; }
.inv__meta {
  list-style: none; padding: 0; margin: 0 0 14px;
  font-size: 0.9rem; color: var(--muted);
}
.inv__meta li { margin: 0 0 4px; }
.inv__body .btn { margin-top: auto; }

.note {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: 10px;
  padding: 16px 18px;
  color: var(--muted);
  font-size: 0.95rem;
}
.note--electric { border-left-color: var(--blue); }
.note strong { color: var(--text); }

/* ---------- 14  Reviews ---------- */
.rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 24px;
}
.rating__score {
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}
.rating__stars { color: var(--orange); letter-spacing: 2px; font-size: 1.05rem; }
.rating__meta { color: var(--muted); font-size: 0.92rem; }
.rating .btn { margin-left: auto; }

.quote {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.quote blockquote { margin: 0 0 14px; color: var(--text); font-size: 0.99rem; }
.quote figcaption { margin-top: auto; color: var(--muted-2); font-size: 0.88rem; font-weight: 600; }
.quote__stars { color: var(--orange); letter-spacing: 2px; margin-bottom: 10px; font-size: 0.95rem; }

/* ---------- 15  Service area ---------- */
.area {
  display: grid;
  gap: 24px;
}
@media (min-width: 900px) { .area { grid-template-columns: 1fr 1fr; gap: 40px; } }
.area__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (min-width: 600px) { .area__list { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .area__list { grid-template-columns: repeat(2, 1fr); } }
.area__list li {
  margin: 0;
  padding: 9px 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.93rem;
  font-weight: 600;
}

/* ---------- 16  CTA band ---------- */
.cta {
  background:
    linear-gradient(180deg, rgba(255,122,24,.10), rgba(255,122,24,0)),
    var(--bg-2);
  border-block: 1px solid var(--line);
  text-align: center;
}
.cta .wrap { max-width: 760px; }
.cta p { color: var(--muted); font-size: 1.05rem; }
.cta .btn-row { justify-content: center; }

/* ---------- 17  Forms ---------- */
.form-layout { display: grid; gap: 28px; }
@media (min-width: 950px) { .form-layout { grid-template-columns: 1.25fr 0.75fr; gap: 40px; align-items: start; } }

.form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
}
@media (min-width: 700px) { .form { padding: 30px; } }

.field { margin-bottom: 18px; }
.field > label,
.fieldset > legend {
  display: block;
  font-weight: 700;
  font-size: 0.94rem;
  margin-bottom: 7px;
}
.field .hint { display: block; font-weight: 500; color: var(--muted-2); font-size: 0.84rem; margin-top: 5px; }
.req { color: var(--orange); }
.opt { color: var(--muted-2); font-weight: 500; }

input[type="text"], input[type="tel"], input[type="email"], select, textarea {
  width: 100%;
  background: var(--bg-4);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  min-height: 50px;
}
textarea { min-height: 130px; resize: vertical; }
select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
                    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
input::placeholder, textarea::placeholder { color: #6b7482; }
input:focus, select:focus, textarea:focus { border-color: var(--orange); outline: none; box-shadow: 0 0 0 3px var(--orange-tint); }

.fieldset { border: 0; margin: 0 0 18px; padding: 0; }
.radio-row { display: flex; flex-wrap: wrap; gap: 8px; }
.radio-row label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-4);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 0.93rem;
  font-weight: 600;
  cursor: pointer;
  min-height: 44px;
}
.radio-row input { accent-color: var(--orange); width: 17px; height: 17px; }
.radio-row label:has(input:checked) { border-color: var(--orange); background: var(--orange-tint); }

.grid-2 { display: grid; gap: 0 16px; }
@media (min-width: 620px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

.form__error {
  color: #ff8f6b;
  font-size: 0.87rem;
  font-weight: 600;
  margin-top: 6px;
  min-height: 0;
}
.form__status {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg-3);
  font-size: 0.94rem;
}
.form__status[hidden] { display: none; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* contact aside */
.side { display: grid; gap: 16px; }
.side__box {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.side__box h3 { font-size: 1.05rem; }
.side__box p, .side__box li { color: var(--muted); font-size: 0.96rem; }
.side__box ul { list-style: none; padding: 0; margin: 0; }
.side__box a { font-weight: 600; }

.hours { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours th, .hours td { text-align: left; padding: 7px 0; border-bottom: 1px solid var(--line-soft); }
.hours th { font-weight: 600; color: var(--muted); }
.hours td { text-align: right; color: var(--text); font-variant-numeric: tabular-nums; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }

/* ---------- 18  Detail blocks (service pages) ---------- */
.detail {
  border-top: 1px solid var(--line);
  padding-top: 34px;
  margin-top: 34px;
  display: grid;
  gap: 22px;
}
.detail:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
@media (min-width: 900px) {
  .detail { grid-template-columns: 0.95fr 1.05fr; gap: 40px; align-items: start; }
  .detail--flip .detail__media { order: 2; }
}
.detail__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-4);
}
.detail h2 { scroll-margin-top: calc(var(--header-h) + 16px); }

.jumpnav {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.jumpnav li { margin: 0; }
.jumpnav a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}
.jumpnav a:hover { border-color: var(--orange); color: var(--text); }

.faq {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq > summary {
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}
.faq > summary::-webkit-details-marker { display: none; }
.faq > summary::after {
  content: "+";
  color: var(--orange);
  font-size: 1.4rem;
  line-height: 1;
  flex: none;
}
.faq[open] > summary::after { content: "\2013"; }
.faq__body { padding: 0 20px 18px; color: var(--muted); font-size: 0.97rem; }

/* ---------- 19  Footer ---------- */
.footer {
  background: #090b0d;
  border-top: 1px solid var(--line);
  padding: 44px 0 30px;
  font-size: 0.95rem;
}
.footer__grid { display: grid; gap: 28px; }
@media (min-width: 700px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 34px; } }

.footer h2, .footer h3 { font-size: 0.82rem; letter-spacing: 0.11em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px; font-weight: 800; }
.footer p, .footer li, .footer address { color: var(--muted); font-style: normal; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 9px; }
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--text); text-decoration: underline; }
.footer .brand { margin-bottom: 12px; }

.social { display: flex; gap: 10px; margin-top: 12px; }
.social a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-2);
  color: var(--muted);
}
.social a:hover { color: var(--text); border-color: #4a525f; }
.social svg { width: 19px; height: 19px; }

.footer__legal {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
  color: var(--muted-2);
  font-size: 0.86rem;
}
.footer__areas { color: var(--muted-2); font-size: 0.88rem; margin-top: 14px; }

/* ---------- 20  Utilities ---------- */
.lead { font-size: 1.08rem; color: var(--muted); max-width: 68ch; }
.muted { color: var(--muted); }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 12px; }
.mt-2 { margin-top: 22px; }
.mt-3 { margin-top: 32px; }
.mb-2 { margin-bottom: 22px; }
.narrow { max-width: 72ch; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.ph {
  display: inline-block;
  background: var(--orange-tint);
  border: 1px dashed rgba(255,122,24,.5);
  border-radius: 5px;
  padding: 0 6px;
  font-size: 0.92em;
  font-weight: 700;
  color: #ffb37a;
}

/* 404 */
.err { text-align: center; padding: 70px 0 90px; }
.err__code { font-size: clamp(3.4rem, 16vw, 7rem); font-weight: 900; line-height: 1; color: var(--orange); letter-spacing: -0.04em; }

/* ---------- 21  Reduced motion / print ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .header, .callbar, .cta, .social { display: none !important; }
  body { background: #fff; color: #000; padding-bottom: 0; }
  a { color: #000; }
}
