/* ============================================================
   Limitless Diesel & Offroad — client-branded demo site (v2)
   Brand system: SOURCED from real research (Instagram @limitless
   dieseloffroad real "LD" chrome/cyan-gradient monogram logo on
   black; Google Maps photos of the shop's white/black corrugated
   bay + black lifted trucks + "LIMITLESS 4x4/OFFROAD" bay banner;
   Google reviews naming steering-wobble/turbo/lift-kit diesel
   work) — verified 2026-08-28, see README.
   Palette: near-black + electric cyan-blue + neon magenta +
   chrome highlight. Signature element: a circular instrument
   gauge/dial (nav logomark, hero centerpiece, rating dial) —
   echoes real diesel-performance gauge culture and the shop's
   own circular chrome badge logo, without reproducing it.
   Typography: Barlow Condensed (display) + Barlow (body) +
   Share Tech Mono (HUD/gauge readout accents).
   This page intentionally carries ZERO Lewis Digital gold.
   ============================================================ */

:root {
  --black: #06070b;         /* page base — cool blue-black, not neutral carbon */
  --black-2: #0a0c12;       /* header / recessed panels */
  --panel: #0e121a;         /* card / panel surface */
  --panel-2: #131826;       /* raised panel */
  --line: #202838;          /* hairline border on dark */
  --line-bright: #2c3854;

  --cyan: #2fe0ff;          /* electric cyan-blue — primary accent */
  --cyan-soft: #8beeff;
  --cyan-deep: #0aa9c9;     /* hover/active */
  --cyan-dim: rgba(47, 224, 255, 0.14);

  --magenta: #ff35c8;       /* neon magenta — secondary accent, used sparingly */
  --magenta-deep: #d61ea3;
  --magenta-dim: rgba(255, 53, 200, 0.14);

  --chrome-hi: #eef3f8;     /* chrome highlight */
  --chrome-lo: #7c8798;     /* chrome shadow */

  --white: #eef3f8;
  --muted: #93a0b4;         /* cool gray-blue secondary text */
  --muted-2: #5d6779;

  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-mono: "Share Tech Mono", "Consolas", monospace;

  --radius: 4px;
  --shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.7);
  --glow-cyan: 0 0 24px rgba(47, 224, 255, 0.35);
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  background-image:
    linear-gradient(rgba(47, 224, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 224, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
ul, ol { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

.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;
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
}

.eyebrow::before { content: "// "; color: var(--muted-2); }

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.7rem);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 8px;
}

.section__lede {
  margin-top: 14px;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.02rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  cursor: pointer;
}
.btn--cyan { background: var(--cyan); color: #051217; }
.btn--cyan:hover { background: var(--cyan-soft); box-shadow: var(--glow-cyan); transform: translateY(-1px); }
.btn--line { border-color: var(--line-bright); color: var(--white); background: transparent; }
.btn--line:hover { border-color: var(--cyan); color: var(--cyan); }
.btn--big { padding: 17px 34px; font-size: 1.15rem; }

/* ============================================================
   Header / HUD nav
   ============================================================ */
.hud-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(6, 7, 11, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.hud-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 28px;
}

.hud-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.hud-mark__dial { width: 40px; height: 40px; flex: none; }

.hud-mark__text { display: flex; flex-direction: column; line-height: 1.15; }
.hud-mark__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
}
.hud-mark__tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}

.hud-nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.hud-nav__links a:not(.hud-nav__cta) {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.hud-nav__links a:not(.hud-nav__cta):hover { color: var(--cyan); border-color: var(--cyan); }

.hud-nav__cta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--black);
  background: var(--cyan);
  text-decoration: none;
  padding: 9px 16px;
  border-radius: var(--radius);
  transition: background 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.hud-nav__cta:hover { background: var(--cyan-soft); box-shadow: var(--glow-cyan); }

@media (max-width: 760px) {
  .hud-nav__links a:not(.hud-nav__cta) { display: none; }
  .hud-nav__inner { padding: 12px 20px; }
}

/* ============================================================
   Hero — centered emblem-first layout (no split image, no
   full-bleed background photo)
   ============================================================ */
.hero {
  position: relative;
  padding: 84px 0 64px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 620px;
  background: radial-gradient(closest-side, rgba(47, 224, 255, 0.16), transparent 70%);
  pointer-events: none;
}

.hero__inner { position: relative; z-index: 1; }

.hero__dial-wrap {
  width: 168px;
  height: 168px;
  margin: 0 auto 22px;
  filter: drop-shadow(0 0 34px rgba(47, 224, 255, 0.35));
}

@keyframes needle-sweep {
  0% { transform: rotate(-118deg); }
  70% { transform: rotate(122deg); }
  100% { transform: rotate(115deg); }
}
.hero__dial-wrap .gauge__needle {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  animation: needle-sweep 1.6s cubic-bezier(.2,.9,.25,1) 0.15s both;
}
@media (prefers-reduced-motion: reduce) {
  .hero__dial-wrap .gauge__needle { animation: none; transform: rotate(115deg); }
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan-soft);
}
.hero__eyebrow::before { content: "// "; color: var(--muted-2); }

