/* ==========================================================================
   Wow Express Quick Lube & Car Wash — wowexpresstrinity.com
   Palette and type drawn from the building and printed brand:
   signage red, stucco cream, promo gold, mailer black, hours-poster blue.
   ========================================================================== */

:root {
  --red: #C8202F;
  --red-deep: #9E1520;
  --gold: #FFC01F;
  --gold-deep: #E6A400;
  --cream: #FAF3E3;
  --cream-deep: #F1E3BE;
  --ink: #1A1512;
  --ink-soft: #2A231E;
  --blue: #1F4FA3;
  --paper: #FFFFFF;
  --text: #241C16;
  --text-soft: #5C5248;
  --text-light: #F7EFDF;
  --text-light-soft: #D9CDB8;
  --line: #E4D5B4;

  --font-display: 'Anton', 'Arial Narrow', Impact, sans-serif;
  --font-cond: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', Arial, sans-serif;

  --wrap: 1160px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(26, 21, 18, 0.12);
  --header-h: 94px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
}

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

a { color: var(--red); }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

section[id], div[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 18px rgba(200, 32, 47, 0.35);
}
.btn-red:hover { background: var(--red-deep); }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(230, 164, 0, 0.35);
}
.btn-gold:hover { background: var(--gold-deep); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(3px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.26); }

.btn-ghost-light {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(247, 239, 223, 0.55);
}
.btn-ghost-light:hover { background: rgba(247, 239, 223, 0.12); }

.btn-ink {
  background: var(--ink);
  color: var(--gold);
}
.btn-ink:hover { background: var(--ink-soft); }

/* ---------- Top bar ---------- */

.topbar {
  background: var(--ink);
  color: var(--text-light);
  font-family: var(--font-cond);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-block: 0.45rem;
}
.topbar-item { white-space: nowrap; }
.topbar-247 { color: var(--gold); font-weight: 600; }
.topbar-phone { color: #fff; font-weight: 700; text-decoration: none; }
.topbar-phone:hover { color: var(--gold); }
.topbar-careers {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}
.topbar-careers:hover { color: var(--gold); }
.topbar-fleet {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.12rem 0.9rem 0.16rem;
  border-radius: 999px;
  text-decoration: none;
}
.topbar-fleet:hover { background: var(--red-deep); color: #fff; }

/* ---------- Header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 243, 227, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--red);
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(26, 21, 18, 0.14); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

/* The sign out front is a white oval plate — echo it for the logo */
.brand img {
  width: auto;
  height: 88px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(26, 21, 18, 0.08);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.6vw, 1.4rem);
}
.site-nav a {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  padding: 0.3rem 0.1rem;
  border-bottom: 3px solid transparent;
}
.site-nav a:hover { color: var(--red); border-bottom-color: var(--gold); }

.site-nav .nav-call {
  background: var(--red);
  color: #fff;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border-bottom: none;
  white-space: nowrap;
}
.site-nav .nav-call:hover { background: var(--red-deep); color: #fff; }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  background: none;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 0.45rem 0.8rem;
  cursor: pointer;
}
.nav-toggle-bars {
  display: inline-block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }

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

.hero {
  position: relative;
  min-height: clamp(540px, 78vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(20, 14, 10, 0.82) 0%, rgba(20, 14, 10, 0.55) 42%, rgba(20, 14, 10, 0.18) 75%),
    linear-gradient(to top, rgba(20, 14, 10, 0.55), transparent 40%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
}
.hero-eyebrow {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.9rem, 7.2vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1.1rem;
  text-wrap: balance;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}
.hero-title .wow {
  display: inline-block;
  color: var(--gold);
  transform: skewX(-6deg);
  text-shadow: 4px 4px 0 var(--red), 0 4px 24px rgba(0, 0, 0, 0.45);
}
.hero-sub {
  max-width: 34em;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.55;
  color: var(--text-light);
  margin: 0 0 1.6rem;
}
.hero-sub strong { color: var(--gold); }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.8rem;
}
.hero-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
}
.hero-chips li {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(20, 14, 10, 0.55);
  border: 1px solid rgba(255, 192, 31, 0.6);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  backdrop-filter: blur(3px);
}

/* ---------- Hero sticker badge ---------- */
/* Sized in em so one font-size value scales the whole sticker */

.hero-sticker {
  position: absolute;
  z-index: 2;
  top: clamp(1.2rem, 4vw, 3rem);
  right: clamp(1.2rem, 5vw, 4.5rem);
  font-size: 10px;
  width: 19em;
  height: 19em;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #FFD75E, var(--gold) 55%, var(--gold-deep));
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  padding: 1.6em;
  transform: rotate(8deg);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
}
.hero-sticker::before {
  content: "";
  position: absolute;
  inset: 0.6em;
  border: 2px dashed rgba(26, 21, 18, 0.45);
  border-radius: 50%;
}
.hero-sticker:hover { transform: rotate(8deg) scale(1.06); }
.hs-free {
  font-family: var(--font-display);
  font-size: 3.1em;
  line-height: 1;
  color: var(--red);
}
.hs-top {
  font-family: var(--font-display);
  font-size: 2em;
  line-height: 1.1;
}
.hs-between,
.hs-with {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.15em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.25;
}
.hs-between { margin-top: 0.4em; }
.hs-with { color: var(--red-deep); }
@media (max-width: 1020px) {
  .hero-sticker { font-size: 8.5px; }
}
@media (max-width: 640px) {
  .hero-sticker { top: 0.9rem; right: 0.9rem; font-size: 6.4px; }
  .hero-eyebrow { max-width: 62%; }
}

