/* Need 4 Detailing — mobile-first, minimal.
   Brand: JDM/performance. Green + teal on black, white text.
   Hex values confirmed from Matt's logo + business card. */

:root {
  --lime: #a6e338;
  --teal: #0097b2;
  --black: #000000;
  --ink-2: #161616;
  --white: #ffffff;
  --muted: #b8b8b8;
  --gray: #a6a6a6;
  --gradient: linear-gradient(90deg, #0097b2, #7ed957);
  --maxw: 64rem;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }

a { color: var(--teal); }
a:hover { color: var(--lime); }

h1, h2, h3 { line-height: 1.15; }
h1 { font-size: clamp(2rem, 6vw, 3.25rem); margin: 0 0 .5rem; }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--lime); color: var(--black); padding: .5rem 1rem;
}
.skip-link:focus { left: 1rem; top: 1rem; z-index: 10; }

/* Header */
.site-header { border-bottom: 1px solid #222; position: sticky; top: 0; background: rgba(0,0,0,.92); backdrop-filter: blur(6px); z-index: 5; }
.site-header .wrap { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1rem; padding-top: .75rem; padding-bottom: .75rem; }
.brand { font-weight: 800; letter-spacing: .5px; color: var(--white); text-decoration: none; margin-right: auto; }
.brand:hover { color: var(--lime); }
.site-nav { display: flex; flex-wrap: wrap; gap: .75rem 1rem; align-items: center; }
.site-nav a { text-decoration: none; color: var(--muted); font-weight: 600; }
.site-nav a:hover { color: var(--lime); }
.nav-cta { color: var(--lime) !important; }

/* Hero */
.hero { padding: 3rem 0; border-bottom: 1px solid #1c1c1c; background:
  radial-gradient(120% 100% at 50% -20%, rgba(0,151,178,.14), transparent 60%); }
.hero--sub, .hero--city { padding: 2.25rem 0; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; color: var(--lime); margin: 0 0 .5rem; font-weight: 700; }
.lede { font-size: 1.2rem; color: var(--muted); max-width: 40ch; }

/* Buttons */
.cta-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; }
.btn { display: inline-block; text-decoration: none; font-weight: 700; padding: .7rem 1.2rem; border-radius: .5rem; border: 2px solid transparent; }
.btn--primary { background: var(--lime); color: var(--black); }
.btn--primary:hover { background: var(--teal); color: var(--black); }
.btn--ghost { border-color: var(--teal); color: var(--teal); }
.btn--ghost:hover { border-color: var(--lime); color: var(--lime); }
.btn--lg { font-size: 1.15rem; padding: .9rem 1.5rem; }

/* Sections */
.section { padding: 2.5rem 0; }
.section--alt { background: var(--ink-2); }

/* Grids / lists */
.teaser-grid, .tier-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; margin: 1.25rem 0; }
.teaser, .tier { background: var(--ink-2); border: 1px solid #262626; border-radius: .75rem; padding: 1.25rem; }
.section--alt .teaser, .section--alt .tier { background: var(--black); }
.tier-name { color: var(--lime); letter-spacing: .05em; margin-top: 0; }
.tier-includes { color: var(--muted); font-style: italic; margin: .25rem 0 .5rem; }

/* Services tier ladder (good / better / best) */
.tiers-intro { font-size: 1.1rem; color: var(--muted); max-width: 65ch; margin: 0 0 1.5rem; }
.tier-grid--services { align-items: start; }
.tier--service { display: flex; flex-direction: column; }
.tier-rank { text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; font-weight: 700; color: var(--teal); margin: 0 0 .25rem; }
.tier--service .tier-name { font-size: 1.5rem; margin: 0 0 .5rem; }
.tier-blurb { color: var(--muted); margin: 0 0 1rem; }
.tier-subhead { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--white); border-bottom: 1px solid #2a2a2a; padding-bottom: .3rem; margin: 1rem 0 .5rem; }
.tier-list { list-style: none; padding: 0; margin: 0; }
.tier-list li { padding: .3rem 0; border-bottom: 1px solid #1e1e1e; }
.tier-list li:last-child { border-bottom: 0; }
.tier-list li.is-new { color: var(--lime); font-weight: 600; }
.new-badge { display: inline-block; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--black); background: var(--lime); border-radius: 1rem; padding: .05rem .5rem; margin-left: .35rem; vertical-align: middle; }
.tier-cta { margin-top: auto; align-self: flex-start; }
/* "Best" tier gets a subtle lift so the ladder reads good -> better -> best */
.tier--featured { border-color: var(--lime); box-shadow: 0 0 0 1px var(--lime); }
.addons-note { background: var(--ink-2); border: 1px solid #262626; border-left: 3px solid var(--lime); border-radius: .5rem; padding: 1rem 1.25rem; margin-top: 1.5rem; color: var(--muted); }
.addons-note strong { color: var(--white); }

/* Long-form prose (About) — readable measure, brand section heads */
.prose { max-width: 62ch; }
.prose p { margin: 0 0 1rem; }
.prose .lede { max-width: none; }
.prose h2 { color: var(--lime); margin: 2rem 0 .5rem; }
.about-signoff { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid #222; font-weight: 700; }
.about-signoff .nap-name { color: var(--white); }
.about-signoff .nap-phone { color: var(--lime); text-decoration: none; }

.area-list { display: flex; flex-wrap: wrap; gap: .5rem .75rem; list-style: none; padding: 0; }
.area-list li { background: var(--ink-2); border: 1px solid #2a2a2a; border-radius: 2rem; padding: .3rem .9rem; }

.menu-list { columns: 2; column-gap: 1.5rem; padding-left: 1.1rem; }
.note { color: var(--lime); font-weight: 600; }

/* Footer */
.site-footer { border-top: 1px solid #222; padding: 2rem 0; margin-top: 2rem; color: var(--muted); }
.nap { font-size: 1.05rem; margin: 0 0 .25rem; }
.nap-name { font-weight: 800; color: var(--white); }
.nap-phone { color: var(--lime); text-decoration: none; font-weight: 700; }
.footer-note, .footer-area, .footer-fine { margin: .15rem 0; }
.footer-fine { font-size: .85rem; color: #888; }

@media (min-width: 40rem) {
  .teaser-grid { grid-template-columns: repeat(3, 1fr); }
  .tier-grid { grid-template-columns: repeat(3, 1fr); }
}
