/* ============================================================
   Prestige VIP Wash Club — landing page
   Plain CSS. Mobile-first. Breakpoints: 640 / 768 / 1024.
   ============================================================ */

:root {
  --yellow-400: #facc15;
  --yellow-500: #eab308;
  --yellow-300: #fde047;
  --yellow-200: #fde68a;
  --yellow-100: #fef9c3;
  --yellow-800: #854d0e;
  --yellow-50:  #fefce8;
  --red-600:    #dc2626;
  --red-50:     #fef2f2;
  --gray-900:   #111827;
  --gray-800:   #1f2937;
  --gray-700:   #374151;
  --gray-600:   #4b5563;
  --gray-500:   #6b7280;
  --gray-400:   #9ca3af;
  --gray-300:   #d1d5db;
  --gray-200:   #e5e7eb;
  --gray-100:   #f3f4f6;
  --gray-50:    #f9fafb;
  --ink:        #0a0a0a;

  --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,.25);
  --shadow-sm: 0 1px 3px 0 rgba(0,0,0,.1), 0 1px 2px -1px rgba(0,0,0,.1);
  --outline-text: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000, 4px 4px 6px rgba(0,0,0,.7);

  --header-h: 84px;
  --focus: 3px solid #1d4ed8;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; }
summary { cursor: pointer; }
blockquote { quotes: none; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ---------- Accessibility utilities ---------- */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -100px; z-index: 100;
  background: #000; color: #fff; padding: 12px 20px; border-radius: 0 0 8px 8px;
  font-weight: 700; transition: top .15s ease;
}
.skip-link:focus { top: 0; }

/* One consistent, high-contrast focus ring for every interactive element. */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: var(--focus);
  outline-offset: 3px;
  border-radius: 6px;
}
/* Older engines without :focus-visible still get the default ring. */
summary:focus:not(:focus-visible) { outline: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; cursor: pointer; border: none; text-align: center;
  transition: background-color .2s ease, transform .3s ease, box-shadow .3s ease;
  white-space: nowrap;
}
.btn-pill {
  background: var(--yellow-400); color: #000; border-radius: 9999px;
  border: 4px solid var(--yellow-300); box-shadow: var(--shadow-2xl);
}
.btn-lg  { font-size: 18px; padding: 16px 40px; }
.btn-xl  { font-size: 20px; padding: 22px 44px; }
.btn-xl svg { width: 20px; height: 20px; }
.btn-block { display: flex; width: 100%; }
.btn-plan {
  background: var(--yellow-400); color: #000; border-radius: 12px;
  font-size: 16px; letter-spacing: .01em; padding: 14px 16px; box-shadow: var(--shadow-sm);
}
@media (hover: hover) {
  .btn-pill:hover { background: var(--yellow-500); transform: scale(1.05); }
  .card-link:hover .btn-plan { background: var(--yellow-500); }
}
.btn:active { transform: scale(.98); }

/* ---------- Header ---------- */
.site-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 20;
  background: #fff; border-bottom: 1px solid var(--gray-200);
}
.header-inner {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding-top: 20px; padding-bottom: 20px;
}
.logo-link { flex: 0 0 auto; }
.logo-img { height: 44px; width: auto; }
.header-nav { display: none; gap: 26px; font-size: 15px; color: var(--gray-700); font-weight: 500; list-style: none; }
.header-nav li { white-space: nowrap; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: 540px; height: 78svh; max-height: 800px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(to bottom, var(--yellow-50), var(--gray-100));
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.66), rgba(0,0,0,.38) 50%, rgba(0,0,0,.5));
}
/* Hero content is deliberately NOT scroll-revealed: it is the LCP element and
   must paint on the first frame, with or without JavaScript. */
