/* ────────────────────────────────────────────────────────────
   DP AUTOS — Bold industrial garage site
   ──────────────────────────────────────────────────────────── */

:root {
  /* Tweakable */
  --blue:       #2A9DF4;          /* electric (default) */
  --blue-deep:  #1273C9;
  --blue-tint:  #DAEEFE;

  /* Fixed system */
  --ink:        #0B1B2D;
  --ink-soft:   #1B2A3F;
  --ink-mute:   #4B5A70;
  --paper:      #F4F1E8;
  --paper-2:    #ECE7DA;
  --white:      #FFFFFF;
  --line:       rgba(11,27,45,.14);
  --line-2:     rgba(11,27,45,.08);

  --display: "Anton", "Arial Narrow Bold", "Helvetica Neue Condensed Bold", sans-serif;
  --body:    "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --wrap: 1280px;
  --pad:  clamp(20px, 4vw, 56px);
}

/* ─────────── Reset ─────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
/* Guard against phantom sideways scroll on mobile. `clip` (not `hidden`)
   avoids creating a scroll container, so sticky headers keep working. */
html { -webkit-text-size-adjust: 100%; overflow-x: clip; max-width: 100%; }
body { overflow-x: clip; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  font-weight: 400;
  font-feature-settings: "ss01", "ss02";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.skip {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}
.skip:focus { position: fixed; left: 12px; top: 12px; width: auto; height: auto; margin: 0; overflow: visible; clip: auto; clip-path: none; padding: 8px 12px; background: var(--ink); color: var(--white); z-index: 9999; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }
.mono { font-family: var(--mono); font-feature-settings: "tnum"; }
.muted { color: var(--ink-mute); }


/* ─────────── Top bar ─────────── */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding-top: 14px; padding-bottom: 14px;
}
.topbar__brand { display: inline-flex; align-items: center; gap: 12px; }
.topbar__mark { width: 38px; height: 38px; object-fit: contain; }
.topbar__word {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--white);
}
.topbar__nav { display: flex; gap: 28px; justify-content: center; font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.topbar__nav a { color: rgba(255,255,255,.78); padding: 6px 0; border-bottom: 2px solid transparent; transition: color .15s, border-color .15s; }
.topbar__nav a:hover { color: var(--white); border-color: var(--blue); }
.topbar__cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blue); color: var(--ink);
  padding: 10px 16px; border-radius: 2px;
  font-family: var(--mono); font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  border: 2px solid var(--blue);
  transition: transform .15s, background .15s;
}
.topbar__cta:hover { transform: translateY(-1px); background: var(--white); border-color: var(--white); }
.topbar__cta-ico { width: 18px; height: 18px; display: inline-flex; }
.topbar__cta-ico svg { width: 100%; height: 100%; }

@media (max-width: 760px) {
  .topbar__nav { display: none; }
  .topbar__inner { grid-template-columns: auto 1fr; gap: 12px; }
  .topbar__cta { padding: 8px 12px; }
  .topbar__cta-num { font-size: 13px; }
  .topbar__mark { width: 32px; height: 32px; }
  .topbar__word { font-size: 22px; }
}
@media (max-width: 380px) {
  .topbar__cta-num { display: none; }
  .topbar__cta { padding: 9px; }
}


/* hero card (right side) */
.hero__card {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  border-radius: 4px;
  padding: 20px 20px 18px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.5);
  border-top: 6px solid var(--blue);
  display: flex; flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 380px;
  margin-left: auto;
}
.hero__card::before {
  content: "";
  position: absolute;
  inset: -6px -6px auto auto;
  width: 28px; height: 28px;
  background: var(--blue);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}
.hero__card-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink);
}
.hero__logo-wrap {
  background: var(--ink);
  border-radius: 3px;
  padding: clamp(12px, 1.5vh, 18px) 14px;
  display: flex; align-items: center; justify-content: center;
}
.hero__logo { width: 72%; max-width: 190px; }
.hero__card-meta { display: flex; flex-direction: column; gap: 2px; padding-top: 2px; }
.hero__card-name {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.04em;
  line-height: 1;
}
.hero__card-loc { font-size: 11px; color: var(--ink-mute); letter-spacing: 0.06em; }
.hero__card-cta {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--ink); color: var(--paper);
  padding: 12px 16px; border-radius: 2px;
  font-family: var(--display); font-size: 22px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.hero__card-cta:hover { background: var(--blue); color: var(--ink); }
