/* Burghardt's Auto Service — concept rebuild
   Palette sampled from the logo pixels (monochrome badge) + original theme CSS:
   charcoal #161616, white, neutral grays. Type: Archivo Black + Montserrat —
   the same pairing the original site loads from Google Fonts. */

:root {
  --ink: #161616;
  --ink-soft: #2c2c2c;
  --paper: #ffffff;
  --paper-dim: #f7f7f7;
  --line: #dbdbdb;
  --gray: #7f8080;
  --gray-light: #bfbfbf;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(22, 22, 22, .10);
  --shadow-lift: 0 18px 44px rgba(22, 22, 22, .16);
  --wrap: 1120px;
  --display: "Archivo Black", "Arial Black", sans-serif;
  --body: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

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

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }

/* ---------- skip link ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- concept banner ---------- */
.concept-banner {
  background: var(--ink); color: #fff;
  font-size: 13.5px; text-align: center; padding: 9px 44px;
  position: relative; z-index: 90;
}
.concept-banner strong { font-weight: 700; }
.concept-banner button {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: transparent; border: 1px solid rgba(255,255,255,.4); color: #fff;
  border-radius: 6px; width: 26px; height: 26px; cursor: pointer; font-size: 14px; line-height: 1;
}
.concept-banner button:hover { background: rgba(255,255,255,.15); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 4px 18px rgba(22,22,22,.08); }
.header-in {
  display: flex; align-items: center; gap: 18px;
  padding: 10px 22px; max-width: var(--wrap); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 52px; height: 52px; }
.brand-name {
  font-family: var(--display); font-size: 15px; letter-spacing: .02em; line-height: 1.15;
  text-transform: uppercase;
}
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 26px; list-style: none; align-items: center; }
.main-nav a {
  text-decoration: none; font-weight: 600; font-size: 14.5px; letter-spacing: .01em;
  position: relative; padding: 4px 0;
}
.main-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--ink); transition: width .25s ease;
}
.main-nav a:not(.btn):hover::after, .main-nav a:not(.btn):focus::after { width: 100%; }
.nav-toggle {
  display: none; margin-left: auto; background: none; border: 1px solid var(--line);
  border-radius: 8px; padding: 8px 11px; cursor: pointer; font-size: 18px; line-height: 1;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--body); font-weight: 700; font-size: 15px; letter-spacing: .02em;
  padding: 13px 26px; border-radius: 999px; text-decoration: none; cursor: pointer;
  border: 2px solid var(--ink); transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn-solid { background: var(--ink); color: #fff; }
.btn-solid:hover { background: #000; box-shadow: var(--shadow); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-inverse { background: #fff; color: var(--ink); border-color: #fff; }
.btn-inverse:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.35); }
.btn-outline-inverse { background: transparent; color: #fff; border-color: rgba(255,255,255,.75); }
.btn-outline-inverse:hover { background: #fff; color: var(--ink); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }

/* ---------- checkered accent (echoes the crossed flags in the badge) ---------- */
.checker {
  height: 14px;
  background:
    repeating-conic-gradient(var(--ink) 0% 25%, transparent 0% 50%) 0 0 / 28px 28px;
  opacity: .9;
}

/* ---------- hero ---------- */
.hero {
  background:
    radial-gradient(1200px 500px at 70% -10%, rgba(255,255,255,.08), transparent 60%),
    linear-gradient(180deg, #101010 0%, var(--ink) 55%, #1d1d1d 100%);
  color: #fff; text-align: center;
  padding: 72px 22px 84px;
  position: relative; overflow: hidden;
}
.hero::before, .hero::after {
  content: ""; position: absolute; left: 0; right: 0; height: 12px;
  background: repeating-conic-gradient(rgba(255,255,255,.16) 0% 25%, transparent 0% 50%) 0 0 / 24px 24px;
}
.hero::before { top: 0; }
.hero::after { bottom: 0; }
.hero-logo { width: 190px; height: 190px; margin: 0 auto 26px; filter: drop-shadow(0 14px 34px rgba(0,0,0,.5)); }
.hero h1 {
  font-family: var(--display); font-size: clamp(30px, 5vw, 54px);
  line-height: 1.08; letter-spacing: .01em; text-transform: uppercase;
  max-width: 880px; margin: 0 auto 16px;
}
.hero-sub {
  font-size: clamp(16px, 2.1vw, 19.5px); color: rgba(255,255,255,.85);
  max-width: 620px; margin: 0 auto 30px; font-weight: 500;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.hero-meta {
  display: flex; gap: 12px 26px; justify-content: center; align-items: center; flex-wrap: wrap;
  font-size: 14.5px; color: rgba(255,255,255,.8);
}
.hero-meta a { color: rgba(255,255,255,.9); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.35); }
.hero-meta a:hover { border-color: #fff; color: #fff; }
.status-chip {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,.35); border-radius: 999px;
  padding: 6px 16px; font-weight: 600; font-size: 13.5px; letter-spacing: .03em;
}
.status-chip .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gray-light); }
.status-chip.open .dot { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.18); }
.status-chip.closed { color: rgba(255,255,255,.75); }