/* ---------- Checker strip ---------- */

.checker-strip {
  height: 16px;
  background: repeating-conic-gradient(var(--ink) 0% 25%, #fff 0% 50%) 0 0 / 32px 32px;
  border-block: 3px solid var(--red);
}

/* ---------- CARFAX awards ---------- */

.awards-section {
  background:
    radial-gradient(900px 420px at 15% -10%, rgba(198, 164, 90, 0.18), transparent 60%),
    #0E0B08;
  color: var(--text-light);
}
.awards-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.awards-banner {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(198, 164, 90, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.awards-banner img { width: 100%; }
.awards-text { text-align: center; }
.awards-text .section-lead { margin-bottom: 1.4rem; margin-inline: auto; }
.awards-text .lead-light strong { color: var(--gold); }
.kicker.kicker-centered { text-align: center; }
.kicker.kicker-centered::before { content: none; }
.awards-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.6rem, 2vw, 1.2rem);
}
.awards-badges img {
  height: clamp(96px, 20vw, 150px);
  width: auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.55));
}

/* ---------- Sections (shared) ---------- */

.section { padding-block: clamp(3.5rem, 8vw, 5.5rem); }

.section-cream { background: var(--cream); }
.section-white { background: var(--paper); }

.section-board {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(255, 192, 31, 0.14), transparent 60%),
    var(--ink);
  color: var(--text-light);
  clip-path: polygon(0 28px, 100% 0, 100% calc(100% - 28px), 0 100%);
  padding-block: calc(clamp(3.5rem, 8vw, 5.5rem) + 28px);
  margin-block: -6px;
}

.section-red {
  background:
    radial-gradient(900px 420px at 12% 110%, rgba(0, 0, 0, 0.28), transparent 60%),
    linear-gradient(115deg, var(--red-deep), var(--red) 55%);
  color: var(--text-light);
}

.kicker {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 0.4rem;
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 3px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 0.6rem;
  transform: skewX(-20deg);
}
.kicker-gold { color: var(--gold); }
.kicker-light { color: #fff; }
.kicker-light::before { background: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 0.8rem;
  text-wrap: balance;
}
.title-light { color: #fff; }

.section-lead {
  max-width: 46em;
  font-size: 1.125rem;
  color: var(--text-soft);
  margin: 0 0 2.2rem;
}
.lead-light { color: var(--text-light-soft); }
.lead-light strong { color: var(--gold); }

/* ---------- Services ---------- */

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.service-card {
  background: var(--paper);
  border-radius: var(--radius);
  border-top: 5px solid var(--red);
  box-shadow: var(--shadow);
  padding: 1.5rem 1.4rem 1.3rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 38px rgba(26, 21, 18, 0.18);
}
.service-icon {
  width: 58px;
  height: 58px;
  color: var(--red);
  background: var(--cream);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 10px;
  margin-bottom: 1rem;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
  color: var(--ink);
}
.service-card p { margin: 0 0 1rem; color: var(--text-soft); font-size: 1rem; }
.service-card strong { color: var(--red); }
.card-link {
  margin-top: auto;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
}
.card-link:hover { text-decoration: underline; }

/* ---------- Oil change promo board ---------- */

.ribbon-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 1rem 1.8rem;
  margin: 0 0 2.2rem 0.4rem;
}
.free-wash-ribbon {
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 0.5rem 1.2rem;
  border-radius: 12px;
  transform: skewX(-8deg);
  box-shadow: 6px 6px 0 var(--red);
}
@media (max-width: 880px) {
  .ribbon-row { grid-template-columns: 1fr; }
}
.free-wash-ribbon span { color: var(--red); }

.oil-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  align-items: stretch;
  margin-bottom: 2rem;
}

/* Button label swaps on hover/keyboard focus ("call us for exact price") */
.btn-swap { display: inline-grid; place-items: center; }
.btn-swap > span { grid-area: 1 / 1; }
.price-board .btn-swap {
  padding: 0.5rem 1rem;
  font-size: 1.02rem;
  line-height: 1.15;
}
.btn-swap .swap-b { visibility: hidden; }
.btn-swap:hover .swap-a,
.btn-swap:focus-visible .swap-a { visibility: hidden; }
.btn-swap:hover .swap-b,
.btn-swap:focus-visible .swap-b { visibility: visible; }

.price-board {
  position: relative;
  background: #241D18;
  border: 1px solid rgba(255, 192, 31, 0.35);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.price-board-featured {
  background: #2B211A;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 192, 31, 0.12), 0 18px 40px rgba(0, 0, 0, 0.4);
}
.board-flag {
  position: absolute;
  top: -0.95rem;
  left: 1.4rem;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  padding: 0.28rem 0.9rem;
  margin: 0;
}
.board-flag-gold { background: var(--gold); }
.price-name {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.2rem;
}
.price-big {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 6vw, 4.6rem);
  line-height: 1;
  color: #fff;
  margin: 0 0 0.3rem;
}
.price-big sup { font-size: 0.45em; vertical-align: 0.7em; margin-right: 0.05em; }
.price-big .cents { font-size: 0.45em; vertical-align: 0.7em; }
.price-big .tax {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.24em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light-soft);
  margin-left: 0.5em;
}
.price-note {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.6rem;
}
.price-desc { color: var(--text-light-soft); font-size: 1rem; margin: 0 0 1.4rem; }
.price-board .btn { margin-top: auto; align-self: stretch; }