.hero__card-arrow { font-size: 24px; line-height: 1; }
.hero__card-foot {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 11px; letter-spacing: 0.08em; color: var(--ink-mute);
}
.hero__card-foot-sep { opacity: .35; }

.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-mute); display: inline-block; }
.dot--live { background: #1aa050; box-shadow: 0 0 0 0 rgba(26,160,80,.7); animation: pulse 2s infinite; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0   rgba(26,160,80,.7); }
  70%  { box-shadow: 0 0 0 8px rgba(26,160,80,0); }
  100% { box-shadow: 0 0 0 0   rgba(26,160,80,0); }
}

/* scroll hint */
.hero__scrollhint {
  position: absolute;
  left: 50%; bottom: 18px;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.14em;
  color: rgba(244,241,232,.5);
  text-transform: uppercase;
  z-index: 2;
}
.hero__scrollhint-arrow { font-size: 14px; animation: bounce 1.8s ease-in-out infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(5px); }
}
@media (prefers-reduced-motion: reduce) { .hero__scrollhint-arrow { animation: none; } }

@media (max-width: 1024px) {
  .hero__inner.hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 24px;
    padding-bottom: 24px;
    align-items: stretch;
  }
  .hero__card { max-width: 420px; margin: 0; }
  .hero__logo-wrap { padding: 14px; }
  .hero__points b { font-size: 32px; }
  .hero__scrollhint { display: none; }
  .hero { min-height: 0; }
}
@media (max-width: 520px) {
  .hero__title { font-size: clamp(40px, 12vw, 60px); }
  .hero__line-tail { display: block; }
  .eyebrow { flex-wrap: wrap; row-gap: 4px; }
  .hero__lede { font-size: 15px; margin-bottom: 22px; }
  .btn { width: 100%; justify-content: space-between; }
  .hero__ctas { width: 100%; }
}

/* ─────────── Vertical road + top-down car ─────────── */
.vroad {
  position: fixed;
  top: 78px;       /* below topbar */
  bottom: 16px;
  right: 14px;
  width: 78px;
  z-index: 30;
  pointer-events: none;
}
.vroad__line {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 44px;
  transform: translateX(-50%);
  background: rgba(11,27,45,.04);
  border-left: 1px dashed rgba(11,27,45,.2);
  border-right: 1px dashed rgba(11,27,45,.2);
  border-radius: 6px;
}
.vroad__line { /* override blend modes that read poorly on dark sections */
  mix-blend-mode: normal;
}
.vroad__dashes {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 4px;
  transform: translateX(-50%);
  background-image: linear-gradient(180deg, var(--blue) 50%, transparent 50%);
  background-size: 4px 22px;
  background-repeat: repeat-y;
  opacity: .55;
  animation: vroadDash 0.9s linear infinite;
  border-radius: 2px;
}
@keyframes vroadDash {
  from { background-position: 0 0; }
  to   { background-position: 0 -44px; }
}
@media (prefers-reduced-motion: reduce) { .vroad__dashes { animation: none; } }

.vcar {
  position: absolute;
  left: 50%;
  top: 0;
  width: 54px;
  transform: translateX(-50%);
  will-change: transform;
  filter: drop-shadow(0 6px 8px rgba(0,0,0,.35));
  transition: filter .3s;
}
.vcar__svg { width: 100%; height: auto; display: block; }
.vcar--moving { filter: drop-shadow(0 8px 10px rgba(42,157,244,.35)); }