.hero-content {
  position: relative; z-index: 1; text-align: center; color: #fff;
  padding-top: var(--header-h);
}
.hero-title { font-weight: 700; line-height: 1.05; margin-bottom: 16px; font-size: 32px; text-shadow: 3px 3px 0 #000, 6px 6px 12px rgba(0,0,0,.8); }
.hero-title span { display: block; }
.hero-title .line-white { color: #fff; }
.hero-title .line-yellow { color: var(--yellow-400); }
.hero-sub { font-size: 18px; font-weight: 300; margin-bottom: 24px; text-shadow: 2px 2px 0 #000, 4px 4px 8px rgba(0,0,0,.8); }
.hero-cta { margin-bottom: 4px; }
.hero-fineprint { margin-top: 16px; font-size: 13px; font-weight: 500; line-height: 1.7; text-shadow: 2px 2px 0 #000, 4px 4px 8px rgba(0,0,0,.8); }

/* ---------- Section heads ---------- */
.section-head { text-align: center; margin-bottom: 48px; }
.pricing-title, .testi-title, .fv-title, .faq-title, .final-cta h2 { font-weight: 700; }
.pricing-title { font-size: 32px; text-transform: uppercase; color: var(--gray-900); margin-bottom: 16px; line-height: 1.15; }
.pricing-subtitle { font-size: 26px; font-weight: 700; text-transform: uppercase; color: var(--yellow-400); text-shadow: var(--outline-text); line-height: 1.2; }
/* Crisper outline than stacked text-shadows where the engine supports it. */
@supports (paint-order: stroke) {
  .pricing-subtitle {
    paint-order: stroke fill;
    -webkit-text-stroke: 3.5px #000;
    text-shadow: none;
  }
}

/* ---------- Pricing ---------- */
.pricing { padding: 64px 0; background: var(--gray-50); scroll-margin-top: 16px; }
.cards-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: stretch; max-width: 1080px; margin: 0 auto; }
.card-link { display: block; height: 100%; min-width: 0; }
.card {
  position: relative; height: 100%; min-width: 0; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--gray-200); border-radius: 18px;
  box-shadow: 0 1px 3px rgba(17,24,39,.04), 0 14px 32px -16px rgba(17,24,39,.14);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card-featured { background: linear-gradient(to bottom, var(--yellow-50), #fff); box-shadow: 0 0 0 3px var(--yellow-400), 0 16px 34px -16px rgba(202,138,4,.28); }
@media (hover: hover) {
  .card-link:hover .card { transform: translateY(-6px); box-shadow: 0 2px 8px rgba(17,24,39,.06), 0 28px 52px -20px rgba(17,24,39,.22); }
  .card-link:hover .card-featured { box-shadow: 0 0 0 3px var(--yellow-400), 0 30px 56px -20px rgba(202,138,4,.36); }
}
.card-link:focus-visible { outline: none; }
.card-link:focus-visible .card { outline: var(--focus); outline-offset: 4px; }
.badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; padding: 4px 16px; border-radius: 6px;
  font-size: 12px; font-weight: 700; color: #fff; box-shadow: var(--shadow-sm); white-space: nowrap;
}
.badge-popular { background: #c81e1e; }
.card-body { padding: 30px 24px 14px; text-align: center; flex: 1 1 auto; display: flex; flex-direction: column; }
.card-title { font-size: 18px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--gray-900); margin-bottom: 18px; }
.price-box { background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: 14px; padding: 18px 16px 16px; margin-bottom: 22px; }
.card-featured .price-box { background: rgba(255,255,255,.55); border-color: rgba(255,255,255,.8); }
/* The trial headline sits on a dark plate rather than being outlined: same
   brand yellow, but 12:1 contrast instead of ~2:1, and it reads as a badge. */
.price-free {
  display: inline-block; font-size: 25px; font-weight: 800; line-height: 1.1;
  letter-spacing: -.01em; color: var(--yellow-400);
  background: var(--gray-900); border-radius: 10px; padding: 7px 18px;
  box-shadow: 0 2px 8px -2px rgba(17,24,39,.4);
}
.price-free span { display: inline; }
.price-fee { font-size: 12px; color: var(--gray-600); margin-top: 9px; }
.price-divider { border: none; border-top: 1px dashed var(--gray-300); width: 100%; margin: 15px 0; }
.price-then { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: 0 5px; font-size: 14px; font-weight: 500; color: var(--gray-600); }
.price-then strong { font-size: 27px; font-weight: 800; letter-spacing: -.02em; color: var(--gray-900); }
.card-tagline { font-size: 13.5px; line-height: 1.5; color: var(--gray-600); margin-bottom: 20px; }
.feature-list { text-align: left; display: flex; flex-direction: column; gap: 11px; }
.feature-list li { position: relative; padding-left: 27px; font-size: 14px; line-height: 1.45; color: var(--gray-700); }
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 1.5px; width: 18px; height: 18px;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/><polyline points='22 4 12 14.01 9 11.01'/></svg>");
}
/* Tier "Includes" callout — the plan's headline features, shown first */
.upgrade-block {
  margin: 0 0 16px; padding: 14px 14px 4px; border-radius: 12px;
  background: var(--yellow-50); border: 1px solid var(--yellow-200);
}
.card-featured .upgrade-block { background: rgba(255,255,255,.65); border-color: var(--yellow-300); }
.upgrade-label {
  display: inline-flex; align-items: center; gap: 5px; margin-bottom: 10px;
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
  color: var(--yellow-800); background: var(--yellow-100);
  border: 1px solid var(--yellow-200); border-radius: 9999px; padding: 3px 10px;
}
.upgrade-label svg { width: 13px; height: 13px; }
.upgrade-block .feature-list { gap: 10px; padding-bottom: 10px; }
.feature-list li.feat-new { font-weight: 700; color: var(--gray-900); }
.feature-list li.feat-tier2 { color: var(--gray-800); }
.feature-list li.feat-new::before,
.feature-list li.feat-tier2::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><circle cx='12' cy='12' r='11' fill='%23facc15'/><path d='M7 12.4l3.1 3.1L17 8.9' stroke='%23111827' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
/* Push the CTA to the card floor so all three buttons line up. */
.card-body > .feature-list:last-child { margin-bottom: auto; }
.card-foot { padding: 18px 24px 26px; }
.pricing-note { text-align: center; font-size: 13px; color: var(--gray-600); margin-top: 36px; }

/* ---------- Testimonials ---------- */
.testimonials { padding: 64px 0; background: #fff; }
.testi-title { font-size: 28px; color: var(--gray-900); }
.stars { display: inline-flex; gap: 2px; color: var(--yellow-500); }
.stars svg { width: 18px; height: 18px; fill: currentColor; }
.stars-lg { display: flex; justify-content: center; margin-bottom: 12px; }
.stars-lg svg { width: 26px; height: 26px; }

.carousel { position: relative; display: flex; align-items: center; gap: 8px; }
/* Native scroll-snap: swipes on touch, arrow-keys on desktop, works with zero JS.
   The arrow buttons and dots below are progressive enhancement only. */
.carousel-track {
  display: flex; flex: 1 1 auto; min-width: 0;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.carousel-track::-webkit-scrollbar { display: none; }
.testi-slide { flex: 0 0 100%; scroll-snap-align: start; padding: 8px 10px; display: flex; }
.testi-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: 12px;
  box-shadow: var(--shadow-xl); padding: 28px 24px; width: 100%;
  display: flex; flex-direction: column; text-align: center;
}
.testi-card .stars { justify-content: center; margin-bottom: 12px; }
.testi-quote { font-style: italic; color: var(--gray-700); font-size: 15px; line-height: 1.6; margin-bottom: 16px; flex: 1 1 auto; }
.testi-quote::before { content: "\201C"; }
.testi-quote::after  { content: "\201D"; }
.testi-card figcaption { display: flex; flex-direction: column; gap: 4px; }
.testi-name { font-weight: 700; color: var(--gray-900); }
.testi-loc { display: inline-flex; align-items: center; gap: 4px; justify-content: center; font-size: 13px; color: var(--gray-600); }
.testi-loc svg { width: 13px; height: 13px; fill: currentColor; }

.carousel-arrow {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 9999px;
  background: #fff; border: 1px solid var(--gray-300); box-shadow: var(--shadow-sm);
  color: var(--gray-700); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background-color .2s, color .2s, opacity .2s;
}
.carousel-arrow svg { width: 18px; height: 18px; }
.carousel-arrow[hidden] { display: none; }
.carousel-arrow:disabled { opacity: .35; cursor: default; }
@media (hover: hover) {
  .carousel-arrow:not(:disabled):hover { background: var(--gray-900); color: #fff; border-color: var(--gray-900); }
}
/* 24×24 tap targets (WCAG 2.5.8) around a 10px visual dot. */
.carousel-dots { display: flex; flex-wrap: wrap; justify-content: center; gap: 2px; margin-top: 18px; }
.carousel-dots[hidden] { display: none; }
.carousel-dots button {
  width: 24px; height: 24px; padding: 0; border: none; background: transparent; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; -webkit-tap-highlight-color: transparent;
}
.carousel-dots button::before {
  content: ""; width: 10px; height: 10px; border-radius: 9999px;
  background: var(--gray-300); transition: background-color .2s, transform .2s;
}
.carousel-dots button[aria-current="true"]::before { background: var(--yellow-500); transform: scale(1.25); }

/* ---------- Free Vacuum ---------- */
.free-vacuum { padding: 32px 0; background: linear-gradient(to right, var(--red-50), var(--yellow-50)); }
.fv-inner { text-align: center; }
.fv-title { display: inline-flex; align-items: center; gap: 10px; font-size: 26px; color: var(--red-600); }
.fv-title svg { width: 28px; height: 28px; flex: 0 0 auto; }
.fv-sub { font-size: 17px; font-weight: 300; color: var(--gray-700); margin-top: 4px; }

/* ---------- Disclosure (native <details>) ---------- */
.disclosure summary { list-style: none; }
.disclosure summary::-webkit-details-marker { display: none; }
.disclosure-chevron { flex: 0 0 auto; width: 24px; height: 24px; color: var(--gray-500); transition: transform .3s ease; }
.disclosure[open] > summary .disclosure-chevron { transform: rotate(180deg); }
/* Smooth open/close where the engine supports animating to auto height.
   Everywhere else the panel simply snaps open — no JS, no layout bug. */
@supports (interpolate-size: allow-keywords) {
  :root { interpolate-size: allow-keywords; }
  .disclosure::details-content {
    block-size: 0;
    overflow: hidden;
    transition: block-size .35s ease, content-visibility .35s allow-discrete;
  }
  .disclosure[open]::details-content { block-size: auto; }
}

/* ---------- Locations ---------- */
.locations { padding: 64px 0; background: #fff; }
.locations-trigger {
  width: 100%; display: flex; align-items: center; gap: 16px; text-align: left;
  background: linear-gradient(to right, var(--yellow-50), #fff);
  border: 2px solid var(--yellow-200); border-radius: 12px;
  padding: 20px; box-shadow: var(--shadow-sm); transition: box-shadow .3s;
}
@media (hover: hover) { .locations-trigger:hover { box-shadow: var(--shadow-xl); } }
.loc-icon { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 9999px; background: var(--yellow-400); display: flex; align-items: center; justify-content: center; }
.loc-icon svg { width: 22px; height: 22px; color: #000; }
.loc-text { flex: 1 1 auto; display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.loc-title { font-size: 20px; font-weight: 700; color: var(--gray-900); line-height: 1.2; }
.loc-sub { font-size: 14px; color: var(--gray-600); }
.locations-trigger .disclosure-chevron { width: 30px; height: 30px; color: var(--yellow-500); }

.locations-grid { display: grid; grid-template-columns: 1fr; gap: 16px; padding-top: 24px; }
.loc-card {
  display: flex; align-items: flex-start; gap: 12px; height: 100%;
  background: #fff; border: 1px solid var(--gray-200); border-radius: 12px;
  box-shadow: var(--shadow-sm); padding: 16px; transition: box-shadow .3s, border-color .3s;
}
@media (hover: hover) {
  .loc-card:hover { box-shadow: var(--shadow-xl); border-color: var(--yellow-200); }
}
.loc-pin { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 2px; color: var(--yellow-500); fill: currentColor; }
.loc-card-body { flex: 1 1 auto; min-width: 0; }
.loc-name { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.loc-address { font-size: 14px; color: var(--gray-600); margin-bottom: 12px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-tag { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; background: var(--yellow-100); color: var(--yellow-800); border: 1px solid var(--yellow-200); border-radius: 6px; padding: 2px 8px; }
.svc-tag svg { width: 13px; height: 13px; }

/* ---------- FAQ ---------- */
.faq { padding: 64px 0; background: linear-gradient(to bottom, var(--gray-50), #fff); }
.faq-title { display: inline-flex; align-items: center; gap: 10px; font-size: 26px; color: var(--gray-900); margin-bottom: 12px; }
.faq-title svg { width: 28px; height: 28px; color: var(--yellow-500); flex: 0 0 auto; }
.faq-subtitle { color: var(--gray-600); font-size: 16px; }
.faq-list { max-width: 896px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: #fff; border: 1px solid var(--gray-200); border-radius: 12px; box-shadow: var(--shadow-sm); transition: box-shadow .3s; }
@media (hover: hover) { .faq-item:hover { box-shadow: var(--shadow-xl); } }
.faq-trigger { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; }
.faq-question { font-size: 16px; font-weight: 600; color: var(--gray-900); }
.faq-item .disclosure-body { padding: 0 24px 20px; color: var(--gray-700); font-size: 15px; line-height: 1.6; }

/* ---------- Final CTA ---------- */
.final-cta { padding: 72px 0; background: #000; color: #fff; }
.final-cta-inner { text-align: center; max-width: 896px; }
.final-cta h2 { font-size: 32px; margin-bottom: 20px; }
.final-cta p { color: #d1d5db; margin-bottom: 32px; font-size: 18px; }

/* ---------- Footer ---------- */
.site-footer { background: #0a0a0a; color: #d1d5db; padding: 56px 0 28px; font-size: 15px; }
.footer-inner { display: grid; grid-template-columns: 1fr; gap: 36px; }
/* One logo asset for the whole site: the dark lockup sits on a white chip in
   the dark footer, which keeps the gold shield colour-accurate. */
.footer-logo-plate { display: inline-block; background: #fff; border-radius: 10px; padding: 9px 13px; margin-bottom: 14px; }
.footer-logo { height: 38px; width: auto; }
.footer-tagline { color: var(--gray-400); font-size: 14px; line-height: 1.6; max-width: 34ch; }
.footer-heading { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #fff; margin-bottom: 14px; }
.footer-list { display: flex; flex-direction: column; gap: 12px; }
.footer-item { display: flex; align-items: flex-start; gap: 9px; color: #d1d5db; line-height: 1.5; }
.footer-item svg { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 2px; color: var(--yellow-400); }
.footer-item strong { color: #fff; }
.footer-note { color: var(--gray-400); font-size: 13px; }
.footer-bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid #232323; display: flex; flex-direction: column; gap: 10px; }
.footer-bottom p { color: var(--gray-400); font-size: 13px; }
.footer-fineprint { max-width: 78ch; line-height: 1.6; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  background: rgba(255,255,255,.97);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -6px 20px rgba(0,0,0,.12);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  transform: translateY(110%);
  transition: transform .3s ease;
}
@supports (backdrop-filter: blur(8px)) {
  .sticky-cta { background: rgba(255,255,255,.9); backdrop-filter: blur(8px); }
}
.sticky-cta[hidden] { display: none; }
.sticky-cta.is-visible { transform: none; }
.sticky-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; max-width: 620px; margin: 0 auto; }
.sticky-cta-copy { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.sticky-cta-copy strong { font-size: 15px; color: var(--gray-900); }
.sticky-cta-copy span { font-size: 12px; color: var(--gray-600); }
.btn-sticky { font-size: 15px; padding: 11px 22px; border-width: 3px; box-shadow: none; flex: 0 0 auto; }
body.has-sticky-cta { padding-bottom: 74px; }
@media (min-width: 768px) {
  .sticky-cta { display: none; }
  body.has-sticky-cta { padding-bottom: 0; }
}

/* ---------- Reveal on scroll ---------- */
/* Gated on .js so a visitor without JavaScript never sees a blank page. */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in-view { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .carousel-track { scroll-behavior: auto; }
  .sticky-cta { transition: none; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   Breakpoints
   ============================================================ */
@media (min-width: 640px) {
  .hero-title { font-size: 40px; }
  .hero-sub { font-size: 20px; }
  .hero-fineprint { font-size: 14px; }
  .pricing-title { font-size: 38px; }
  .pricing-subtitle { font-size: 30px; }
  .footer-inner { grid-template-columns: 1.3fr 1fr; gap: 40px 32px; }
}

@media (min-width: 768px) {
  .hero { min-height: 650px; height: 75svh; }
  .hero-title { font-size: 48px; margin-bottom: 24px; }
  .hero-sub { font-size: 24px; margin-bottom: 32px; }
  .pricing-title { font-size: 48px; }
  .pricing-subtitle { font-size: 36px; }
  .testi-title { font-size: 36px; }
  .fv-title { font-size: 34px; }
  .fv-title svg { width: 32px; height: 32px; }
  .fv-sub { font-size: 18px; }
  .faq-title { font-size: 34px; }
  .faq-title svg { width: 32px; height: 32px; }
  .final-cta h2 { font-size: 44px; }
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-slide { flex-basis: 50%; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-trigger { padding: 24px; }
  .loc-title { font-size: 24px; }
  .loc-sub { font-size: 16px; }
  .loc-icon { width: 48px; height: 48px; }
  .loc-icon svg { width: 24px; height: 24px; }
  .footer-inner { grid-template-columns: 1.3fr 1fr; gap: 40px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: row; align-items: baseline; justify-content: space-between; gap: 24px; }
  .footer-bottom p:first-child { flex: 0 0 auto; }
}

/* Tablet portrait: three plans still fit side by side, but only once the
   internal padding and type scale down to match the narrower column. */
@media (min-width: 768px) and (max-width: 1023px) {
  .cards-grid { gap: 16px; }
  .card-body { padding: 26px 14px 12px; }
  .card-foot { padding: 16px 14px 22px; }
  .price-box { padding: 16px 10px 14px; }
  .card-title { font-size: 15px; letter-spacing: .02em; margin-bottom: 14px; }
  .price-free { font-size: 21px; padding: 6px 12px; }
  .price-fee { font-size: 11px; }
  .price-then strong { font-size: 23px; }
  .card-tagline { font-size: 12.5px; margin-bottom: 16px; }
  .feature-list li { font-size: 13px; padding-left: 24px; }
  .feature-list li::before { width: 16px; height: 16px; }
  .upgrade-block { padding: 12px 10px 4px; }
  .upgrade-label { font-size: 10px; padding: 3px 8px; }
  .btn-plan { font-size: 15px; padding: 13px 10px; }
}

@media (min-width: 1024px) {
  .header-inner { justify-content: space-between; }
  .header-nav { display: flex; }
  .hero-title { font-size: 60px; }
  .testi-slide { flex-basis: 33.3333%; }
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
  .loc-title { font-size: 28px; }
  .final-cta h2 { font-size: 48px; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .carousel-arrow, .carousel-dots, .sticky-cta, .skip-link, .hero-bg, .hero-overlay { display: none !important; }
  .hero { min-height: 0; height: auto; background: none; padding: 24px 0; }
  .hero-content { color: #000; padding-top: 0; }
  .hero-title, .hero-sub, .hero-fineprint { text-shadow: none; color: #000; }
  .hero-title .line-yellow { color: #666; }
  .final-cta, .site-footer { background: #fff !important; color: #000 !important; }
  .final-cta p, .footer-bottom p, .footer-tagline { color: #333 !important; }
  .footer-heading { color: #000 !important; }
  .carousel-track { overflow: visible; display: block; }
  .testi-slide { width: 100%; page-break-inside: avoid; }
  .disclosure::details-content { block-size: auto !important; }
  .card, .loc-card, .faq-item { box-shadow: none; page-break-inside: avoid; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 11px; color: #555; }
}