.oil-includes {
  grid-column: 1 / -1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 192, 31, 0.5);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
}
.oil-includes ul { grid-template-columns: repeat(3, 1fr); }
.oil-includes h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.9rem;
}
.oil-includes ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.oil-includes li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--text-light);
  font-size: 1rem;
}
.oil-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 800;
}
.oil-includes li strong { color: var(--gold); font-weight: 800; }
.oil-includes li.includes-free {
  grid-column: 1 / -1;
  text-align: center;
  padding-left: 0;
  margin-top: 0.7rem;
}
.oil-includes li.includes-free::before { content: none; }
.oil-includes li.includes-free strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
}
.extra-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(247, 239, 223, 0.18);
  border-left: 5px solid var(--gold);
  border-radius: 10px;
  padding: 1.2rem 1.4rem;
}
.extra-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.2rem;
}
.extra-price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold);
  margin: 0 0 0.3rem;
}
.extra-price span:not([data-price]) {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light-soft);
}
.extra-card > p:last-child { margin: 0; color: var(--text-light-soft); font-size: 0.98rem; }

.fine-print {
  color: rgba(217, 205, 184, 0.75);
  font-size: 0.85rem;
  max-width: 62em;
  margin: 0;
}
.price-note-box {
  background: #FFF3D6;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  padding: 0.9rem 1.2rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text);
  max-width: 62em;
  margin: 1.8rem 0 0;
}
.detailing-text .price-note-box { margin: 0 0 1.4rem; }

/* ---------- Car wash ---------- */

.wash-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.25fr;
  gap: 1.2rem;
  align-items: stretch;
}
.wash-card {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.7rem 1.5rem;
  border-top: 5px solid var(--blue);
}
.wash-card-featured { border-top-color: var(--gold); }
.wash-card-featured .board-flag { background: var(--gold); }
.wash-tier {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 0.1rem;
}
.wash-price {
  font-family: var(--font-display);
  font-size: 3.1rem;
  line-height: 1;
  color: var(--red);
  margin: 0 0 0.9rem;
}
.wash-price sup { font-size: 0.5em; vertical-align: 0.55em; }
.wash-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.wash-card li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 1rem;
  color: var(--text-soft);
}
.wash-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 800;
}
.wash-card-featured li::before { color: var(--gold-deep); }

.wash-subheading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 2.6rem 0 1.2rem;
}
/* Same column template as the full-service grid so both rows align;
   the empty fourth column is reserved for a future photo. */
.wash-grid-exterior .wash-card { border-top-color: var(--red); }
.wash-grid-exterior .wash-card li::before { color: var(--red); }

.wash-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  background: var(--ink);
}
.wash-photo img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; flex: 1; }
.wash-photo figcaption {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--ink);
  padding: 0.7rem 1.1rem;
}

/* ---------- Wash club ---------- */

.club-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 460px));
  justify-content: center;
  gap: 1.4rem;
}
.subheading-light { color: #fff; text-align: center; }
.club-grid-exterior { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 1000px; margin-inline: auto; }
.club-card {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
  padding: 2rem 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
}
.club-eyebrow {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 0.3rem;
}
.club-card .wash-tier { color: var(--red); letter-spacing: 0.08em; }
.club-card-featured { outline: 4px solid var(--gold); outline-offset: -4px; }
.club-price {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--ink);
  margin: 0 0 1rem;
}
.club-price sup { font-size: 0.45em; vertical-align: 0.7em; }
.club-price .cents { font-size: 0.45em; vertical-align: 0.7em; }
.club-price .permo {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.3em;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-left: 0.4em;
}
.club-card ul { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: 0.55rem; }
.club-card li { position: relative; padding-left: 1.7rem; color: var(--text-soft); }
.club-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 800;
}
.club-card .btn { margin-top: auto; }
.club-card li.club-terms { padding-left: 0; font-size: 0.85rem; margin-top: 0.2rem; }
.club-card li.club-terms::before { content: none; }
.club-card .club-terms a {
  color: var(--text-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.club-card .club-terms a:hover { color: var(--red); }

/* ---------- Detailing ---------- */

.detailing-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.detail-menu { list-style: none; margin: 0 0 0.8rem; padding: 0; }
.detail-menu > li {
  display: block;
  padding-block: 0.4rem;
  border-bottom: 1px solid var(--line);
}
.detail-menu > li:first-child { border-top: 1px solid var(--line); }
.detail-exp summary {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  padding-block: 0.35rem;
  cursor: pointer;
  list-style: none;
}
.detail-exp summary::-webkit-details-marker { display: none; }
.detail-exp summary::after {
  content: "▾";
  align-self: center;
  color: var(--red);
  font-size: 1.6rem;
  line-height: 1;
  transition: transform 0.2s ease;
}
.detail-exp[open] summary::after { transform: rotate(180deg); }
.detail-desc { padding: 0.3rem 0 0.9rem; }
.detail-desc p { margin: 0 0 0.55rem; color: var(--text-soft); font-size: 0.95rem; }
.detail-desc ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.35rem; }
.detail-desc li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.92rem;
  color: var(--text-soft);
}
.detail-desc li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 800;
}
.detail-desc h4 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0.7rem 0 0.35rem;
}
.detail-name {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
}
.detail-dots {
  flex: 1;
  border-bottom: 2px dotted #C9B98F;
  transform: translateY(-4px);
}
.detail-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}
.detailing-ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.detailing-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
  border: 6px solid #fff;
}

