/* ===========================================================
   Nice Car Wash — shared stylesheet
   Palette measured directly from assets/logo.png and the
   brand banner art:
     yellow  #EFE748  (logo circle)
     coral   #E55251  (wordmark)  / #FE6055 (wave strand)
     lavender#BDA7CE  (droplet)   / #D7B8F3 (wave strand)
     mint    #91F1EF  (wave strand)
     navy    #202A42  (logo ring/text)
     navy-2  #2A314B  (hero + banner background, exact)
   =========================================================== */

:root {
  color-scheme: light;

  --gold: #efe748;            /* brand yellow (logo circle) */
  --gold-deep: #ddd32f;
  --coral: #e55251;
  --coral-bright: #fe6055;
  --lavender: #bda7ce;
  --lavender-bright: #d7b8f3;
  --mint: #91f1ef;
  --wave-yellow: #fcff4c;

  --navy: #202a42;            /* header / footer / text-on-yellow */
  --navy-2: #2a314b;          /* hero + banner art background (exact) */
  --ink: #1b2430;
  --muted: #5a6675;
  --line: #e4e8ee;
  --blue: #1565c0;
  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --consent-bg: #f6f2fa;      /* lavender-tinted */
  --consent-line: #dccfe9;

  --radius: 12px;
  --shadow: 0 6px 24px rgba(32, 42, 66, 0.10);
  --container: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  /* iOS renders ui-rounded (SF Rounded) — a friendly face that matches
     the logo wordmark; everyone else falls back to the system stack. */
  --font-display: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* The rainbow-wave strands from the brand banner, as a stripe. */
  --wave-stripe: linear-gradient(180deg,
      var(--coral-bright) 0 2px,
      var(--wave-yellow) 2px 4px,
      var(--mint) 4px 6px,
      var(--lavender-bright) 6px 8px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px; /* sticky header clearance for anchors */
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Skip link — hidden until keyboard focus */
.skip-link {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 300;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 0 0 10px 10px;
  box-shadow: var(--shadow);
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  padding: 6px 0;
  margin-right: auto;
}

.brand img { height: 48px; width: auto; border-radius: 8px; }

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.3px;
  color: #fff;
  white-space: nowrap;
}
.brand-name .accent { color: var(--gold); }

/* Mobile-only quick-call button (hidden on desktop) */
.nav-call {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 44px;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}
.nav-call svg { width: 18px; height: 18px; flex: none; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  padding: 0;
  color: #fff;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  position: relative;
  transition: transform 0.2s ease, background 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after  { position: absolute; top: 7px; }

/* Hamburger morphs to an X while the drawer is open */
.nav.open .nav-toggle span { background: transparent; }
.nav.open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span::after  { transform: translateY(-7px) rotate(-45deg); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu > li { position: relative; }

.nav-menu a,
.nav-menu .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  color: #eaf1fb;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 10px 14px;
  border-radius: 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu .dropdown-toggle:hover,
.nav-menu a.active {
  color: var(--navy);
  background: var(--gold);
}

.nav-menu a.external::after {
  content: "\2197";
  font-size: 0.85em;
  opacity: 0.8;
}

/* Dropdown (desktop) */
.dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  list-style: none;
  margin: 0;
  padding: 6px;
  display: none;
}
.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  color: var(--ink);
  padding: 10px 12px;
  border-radius: 7px;
  font-weight: 600;
}
.dropdown-menu a:hover { background: var(--bg-soft); color: var(--navy); }

.caret { font-size: 0.7em; transform: translateY(1px); }

/* ---------- Sections ---------- */
main { display: block; }

.section { padding: 56px 0; }
.section-soft { background: var(--bg-soft); }
.section-tight { padding: 32px 0; }

.section h1, .page-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.32rem + 2.2vw, 2.5rem);
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.13rem + 0.9vw, 1.6rem);
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 12px;
}

