/* ============================================================
   OBSIDIAN PRECISION - dark luxury
   ============================================================ */

:root {
  --bg: hsl(240 6% 5%);
  --bg-raise: hsl(240 5% 8%);
  --fg: hsl(0 0% 88%);
  --muted: hsl(240 4% 40%);
  --muted-dim: hsl(240 4% 28%);
  --accent: hsl(42 35% 62%);
  --accent-dim: hsl(42 35% 62% / 0.3);
  --hairline: hsl(240 4% 16%);
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --dur: 500ms;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: hsl(42 35% 62% / 0.25); color: hsl(0 0% 96%); }

img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

/* ---------- primitives ---------- */

.container {
  width: min(1160px, 100% - 3rem);
  margin-inline: auto;
}
.container--narrow { max-width: 720px; }

.eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow--gold { color: var(--accent); }

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-top: 1.25rem;
}

.specs {
  font-family: var(--mono);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}
.specs--inline { font-size: 0.9em; color: var(--fg); }

.hairline {
  height: 1px;
  background: var(--accent-dim);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              opacity var(--dur) var(--ease);
}

.btn--gold {
  background: var(--accent);
  color: hsl(240 6% 7%);
  border-color: var(--accent);
}
.btn--gold:hover { background: hsl(42 42% 70%); border-color: hsl(42 42% 70%); }

.btn--outline {
  border-color: var(--accent-dim);
  color: var(--accent);
  padding: 0.65rem 1.4rem;
}
.btn--outline:hover { border-color: var(--accent); }

.btn--ghost {
  border-color: var(--hairline);
  color: var(--fg);
  padding: 0.65rem 1.6rem;
}
.btn--ghost:hover { border-color: var(--muted); }

.textlink {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.textlink:hover { color: var(--accent); border-bottom-color: var(--accent-dim); }
.textlink span { display: inline-block; transition: transform var(--dur) var(--ease); }
.textlink:hover span { transform: translateX(4px); }

/* ---------- reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.reveal[data-delay="1"] { transition-delay: 90ms; }
.reveal[data-delay="2"] { transition-delay: 180ms; }
.reveal[data-delay="3"] { transition-delay: 270ms; }
.reveal[data-delay="4"] { transition-delay: 360ms; }
.reveal[data-delay="5"] { transition-delay: 450ms; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   NAVBAR
   ============================================================ */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 1.4rem clamp(1.5rem, 4vw, 3.5rem);
  background: transparent;
  transition: background-color var(--dur) var(--ease),
              padding var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: hsl(240 6% 4% / 0.8);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--hairline);
  padding-block: 0.95rem;
}

.nav__wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav__mark { width: 16px; height: 16px; color: var(--accent); flex: none; }

.nav__links {
  display: flex;
  gap: 2.6rem;
  margin-left: auto;
}
.nav__links a {
  position: relative;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg);
  padding-block: 0.4rem;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 400ms var(--ease);
}
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }
.nav__links a.active { color: var(--accent); }

.nav__cta { flex: none; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 0.5rem;
  margin-left: auto;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 1px;
  background: var(--fg);
  transition: transform 400ms var(--ease), opacity 400ms var(--ease);
}
.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.2rem;
  background: hsl(240 6% 4% / 0.96);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 200;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.mobile-menu__cta { color: var(--accent); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding-bottom: clamp(4rem, 10vh, 7rem);
}

.hero__stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  width: min(900px, 90vw);
  height: 420px;
  background: radial-gradient(ellipse at center,
    hsl(42 30% 40% / 0.10) 0%,
    hsl(240 6% 5% / 0) 65%);
}