/* ---------- Legal pages ---------- */

.legal-section { padding-top: 1.5rem; }
.legal-body {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 5px solid var(--red);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 60rem;
}
.legal-intro { color: var(--text-soft); margin: 0 0 1.6rem; max-width: 70ch; }
.legal-body h2 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 2px solid var(--line);
  padding-bottom: 0.35rem;
  margin: 1.8rem 0 0.6rem;
}
.legal-body p { color: var(--text-soft); margin: 0 0 0.6rem; max-width: 70ch; font-size: 1rem; }
.legal-body a { font-weight: 600; }

/* ---------- About page ---------- */

.about-lede {
  max-width: 22ch;
  font-size: clamp(1.9rem, 4.4vw, 3rem);
}
.about-year { color: var(--red); }
.about-owner-band { padding-block: clamp(2.2rem, 5vw, 3.2rem); }
.about-owner {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  line-height: 1.35;
  color: #fff;
  max-width: 30ch;
  margin: 0;
  text-wrap: balance;
}
.about-owner strong { color: var(--gold); font-weight: 700; }
.about-prose {
  max-width: 42em;
  font-size: 1.15rem;
  color: var(--text-soft);
  margin: 0 0 1.1rem;
}
.about-prose strong { color: var(--ink); }
.about-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.6rem 0 0;
  padding: 0;
}
.about-chips li {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 1rem;
}
.about-photo-section { padding-block: 0 clamp(2.5rem, 6vw, 4rem); }
.about-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-photo img { width: 100%; display: block; }
.about-slogan { text-align: left; }
.about-slogan-line {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6.5vw, 4.2rem);
  line-height: 1.02;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  text-wrap: balance;
}
.about-slogan-line span { color: var(--gold); }
.about-slogan-tag {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light-soft);
  margin: 1.4rem 0 0;
}
.about-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.5rem 2.5rem;
  margin: 0;
}
.about-fact dt {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.45rem;
}
.about-fact dd { margin: 0; font-size: 1.05rem; line-height: 1.55; }
.about-fact dd a { color: var(--ink); font-weight: 700; text-decoration-color: var(--red); text-underline-offset: 3px; }
.about-fact dd a:hover { color: var(--red); }
.about-hours { list-style: none; margin: 0; padding: 0; font-variant-numeric: tabular-nums; }
.about-hours li { display: flex; justify-content: space-between; gap: 1.5rem; max-width: 20rem; padding-block: 0.15rem; }
.about-hours li span:first-child { color: var(--text-soft); }
.about-hours-note { margin: 0.6rem 0 0; font-size: 0.92rem; color: var(--text-soft); max-width: 24rem; }
.about-ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2.2rem; }

/* ---------- Add-ons page ---------- */

.addons-section { padding-top: 2rem; }
.pkg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1rem;
}
.pkg-card {
  background: var(--paper);
  border-radius: var(--radius);
  border-top: 5px solid var(--red);
  box-shadow: var(--shadow);
  padding: 1.5rem 1.5rem 1.4rem;
}
.pkg-card-full { grid-column: 1 / -1; }
.pkg-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.4rem;
}
.pkg-head h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.pkg-price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--red);
  margin: 0;
  white-space: nowrap;
}
.pkg-intro { margin: 0 0 0.8rem; color: var(--text-soft); font-size: 0.98rem; }
.pkg-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.pkg-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-soft);
}
.pkg-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 800;
}
.pkg-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.6rem;
}
.pkg-cols h4 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 0.4rem;
}
.addons-subtitle { margin: 2.4rem 0 1.2rem; font-size: clamp(1.6rem, 3vw, 2.2rem); }
@media (max-width: 880px) {
  .pkg-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .pkg-cols { grid-template-columns: 1fr; }
}
.addon-table-wrap {
  overflow-x: auto;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 5px solid var(--red);
}
.addon-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
.addon-table thead th {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  color: var(--red);
  background: var(--cream);
  padding: 0.85rem 1.2rem;
  border-bottom: 2px solid var(--line);
}
.addon-table tbody th,
.addon-table tbody td {
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.addon-table tbody tr:last-child th,
.addon-table tbody tr:last-child td { border-bottom: none; }
.addon-table tbody th {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.addon-table .addon-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--red);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.addon-table tbody td:last-child { color: var(--text-soft); font-size: 0.98rem; }
.addons-ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }
@media (max-width: 640px) {
  .addon-table tbody th { white-space: normal; }
}
.detailing-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Fleet strip ---------- */