.vcar__wisps {
  position: absolute;
  left: 50%;
  bottom: 100%;    /* above the car (trailing behind it as it drives down) */
  width: 16px;
  height: 28px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; gap: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s;
}
.vcar--moving .vcar__wisps { opacity: .8; }
.vcar__wisps span {
  display: block;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
  opacity: .7;
  animation: wisp 0.6s linear infinite;
}
.vcar__wisps span:nth-child(1) { width: 10px; margin-left: 3px; animation-delay: 0s; }
.vcar__wisps span:nth-child(2) { width: 14px; margin-left: 1px; animation-delay: .12s; }
.vcar__wisps span:nth-child(3) { width: 8px;  margin-left: 4px; animation-delay: .24s; }
@keyframes wisp {
  0%   { transform: translateY(0);    opacity: .85; }
  100% { transform: translateY(-14px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .vcar__wisps span { animation: none; opacity: .55; } }

/* hide road on small screens */
@media (max-width: 1080px) {
  .vroad { display: none; }
}
/* reserve space on desktop so wrap content doesn't sit under the road */
@media (min-width: 1081px) {
  body { padding-right: 96px; }
  .topbar { /* sticky: shrinks with body */ }
}

.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  border-bottom: 6px solid var(--blue);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
.hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .9;
}
.hero__slash {
  position: absolute;
  background: var(--blue);
  border-radius: 999px;
  transform-origin: left center;
  filter: blur(0.5px);
}
.hero__slash--a { top: 12%;  left: -10%; width: 70%; height: 6px;  transform: rotate(-12deg); opacity: .55; }
.hero__slash--b { top: 22%;  left: -14%; width: 55%; height: 3px;  transform: rotate(-12deg); opacity: .35; }
.hero__slash--c { top: 32%;  left: -10%; width: 38%; height: 10px; transform: rotate(-12deg); opacity: .8;  }

.hero::after {
  /* subtle grid */
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,.0) 80%);
}

.hero__inner {
  position: relative; z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 1fr);
  gap: clamp(20px, 3.2vw, 48px);
  align-items: center;
  flex: 1;
  padding-top: clamp(28px, 4.5vh, 56px);
  padding-bottom: clamp(36px, 5vh, 64px);
  min-height: 0;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244,241,232,.7);
  margin-bottom: 18px;
}
.eyebrow__dot { width: 8px; height: 8px; background: var(--blue); border-radius: 50%; box-shadow: 0 0 0 4px rgba(42,157,244,.18); }
.eyebrow__sep { opacity: .35; }

.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, min(7.4vw, 10vh), 112px);
  line-height: 0.9;
  letter-spacing: -0.005em;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.hero__line { display: block; }
.hero__line--accent { color: var(--blue); }
.hero__line-tail {
  display: inline;
  color: var(--paper);
  opacity: .85;
}

.hero__lede {
  max-width: 48ch;
  font-size: clamp(14px, 1.35vw, 17px);
  color: rgba(244,241,232,.82);
  margin: 0 0 22px;
  text-wrap: pretty;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }

.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 22px;
  border-radius: 2px;
  font-weight: 700;
  transition: transform .15s, background .15s, border-color .15s, color .15s;
}
.btn--primary {
  background: var(--blue);
  color: var(--ink);
  border: 2px solid var(--blue);
}
.btn--primary:hover { transform: translateY(-2px); background: var(--white); border-color: var(--white); }
.btn--primary .btn__label { font-family: var(--display); font-size: 22px; letter-spacing: 0.04em; line-height: 1; }
.btn--primary .btn__sub { font-family: var(--mono); font-size: 12px; opacity: .75; padding-left: 12px; border-left: 1.5px solid rgba(11,27,45,.35); }
.btn--ghost {
  background: transparent;
  color: var(--paper);
  border: 2px solid rgba(244,241,232,.32);
}
.btn--ghost .btn__label { font-family: var(--display); font-size: 22px; letter-spacing: 0.04em; line-height: 1; }
.btn--ghost:hover { border-color: var(--paper); }
.btn__arrow { font-size: 20px; transform: translateY(-1px); }
.btn--primary .btn__label, .btn--ghost .btn__label { white-space: nowrap; }
.btn--primary .btn__sub { white-space: nowrap; }