.hero__can {
  width: min(820px, 92vw);
  transform: translateY(-9vh);
  animation: canSway 12s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes canSway {
  from { transform: translateY(-9vh) rotate(-4deg); }
  to   { transform: translateY(-9vh) rotate(4deg); }
}

.can-svg { width: 100%; height: auto; }

.hero__copy {
  position: relative;
  z-index: 2;
  width: min(1160px, 100% - 3rem);
  margin-inline: auto;
}

.hero__title {
  font-size: clamp(3rem, 8.5vw, 6.8rem);
  font-weight: 200;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin-top: 1.4rem;
}

.hero__sub {
  max-width: 34rem;
  margin-top: 1.6rem;
  margin-bottom: 2.8rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero__scrollcue {
  position: absolute;
  right: clamp(1.5rem, 4vw, 3.5rem);
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.hero__scrollcue-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}
.hero__scrollcue-line {
  width: 1px;
  height: 72px;
  background: var(--accent);
  transform-origin: top;
  animation: drawLine 2.6s var(--ease) infinite;
}
@keyframes drawLine {
  0%   { transform: scaleY(0); opacity: 1; }
  55%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ============================================================
   LINEUP
   ============================================================ */

.lineup { padding-block: clamp(6rem, 12vh, 9rem) 0; }

.product {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding-block: clamp(6rem, 10vw, 8rem);
}
.product--flip .product__visual { order: 2; }
.product--flip .product__info { order: 1; }

.product__visual { position: relative; }
.product__glow {
  position: absolute;
  inset: -10% -6%;
  background: radial-gradient(ellipse at center,
    hsl(0 0% 88% / 0.035) 0%,
    transparent 65%);
  pointer-events: none;
}
.product__visual .can-svg {
  transition: transform 600ms var(--ease);
}
.product:hover .product__visual .can-svg { transform: translateY(-6px); }

.product__name {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-top: 1.1rem;
}

.product__desc {
  color: var(--muted);
  max-width: 26rem;
  margin-top: 1.2rem;
}

.product .specs {
  display: block;
  margin-top: 1.8rem;
  font-size: 0.85rem;
  color: var(--fg);
}

/* ============================================================
   SOUND
   ============================================================ */

.sound {
  padding-block: clamp(7rem, 14vh, 10rem);
  text-align: center;
}

.sound__lede {
  color: var(--muted);
  margin-top: 1.6rem;
  max-width: 34rem;
  margin-inline: auto;
}

.sound__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-top: 4.5rem;
  text-align: left;
}

.wave {
  position: relative;
  padding: 1.6rem 1.6rem 1.2rem;
  border: 1px solid var(--hairline);
  transition: border-color var(--dur) var(--ease);
  cursor: crosshair;
}
.wave:hover, .wave:focus-visible { border-color: hsl(240 4% 26%); }

.wave__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.2rem;
}
.wave__label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.wave--suppressed .wave__label { color: var(--accent); }

.wave__db {
  font-size: 1.05rem;
  color: var(--fg);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 400ms var(--ease), transform 400ms var(--ease);
}
.wave:hover .wave__db,
.wave:focus-visible .wave__db,
.wave.playing .wave__db { opacity: 1; transform: none; }
.wave__db-note {
  margin-left: 0.5em;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.wave__svg { width: 100%; height: 150px; }
.wave__axis { stroke: hsl(240 4% 14%); stroke-width: 1; }
.wave__line {
  fill: none;
  stroke: hsl(0 0% 70%);
  stroke-width: 1;
}
.wave--suppressed .wave__line { stroke: var(--accent); }

.wave__playhead {
  stroke: hsl(42 35% 62% / 0.8);
  stroke-width: 1;
  opacity: 0;
}
.wave.playing .wave__playhead { opacity: 1; }

.sound__foot { margin-top: 3rem; }

.sound__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
}

.mute {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.6rem 0.4rem;
  transition: color var(--dur) var(--ease);
}
.mute:hover { color: var(--fg); }
.mute[aria-pressed="false"] { color: var(--accent); }
.mute[aria-pressed="false"] .mute__slash { display: none; }
.mute[aria-pressed="true"] .mute__waves { display: none; }

.sound__note {
  margin-top: 2.4rem;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 32rem;
  margin-inline: auto;
}

/* ============================================================
   CRAFT
   ============================================================ */

.craft {
  padding-block: clamp(7rem, 14vh, 10rem);
  border-top: 1px solid var(--hairline);
}

.craft__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.craft-svg {
  width: 100%;
  height: auto;
  border: 1px solid var(--hairline);
}

.spark { stroke-dasharray: 130; animation: sparkFly 1.8s linear infinite; opacity: 0; }
.spark.s2 { animation-delay: 0.35s; animation-duration: 1.5s; }
.spark.s3 { animation-delay: 0.7s; animation-duration: 2.1s; }
.spark.s4 { animation-delay: 0.2s; animation-duration: 1.6s; }
.spark.s5 { animation-delay: 1s; animation-duration: 1.9s; }
.spark.s6 { animation-delay: 0.55s; animation-duration: 1.4s; }
@keyframes sparkFly {
  0%   { stroke-dashoffset: 130; opacity: 0; }
  12%  { opacity: 0.9; }
  60%  { stroke-dashoffset: -130; opacity: 0.5; }
  100% { stroke-dashoffset: -130; opacity: 0; }
}
.dot { animation: dotBlink 1.8s ease-in-out infinite; opacity: 0; }
.dot.d2 { animation-delay: 0.4s; } .dot.d3 { animation-delay: 0.8s; }
.dot.d4 { animation-delay: 0.25s; } .dot.d5 { animation-delay: 1.1s; }
@keyframes dotBlink {
  0%, 40% { opacity: 0; }
  55% { opacity: 1; }
  75%, 100% { opacity: 0; }
}
.spark-core { animation: corePulse 1.2s ease-in-out infinite alternate; }
@keyframes corePulse { from { opacity: 0.75; } to { opacity: 1; } }

.craft__paras { margin-top: 2.2rem; display: grid; gap: 1.3rem; }
.craft__paras p { color: var(--muted); max-width: 34rem; }

.craft__stats {
  display: flex;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  margin-top: 3.2rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--hairline);
}
.craft__stat { display: grid; gap: 0.4rem; }
.craft__stat .specs { font-size: 1.15rem; color: var(--fg); }
.craft__stat span:last-child {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   PROCESS
   ============================================================ */

.process {
  padding-block: clamp(7rem, 14vh, 10rem);
  border-top: 1px solid var(--hairline);
}

.process__head { text-align: center; }

.timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: 5rem;
  counter-reset: step;
}