.lede {
  font-size: clamp(1.05rem, 0.99rem + 0.35vw, 1.15rem);
  color: var(--muted);
  max-width: 60ch;
}

/* ---------- Home hero ---------- */
.hero {
  /* Exact background color of the hero artwork, so any CSS crop
     blends seamlessly into the section. */
  background: var(--navy-2);
  color: #fff;
  text-align: center;
  padding: 0;
}
.hero-media { width: 100%; }
.hero-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  padding: 40px 20px 48px;
}
.hero-copy h1 {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(2rem, 1.43rem + 3vw, 3rem);
  line-height: 1.1;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}
.hero-copy h1 .accent { color: var(--gold); }
.hero-copy p {
  color: #cdd9ea;
  font-size: clamp(1.02rem, 0.95rem + 0.4vw, 1.15rem);
  max-width: 62ch;
  margin: 0 auto;
}

/* ---------- Live wash status (native; same contract as WashPilot's
   washStatus/current doc — override only when effectiveDate is today ET,
   else the clock+hours engine decides; static hours always render) ---------- */
.status-hero {
  background: var(--sign-navy);
  background: linear-gradient(180deg, var(--navy-2) 0%, var(--sign-navy-lo) 100%);
  border-bottom: 3px solid var(--gold);
  color: #fff;
  padding: 24px 0;
}
.status-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
  flex-wrap: wrap;
}
.status-now { display: flex; align-items: center; gap: 16px; }
.status-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex: none;
  background: var(--sign-sub);
  animation: status-pulse 2s ease-in-out infinite;
}
.st-open .status-dot { background: var(--tier-nicer); box-shadow: 0 0 16px rgba(126, 232, 234, 0.75); }
.st-closed .status-dot { background: var(--tier-plus); box-shadow: 0 0 16px rgba(240, 84, 84, 0.75); }
.st-limited .status-dot { background: var(--tier-nicest); box-shadow: 0 0 16px rgba(240, 236, 79, 0.75); }
@keyframes status-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.18); opacity: 0.72; }
}
.status-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.45rem, 1.15rem + 1.5vw, 2.1rem);
  letter-spacing: 1px;
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
}
.st-open .status-label { color: var(--tier-nicer); }
.st-closed .status-label { color: var(--tier-plus); }
.st-limited .status-label { color: var(--tier-nicest); }
.status-msg {
  display: block;
  margin-top: 3px;
  color: var(--sign-foot-c);
  font-weight: 600;
  font-size: clamp(0.92rem, 0.86rem + 0.35vw, 1.05rem);
}
.status-hours { text-align: right; }
.status-today {
  display: block;
  font-weight: 800;
  font-size: clamp(1rem, 0.9rem + 0.6vw, 1.3rem);
  color: #fff;
}
.status-week {
  display: block;
  margin-top: 2px;
  color: var(--sign-sub);
  font-weight: 600;
  font-size: 0.88rem;
}
@media (max-width: 640px) {
  .status-card { flex-direction: column; align-items: flex-start; gap: 12px; }
  .status-hours { text-align: left; }
}

/* ---------- Info cards ---------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid-2 { grid-template-columns: 1fr 1fr; }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.card h2 { margin-top: 0; }

.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.info-list li:last-child { border-bottom: 0; }
.info-list .label {
  min-width: 92px;
  flex: none;
  font-weight: 700;
  color: var(--navy);
}
.info-list a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  padding: 2px 0;
}
.info-list a:hover { text-decoration: underline; }

/* Hours table */
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px solid var(--line);
}
.hours th { color: var(--navy); font-weight: 700; }
.hours td { color: var(--muted); }

/* Media frame */
.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.media-frame img { width: 100%; height: auto; }