/* ── Hero two-service split ── */
.hero__dual { margin-bottom: 26px; max-width: 580px; }
.hero__dual-lead {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(19px, 2.3vw, 28px);
  letter-spacing: 0.01em; line-height: 1; text-transform: uppercase;
  margin-bottom: 14px; color: var(--paper);
}
.hero__dual-lead span { color: var(--blue); }
.hero__split { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero__svc {
  position: relative;
  display: flex; flex-direction: column; gap: 6px;
  padding: 15px 17px;
  border: 1.5px solid rgba(244,241,232,.22);
  border-radius: 3px;
  background: rgba(244,241,232,.03);
  transition: border-color .15s, background .15s, transform .15s;
}
.hero__svc:hover { border-color: var(--blue); background: rgba(42,157,244,.10); transform: translateY(-2px); }
.hero__svc--detail { border-color: rgba(42,157,244,.42); background: rgba(42,157,244,.07); }
.hero__svc-k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.07em; text-transform: uppercase; color: var(--blue); }
.hero__svc-t { font-family: var(--display); font-weight: 400; font-size: clamp(15px, 1.5vw, 18px); letter-spacing: 0.02em; text-transform: uppercase; color: var(--paper); line-height: 1.05; padding-right: 16px; }
.hero__svc-go { position: absolute; top: 13px; right: 15px; font-size: 17px; color: rgba(244,241,232,.5); transition: color .15s, transform .15s; }
.hero__svc:hover .hero__svc-go { color: var(--blue); transform: translateX(3px); }
@media (max-width: 560px) { .hero__split { grid-template-columns: 1fr; } }

.hero__points {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  border-top: 1px solid rgba(244,241,232,.15);
  padding-top: 16px;
  max-width: 580px;
}
.hero__points li { display: flex; flex-direction: column; gap: 2px; }
.hero__points b {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 0.9;
  color: var(--blue);
}
.hero__points span { font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(244,241,232,.7); line-height: 1.35; }

/* ─────────── Marquee strip ─────────── */
.strip {
  background: var(--blue);
  color: var(--ink);
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  padding: 14px 0;
}
.strip__track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: strip 35s linear infinite;
  font-family: var(--display);
  font-size: clamp(18px, 3vw, 22px);
  letter-spacing: 0.04em;
}
.strip__set { display: flex; gap: 32px; align-items: center; flex-shrink: 0; }
.strip__set span { display: inline-block; }
.strip__dot { font-size: 14px; opacity: .55; }
@keyframes strip {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .strip__track { animation: none; }
}


/* ─────────── Section head ─────────── */
.section-head { display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: end; margin-bottom: 48px; }
.section-head__kicker {
  display: inline-flex; align-items: baseline; gap: 12px;
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 16px;
}
.section-head__kicker--light { color: rgba(244,241,232,.6); }
.kicker-num {
  background: var(--blue); color: var(--ink);
  padding: 2px 8px; font-weight: 800;
}
.section-head__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.005em;
  margin: 0;
  text-transform: uppercase;
}
.section-head__lede { font-size: 17px; color: var(--ink-soft); max-width: 44ch; margin: 0; text-wrap: pretty; }

@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; align-items: start; }
}


/* ─────────── Services grid ─────────── */
.services { padding: clamp(72px, 9vw, 128px) 0 clamp(72px, 9vw, 128px); }

.grid {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.card {
  background: var(--paper);
  padding: 28px 24px 26px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 220px;
  position: relative;
  transition: background .15s, color .15s;
}
.card:hover { background: var(--ink); color: var(--paper); }
.card:hover .card__num,
.card:hover .card__body { color: rgba(244,241,232,.7); }
.card:hover .card__ico { color: var(--blue); border-color: rgba(255,255,255,.18); }
.card__num {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  font-weight: 600;
}
.card__ico {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--line);
  border-radius: 2px;
  color: var(--blue);
  margin-bottom: 4px;
  transition: border-color .15s, color .15s;
}
.card__ico svg { width: 28px; height: 28px; }
.card__title {
  font-family: var(--display);
  font-size: 32px;
  letter-spacing: 0.02em;
  margin: 0;
  text-transform: uppercase;
  line-height: 1;
  font-weight: 400;
}
.card__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.card--cta { background: var(--blue); color: var(--ink); }
.card--cta:hover { background: var(--ink); color: var(--paper); }
.card--cta:hover .card__cta { background: var(--blue); color: var(--ink); }
.card--cta .card__num { color: var(--ink); font-size: 22px; }
.card__cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--paper);
  padding: 10px 14px;
  font-family: var(--mono); font-size: 14px; font-weight: 700;
  letter-spacing: 0.04em;
  align-self: flex-start;
}