.fleet-strip {
  background: var(--gold);
  border-block: 3px solid var(--ink);
}
.fleet-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.1rem;
}
.fleet-inner p {
  margin: 0;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.fleet-inner strong { font-weight: 700; text-transform: uppercase; }
.fleet-strip .btn { flex-shrink: 0; }

/* ---------- Gallery ---------- */

.gallery-section { padding-bottom: 0; }
.gallery {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.gallery img {
  width: 100%;
  height: clamp(180px, 24vw, 300px);
  object-fit: cover;
}

/* ---------- Hours & location ---------- */

.hours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}
.hours-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(247, 239, 223, 0.18);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
}
.hours-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.9rem;
}
.hours-card dl { margin: 0; display: grid; gap: 0.55rem; }
.hours-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.98rem;
}
.hours-card dt { color: var(--text-light-soft); font-weight: 600; }
.hours-card dd { margin: 0; color: #fff; font-variant-numeric: tabular-nums; white-space: nowrap; }
.hours-card .today dt, .hours-card .today dd { color: var(--gold); font-weight: 700; }
.always-open {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0 0 0.4rem;
}
.hours-card-247 > p:last-child { margin: 0; color: var(--text-light-soft); font-size: 0.98rem; }

.visit-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  color: var(--text);
}
.visit-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 0.6rem;
}
.visit-address { font-weight: 700; font-size: 1.1rem; margin: 0 0 0.5rem; }
.visit-note { color: var(--text-soft); font-size: 0.95rem; margin: 0 0 1.1rem; }
.visit-ctas { display: grid; gap: 0.6rem; }
.visit-ctas .btn-ghost-light { color: var(--ink); border-color: var(--ink); }
.visit-ctas .btn-ghost-light:hover { background: rgba(26, 21, 18, 0.08); }

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

.site-footer {
  background: var(--ink);
  color: var(--text-light-soft);
  padding-top: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--red);
  text-transform: uppercase;
  margin: 0 0 0.4rem;
  transform: skewX(-4deg);
}
.footer-logo span { color: var(--gold); }
.footer-tag { font-size: 1.15rem; color: var(--text-light); margin: 0 0 0.3rem; }
.footer-tag strong { color: var(--gold); }
.footer-services {
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.95rem;
  margin: 0;
}
.footer-links { display: grid; gap: 0.5rem; align-content: start; }
.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact p { margin: 0 0 0.5rem; }
.footer-phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.4rem;
}
.footer-phone:hover { color: var(--gold); }
.footer-247 { color: var(--gold); font-weight: 600; }
.footer-payments {
  font-size: 0.85rem;
  color: var(--text-light-soft);
  max-width: 28em;
  margin-top: 0.6rem !important;
}
.footer-wex {
  height: 32px;
  width: auto;
  background: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  display: block;
  margin-bottom: 0.4rem;
}
.fleet-wex {
  height: 60px;
  width: auto;
  flex-shrink: 0;
  background: #fff;
  padding: 7px 12px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(26, 21, 18, 0.18);
}
.footer-awards {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem 1.1rem;
  border-top: 1px solid rgba(247, 239, 223, 0.15);
  padding-block: 1.4rem;
}
.footer-awards img { height: 76px; width: auto; }
.footer-awards p {
  margin: 0 0 0 0.5rem;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-light);
}
.footer-awards p span { color: var(--gold); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.08em; }

.footer-bottom {
  border-top: 1px solid rgba(247, 239, 223, 0.15);
  padding-block: 1.1rem;
  font-size: 0.9rem;
}
.footer-bottom p { margin: 0; }

/* ---------- Floating call button (mobile) ---------- */

.floating-call {
  display: none;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  background: var(--red);
  color: #fff;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(200, 32, 47, 0.5);
}

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .service-card { transition: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .wash-grid { grid-template-columns: repeat(3, 1fr); }
  .wash-photo { grid-column: 1 / -1; }
  .wash-photo img { min-height: 0; max-height: 320px; }
  .hours-grid { grid-template-columns: repeat(2, 1fr); }
  .oil-grid { grid-template-columns: 1fr 1fr; }
  .oil-includes { grid-column: 1 / -1; }
  .oil-includes ul { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .topbar-247 { display: none; }

  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 3px solid var(--red);
    box-shadow: 0 16px 30px rgba(26, 21, 18, 0.18);
    padding: 0.5rem 1.2rem 1.2rem;
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    padding: 0.8rem 0.2rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.15rem;
  }
  .site-nav .nav-call {
    margin-top: 0.9rem;
    text-align: center;
    border-radius: 999px;
  }

  .detailing-layout { grid-template-columns: 1fr; }
  .detailing-photo { transform: none; }
  .fleet-inner { flex-direction: column; align-items: flex-start; }
  .coupon-logo { width: 104px; }
  .awards-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .club-grid { grid-template-columns: 1fr; }
}

/* ---------- Coupons page ---------- */

.site-nav a[aria-current="page"] { color: var(--red); border-bottom-color: var(--gold); }

.page-head { padding-bottom: 0; }
.page-head .section-lead { margin-bottom: 0.5rem; }

.coupons-section { padding-top: 2.2rem; }

.coupon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  align-items: stretch;
}
@media (max-width: 880px) {
  .coupon-grid { grid-template-columns: 1fr; }
}