.timeline__step { position: relative; padding-top: 2.2rem; }
.timeline__step::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-dim), var(--hairline));
}
.timeline__step::after {
  content: "";
  position: absolute;
  top: -2.5px; left: 0;
  width: 6px; height: 6px;
  transform: rotate(45deg);
  background: var(--accent);
}

.timeline__num {
  font-size: 0.75rem;
  color: var(--accent);
}
.timeline__step h3 {
  font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-top: 0.9rem;
}
.timeline__step p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.8rem;
}

.process__note {
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 36rem;
  margin: 4.5rem auto 0;
}
.process__cta { text-align: center; margin-top: 2.6rem; }

/* ============================================================
   DEALERS
   ============================================================ */

.dealers {
  padding-block: clamp(7rem, 14vh, 10rem);
  border-top: 1px solid var(--hairline);
  text-align: center;
}

.locator {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1.6rem;
  margin-top: 3.5rem;
}

.locator__zip {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--muted-dim);
  color: var(--fg);
  font-size: 1.3rem;
  letter-spacing: 0.35em;
  padding: 0.6rem 0.2rem;
  width: 11ch;
  text-align: center;
  transition: border-color var(--dur) var(--ease);
  border-radius: 0;
}
.locator__zip::placeholder {
  color: var(--muted-dim);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 300;
}
.locator__zip:focus {
  outline: none;
  border-bottom-color: var(--accent);
}

.locator__error {
  margin-top: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: hsl(10 45% 58%);
}