@media (max-width: 1100px) { .grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width:  720px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .card { min-height: 180px; padding: 22px 18px 20px; gap: 10px; }
  .card__title { font-size: 26px; }
  .card__body  { font-size: 13px; }
}
@media (max-width: 460px) {
  .grid { grid-template-columns: 1fr; }
  .card { min-height: 0; }
}


/* ─────────── About ─────────── */
.about {
  padding: clamp(72px, 9vw, 128px) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.about__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, 6.5vw, 96px);
  line-height: 0.92;
  margin: 0 0 28px;
  text-transform: uppercase;
}
.about__title-em { color: var(--blue); }
.about__lede { font-size: 18px; max-width: 56ch; color: var(--ink-soft); margin: 0 0 36px; text-wrap: pretty; }

.pledge { display: grid; gap: 16px; }
.pledge__item {
  display: grid; grid-template-columns: 56px 1fr; gap: 18px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.pledge__num {
  font-family: var(--mono); font-size: 18px; font-weight: 700;
  color: var(--blue);
  border-right: 1px solid var(--line);
  padding-right: 18px;
  display: flex; align-items: center;
}
.pledge__item h4 {
  margin: 0 0 4px;
  font-family: var(--display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}
.pledge__item p { margin: 0; font-size: 14px; color: var(--ink-soft); }

/* ticker card */
.ticker {
  background: var(--ink);
  color: var(--paper);
  padding: 28px 26px;
  border-radius: 4px;
  position: sticky; top: 96px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.3);
}
.ticker__head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(244,241,232,.14);
  margin-bottom: 14px;
}
.ticker__id { font-size: 11px; letter-spacing: 0.1em; opacity: .75; }
.ticker__row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(244,241,232,.14);
  font-size: 13px;
}
.ticker__row span { color: rgba(244,241,232,.6); }
.ticker__row b { font-size: 12px; letter-spacing: 0.04em; }
.ticker__bigfig {
  display: flex; align-items: center; gap: 16px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 2px solid var(--blue);
}
.ticker__bignum {
  font-family: var(--display);
  font-size: 96px;
  line-height: 0.9;
  color: var(--blue);
}
.ticker__bignum sup { font-size: 36px; vertical-align: super; }
.ticker__bigtxt { font-size: 13px; color: rgba(244,241,232,.7); letter-spacing: 0.04em; text-transform: uppercase; }

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .ticker { position: static; }
}


/* ─────────── Visit ─────────── */
.visit {
  padding: clamp(72px, 9vw, 128px) 0;
  background: var(--ink);
  color: var(--paper);
}
.visit__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas:
    "head head head head"
    "phone phone mail mail"
    "where hours hours hours";
  gap: 1px;
}
.visit__head { grid-area: head; margin-bottom: 36px; }
.visit__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.92;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.visit__lede { color: rgba(244,241,232,.7); margin: 0; font-size: 17px; }