/* Dashed red border, like the coupons on the printed mailer */
.coupon-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 3px dashed var(--red);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 1.9rem 1.6rem 1.4rem;
}
.coupon-flag {
  position: absolute;
  top: -0.95rem;
  left: 1.3rem;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  border-radius: 6px;
  padding: 0.25rem 0.85rem;
  margin: 0;
}
.coupon-body {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.coupon-amount {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  line-height: 1;
  color: var(--red);
  margin: 0 0 0.3rem;
  text-transform: uppercase;
}
.coupon-amount span:not([data-price]) { color: var(--ink); font-size: 0.62em; }
.coupon-service {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 0.6rem;
}
.coupon-logo {
  width: 136px;
  height: auto;
  align-self: flex-start;
  flex-shrink: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
}
.coupon-details summary {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--blue);
  cursor: pointer;
}
.coupon-details summary:hover { text-decoration: underline; }
.coupon-details p {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin: 0.5rem 0 0;
  max-width: 38em;
}
.coupon-actions {
  display: flex;
  border-block: 1px solid var(--line);
  margin-top: auto;
}
.coupon-aud {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.6rem;
  max-width: 30em;
}
.coupon-show {
  border-block: 1px solid var(--line);
  margin: auto 0 0;
  padding: 0.85rem 0.4rem;
}
.coupon-actions + .coupon-show {
  border-top: none;
  margin-top: 0;
  text-align: center;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
}
.coupon-action {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: none;
  border: none;
  border-right: 1px solid var(--line);
  padding: 0.8rem 0.4rem;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.coupon-action:last-child { border-right: none; }
.coupon-action:hover { background: var(--cream); color: var(--red); }
.coupon-action svg { width: 20px; height: 20px; }
.coupon-note {
  margin: 2rem 0 0;
  color: var(--text-soft);
  font-size: 1rem;
}

/* ---------- Services page ---------- */

.featured-section { padding-top: 2rem; padding-bottom: 2.6rem; }

.featured-service {
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
  background: var(--paper);
  border-radius: var(--radius);
  border-top: 6px solid var(--red);
  box-shadow: var(--shadow);
  padding: 2rem 2rem 1.8rem;
}
.featured-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  color: var(--red);
  background: var(--cream);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 14px;
}
.featured-icon svg { width: 100%; height: 100%; }
.featured-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 1rem;
  text-wrap: balance;
}
.featured-flag {
  display: inline-block;
  background: var(--gold);
  color: var(--red);
  padding: 0.1em 0.5em;
  transform: skewX(-8deg);
  white-space: nowrap;
}
.featured-list {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
}
.featured-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.98rem;
  color: var(--text-soft);
}
.featured-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 800;
}
.featured-ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.btn-outline-ink {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-outline-ink:hover { background: rgba(26, 21, 18, 0.07); }

.svc-heading { text-align: center; margin-bottom: 2.2rem; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}
.svc-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: 10px;
  padding: 1.4rem 1.3rem;
}
.svc-icon {
  width: 58px;
  height: 58px;
  color: var(--red);
  background: var(--cream);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 12px;
  margin-bottom: 0.9rem;
}
.svc-icon svg { width: 100%; height: 100%; }
.svc-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 0.5rem;
}
.svc-card p { margin: 0; font-size: 0.94rem; line-height: 1.55; color: var(--text-soft); }

.svc-tile {
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 1.4rem 1.5rem;
}
.svc-tile p {
  margin: 0;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
}
.svc-tile-red { background: linear-gradient(115deg, var(--red-deep), var(--red)); }
.svc-tile-red p { color: #fff; }
.svc-tile-red strong { color: var(--gold); }
.svc-tile-ink { background: var(--ink); }
.svc-tile-ink p { color: var(--text-light); }
.svc-tile-ink strong { color: var(--gold); }

.svc-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-top: 2.4rem;
  text-align: center;
}
.svc-cta p {
  margin: 0;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ink);
}

@media (max-width: 1020px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .featured-service { flex-direction: column; }
}
@media (max-width: 640px) {
  .svc-grid { grid-template-columns: 1fr; }
  .featured-ctas .btn { flex: 1 1 100%; }
}

/* ---------- Request a Quote page ---------- */

.quote-hero {
  background:
    radial-gradient(900px 400px at 85% 0%, rgba(255, 192, 31, 0.16), transparent 60%),
    var(--ink);
  color: var(--text-light);
  padding-block: clamp(2.2rem, 5vw, 3.5rem);
  border-bottom: 4px solid var(--red);
}
.quote-hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.5rem;
}
.quote-hero-sub { max-width: 44em; color: var(--text-light-soft); margin: 0; font-size: 1.05rem; }

.quote-section { padding-top: 2.4rem; }
.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.form-card {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.form-bar {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(110deg, var(--red-deep), var(--red));
  padding: 0.85rem 1.5rem;
}
.form-card form, .quote-success { padding: 1.5rem 1.5rem 1.7rem; }

.form-block {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.1rem 1.2rem 1.3rem;
  margin: 0 0 1.2rem;
}
.form-block legend {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  padding: 0 0.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-row + .form-row { margin-top: 1rem; }
.q-field label {
  display: block;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.req { color: var(--red); font-weight: 800; }
.q-field input,
.q-field select,
.q-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
}
.q-field textarea { resize: vertical; min-height: 120px; }
.q-field input:focus, .q-field select:focus, .q-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
}
.req-note { font-size: 0.9rem; color: var(--text-soft); margin: 0 0 1.1rem; text-align: center; }
.form-submit { display: block; margin: 0 auto; min-width: 260px; }

/* Package / add-on choice tiles on the detailing quote form */
.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.choice {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.choice:hover { border-color: var(--gold); }
.choice:has(input:checked) { border-color: var(--red); background: #FFF6F0; }
.choice input {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  accent-color: var(--red);
  cursor: pointer;
}
.choice-name {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1.2;
}
.choice-price {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--red);
  white-space: nowrap;
}
@media (max-width: 560px) {
  .choice-grid { grid-template-columns: 1fr; }
}

.estimate-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.2rem 1rem;
  background: #FFF3D6;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  padding: 0.9rem 1.2rem;
  margin: 0 0 1.2rem;
}
.estimate-label {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
}
.estimate-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}
.estimate-note {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.offers-optin { margin: 0 0 1.1rem; }

.optional-tag {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.85em;
  color: var(--text-soft);
}

/* Yes/No radio rows and mixed-width rows on the careers form */
.yn-field {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 1.4rem;
  margin-top: 0.9rem;
}
.yn-label {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  min-width: 13rem;
}
.yn-group { display: flex; gap: 1.4rem; }
.yn-group label { display: flex; align-items: center; gap: 0.4rem; color: var(--text-soft); cursor: pointer; }
.yn-group input { width: 18px; height: 18px; accent-color: var(--red); cursor: pointer; }
.form-row-wide { grid-template-columns: 2.4fr 1fr; }
.form-row-thirds { grid-template-columns: 1.6fr 0.8fr 1fr; }
@media (max-width: 560px) {
  .form-row-wide, .form-row-thirds { grid-template-columns: 1fr; }
  .yn-label { min-width: 100%; }
}

/* ---------- Fleet program page ---------- */

.fleet-hero-tag { font-size: 1.2rem; }
.fleet-hero-tag strong { color: var(--gold); }
.fleet-points {
  list-style: none;
  margin: 1.2rem 0 1.6rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  max-width: 44em;
}
.fleet-points li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--text-light-soft);
}
.fleet-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 800;
}
.fleet-hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.fleet-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-top: 2rem;
}
.step-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem 1.3rem 1.5rem;
}
.step-num {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.8rem;
}
.step-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.45rem;
  color: var(--red);
}
.step-card p:last-child { margin: 0; color: var(--text-soft); }

