/* Quick Start Mobile Mechanic — charcoal + electric yellow trade brand
   Fonts: Oswald (display) + Inter (body) — clean, professional, established. */

:root {
  --ink: #111111;
  --ink-2: #1f1f1f;
  --ink-3: #2a2a2a;
  --line: #2c2c2c;
  --mute: #6f6f6f;
  --paper: #f7f7f5;
  --paper-2: #ffffff;
  --yellow: #ffd60a;
  --yellow-2: #e7c200;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
[hidden] { display: none !important; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: 'Oswald', 'Inter', system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.2rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); }
h3 { font-size: 1.2rem; letter-spacing: .04em; }
h4 { font-size: .9rem; letter-spacing: .12em; color: var(--ink); }

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--yellow-2); }

img { display: block; max-width: 100%; }

.eyebrow {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .26em;
  font-size: .78rem;
  color: var(--yellow-2);
  margin: 0 0 1rem;
  font-weight: 500;
}

.lede {
  font-size: 1.1rem;
  color: #3a3a3a;
  max-width: 60ch;
}

.muted { color: var(--mute); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1.4rem;
  background: var(--ink);
  border-bottom: 3px solid var(--yellow);
}
.brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .05em;
}
.brand img {
  height: 44px;
  width: auto;
  background: #fff;
  padding: 4px;
  border-radius: 4px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text strong {
  font-size: 1.05rem;
  letter-spacing: .08em;
}
.brand-text span {
  font-size: .68rem;
  letter-spacing: .2em;
  color: var(--yellow);
  margin-top: 3px;
}

.nav-desktop {
  display: flex;
  gap: 1.8rem;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .82rem;
}
.nav-desktop a {
  color: #f4f4f4;
  padding: .4rem 0;
  border-bottom: 2px solid transparent;
}
.nav-desktop a:hover, .nav-desktop a.active {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}
.head-cta {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  padding: .55rem .95rem;
  border-radius: 2px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .85rem;
}
.head-cta:hover { background: #fff; color: var(--ink); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  background: var(--yellow);
  width: 100%;
  border-radius: 2px;
}

.nav-mobile {
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--ink);
  z-index: 40;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.6rem;
  gap: 1.1rem;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  border-top: 1px solid #222;
}
.nav-mobile a {
  color: #f4f4f4;
  font-size: 1.15rem;
  padding: .4rem 0;
  border-bottom: 1px solid #1c1c1c;
}
.nav-mobile a.active { color: var(--yellow); }
.mob-cta {
  margin-top: 1rem;
  background: var(--yellow) !important;
  color: var(--ink) !important;
  text-align: center;
  border: 0 !important;
  padding: 1rem !important;
  font-size: 1rem !important;
}