.visit__tile {
  position: relative;
  background: var(--ink-soft);
  padding: 28px;
  display: flex; flex-direction: column; gap: 8px;
  min-height: 200px;
  transition: background .15s;
  overflow: hidden;
}
.visit__tile-k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; color: rgba(244,241,232,.55); }
.visit__tile-big { font-family: var(--display); font-size: clamp(28px, 3.5vw, 44px); line-height: 1; letter-spacing: 0.02em; text-transform: uppercase; word-break: break-word; }
.visit__tile-big.mono { font-family: var(--mono); letter-spacing: -0.01em; font-weight: 700; text-transform: none; font-size: clamp(22px, 2.8vw, 32px); }
.visit__tile-sub { font-size: 13px; color: rgba(244,241,232,.65); margin-top: auto; }
.visit__tile-arrow {
  position: absolute; right: 22px; top: 22px;
  font-family: var(--display); font-size: 36px;
  color: var(--blue); transition: transform .2s;
}
.visit__tile--phone { grid-area: phone; background: var(--blue); color: var(--ink); }
.visit__tile--phone .visit__tile-k { color: rgba(11,27,45,.65); }
.visit__tile--phone .visit__tile-sub { color: rgba(11,27,45,.7); }
.visit__tile--phone .visit__tile-arrow { color: var(--ink); }
.visit__tile--phone:hover { background: var(--paper); }
.visit__tile--phone:hover .visit__tile-arrow { transform: translateX(6px); }

.visit__tile--mail { grid-area: mail; }
.visit__tile--mail:hover { background: #243349; }
.visit__tile--mail:hover .visit__tile-arrow { transform: translateX(6px); }

.visit__tile--where { grid-area: where; }
.visit__tile--hours { grid-area: hours; }

.hours { border-collapse: collapse; width: 100%; margin-top: 8px; }
.hours th, .hours td { text-align: left; padding: 8px 0; border-bottom: 1px dashed rgba(244,241,232,.14); font-size: 14px; font-weight: 500; }
.hours th { width: 80px; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.08em; font-size: 12px; color: rgba(244,241,232,.65); }
.hours td { text-align: right; font-weight: 700; font-size: 13px; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours__off td, .hours__off th { color: rgba(244,241,232,.4); }

@media (max-width: 900px) {
  .visit__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "phone"
      "mail"
      "where"
      "hours";
  }
}


/* ─────────── Footer ─────────── */
.footer {
  background: #050D17;
  color: rgba(244,241,232,.7);
  padding: 56px 0 28px;
  border-top: 6px solid var(--blue);
}
.footer__inner { display: grid; gap: 36px; }
.footer__brand { display: inline-flex; align-items: center; gap: 14px; }
.footer__mark { width: 56px; height: 56px; object-fit: contain; }
.footer__word { font-family: var(--display); font-size: 36px; line-height: 1; letter-spacing: 0.04em; color: var(--paper); }
.footer__sub { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244,241,232,.55); margin-top: 4px; }
.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 28px 0; border-top: 1px solid rgba(244,241,232,.1); border-bottom: 1px solid rgba(244,241,232,.1); }
.footer__cols h5 { margin: 0 0 12px; font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); }
.footer__cols p { margin: 0; font-size: 14px; line-height: 1.6; }
.footer__cols a:hover { color: var(--blue); }
.footer__social a { display: inline-flex; align-items: center; gap: 8px; line-height: 2; }
.footer__social a svg { flex-shrink: 0; opacity: .8; }
.footer__social a:hover svg { opacity: 1; }
.footer__legal { display: flex; justify-content: space-between; gap: 8px 16px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: rgba(244,241,232,.4); text-transform: uppercase; flex-wrap: wrap; }

@media (max-width: 1000px) {
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .footer__cols { grid-template-columns: 1fr; gap: 24px; }
}

/* ════════════════════════════════════════════════════════════
   DP AUTOS DETAILING — the second half of the site
   Premium / showroom feel: photographic, glossy, dark-led.
   ════════════════════════════════════════════════════════════ */