.map-frame {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* ---------- Join our team ---------- */
.hiring { text-align: center; }
.hiring-copy { max-width: 62ch; margin: 0 auto 28px; }
.hiring-copy h2 { margin-bottom: 10px; }
.hiring-copy p { color: var(--muted); margin: 0 auto 22px; }
.hiring-qr {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 22px 14px;
}
.hiring-qr img { border-radius: 8px; margin: 0 auto; }
.hiring-qr-cap {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 10px 0 0;
}

/* ---------- Legal / prose ---------- */
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose p {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 1.0625rem;
  line-height: 1.65;
}
.prose h1 { margin-bottom: 8px; }
.prose .updated { color: var(--muted); font-size: 0.95rem; margin-bottom: 28px; }
.prose .entity { color: var(--muted); font-size: 0.98rem; }
.prose .note { color: var(--muted); font-size: 0.98rem; }
.prose strong { color: var(--navy); }
.prose a { color: var(--blue); font-weight: 600; }

.consent-box {
  background: var(--consent-bg);
  border: 1px solid var(--consent-line);
  border-left: 4px solid var(--lavender);
  border-radius: 10px;
  padding: 18px 20px;
  margin: 0 0 20px;
}
.prose ul { padding-left: 20px; margin: 0 0 20px; }
.prose ul li {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.contact-block {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}
.contact-block a { color: var(--blue); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: transform 0.12s ease, background 0.12s ease;
}
.btn:hover { background: var(--gold-deep); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* ---------- Social marquee ---------- */
.social {
  background: var(--navy-2);
  padding: 22px 0;
  text-align: center;
}
.social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  color: var(--navy);
  background: var(--gold);
  font-weight: 700;
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
}
.social-links a:hover { background: #fff; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: #cdd9ea;
  padding: 0 0 28px;
}
/* Rainbow-wave brand stripe (from the banner art) tops the footer */
.site-footer::before {
  content: "";
  display: block;
  height: 8px;
  background: var(--wave-stripe);
  margin-bottom: 44px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { height: 46px; width: auto; border-radius: 8px; }
.footer-brand .brand-name { color: #fff; }

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 28px;
}
.footer-nav a {
  color: #cdd9ea;
  text-decoration: none;
  font-weight: 600;
  padding: 6px 0;
  display: inline-block;
}
.footer-nav a:hover { color: var(--gold); }
.footer-nav a.external::after { content: " \2197"; font-size: 0.85em; opacity: 0.8; }

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.footer-social a {
  color: #cdd9ea;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}
.footer-social a:hover { color: var(--gold); }

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
  align-items: center;
  color: #9db0c9;
  font-size: 0.9rem;
}
.footer-bottom a { color: #9db0c9; text-decoration: none; padding: 6px 0; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Responsive: tablet & below ---------- */
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-call { display: inline-flex; }

  .nav-menu {
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--navy);
    border-bottom: 3px solid var(--gold);
    padding: 10px 16px 18px;
    display: none;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.28);
  }
  .nav.open .nav-menu { display: flex; }

  .nav-menu a { width: 100%; min-height: 48px; font-size: 1.02rem; }

  /* Flatten "More" inside the drawer: hide the toggle, show its
     three links as regular menu items (no JS needed for them). */
  .nav-menu .dropdown-toggle { display: none; }
  .dropdown-menu {
    position: static;
    display: block;
    box-shadow: none;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0;
    background: transparent;
    padding: 6px 0 0;
    margin-top: 6px;
    min-width: 0;
  }
  .dropdown-menu a { color: #eaf1fb; padding: 10px 14px; border-radius: 8px; }
  .dropdown-menu a:hover { background: rgba(255, 255, 255, 0.10); color: var(--gold); }
  .dropdown-menu a.active { color: var(--navy); background: var(--gold); }

  /* Illustrated hero (2000x800): always shown full-frame — the art
     carries baked-in text and four characters, so it never crops. */

  .grid { gap: 20px; }
  .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }

  .footer-nav { grid-template-columns: 1fr; }
  .footer-nav a { display: block; min-height: 44px; padding: 10px 0; }
  .footer-social a { min-height: 44px; }
}

/* ---------- Responsive: phones ---------- */
@media (max-width: 640px) {
  .nav { min-height: 62px; }
  .brand img { height: 40px; }
  .brand-name { font-size: 1.05rem; }
  .nav-menu { max-height: calc(100vh - 62px); }
  .nav-call span { display: none; } /* icon-only, keeps 44px target */
  .nav-call { padding: 8px; }

  .hero-copy { padding: 32px 20px 40px; }

  /* Give the status widget wrap room so it never clips silently */
  .status-frame { height: 72px; }

  .section { padding: 44px 0; }
  .section-tight { padding: 28px 0; }
  .card { padding: 22px 18px; }
  .info-list .label { min-width: 84px; }
  .hours th, .hours td { padding: 12px 6px; }
  .map-frame { height: 340px; }
  .hiring-copy { margin-bottom: 22px; }
  .consent-box { padding: 16px; }
  .contact-block { line-height: 1.7; }

  .social { padding: 18px 0; }
  .social-links { gap: 10px; }
  .social-links a { flex: 1 1 auto; max-width: 160px; }

  .site-footer::before { margin-bottom: 36px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .brand-name { font-size: 1rem; }
  .status-frame { height: 88px; }
}

/* ===========================================================
   NICEPASS SIGNAGE SYSTEM — ported 1:1 from the locked 7/30
   launch pieces (NCW\Marketing sources):
     screen 3  ->  .sign-band, .ribbon, tier rows, .sign-foot
     postcard  ->  .menu-heads two-column grid (single/monthly)
   Palette (exact):
     coral   #F05454  NICEST+ (graphene)   chip text #CFC3F5
     yellow  #F0EC4F  NICEST  (ceramic)    chip text #7EE8EA
     teal    #7EE8EA  NICER
     lavender#B3A8DC  NICE                 chip text #F0EC4F
     navy    #1F2A4D  (hi #2B3A6B / lo #17203C radial)
   =========================================================== */
:root {
  --tier-plus: #f05454;
  --tier-nicest: #f0ec4f;
  --tier-nicer: #7ee8ea;
  --tier-nice: #b3a8dc;
  --sign-navy: #1f2a4d;
  --sign-navy-hi: #2b3a6b;
  --sign-navy-lo: #17203c;
  --sign-head: #dde1f2;
  --sign-sub: #8f9bc4;
  --sign-foot-c: #aeb8dc;
  --sign-red-soft: #ffe9e9;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
}
.btn-coral { background: var(--tier-plus); color: #fff; box-shadow: 0 10px 26px rgba(240, 84, 84, 0.35); }
.btn-coral:hover { background: var(--coral-bright); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
  box-shadow: none;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }

/* Rainbow wave stripe closes the hero, tying it to the banner art */
.hero::after {
  content: "";
  display: block;
  height: 8px;
  background: var(--wave-stripe);
}

/* ---------- The sign band (screen-3 canvas) ---------- */
.sign-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 60px 0 54px;
  background: var(--sign-navy);
  background: radial-gradient(ellipse 120% 75% at 50% -10%,
      var(--sign-navy-hi) 0%, var(--sign-navy) 55%, var(--sign-navy-lo) 100%);
}
.sign-band > .container { position: relative; z-index: 1; }

/* Bubble rings, exactly the signage decor */
.bub {
  position: absolute;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.07);
  pointer-events: none;
}
.bub-1 { width: 220px; height: 220px; left: -70px; top: 12%; }
.bub-2 { width: 140px; height: 140px; right: -40px; top: 6%; }
.bub-3 { width: 90px; height: 90px; right: 6%; bottom: 14%; border-color: rgba(240, 236, 79, 0.10); }
.bub-4 { width: 170px; height: 170px; left: -50px; bottom: -60px; }

.sign-title {
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.9rem, 1.16rem + 3.7vw, 3.4rem);
  letter-spacing: 1px;
  line-height: 1.05;
  color: var(--sign-head);
  text-transform: uppercase;
}
.sign-sub {
  margin: 12px 0 0;
  text-align: center;
  color: var(--sign-sub);
  font-weight: 700;
  font-size: clamp(0.92rem, 0.8rem + 0.6vw, 1.3rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.sign-sub b { color: var(--tier-nicest); font-weight: 800; }

/* Scarcity ribbon (red, glowing) */
.ribbon {
  max-width: 780px;
  margin: 32px auto 0;
  background: var(--tier-plus);
  border-radius: 24px;
  padding: 20px 30px 22px;
  text-align: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.02rem, 0.86rem + 0.8vw, 1.45rem);
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow: 0 16px 40px rgba(240, 84, 84, 0.30);
}
.ribbon small {
  display: block;
  margin-top: 7px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.68em;
  letter-spacing: 0.4px;
  color: var(--sign-red-soft);
  text-transform: none;
}

/* ---------- The menu grid (postcard layout) ---------- */
.menu { max-width: 940px; margin: 38px auto 0; }
.menu-heads { display: flex; padding: 0 34px; margin-bottom: 4px; }
.menu-heads .spacer { flex: 1.35; }
.menu-heads .h {
  flex: 1;
  text-align: center;
  color: var(--sign-sub);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.menu-heads .h small {
  display: block;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: none;
}

.menu-row {
  display: flex;
  align-items: center;
  border-radius: 22px;
  padding: 20px 34px;
  margin-top: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}
.m-plus { background: var(--tier-plus); }
.m-nicest { background: var(--tier-nicest); }
.m-nicer { background: var(--tier-nicer); }
.m-nice { background: var(--tier-nice); }

.row-name { flex: 1.35; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.tname {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 1.14rem + 1.8vw, 2.4rem);
  letter-spacing: 0.5px;
  line-height: 1;
  color: var(--sign-navy);
  text-transform: uppercase;
}
.m-plus .tname { color: #fff; }

.chip {
  border-radius: 999px;
  padding: 7px 18px;
  background: var(--sign-navy);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  white-space: nowrap;
  text-transform: uppercase;
}
.m-plus .chip { color: #cfc3f5; }
.m-nicest .chip { color: #7ee8ea; }
.m-nice .chip { color: #f0ec4f; }

.row-col { flex: 1; text-align: center; }
/* Column labels: screen-reader-only on desktop (visual headers carry it),
   visible inline labels on mobile where the headers are hidden. */
.row-col .lbl {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.single-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.2rem);
  color: var(--sign-navy);
}
.m-plus .single-price { color: #fff; }

.monthly { display: flex; align-items: baseline; justify-content: center; gap: 13px; }
/* Monthly price + its per-tier 2nd-vehicle rate, stacked */
.monthly-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.second-line {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sign-navy);
  opacity: 0.8;
  white-space: nowrap;
}
.m-plus .second-line { color: var(--sign-red-soft); }
/* Out-the-door total (Erie PA 6% sales tax), shown on the details menu */
.withtax {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sign-navy);
  opacity: 0.78;
  white-space: nowrap;
}
.m-plus .withtax { color: var(--sign-red-soft); }
/* Regular price: the reference point of the deal — kept BIG and readable,
   with an unmissable red cross-out ("this WOULD be the price"). */
.reg {
  font-family: var(--font-display);
  font-weight: 900;
  text-decoration: line-through;
  text-decoration-thickness: 0.14em;
  text-decoration-color: #e03434;
  opacity: 0.95;
  font-size: clamp(1.15rem, 0.95rem + 1vw, 1.65rem);
  color: var(--sign-navy);
}
.m-plus .reg { color: var(--sign-red-soft); text-decoration-color: var(--sign-navy); }
.promo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 1.24rem + 1.8vw, 2.45rem);
  line-height: 1;
  color: var(--sign-navy);
}
.m-plus .promo { color: #fff; }

/* The competitor value claim — screen-2 treatment (big yellow) */
.sign-value {
  margin: 30px 0 0;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.35rem, 1.05rem + 1.5vw, 2.1rem);
  letter-spacing: 1px;
  line-height: 1.15;
  color: var(--tier-nicest);
  text-transform: uppercase;
}
.sign-value + .sign-value-sub {
  margin: 8px 0 0;
  text-align: center;
  color: var(--sign-head);
  font-weight: 700;
  font-size: clamp(0.95rem, 0.88rem + 0.4vw, 1.15rem);
}
.sign-fn {
  margin: 22px auto 0;
  max-width: 940px;
  text-align: center;
  color: var(--sign-sub);
  font-weight: 600;
  font-size: 0.8rem;
}

/* Foot lines under the menu (yellow-accent, signage voice) */
.sign-foot {
  margin: 30px auto 0;
  max-width: 940px;
  text-align: center;
  color: var(--sign-foot-c);
  font-weight: 600;
  font-size: clamp(0.95rem, 0.88rem + 0.4vw, 1.12rem);
  line-height: 1.65;
}
.sign-foot b { color: var(--tier-nicest); font-weight: 800; }
.sign-cta { text-align: center; margin-top: 30px; }

/* Compact teaser variant (home): monthly-only rows, tighter band */
.sign-band--teaser { padding: 52px 0 48px; }
.sign-band--teaser .menu { max-width: 760px; }
.sign-band--teaser .menu-row { padding: 16px 30px; }
.sign-band--teaser .monthly { justify-content: flex-end; }

.hero-copy h1 { font-weight: 900; letter-spacing: 0.5px; }

/* Fine print under pricing */
.plans-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 14px 0 0;
}
.plans-note strong { color: var(--navy); }

/* Members auto-promo checklist card */
.member-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--tier-plus);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 26px;
  max-width: 640px;
  margin: 0 auto;
}
.member-card h2 { color: var(--coral); }
.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li {
  position: relative;
  padding: 8px 0 8px 32px;
}
.checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Pre-footer CTA band — same signage canvas for cohesion */
.cta-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  padding: 48px 0;
  background: var(--sign-navy);
  background: radial-gradient(ellipse 120% 90% at 50% -20%,
      var(--sign-navy-hi) 0%, var(--sign-navy) 55%, var(--sign-navy-lo) 100%);
  border-top: 3px solid var(--gold);
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 6px; }
.cta-band p { color: var(--sign-foot-c); margin: 0 auto 20px; max-width: 60ch; }
.cta-band .hero-ctas { margin-top: 0; }

/* Compare/footnote text */
.footnote {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 18px;
}

/* ---------- Signage responsive ---------- */
@media (max-width: 860px) {
  .menu-heads { display: none; }
  .menu-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 18px 20px;
  }
  .row-name { justify-content: space-between; }
  .row-col {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-top: 1px dashed rgba(31, 42, 77, 0.28);
    padding-top: 10px;
  }
  .m-plus .row-col { border-top-color: rgba(255, 255, 255, 0.32); }
  .row-col .lbl {
    position: static;
    width: auto; height: auto;
    margin: 0; overflow: visible;
    clip: auto; white-space: normal;
    display: inline-block;
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.78;
    color: var(--sign-navy);
  }
  .m-plus .row-col .lbl { color: var(--sign-red-soft); }
  .monthly { justify-content: flex-end; }
  .monthly-wrap { align-items: flex-end; }
  .bub-1, .bub-4 { display: none; }
}
@media (max-width: 560px) {
  .sign-band { padding: 44px 0 40px; }
  .ribbon { padding: 16px 20px 18px; border-radius: 18px; }
  .menu-row { border-radius: 18px; }
  .member-card { padding: 20px 18px; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