@media (min-width: 921px) {
  .nav-mobile { display: none !important; }
}
@media (max-width: 920px) {
  .nav-desktop, .head-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media video, .hero-media .img-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-fallback {
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.45) 55%, rgba(0,0,0,.1) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 5rem 1.6rem;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  color: #fff;
}
.hero-inner h1 { color: #fff; }
.hero-inner .lede { color: rgba(255,255,255,.88); }
.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .95rem 1.4rem;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .92rem;
  font-weight: 600;
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s, background .15s, color .15s;
}
.btn.primary { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.btn.primary:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn.ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn.ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn.dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn.dark:hover { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }

/* ---------- Sections ---------- */
section { padding: 4.5rem 1.6rem; }
.section-inner { max-width: 1180px; margin: 0 auto; }

.strip {
  background: var(--ink);
  color: #f6f6f6;
  padding: 1.6rem;
}
.strip-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.strip-grid > div {
  border-right: 1px solid #2a2a2a;
  padding: .5rem 1rem;
}
.strip-grid > div:last-child { border-right: 0; }
.strip-grid .num {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  color: var(--yellow);
  letter-spacing: .05em;
  margin-bottom: .15rem;
}
.strip-grid .lbl {
  display: block;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #aaa;
}
@media (max-width: 720px) {
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-grid > div { border-right: 0; border-bottom: 1px solid #2a2a2a; padding: .8rem; }
}

.band {
  background: var(--paper-2);
  text-align: center;
}
.band .section-inner { max-width: 820px; }
.band p { font-size: 1.1rem; color: #3a3a3a; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.service-card {
  background: var(--paper-2);
  border: 1px solid #e6e6e2;
  border-left: 4px solid var(--yellow);
  padding: 1.6rem;
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.service-card h3 { color: var(--ink); margin-bottom: .55rem; }
.service-card p { color: #4a4a4a; font-size: .96rem; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.feature-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  background: var(--paper-2);
}
.feature-grid > .fg-img {
  background-size: cover;
  background-position: center;
  min-height: 360px;
}
.feature-grid > .fg-text {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-grid.reverse > .fg-img { order: 2; }
@media (max-width: 880px) {
  .feature-grid, .feature-grid.reverse { grid-template-columns: 1fr; }
  .feature-grid > .fg-img, .feature-grid.reverse > .fg-img { min-height: 280px; order: 0; }
  .feature-grid > .fg-text { padding: 2rem 1.6rem; }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
}
.gallery-grid .tile {
  background-size: cover;
  background-position: center;
  aspect-ratio: 4 / 3;
}
.gallery-grid .tile.tall { aspect-ratio: 3 / 4; grid-row: span 2; }
@media (max-width: 800px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .7rem;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .88rem;
}
.areas-grid div {
  background: var(--paper-2);
  border: 1px solid #e6e6e2;
  padding: 1rem;
  text-align: center;
  color: var(--ink);
}
@media (max-width: 800px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.quote-card {
  background: var(--paper-2);
  border: 1px solid #e6e6e2;
  padding: 1.8rem;
  border-top: 3px solid var(--yellow);
}
.quote-card p { font-style: italic; color: #2c2c2c; }
.quote-card cite {
  font-style: normal;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--mute);
}
.stars { color: var(--yellow-2); letter-spacing: .15em; margin-bottom: .5rem; }
@media (max-width: 720px) { .quote-grid { grid-template-columns: 1fr; } }

.cta {
  background: var(--ink);
  color: #fff;
  text-align: center;
}
.cta h2 { color: #fff; }
.cta .lede { color: rgba(255,255,255,.85); margin-left: auto; margin-right: auto; }
.cta .hero-cta { justify-content: center; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.contact-card {
  background: var(--paper-2);
  padding: 2rem;
  border: 1px solid #e6e6e2;
  border-top: 3px solid var(--yellow);
}
.contact-card h3 { margin-bottom: .4rem; }
.contact-card a { color: var(--ink); border-bottom: 1px dotted var(--ink); }
.contact-card a:hover { color: var(--yellow-2); border-color: var(--yellow-2); }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

.page-head {
  padding: 5rem 1.6rem 2.5rem;
  max-width: 1180px;
  margin: 0 auto;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.list-clean li {
  padding: .55rem 0 .55rem 1.6rem;
  position: relative;
  border-bottom: 1px solid #eee;
}
.list-clean li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15em;
  width: 12px;
  height: 2.5px;
  background: var(--yellow);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-2);
  color: #cfcfcf;
  padding: 3.2rem 1.6rem 1.4rem;
  border-top: 3px solid var(--yellow);
}
.foot-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.foot-grid h4 { color: #fff; margin-bottom: .9rem; font-size: .82rem; letter-spacing: .18em; }
.foot-grid a { color: #cfcfcf; }
.foot-grid a:hover { color: var(--yellow); }
.foot-base {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 1.4rem;
  border-top: 1px solid #2a2a2a;
  font-size: .82rem;
  color: #777;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.foot-brand {
  display: flex;
  gap: .65rem;
  align-items: center;
  margin-bottom: .8rem;
}
.foot-brand img { height: 40px; background: #fff; padding: 4px; border-radius: 4px; }
.foot-links { list-style: none; padding: 0; margin: 0; }
.foot-links li { padding: .25rem 0; }
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; } }

/* ---------- Slideshow ---------- */
.slideshow { position: absolute; inset: 0; }
.slideshow .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.slideshow .slide.on { opacity: 1; }
