/* ==========================================================================
   Halloway Auto Care — enamel service-station sign
   Parchment #f4ead8 · Oxide red #b3402e · Spruce #23423d
   Oswald (display) + Source Sans 3 (body) · dotted-leader menu · zero JS
   ========================================================================== */

:root {
  --parchment: #f4ead8;
  --parchment-deep: #eadfc6;
  --oxide: #b3402e;
  --oxide-deep: #8e2f20;
  --spruce: #23423d;
  --spruce-deep: #16302c;
  --ink: #2b2b26;
  --display: "Oswald", "Arial Narrow", sans-serif;
  --body: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: auto; }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

[id] { scroll-margin-top: 7rem; }

body {
  margin: 0;
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--oxide);
  color: var(--parchment);
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
}

.skip-link:focus { top: 0.5rem; }

:focus-visible {
  outline: 3px solid var(--oxide);
  outline-offset: 2px;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin: 0 0 0.55em;
  color: var(--spruce-deep);
}

h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: 1.1rem; }

p { margin: 0 0 1em; }

a { color: var(--oxide-deep); }

/* ---------- Header: enamel sign bar ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--spruce);
  border-bottom: 4px solid var(--oxide);
}

.header-inner {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 1.25rem 0.3rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.brand-text {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--parchment);
  white-space: nowrap;
}

.brand-text em { font-style: normal; color: #d8a25b; }

.header-phone {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--parchment);
  text-decoration: none;
  white-space: nowrap;
}

.header-phone:hover { color: #d8a25b; }

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0 1.25rem 0.55rem;
  max-width: 64rem;
  margin-inline: auto;
  display: flex;
  gap: 1.6rem;
}

.site-nav a {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c6d4ce;
  text-decoration: none;
  padding: 0.2rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--parchment);
  border-bottom-color: #d8a25b;
}

@media (max-width: 480px) {
  .header-inner { padding: 0.55rem 1rem 0.25rem; }
  .brand-text { font-size: 1.05rem; }
  .brand-mark { width: 28px; height: 28px; }
  .header-phone { font-size: 1rem; }
  .site-nav ul { gap: 0; justify-content: space-between; padding: 0 1rem 0.5rem; }
  .site-nav a { font-size: 0.84rem; letter-spacing: 0.04em; }
}

/* ---------- Hero ---------- */

.hero {
  max-width: 64rem;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) 1.25rem 2rem;
}

.kicker {
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  color: var(--oxide-deep);
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 5.4vw, 3.5rem);
  max-width: 22ch;
}

.hero-lede { max-width: 56ch; font-size: 1.12rem; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.75rem;
}

.hero-badges span {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 2px solid var(--spruce);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  background: #fff;
}

/* ---------- Service menu: enamel board with dotted leaders ---------- */

.section {
  max-width: 64rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) 1.25rem;
}

.menu-board {
  background: var(--spruce);
  color: var(--parchment);
  border: 6px double #d8a25b;
  padding: 1.75rem clamp(1.25rem, 4vw, 2.5rem);
}

.menu-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.7rem 0;
}

.menu-row + .menu-row { border-top: 1px solid rgba(244, 234, 216, 0.18); }

.menu-item { font-size: 1.05rem; }

.menu-item em {
  display: block;
  font-style: normal;
  font-size: 0.82rem;
  color: #c6d4ce;
}

.menu-dots {
  flex: 1;
  border-bottom: 2px dotted rgba(244, 234, 216, 0.4);
  transform: translateY(-4px);
  min-width: 2rem;
}

.menu-price {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.25rem;
  color: #d8a25b;
  white-space: nowrap;
}

.menu-note { margin: 1.25rem 0 0; font-size: 0.95rem; color: #5a5a50; }

/* ---------- How band ---------- */

.how-band { max-width: none; background: var(--parchment-deep); }

.how-band > * { max-width: 61.5rem; margin-left: auto; margin-right: auto; }

.how-steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.75rem;
}

.how-steps li { counter-increment: step; }

.how-steps li::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 2.2rem;
  color: var(--oxide);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

/* ---------- FAQ ---------- */

.faq-list { max-width: 50rem; }

.faq-list details { border-bottom: 2px solid var(--parchment-deep); }

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.95rem 0;
  color: var(--spruce-deep);
}

.faq-list summary:hover { color: var(--oxide-deep); }

.faq-list details p { color: #5a5a50; padding-bottom: 1rem; margin: 0; }

/* ---------- Visit ---------- */

.visit-band { max-width: none; background: var(--spruce); color: var(--parchment); }

.visit-band > * { max-width: 61.5rem; margin-left: auto; margin-right: auto; }

.visit-band h2 { color: #fff; }

.visit-band h3 { color: #d8a25b; }

.visit-band a { color: var(--parchment); }

.visit-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 2rem;
}

/* ---------- Footer ---------- */

.site-footer {
  text-align: center;
  padding: 2.5rem 1.25rem;
  font-size: 0.95rem;
  border-top: 4px solid var(--oxide);
  background: var(--parchment);
}

.footer-fine { font-size: 0.82rem; opacity: 0.75; }

.social-links {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  justify-content: center;
  padding: 0 1.5rem;
  margin: 1.2rem auto 0;
}

.social-links a { display: inline-flex; color: var(--spruce); opacity: 0.85; }

.social-links a:hover, .social-links a:focus-visible { opacity: 1; }

.social-links svg { width: 1.3rem; height: 1.3rem; }