/* ── Big divider that announces the switch of business ── */
.split {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  border-top: 6px solid var(--blue);
  text-align: center;
  padding: clamp(40px, 6vw, 72px) 0 clamp(28px, 4vw, 44px);
  overflow: hidden;
}
.split::after {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: radial-gradient(60% 80% at 50% 50%, #000 0%, transparent 80%);
}
.split__inner { position: relative; z-index: 1; }
.split__rule {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(244,241,232,.5);
  margin-bottom: 18px;
}
.split__rule::before, .split__rule::after {
  content: ""; height: 1px; width: clamp(40px, 14vw, 160px);
  background: rgba(244,241,232,.22);
}
.split__same { color: var(--blue); }

/* ── Detailing hero ── */
.dhero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
.dhero__media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  --slot-radius: 0px;
}
.dhero__media image-slot { width: 100%; height: 100%; }
.dhero::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(11,27,45,.62) 0%, rgba(11,27,45,.78) 60%, rgba(11,27,45,.94) 100%);
}
.dhero__inner {
  position: relative; z-index: 2;
  padding: clamp(64px, 12vw, 150px) 0 clamp(56px, 9vw, 120px);
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, .9fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
}
.dhero__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(46px, 12vw, 168px);
  line-height: 0.86; letter-spacing: -0.01em;
  text-transform: uppercase; margin: 14px 0 0;
  overflow-wrap: break-word;
}
.dhero__title em { font-style: normal; color: var(--blue); display: block; }
.dhero__lede {
  font-size: clamp(15px, 1.5vw, 19px);
  color: rgba(244,241,232,.85);
  max-width: 46ch; margin: 0 0 24px; text-wrap: pretty;
}
.dhero__side { padding-bottom: 6px; }
.dhero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── Detailing marquee (mirror of garage strip, inverted) ── */
.strip--detail { background: var(--ink); color: var(--blue); border-top: 2px solid var(--blue); border-bottom: 2px solid var(--blue); }
.strip--detail .strip__dot { color: rgba(42,157,244,.5); }

/* ── Signature treatments: large image-led cards ── */
.detail { padding: clamp(72px, 9vw, 128px) 0; background: var(--paper); }
.sig {
  list-style: none; margin: 0 0 1px; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.sig__card { background: var(--paper); display: flex; flex-direction: column; }
.sig__shot { position: relative; aspect-ratio: 4 / 3; --slot-radius: 0px; background: var(--paper-2); }
.sig__shot image-slot { width: 100%; height: 100%; }
.sig__tagnum {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; color: var(--ink);
  background: var(--blue); padding: 3px 9px;
}
.sig__body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.sig__title {
  font-family: var(--display); font-weight: 400; font-size: 30px;
  line-height: 1; letter-spacing: 0.02em; text-transform: uppercase; margin: 0;
}
.sig__desc { margin: 0; font-size: 14px; line-height: 1.55; color: var(--ink-soft); text-wrap: pretty; }

@media (max-width: 920px) { .sig { grid-template-columns: 1fr; } .sig__shot { aspect-ratio: 16 / 9; } }

/* ── Full feature list ── */
.feats { margin-top: 56px; }
.feats__head {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  margin-bottom: 22px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 14px;
}
.feats__title { font-family: var(--display); font-weight: 400; font-size: clamp(26px, 3vw, 38px); text-transform: uppercase; letter-spacing: 0.02em; margin: 0; line-height: 1; }
.feats__note { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: var(--ink-mute); text-transform: uppercase; }
.feats__grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.feat {
  background: var(--paper); padding: 18px 18px 20px;
  display: flex; flex-direction: column; gap: 8px;
  transition: background .15s, color .15s;
}
.feat:hover { background: var(--ink); color: var(--paper); }
.feat:hover .feat__k, .feat:hover .feat__d { color: rgba(244,241,232,.7); }
.feat:hover .feat__ico { color: var(--blue); }
.feat__ico { width: 30px; height: 30px; color: var(--blue); }
.feat__ico svg { width: 100%; height: 100%; }
.feat__t { font-family: var(--display); font-weight: 400; font-size: 21px; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1; margin: 4px 0 0; }
.feat__d { margin: 0; font-size: 12.5px; line-height: 1.45; color: var(--ink-soft); }

@media (max-width: 1000px) { .feats__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px)  { .feats__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .feats__grid { grid-template-columns: 1fr; } }

/* ── Showcase gallery (the stock-image wall) ── */
.gallery { padding: clamp(72px, 9vw, 128px) 0; background: var(--ink); color: var(--paper); }
.gallery .section-head__title { color: var(--paper); }
.gallery .section-head__lede { color: rgba(244,241,232,.7); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 10px;
}
.gallery__cell { position: relative; --slot-radius: 4px; background: var(--ink-soft); border-radius: 4px; overflow: hidden; }
.gallery__cell image-slot { width: 100%; height: 100%; }
.gallery__cell--tall { grid-row: span 2; }
.gallery__cell--wide { grid-column: span 2; }
.gallery__cap {
  position: absolute; left: 10px; bottom: 10px; z-index: 3;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--paper);
  background: rgba(11,27,45,.7); padding: 3px 8px; border-radius: 2px;
  pointer-events: none;
}
@media (max-width: 900px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery__cell--wide { grid-column: span 2; }
  .gallery__cell--tall { grid-row: span 1; }
}
@media (max-width: 520px) {
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery__cell--wide { grid-column: span 1; }
}