/* ---------- sections ---------- */
section { padding: 78px 0; }
.section-dim { background: var(--paper-dim); }
.section-dark { background: var(--ink); color: #fff; }
.kicker {
  font-weight: 700; letter-spacing: .22em; text-transform: uppercase; font-size: 12px;
  color: var(--gray); margin-bottom: 12px;
}
.section-dark .kicker { color: var(--gray-light); }
h2.section-title {
  font-family: var(--display); font-size: clamp(26px, 3.6vw, 40px);
  text-transform: uppercase; line-height: 1.12; letter-spacing: .01em; margin-bottom: 18px;
}
.section-intro { max-width: 720px; font-size: 17px; }
.center { text-align: center; }
.center .section-intro { margin-left: auto; margin-right: auto; }

/* ---------- standout bullets ---------- */
.stand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.stand-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; font-size: 15.5px; line-height: 1.6;
  transition: transform .2s ease, box-shadow .2s ease;
}
.stand-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stand-card .flag { font-size: 20px; margin-bottom: 10px; display: block; color: var(--ink); }

/* ---------- services ---------- */
.svc-lead { display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: center; margin-top: 34px; }
.svc-lead h3 { font-family: var(--display); font-size: 22px; text-transform: uppercase; margin-bottom: 14px; line-height: 1.25; }
.emission-band {
  margin-top: 22px; padding: 16px 22px; border: 2px solid var(--ink); border-radius: var(--radius);
  font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: 14px; display: inline-block;
}
.beforeafter { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ba-card { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.ba-card img { width: 100%; height: 280px; object-fit: cover; transition: transform .4s ease; }
.ba-card:hover img { transform: scale(1.05); }
.ba-tag {
  position: absolute; top: 12px; left: 12px; background: var(--ink); color: #fff;
  font-family: var(--display); font-size: 12px; letter-spacing: .12em; padding: 6px 14px; border-radius: 6px;
  text-transform: uppercase;
}
.trip-card {
  margin-top: 44px; background: var(--ink); color: #fff; border-radius: 16px;
  padding: 44px 46px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center;
  position: relative; overflow: hidden;
}
.trip-card::after {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 10px;
  background: repeating-conic-gradient(rgba(255,255,255,.22) 0% 25%, transparent 0% 50%) 0 0 / 20px 20px;
}
.trip-card h3 { font-family: var(--display); text-transform: uppercase; font-size: 24px; margin-bottom: 8px; }
.trip-card .trip-hook { color: rgba(255,255,255,.85); font-weight: 600; margin-bottom: 18px; }
.trip-card ul { list-style: none; display: grid; gap: 10px; }
.trip-card li { padding-left: 28px; position: relative; font-size: 15.5px; }
.trip-card li::before { content: "✓"; position: absolute; left: 0; font-weight: 700; }
.trip-price {
  text-align: center; border: 2px dashed rgba(255,255,255,.5); border-radius: 14px; padding: 34px 20px;
}
.trip-price .amount { font-family: var(--display); font-size: 42px; display: block; line-height: 1.1; }
.trip-price .note { color: rgba(255,255,255,.8); font-size: 14px; margin-top: 6px; display: block; }

/* ---------- reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.review-card {
  background: #fff; color: var(--ink); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 10px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.stars { letter-spacing: 3px; font-size: 15px; color: var(--ink); }
.review-card h3 { font-size: 17px; font-weight: 700; }
.review-card blockquote { font-size: 15px; color: var(--ink-soft); flex: 1; }
.review-card footer { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.review-card cite { font-style: normal; font-weight: 700; font-size: 14px; }
.review-card a { font-size: 13px; color: var(--gray); }
.review-card a:hover { color: var(--ink); }

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; margin-top: 34px; }
.about-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lift); }
.about-photo img { width: 100%; }
.about-photo figcaption { font-size: 13px; color: var(--gray); padding: 10px 4px 0; }
.crew-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 38px; max-width: 820px; margin-left: auto; margin-right: auto; }
.crew-card { text-align: center; }
.crew-card img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius);
  box-shadow: var(--shadow); filter: grayscale(18%);
  transition: transform .25s ease, filter .25s ease;
}
.crew-card:hover img { transform: translateY(-5px); filter: grayscale(0%); }
.crew-card h3 { font-family: var(--display); text-transform: uppercase; font-size: 17px; margin-top: 14px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 36px auto 0; display: grid; gap: 14px; }
details.faq {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 0;
  overflow: hidden; transition: box-shadow .2s ease;
}
details.faq[open] { box-shadow: var(--shadow); }
details.faq summary {
  cursor: pointer; list-style: none; font-weight: 700; font-size: 16.5px;
  padding: 20px 54px 20px 24px; position: relative;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-family: var(--display); font-size: 20px; transition: transform .2s ease;
}
details.faq[open] summary::after { content: "–"; }
.faq-body { padding: 0 24px 22px; color: var(--ink-soft); }
.brand-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 14px; }
.brand-cols h4 { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.brand-cols ul { list-style: none; display: grid; gap: 4px; font-size: 15px; }
.brand-cols li { padding-left: 18px; position: relative; }
.brand-cols .yes li::before { content: "✓"; position: absolute; left: 0; font-weight: 700; }
.brand-cols .no li::before { content: "✕"; position: absolute; left: 0; color: var(--gray); font-weight: 700; }

/* ---------- vehicles ---------- */
.vehicles-inner {
  border: 2px dashed var(--gray-light); border-radius: 16px; padding: 44px 30px; text-align: center;
  max-width: 760px; margin: 34px auto 0;
}
.vehicles-inner p { color: var(--ink-soft); }
.vehicles-inner .none { font-weight: 700; font-size: 18px; margin-bottom: 8px; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 40px; align-items: start; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 34px; box-shadow: var(--shadow); }
.contact-card h3 { font-family: var(--display); text-transform: uppercase; font-size: 19px; margin-bottom: 18px; }
.contact-lines { list-style: none; display: grid; gap: 12px; font-size: 15.5px; }
.contact-lines a { text-decoration: none; border-bottom: 1px solid var(--gray-light); }
.contact-lines a:hover { border-color: var(--ink); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; font-size: 15px; }
.hours-table th, .hours-table td { text-align: left; padding: 8px 4px; border-bottom: 1px solid var(--line); }
.hours-table th { font-weight: 700; width: 40%; }
.hours-table tr.today th, .hours-table tr.today td { background: var(--paper-dim); font-weight: 700; }
.form-grid { display: grid; gap: 16px; }
.form-grid label { font-weight: 700; font-size: 13.5px; letter-spacing: .04em; text-transform: uppercase; display: block; margin-bottom: 6px; }
.form-grid input, .form-grid textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 8px;
  font-family: var(--body); font-size: 15.5px; background: var(--paper-dim);
  transition: border-color .2s ease, background .2s ease;
}
.form-grid input:focus, .form-grid textarea:focus { outline: none; border-color: var(--ink); background: #fff; }
.form-note { font-size: 13px; color: var(--gray); }
.form-status { font-size: 14.5px; font-weight: 600; min-height: 20px; }

/* ---------- hiring strip ---------- */
.hiring-strip { background: var(--paper-dim); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 40px 0; }
.hiring-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.hiring-in h2 { font-family: var(--display); text-transform: uppercase; font-size: 21px; }
.hiring-in p { color: var(--ink-soft); }

/* ---------- footer ---------- */
.site-footer { background: #101010; color: rgba(255,255,255,.85); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand img { width: 110px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.65); }
.site-footer h3 { font-family: var(--display); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.site-footer ul { list-style: none; display: grid; gap: 9px; font-size: 14.5px; }
.site-footer a { color: rgba(255,255,255,.85); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.15);
  font-size: 13px; color: rgba(255,255,255,.55); text-align: center;
}

/* ---------- sticky mobile call bar ---------- */
.callbar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 85;
  background: var(--ink); box-shadow: 0 -6px 22px rgba(0,0,0,.3);
}
.callbar a {
  flex: 1; text-align: center; color: #fff; text-decoration: none; font-weight: 700;
  padding: 15px 8px; font-size: 15px; letter-spacing: .02em;
}
.callbar a + a { border-left: 1px solid rgba(255,255,255,.2); }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ba-card img, .crew-card img, .btn, .stand-card, .review-card { transition: none !important; }
}

/* ---------- subpage hero ---------- */
.page-hero { background: var(--ink); color: #fff; text-align: center; padding: 64px 22px; position: relative; }
.page-hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 10px;
  background: repeating-conic-gradient(rgba(255,255,255,.16) 0% 25%, transparent 0% 50%) 0 0 / 20px 20px;
}
.page-hero h1 { font-family: var(--display); text-transform: uppercase; font-size: clamp(28px, 4.5vw, 44px); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.85); max-width: 640px; margin: 0 auto; }

.hire-panel {
  max-width: 700px; margin: 0 auto; background: var(--paper-dim); border: 1px solid var(--line);
  border-radius: 14px; padding: 34px;
}
.hire-panel ul { list-style: none; display: grid; gap: 8px; margin: 14px 0 0; font-weight: 600; }
.hire-panel li { padding-left: 24px; position: relative; }
.hire-panel li::before { content: "›"; position: absolute; left: 6px; font-weight: 700; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .stand-grid { grid-template-columns: 1fr 1fr; }
  .svc-lead, .trip-card, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  section { padding: 58px 0; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 18px 22px 24px;
    box-shadow: 0 14px 30px rgba(22,22,22,.12);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 16px; }
  .nav-toggle { display: block; }
  .stand-grid, .review-grid, .beforeafter, .crew-grid, .brand-cols { grid-template-columns: 1fr; }
  .hero { padding: 54px 18px 70px; }
  .hero-logo { width: 150px; height: 150px; }
  .callbar { display: flex; }
  body { padding-bottom: 52px; } /* room for callbar */
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .trip-card { padding: 32px 26px; }
}