.fleet-followup { margin: 1.8rem 0 1.2rem; font-size: 1.05rem; }
.fleet-cta-row { margin-bottom: 1.2rem; }
.fleet-disclaimer { font-size: 0.88rem; color: var(--text-soft); max-width: 52em; margin: 0; }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-top: 2.1rem;
  margin-bottom: 1.6rem;
}
.tier-range {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin: 0 0 0.2rem;
}
.tier-off {
  font-family: var(--font-display);
  font-size: 2.6rem;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 1rem;
  line-height: 1.05;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-top: 1.8rem;
}
.partner-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.3rem;
  display: grid;
  place-items: center;
}
.partner-tile img { width: 100%; max-width: 220px; height: auto; }
.partner-note { margin: 1.6rem 0 0; color: var(--text-soft); }
.partner-note a { color: var(--red); font-weight: 600; }

@media (max-width: 1020px) {
  .fleet-steps { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .tier-grid { grid-template-columns: 1fr; max-width: 460px; }
}
@media (max-width: 560px) {
  .fleet-steps { grid-template-columns: 1fr; }
  .fleet-hero-ctas .btn { flex: 1 1 100%; }
}

/* Two-step fleet application */

fieldset.fa-step { border: 0; padding: 0; margin: 0; min-width: 0; }
.fa-nav { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.fa-progress {
  margin-top: 1.6rem;
  background: var(--ink);
  border-radius: 999px;
  overflow: hidden;
  height: 1.5rem;
}
.fa-progress-fill {
  height: 100%;
  background: linear-gradient(110deg, var(--red-deep), var(--red));
  border-radius: 999px;
  display: grid;
  place-items: center;
  min-width: 3.2rem;
  transition: width 0.45s ease;
}
.fa-progress-fill span {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  letter-spacing: 0.05em;
}
.form-card form .fa-progress { margin: 0; }
.form-card > .fa-progress { margin: 0 1.5rem 1.7rem; }
.aside-note { margin: 0.9rem 0 0; font-size: 0.9rem; color: var(--text-soft); }
.aside-note a { color: var(--red); font-weight: 600; }

/* ---------- FAQ + service-area SEO ---------- */

.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1rem;
  align-items: start;
  max-width: 1060px;
  margin-top: 1.2rem;
}
.faq-section { padding-bottom: 1.2rem; }
.coupon-action:disabled { opacity: 0.35; cursor: not-allowed; }
.coupon-action:disabled:hover { background: inherit; color: inherit; }
.faq-section + .gallery-section { padding-top: 1.6rem; }
@media (max-width: 820px) {
  .faq-list { grid-template-columns: 1fr; }
}
.footer-serving { font-size: 0.85rem; color: var(--text-light-soft, #D9CDBA); margin: 0.45rem 0 0; }

/* ---------- Coupon view page (opened from coupon texts/emails) ---------- */

.cv-body { background: var(--cream); min-height: 100vh; }
.cv-topbar {
  background: var(--red);
  padding: 0.8rem 1rem;
  box-shadow: 0 4px 14px rgba(26, 21, 18, 0.14);
}
.cv-topbar-inner {
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cv-topbar img {
  height: 72px;
  width: auto;
  display: block;
  background: #fff;
  border-radius: 999px;
  padding: 5px 16px;
}
.cv-wordmark { text-align: right; }
.cv-wm-name {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 6.4vw, 1.9rem);
  line-height: 1;
  color: #fff;
  letter-spacing: 0.02em;
  margin: 0;
}
.cv-wm-name span { color: var(--gold); }
.cv-wm-services {
  font-family: var(--font-cond);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: clamp(0.62rem, 2.8vw, 0.82rem);
  margin: 0.25rem 0 0;
  white-space: nowrap;
}
.cv-main { max-width: 460px; margin: 0 auto; padding: 1.6rem 1rem 2.5rem; }
.cv-card {
  background: var(--paper);
  border: 3px dashed var(--red);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 1.6rem 1.3rem 1.5rem;
  text-align: center;
}
.cv-kicker {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  margin: 0 0 0.5rem;
}
.cv-amount {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 11vw, 3.4rem);
  line-height: 1;
  color: var(--red);
  margin: 0 0 0.35rem;
  text-transform: uppercase;
}
.cv-offer {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 1.1rem;
}
.cv-barcode-wrap { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 0.9rem 0.7rem 0.6rem; margin: 0 0 0.9rem; }
.cv-barcode { width: 100%; max-width: 320px; height: 78px; display: block; margin: 0 auto; }
.cv-code {
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: 0.3em;
  font-size: 1.1rem;
  color: var(--ink);
  margin: 0.4rem 0 0;
}
.cv-expires {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  font-size: 1.05rem;
  margin: 0 0 0.7rem;
}
.cv-show { color: var(--text-soft); margin: 0 0 0.9rem; }
.cv-fine { font-size: 0.78rem; color: var(--text-soft); margin: 0; line-height: 1.45; }
.cv-card-expired { border-style: solid; border-color: var(--line); }
.cv-expired-mark { font-size: 2.6rem; margin: 0.2rem 0 0.4rem; }
.cv-expired-copy { font-weight: 600; color: var(--ink); margin: 0 0 0.5rem; }
.cv-biz { text-align: center; font-size: 0.85rem; color: var(--text-soft); margin: 1.4rem 0 0; }
.cv-biz a { color: var(--red); font-weight: 600; }

.quote-success { text-align: center; }
.quote-success h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 0.5rem;
}
.quote-success p { color: var(--text-soft); max-width: 38em; margin: 0 auto 0.6rem; }
.quote-success .success-note a { font-weight: 700; }

/* Sidebar sticks while the form scrolls */
.quote-aside {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  display: grid;
  gap: 1.2rem;
}
.info-card {
  background: var(--paper);
  border-radius: var(--radius);
  border-top: 4px solid var(--red);
  box-shadow: var(--shadow);
  padding: 1.2rem 1.3rem 1.3rem;
}
.info-card-title {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 0.8rem;
  border-bottom: 2px solid var(--line);
  padding-bottom: 0.55rem;
}
.info-rows { margin: 0; display: grid; gap: 0.45rem; }
.info-rows div { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.95rem; }
.info-rows dt { color: var(--text-soft); font-weight: 600; flex-shrink: 0; }
.info-rows dd { margin: 0; text-align: right; font-variant-numeric: tabular-nums; }
.info-rows dd a { font-weight: 700; text-decoration: none; }
.info-rows dd a:hover { text-decoration: underline; }
.hours-group {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0.9rem 0 0.4rem;
}
.hours-group:first-of-type { margin-top: 0; }

.award-card { text-align: center; }
.award-card img { height: 170px; width: auto; margin: 0 auto 0.7rem; }
.award-card p { margin: 0; font-size: 0.95rem; color: var(--text-soft); }
.award-card strong { color: var(--ink); }

@media (max-width: 880px) {
  .quote-layout { grid-template-columns: 1fr; }
  .quote-aside { position: static; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Send-coupon dialog ---------- */

.coupon-dialog {
  width: min(520px, 92vw);
  border: none;
  border-radius: var(--radius);
  border-top: 6px solid var(--red);
  background: var(--paper);
  color: var(--text);
  padding: 1.8rem 1.7rem 1.6rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.coupon-dialog::backdrop { background: rgba(26, 21, 18, 0.6); }
.dialog-close {
  position: absolute;
  top: 0.7rem;
  right: 0.9rem;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--text-soft);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
}
.dialog-close:hover { color: var(--red); }
.dialog-offer {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 0.2rem;
}
.dialog-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 1.1rem;
}
.dialog-names {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}
@media (max-width: 420px) {
  .dialog-names { grid-template-columns: 1fr; }
}
.dialog-names + .dialog-field { margin-bottom: 0; }
.dialog-field label {
  display: block;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.dialog-field input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text);
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
}
.dialog-field input:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
}
.dialog-error {
  color: var(--red);
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0.4rem 0 0;
}
.consent-row {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin: 1.1rem 0 0.8rem;
  cursor: pointer;
}
.consent-row input {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--red);
  cursor: pointer;
}
.consent-text {
  font-size: 0.83rem;
  line-height: 1.5;
  color: var(--text-soft);
}
.dialog-biz {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin: 0 0 1.1rem;
}
.dialog-submit { width: 100%; }
.dialog-submit:disabled {
  background: #C9BBA4;
  color: #fff;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.dialog-success { text-align: center; padding: 0.5rem 0 0.2rem; }
.success-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 0.8rem;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
}
.dialog-success h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 0.5rem;
}
.success-copy { margin: 0 0 0.6rem; color: var(--text-soft); }
.success-note { font-size: 0.9rem; color: var(--text-soft); margin: 0 0 1.2rem; }

@media (max-width: 640px) {
  .topbar-inner { justify-content: center; }
  .topbar-item:first-child { display: none; }

  .brand img { height: 72px; padding: 0; }

  .service-grid { grid-template-columns: 1fr; }
  .wash-grid { grid-template-columns: 1fr; }
  .oil-grid { grid-template-columns: 1fr; }
  .oil-includes ul { grid-template-columns: 1fr; }
  .extras-grid { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery img { height: 160px; }

  .hero { min-height: 88vh; }
  .hero-ctas .btn { flex: 1 1 100%; }

  .floating-call { display: inline-block; }
}