/* ── Packages ── */
.packs { padding: clamp(72px, 9vw, 128px) 0; background: var(--paper-2); border-top: 1px solid var(--line); }
.packs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pack {
  background: var(--paper); border: 1px solid var(--line);
  padding: 30px 28px 28px; display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.pack--feature { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.pack__flag {
  position: absolute; top: -1px; right: 22px;
  background: var(--blue); color: var(--ink);
  font-family: var(--mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 10px;
}
.pack__name { font-family: var(--display); font-weight: 400; font-size: 34px; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1; margin: 0; }
.pack__from { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--ink-mute); text-transform: uppercase; }
.pack--feature .pack__from { color: rgba(244,241,232,.6); }
.pack__price { font-family: var(--display); font-size: 52px; line-height: .9; color: var(--blue); }
.pack__price small { font-family: var(--mono); font-size: 13px; color: var(--ink-mute); letter-spacing: 0.04em; }
.pack--feature .pack__price small { color: rgba(244,241,232,.6); }
.pack__list { list-style: none; margin: 0; padding: 18px 0 0; border-top: 1px dashed var(--line); display: grid; gap: 11px; flex: 1; }
.pack--feature .pack__list { border-top-color: rgba(244,241,232,.18); }
.pack__list li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; font-size: 14px; line-height: 1.4; color: var(--ink-soft); }
.pack--feature .pack__list li { color: rgba(244,241,232,.82); }
.pack__list li::before { content: "✓"; color: var(--blue); font-weight: 700; }
.pack__cta {
  display: inline-flex; align-items: center; justify-content: space-between;
  background: var(--ink); color: var(--paper); padding: 13px 18px;
  font-family: var(--display); font-size: 20px; letter-spacing: 0.03em;
  transition: background .15s, color .15s;
}
.pack__cta:hover { background: var(--blue); color: var(--ink); }
.pack--feature .pack__cta { background: var(--blue); color: var(--ink); }
.pack--feature .pack__cta:hover { background: var(--paper); }
@media (max-width: 920px) { .packs__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

@media (max-width: 760px) {
  .dhero__inner { grid-template-columns: 1fr; align-items: start; gap: 22px; }
}

/* ── Mobile hardening for the detailing half ── */
@media (max-width: 600px) {
  .dhero__inner { padding: clamp(56px, 22vw, 96px) 0 clamp(40px, 12vw, 72px); }
  .dhero__ctas { width: 100%; }
  .dhero__ctas .btn { width: 100%; justify-content: space-between; }
  .split { padding: 40px 0 28px; }
  .split__rule { gap: 10px; flex-wrap: wrap; }
  .sig__title { font-size: 26px; }
  .feats { margin-top: 40px; }
  .pack { padding: 26px 22px 24px; }
  .pack__price { font-size: 46px; }
  .gallery__cap { font-size: 9.5px; }
}
@media (max-width: 360px) {
  .dhero__title { font-size: 42px; }
  .pack__name { font-size: 30px; }
}

/* Tweaks panel needs the dc-inv-zoom var */
:root { --dc-inv-zoom: 1; }