.hero__title {
  margin-top: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: 0.01em;
  font-size: clamp(3.4rem, 10vw, 6.6rem);
  color: var(--white);
}
.hero__title .accent {
  background: linear-gradient(90deg, var(--cyan-soft), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__title .sub {
  display: block;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-top: 4px;
}

.hero__tagline {
  max-width: 56ch;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero__actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__readout {
  margin: 44px auto 0;
  display: inline-flex;
  gap: 0;
  border: 1px solid var(--line-bright);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  flex-wrap: wrap;
}
.hero__readout-item {
  padding: 14px 26px;
  border-right: 1px solid var(--line-bright);
  text-align: left;
}
.hero__readout-item:last-child { border-right: none; }
.hero__readout-value {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  color: var(--cyan);
  display: block;
}
.hero__readout-label {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 3px;
  display: block;
}

/* ============================================================
   Services — "The Work": bordered tile grid (not a numbered
   index, not chevrons, not two-letter ticket codes)
   ============================================================ */
.work { padding: 92px 0; border-bottom: 1px solid var(--line); }

.work__head { text-align: left; }

.work__source {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--cyan-soft);
  border-left: 2px solid var(--cyan);
  padding-left: 12px;
}

.tile-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.tile {
  background: var(--panel);
  padding: 30px 26px;
  position: relative;
  transition: background 0.2s ease;
}
.tile:hover { background: var(--panel-2); }
.tile::before,
.tile::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--cyan);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.tile::before { top: 8px; left: 8px; border-top: 2px solid; border-left: 2px solid; }
.tile::after { bottom: 8px; right: 8px; border-bottom: 2px solid; border-right: 2px solid; }
.tile:hover::before, .tile:hover::after { opacity: 1; }

.tile__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--line-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
}
.tile__icon svg { width: 20px; height: 20px; }

.tile__title {
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.28rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
}
.tile__text {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.work__note {
  margin-top: 26px;
  font-size: 0.9rem;
  color: var(--muted-2);
}
.work__note a { color: var(--cyan); text-decoration: underline; }

.work__photo { margin-top: 42px; max-width: 420px; }
.work__photo img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 3/4; object-fit: cover;
  border: 1px solid var(--line-bright); border-radius: var(--radius);
  box-shadow: 0 0 0 1px var(--cyan-dim);
}
.work__photo figcaption {
  margin-top: 8px; font-family: var(--font-mono); font-size: 0.74rem;
  color: var(--muted-2);
}

/* ============================================================
   About — split story + vertical HUD stat strip
   ============================================================ */
.about { padding: 92px 0; border-bottom: 1px solid var(--line); background: var(--black-2); }

.about__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.about__text { color: var(--muted); margin-top: 16px; font-size: 1.02rem; }
.about__text + .about__text { margin-top: 14px; }
.about__source {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--muted-2);
}

.about__side { display: flex; flex-direction: column; gap: 24px; }
.about__photo img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 3/2; object-fit: cover;
  border: 1px solid var(--line-bright); border-radius: var(--radius);
  box-shadow: 0 0 0 1px var(--cyan-dim);
}
.about__photo figcaption {
  margin-top: 8px; font-family: var(--font-mono); font-size: 0.74rem;
  color: var(--muted-2);
}

.stat-strip {
  border: 1px solid var(--line-bright);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-strip__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}
.stat-strip__row:last-child { border-bottom: none; }
.stat-strip__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat-strip__value {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--cyan);
}
.stat-strip__value--magenta { color: var(--magenta); }

@media (max-width: 860px) {
  .about__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Hours & location — single console/data-plate panel
   ============================================================ */
.console { padding: 92px 0; border-bottom: 1px solid var(--line); }

.console__panel {
  margin-top: 42px;
  border: 1px dashed var(--line-bright);
  border-radius: var(--radius);
  padding: 8px;
}
.console__panel-inner {
  border: 1px solid var(--line-bright);
  border-radius: 2px;
  background: var(--panel);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.console__col { padding: 34px 36px; }
.console__col + .console__col { border-left: 1px solid var(--line-bright); }
.console__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}
.console__value {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}
.console__value a { text-decoration: none; }
.console__value a:hover { color: var(--cyan); }
.console__meta {
  margin-top: 10px;
  font-size: 0.88rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

@media (max-width: 700px) {
  .console__panel-inner { grid-template-columns: 1fr; }
  .console__col + .console__col { border-left: none; border-top: 1px solid var(--line-bright); }
}

/* ============================================================
   Reviews — rating dial visualization
   ============================================================ */
.reviews { padding: 92px 0; border-bottom: 1px solid var(--line); background: var(--black-2); }

.reviews__grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: center;
}

.rating-dial { width: 200px; height: 200px; }
.rating-dial__caption {
  text-align: center;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  text-transform: uppercase;
}

.reviews__coming {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 0.86rem;
  color: var(--cyan-soft);
  border-left: 2px solid var(--magenta);
  padding-left: 12px;
}
.reviews__source { margin-top: 16px; font-size: 0.85rem; color: var(--muted-2); }

@media (max-width: 760px) {
  .reviews__grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .reviews__coming, .reviews__text { text-align: left; }
}

/* ============================================================
   Contact CTA
   ============================================================ */
.contact {
  padding: 96px 0;
  text-align: center;
  background:
    radial-gradient(closest-side at 50% 0%, rgba(255, 53, 200, 0.12), transparent 70%),
    var(--black);
}
.contact__title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--white);
}
.contact__text {
  max-width: 52ch;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.contact__actions { margin-top: 30px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.contact__directions { margin-top: 20px; }
.contact__directions a { color: var(--cyan); font-family: var(--font-mono); font-size: 0.85rem; text-decoration: underline; }

/* ============================================================
   Footer
   ============================================================ */
.footer { padding: 34px 0; border-top: 1px solid var(--line); }
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__business { font-size: 0.88rem; color: var(--muted); }
.footer__business a { color: var(--cyan-soft); text-decoration: none; }
.footer__credit { font-size: 0.8rem; color: var(--muted-2); }
.footer__credit a { color: var(--muted); }

/* ============================================================
   Section head shared
   ============================================================ */
.section-head { max-width: 720px; }