.locator__results {
  margin-top: 3.5rem;
  text-align: left;
  max-width: 560px;
  margin-inline: auto;
}
.locator__count {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.4rem;
}
.dealer-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--hairline);
  opacity: 0;
  transform: translateY(10px);
  animation: rowIn 500ms var(--ease) forwards;
}
.dealer-row:nth-child(3) { animation-delay: 90ms; }
.dealer-row:nth-child(4) { animation-delay: 180ms; }
.dealer-row:last-child { border-bottom: 1px solid var(--hairline); }
@keyframes rowIn { to { opacity: 1; transform: none; } }

.dealer-row__name { font-weight: 400; font-size: 0.95rem; }
.dealer-row__meta {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 0.15rem;
}
.dealer-row .specs { color: var(--accent); font-size: 0.8rem; white-space: nowrap; }

.dealers__disclaimer {
  margin-top: 4rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-dim);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--bg-raise);
  border-top: 1px solid var(--hairline);
  padding-top: 4.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding-bottom: 4rem;
}

.footer__brand p {
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 20rem;
  margin-top: 1.4rem;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__cols h4 { margin-bottom: 1.3rem; font-weight: 400; }
.footer__cols a {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  padding-block: 0.32rem;
  transition: color var(--dur) var(--ease);
}
.footer__cols a:hover { color: var(--accent); }

.footer__legal {
  border-top: 1px solid var(--hairline);
  padding-block: 1.6rem;
}
.footer__legal p {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-dim);
}

/* ============================================================
   MODAL
   ============================================================ */

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}
.modal__scrim {
  position: absolute;
  inset: 0;
  background: hsl(240 6% 3% / 0.82);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.modal__panel {
  position: relative;
  width: min(560px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--bg-raise);
  border: 1px solid var(--hairline);
  padding: clamp(2.2rem, 5vw, 3.2rem);
  animation: panelIn 450ms var(--ease);
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

.modal__close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  padding: 0.6rem;
  color: var(--muted);
  transition: color var(--dur) var(--ease);
}
.modal__close:hover { color: var(--fg); }

.modal__title {
  font-size: 2.2rem;
  font-weight: 200;
  letter-spacing: -0.02em;
  margin-top: 0.9rem;
}
.modal__desc { color: var(--muted); margin-top: 1rem; font-size: 0.95rem; }

.modal__specs {
  margin-block: 2.2rem;
  border-top: 1px solid var(--hairline);
}
.modal__specs > div {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.82rem;
}
.modal__specs dt {
  color: var(--muted);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  align-self: center;
}
.modal__specs dd { color: var(--fg); text-align: right; }

body.modal-open { overflow: hidden; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .product {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-block: 5rem;
  }
  .product--flip .product__visual { order: 0; }
  .product--flip .product__info { order: 1; }

  .sound__grid { grid-template-columns: 1fr; }

  .craft__grid { grid-template-columns: 1fr; }

  .timeline { grid-template-columns: 1fr; gap: 3rem; }
  .timeline__step {
    padding-top: 0;
    padding-left: 2rem;
  }
  .timeline__step::before {
    top: 0; bottom: -3rem; left: 0; right: auto;
    width: 1px; height: auto;
    background: linear-gradient(180deg, var(--accent-dim), var(--hairline));
  }
  .timeline__step:last-child::before { bottom: 0; }
  .timeline__step::after { top: 6px; left: -2.5px; }

  .footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero__can { width: 140vw; max-width: none; }
  .locator { flex-direction: column; align-items: center; gap: 2rem; }
  .craft__stats { flex-wrap: wrap; }
  .sound__controls { flex-direction: column; gap: 1rem; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  .hero__can { animation: none; }
  .hero__scrollcue-line { animation: none; transform: none; }
  .spark, .dot, .spark-core { animation: none; opacity: 0.4; }
  .reveal { opacity: 1; transform: none; }
  .dealer-row { animation: none; opacity: 1; transform: none; }
}

:root { color-scheme: dark; }
