/* =====================================================================
   Pony Express Auto Wash — Design System
   Playful, bright, and clean — sampled straight from the logo:
   racing red + royal blue + jet black on soap-white, with a bold
   athletic wordmark. One stylesheet drives every page (header, footer,
   buttons, sections, and the sign-style wash menu).
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand colors (sampled from the Pony Express logo + wash sign) */
  --red: #e4181f;          /* racing red — rings, accents, THE free-wash CTA */
  --red-dark: #b60f16;     /* hover / deeper red */
  --blue: #1e40c8;         /* royal blue — the logo "1" bar + membership CTA */
  --blue-dark: #16309c;    /* hover / deeper blue */
  --blue-deep: #0b1b66;    /* deepest navy (sign board gradient base) */
  --navy: #081048;         /* darkest ink-navy */
  --gold: #f5b301;         /* review stars / small highlights */
  --sky: #eaf0ff;          /* soft blue background */
  --cream: #fff5f2;        /* warm soft (faint red) background */
  --white: #ffffff;
  --ink: #14181f;          /* body text on light */
  --muted: #5c6b86;        /* blue-biased neutral (never a flat grey) */
  --line: rgba(20, 24, 31, 0.12);

  --free-grad: linear-gradient(135deg, #ff2a30 0%, var(--red) 55%, var(--red-dark) 100%);
  --board-grad: linear-gradient(165deg, #2a53e6 0%, var(--blue) 40%, var(--blue-deep) 100%);

  /* Type — Oswald echoes the condensed, athletic logo wordmark */
  --font-display: "Oswald", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 14px rgba(8, 16, 72, 0.10);
  --shadow-md: 0 12px 30px rgba(8, 16, 72, 0.16);
  --header-h: 116px;
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.04;
  margin: 0 0 0.4em;
  text-wrap: balance;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}
h3 { font-weight: 600; }
p { margin: 0 0 1em; }

/* Fluid display sizes */
.h-xl { font-size: clamp(42px, 7vw, 82px); }
.h-lg { font-size: clamp(30px, 4.6vw, 52px); }
.h-md { font-size: clamp(24px, 3vw, 36px); }

/* Sign-style outlined display headings — used on colored sections + the
   wash board so titles "pop" exactly like the printed menu sign
   (white fill hugged by a dark outline). paint-order keeps the stroke
   on the OUTSIDE of each letter. */
.h-outline {
  color: #fff;
  -webkit-text-stroke: 2.5px var(--navy);
  paint-order: stroke fill;
  text-shadow: 0 3px 6px rgba(8, 16, 72, 0.28);
}
.h-xl.h-outline { -webkit-text-stroke-width: 4px; }
@media (max-width: 600px) {
  .h-xl.h-outline { -webkit-text-stroke-width: 2.5px; }
  .h-lg.h-outline { -webkit-text-stroke-width: 2px; }
}

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
}
.skip-link:focus { left: 0; }

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

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 3vw, 56px); }
.section { padding: 72px 0; }
.section--sm { padding: 52px 0; }
.bg-sky { background: var(--sky); }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--blue-deep); color: #fff; }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: #fff; }
.bg-white { position: relative; isolation: isolate; background-color: #fff; }
.text-center { text-align: center; }

/* Faint galloping-horse watermark row near the section dividers (car-wash fun). */
.bg-white::after {
  content: "🐎  🐎  🐎  🐎  🐎  🐎";
  position: absolute; left: 0; right: 0; bottom: 6px; z-index: -1;
  font-size: clamp(46px, 7vw, 104px); line-height: 1;
  text-align: justify; text-align-last: justify;
  opacity: 0.06; pointer-events: none; user-select: none;
}

.eyebrow {
  display: inline-block; font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: 3px; font-size: 13px;
  color: var(--red); margin-bottom: 10px;
}
.bg-navy .eyebrow { color: #fff; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 60ch; }
.bg-navy .lead { color: rgba(255, 255, 255, 0.88); }
.section-head { max-width: 62ch; margin: 0 auto 44px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }

/* =====================================================================
   BUTTONS
   .btn--free : THE "Get Your Free Wash" acquisition CTA (racing-red glow).
                Identical everywhere — it's the signature button.
   .btn--club : THE membership CTA (royal blue). Identical everywhere.
   Everything else is ghost/outline so nothing competes with those two.
   ===================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  text-transform: uppercase; letter-spacing: 0.6px;
  text-decoration: none; cursor: pointer; border: 2px solid var(--red);
  padding: 14px 26px; border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.25s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--block { width: 100%; }

/* THE Get Your Free Wash button — OptSpot's signature acquisition CTA.
   Shiny white border (not red) so it stands apart from every other button. */
.btn--free {
  color: #fff; background: var(--free-grad);
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 18px rgba(228, 24, 31, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  animation: glowPulse 2.6s ease-in-out infinite, ctaHop 5s ease-in-out infinite;
  animation-delay: 0s, 0s;
}
.btn--free:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(228, 24, 31, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.7); }

/* Join the Club / Become a Member — solid royal blue with a gentle hop */
.btn--club {
  color: #fff; background: var(--blue); box-shadow: 0 4px 14px rgba(30, 64, 200, 0.4);
  animation: ctaHop 5s ease-in-out infinite; animation-delay: -2.5s;
}
.btn--club:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn--free:hover, .btn--club:hover { animation-play-state: paused; }
@keyframes ctaHop {
  0%, 44%, 100% { transform: translateY(0); }
  10% { transform: translateY(-7px); }
  22% { transform: translateY(0); }
  30% { transform: translateY(-3px); }
  38% { transform: translateY(0); }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 6px 18px rgba(228, 24, 31, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 0 0 rgba(255, 255, 255, 0); }
  50%      { box-shadow: 0 6px 22px rgba(228, 24, 31, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 0 16px rgba(255, 255, 255, 0.35); }
}

/* Generic secondary buttons — brand-red border like every non-free button */
.btn--ghost { color: #fff; background: transparent; border-color: var(--red); }
.btn--ghost:hover { background: #fff; color: var(--blue-deep); }
.btn--ghost-ink { color: var(--blue); background: transparent; border-color: var(--red); }
.btn--ghost-ink:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ---------- Header / nav (white) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: #fff;
  box-shadow: 0 2px 14px rgba(8, 16, 72, 0.10);
  border-bottom: 3px solid var(--red);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; height: var(--header-h);
}
.nav__logo { display: flex; align-items: center; flex: none; gap: 12px; text-decoration: none; }
.nav__logo img { height: 96px; width: auto; }
/* Text wordmark fallback shown until the logo image is added */
.nav__wordmark { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; line-height: 0.95; letter-spacing: 0.5px; }
.nav__wordmark b { display: block; color: var(--red); font-size: 1.35rem; }
.nav__wordmark span { display: block; color: var(--navy); font-size: 0.95rem; letter-spacing: 3px; }
@media (max-width: 600px) {
  :root { --header-h: 88px; }
  .nav__logo img { height: 66px; }
  .nav__wordmark b { font-size: 1.05rem; }
  .nav__wordmark span { font-size: 0.75rem; letter-spacing: 2px; }
}
.nav__links { display: none; list-style: none; margin: 0; padding: 0; gap: 20px; align-items: center; }
.nav__links a {
  font-family: var(--font-display); font-weight: 500; font-size: 15px;
  text-transform: uppercase; letter-spacing: 0.5px; color: var(--navy);
  text-decoration: none; transition: color 0.2s ease;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--red); }
.nav__ctas { display: none; gap: 10px; }
.nav__social { display: none; align-items: center; gap: 14px; }
.nav__social a { display: inline-flex; color: var(--navy); transition: color 0.2s ease; }
.nav__social a:hover { color: var(--red); }
.nav__social svg { width: 20px; height: 20px; }
.nav__toggle {
  display: inline-flex; align-items: center; justify-content: center;
  background: none; border: none; color: var(--navy); cursor: pointer; padding: 6px;
}
.nav__toggle svg { width: 30px; height: 30px; }

/* Mobile drawer (white) */
.nav__mobile { display: none; background: #fff; border-top: 1px solid var(--line); }
.nav__mobile.open { display: block; }
.nav__mobile ul { list-style: none; margin: 0; padding: 12px 0; }
.nav__mobile a {
  display: block; padding: 12px 24px; color: var(--navy);
  font-family: var(--font-display); font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.5px; text-decoration: none; font-size: 15px;
}
.nav__mobile a:hover { color: var(--red); background: var(--sky); }
.nav__mobile .nav__mobile-ctas { display: flex; flex-direction: column; gap: 10px; padding: 8px 24px 24px; }

@media (min-width: 1080px) {
  .nav__links { display: flex; }
  .nav__ctas { display: flex; }
  .nav__toggle { display: none; }
}
/* Social icons in the header only when there's room to spare (they also live in the footer). */
@media (min-width: 1320px) {
  .nav__social { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(120% 90% at 84% -10%, rgba(228, 24, 31, 0.55) 0%, rgba(228, 24, 31, 0.16) 30%, transparent 60%),
    var(--board-grad);
}
.hero__inner { position: relative; z-index: 4; padding-top: 88px; padding-bottom: 150px; text-align: center; }
.hero__slides { position: absolute; inset: 0; z-index: 1; overflow: hidden; opacity: 0.32; pointer-events: none; }
.hero .wave { position: relative; z-index: 3; }
.hero__slide { position: absolute; inset: 0; opacity: 1; transform: scale(1.2); animation: heroFocus 10s ease-in-out forwards; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes heroFocus {
  0%   { transform: scale(1.2); }
  45%  { transform: scale(1.0); }
  68%  { transform: scale(1.08); }
  100% { transform: scale(1.0); }
}
.hero h1 { color: #fff; max-width: 20ch; margin-left: auto; margin-right: auto; }
.hero .accent { color: #ffd23d; }
.hero__sub { font-size: clamp(16px, 2vw, 20px); max-width: 56ch; margin: 20px auto 0; color: rgba(255, 255, 255, 0.95); font-weight: 500; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; justify-content: center; }
.hero .eyebrow, .page-hero .eyebrow { color: #fff; font-weight: 600; letter-spacing: 2.5px; }

/* Galloping-horse art floating in the hero (drop the logo horse in here) */
.hero__art {
  position: absolute; top: 30px; right: 4%; z-index: 2;
  width: clamp(160px, 24vw, 320px); height: auto; pointer-events: none; user-select: none;
  filter: drop-shadow(0 12px 30px rgba(8, 16, 72, 0.45));
  animation: floatArt 6s ease-in-out infinite;
}
@keyframes floatArt { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@media (max-width: 900px) { .hero__art { opacity: 0.22; width: 200px; right: 2%; } }

/* Rolling flash — a bright light streak that sweeps across the hero on a loop */
.hero::after, .page-hero::after {
  content: ""; position: absolute; top: -40%; bottom: -40%; left: -40%;
  width: 22%; z-index: 1; pointer-events: none;
  background: linear-gradient(100deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.10) 35%,
    rgba(255,255,255,0.55) 50%,
    rgba(255,255,255,0.10) 65%,
    rgba(255,255,255,0) 100%);
  transform: skewX(-16deg);
  filter: blur(4px);
  animation: heroFlash 5.5s ease-in-out infinite;
}
@keyframes heroFlash {
  0%   { left: -40%; opacity: 0; }
  6%   { opacity: 1; }
  40%  { left: 120%; opacity: 1; }
  47%  { left: 120%; opacity: 0; }
  100% { left: 120%; opacity: 0; }
}
.hero__spark { position: absolute; z-index: 2; color: #fff; opacity: 0.2; animation: twinkle 3.5s ease-in-out infinite; }
@keyframes twinkle { 0%, 100% { opacity: 0.12; transform: scale(0.7); } 50% { opacity: 0.9; transform: scale(1.1); } }

/* ---------- Divider (speed-line slant) ---------- */
.wave { position: relative; line-height: 0; }
.wave svg { display: block; width: 100%; height: 80px; }
.wave--bottom { margin-bottom: -1px; }
.wave--top { margin-top: -1px; }
.section.has-wave-bottom { padding-bottom: 0; }
.section.has-wave-top { padding-top: 0; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(100% 120% at 88% -20%, rgba(228, 24, 31, 0.5) 0%, transparent 55%),
    var(--board-grad);
  padding: 62px 0 92px;
}
.page-hero--photo .hero__slides { position: absolute; inset: 0; z-index: 1; overflow: hidden; opacity: 0.32; pointer-events: none; }
.page-hero--photo .hero__slide img { object-position: center 30%; }
.page-hero--photo .hero__slide { animation: none; transform: none; }
.page-hero h1 { color: #fff; }
.page-hero--tall { min-height: clamp(420px, 58vh, 620px); display: flex; flex-direction: column; justify-content: center; }
.page-hero p { color: rgba(255, 255, 255, 0.92); max-width: 56ch; margin: 0 auto; font-weight: 500; }
.page-hero .container { position: relative; z-index: 2; text-align: center; }
.page-hero .wave { position: absolute; left: 0; right: 0; bottom: -1px; margin: 0; z-index: 2; }

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 700px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: #fff; border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(30, 64, 200, 0.35); }
.card__icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--sky); color: var(--blue); margin-bottom: 14px; font-size: 26px;
}
.card h3 { margin-bottom: 8px; font-size: 1.2rem; color: var(--navy); }
.card p { color: var(--muted); margin: 0; font-size: 0.98rem; }

/* Emoji-marker benefit list (no card boxes) */
.benefit-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 22px; }
.benefit-list li { display: flex; gap: 16px; align-items: flex-start; }
.benefit-list__emoji { font-size: 2rem; line-height: 1.1; flex: none; }
.benefit-list h3 { margin: 0 0 4px; font-size: 1.2rem; }
.benefit-list p { color: var(--muted); margin: 0; font-size: 0.98rem; }

/* ---------- Split feature row ---------- */
.split { display: grid; gap: 36px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 860px) { .split { grid-template-columns: 1fr 1fr; } .split.reverse > :first-child { order: 2; } }
.split__media {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  background: var(--sky); min-height: 300px; display: grid; place-items: center;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.hero-art-static { width: 100%; max-width: 420px; height: auto; display: block; margin: 0 auto; }

/* Image placeholder slot (fun, on-brand) */
.img-slot {
  width: 100%; min-height: 300px; display: grid; place-items: center; text-align: center;
  color: var(--blue); background:
    repeating-linear-gradient(45deg, rgba(30,64,200,0.05) 0 14px, rgba(30,64,200,0.11) 14px 28px);
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase; padding: 24px;
}
.img-slot span { display: block; font-size: 0.8rem; color: var(--muted); font-weight: 500; text-transform: none; margin-top: 6px; }

/* =====================================================================
   WASH MENU — styled to echo the printed Pony Express sign:
   royal-blue board, white cards, outlined tier titles, and a two-tone
   circular SINGLE / CLUB price badge.
   ===================================================================== */
.wash-board { background: var(--board-grad); position: relative; overflow: hidden; }
.wash-board h2 { color: #fff; }
.wash-board .lead { color: rgba(255,255,255,0.9); }
/* faint horseshoe/horse pattern like the sign footer */
.wash-board::before {
  content: "🐎 🐎 🐎 🐎 🐎 🐎 🐎 🐎"; position: absolute; left: 0; right: 0; bottom: 8px;
  font-size: clamp(30px, 5vw, 60px); text-align: center; opacity: 0.08; color: #fff;
  pointer-events: none; user-select: none; letter-spacing: 12px;
}

.wash-grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch; gap: 40px 24px; position: relative; z-index: 1; }
.wash-grid .menu-card { flex: 0 1 100%; }
@media (min-width: 760px) { .wash-grid .menu-card { flex-basis: calc((100% - 48px) / 3); } }

.menu-card {
  position: relative; background: #fff; border-radius: 20px;
  margin-top: 34px; display: flex; flex-direction: column;
  border: 3px solid #fff;
  box-shadow: 0 16px 36px rgba(8, 16, 72, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(8, 16, 72, 0.36); }
.menu-card__head { padding: 24px 116px 14px 26px; text-align: left; position: relative; min-height: 92px; }
.menu-card__head h3 {
  font-size: 1.6rem; margin: 0; line-height: 1.05; color: #fff;
  -webkit-text-stroke: 1.6px var(--navy); paint-order: stroke fill;
}
.menu-card__tag { display: block; margin-top: 4px; font-family: var(--font-body); font-weight: 500; font-size: 0.85rem; color: var(--muted); text-transform: none; }

/* Two-tone circular SINGLE / CLUB badge, overlapping the top-right corner */
.price-badge {
  position: absolute; top: -30px; right: 18px; z-index: 3;
  width: 96px; height: 96px; border-radius: 50%; overflow: hidden;
  border: 4px solid #fff; box-shadow: 0 8px 18px rgba(8, 16, 72, 0.3);
  display: flex; flex-direction: column; text-align: center;
  font-family: var(--font-display);
}
.price-badge__top, .price-badge__bot { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1; }
.price-badge__top { background: #fff; color: var(--navy); }
.price-badge__bot { background: var(--blue); color: #fff; }
.price-badge .lbl { font-size: 7px; letter-spacing: 1px; text-transform: uppercase; opacity: 0.75; }
.price-badge .amt { font-size: 1.15rem; font-weight: 700; }

.menu-card__bar { height: 4px; margin: 4px 26px 0; border-radius: 3px; background: var(--line); }
.menu-card__body { padding: 16px 26px 26px; flex: 1; }
.menu-card__note { margin: 0 0 10px; font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.menu-card__body ul { list-style: none; margin: 0; padding: 0; }
.menu-card__body li { padding: 6px 0 6px 24px; position: relative; color: var(--ink); font-size: 0.95rem; }
.menu-card__body li::before { content: "\2713"; position: absolute; left: 0; top: 6px; color: var(--blue); font-weight: 800; }
.menu-card__visit {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; text-transform: uppercase;
  color: var(--blue); text-decoration: none; letter-spacing: 0.5px;
}
.menu-card__visit::after { content: "\2192"; transition: transform 0.2s ease; }
.menu-card__visit:hover { color: var(--red); }
.menu-card__visit:hover::after { transform: translateX(4px); }

/* Best Deal ribbon (matches the sign's red "BEST DEAL" flag) */
.menu-card__flag {
  position: absolute; top: -15px; left: 20px; z-index: 3;
  background: var(--free-grad); color: #fff; font-family: var(--font-display); font-weight: 600;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 15px;
  border-radius: 999px; box-shadow: 0 6px 14px rgba(228, 24, 31, 0.4);
}

/* Tier accents on the header + check marks */
.menu-card.tier-top    { border-color: var(--red); }
.menu-card.tier-top .menu-card__head h3 { -webkit-text-stroke-color: var(--red); }
.menu-card.tier-top .price-badge__bot,
.menu-card.tier-top .menu-card__bar { background: var(--red); }
.menu-card.tier-top .menu-card__body li::before,
.menu-card.tier-top .menu-card__visit { color: var(--red); }

.menu-card.tier-mid    { border-color: var(--blue); }
.menu-card.tier-mid .menu-card__head h3 { -webkit-text-stroke-color: var(--blue); }
.menu-card.tier-mid .price-badge__bot,
.menu-card.tier-mid .menu-card__bar { background: var(--blue); }

.menu-card.tier-base   { border-color: var(--navy); }
.menu-card.tier-base .menu-card__head h3 { -webkit-text-stroke-color: var(--navy); }
.menu-card.tier-base .price-badge__bot,
.menu-card.tier-base .menu-card__bar { background: var(--navy); }
.menu-card.tier-base .menu-card__body li::before,
.menu-card.tier-base .menu-card__visit { color: var(--navy); }

/* ---------- Amenity checklist ---------- */
.amenities { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; list-style: none; margin: 0; padding: 0; }
@media (min-width: 700px) { .amenities { grid-template-columns: repeat(3, 1fr); } }
.amenities li { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 500; font-size: 0.98rem; text-transform: uppercase; letter-spacing: 0.4px; }
.amenities li::before { content: "✔"; color: var(--red); font-weight: 800; }

/* Thin "Everything You Get" banner — items run across the width */
.amenity-strip { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.amenity-strip .container {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px 26px; padding-top: 18px; padding-bottom: 18px;
}
.amenity-strip__label { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; color: var(--navy); }
.amenity-strip ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px; list-style: none; margin: 0; padding: 0; }
.amenity-strip li { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 0.98rem; text-transform: uppercase; letter-spacing: 0.3px; }
.amenity-strip li::before { content: "✔"; color: var(--red); font-weight: 800; }

/* ---------- Reviews ---------- */
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 20px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-card__head { display: flex; align-items: center; gap: 10px; }
.review-card__avatar { width: 40px; height: 40px; border-radius: 50%; flex: none; display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 700; }
.review-card__name { display: block; font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.review-card__stars { color: var(--gold); letter-spacing: 2px; font-size: 0.95rem; }
.review-card__text { margin: 0; color: var(--ink); font-size: 0.95rem; line-height: 1.55; }

/* Contact / info list */
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.info-list .ico { color: var(--red); flex: none; font-size: 1.2rem; }
.bg-navy .info-list .ico { color: #fff; }
.info-list a { color: var(--blue); font-weight: 600; text-decoration: none; }
.info-list a:hover { text-decoration: underline; }

/* Map */
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-embed iframe { display: block; width: 100%; min-height: 340px; border: 0; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff; border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
}
.form-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid .col-2 { grid-template-columns: 1fr 1fr; display: grid; gap: 18px; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--navy); text-transform: uppercase; letter-spacing: 0.4px; }
.field .req { color: var(--red); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px; background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30, 64, 200, 0.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 14px; }
.form-note a { color: var(--blue); font-weight: 600; }

/* CTA band */
.cta-band { background: var(--sky); color: var(--ink); text-align: center; }
.cta-band .btn--ghost { border-color: var(--red); color: var(--blue); }
.cta-band .btn--ghost:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

/* Membership teaser — full-width, centered, white background */
.membership-cta { background: #fff; text-align: center; position: relative; overflow: hidden; }
.membership-cta::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url("../assets/images/membership-slot.jpg") center / cover no-repeat;
  opacity: 0.12;
}
.membership-cta > .container { position: relative; z-index: 1; }

/* Thin "Get Your Free Wash" banner — the final strip on most pages */
.cta-strip { background: var(--free-grad); color: #fff; }
.cta-strip .container {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 12px 26px; padding-top: 22px; padding-bottom: 22px; text-align: center;
}
.cta-strip p { margin: 0; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: #fff; font-size: clamp(1.1rem, 2.4vw, 1.45rem); }
.cta-strip .btn--free { background: #fff; color: var(--red); animation: ctaHop 5s ease-in-out infinite; box-shadow: 0 6px 18px rgba(0,0,0,0.2); }
.cta-strip .btn--free:hover { background: #fff; color: var(--red-dark); }

/* Horse mascot that peeks into a section corner (desktop accent) */
.has-mascot { position: relative; }
.mascot-peek {
  position: absolute; z-index: 3; width: clamp(96px, 10vw, 150px); height: auto;
  pointer-events: none; user-select: none;
  filter: drop-shadow(0 6px 12px rgba(8, 16, 72, 0.22));
  animation: floatArt 4.5s ease-in-out infinite;
}
.mascot-peek--br { right: clamp(8px, 3vw, 52px); bottom: 6px; }
.mascot-peek--bl { left: clamp(8px, 3vw, 52px); bottom: 6px; }
@media (max-width: 900px) { .mascot-peek { display: none; } }
@media (prefers-reduced-motion: reduce) { .mascot-peek { animation: none; } }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-sm); overflow: hidden; transition: box-shadow 0.2s ease;
}
.faq details[open] { box-shadow: var(--shadow-md); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 22px; gap: 16px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--navy); text-transform: uppercase; letter-spacing: 0.3px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: none; color: var(--red); font-size: 1.7rem; line-height: 1; transition: transform 0.2s ease; }
.faq details[open] summary::after { content: "\2212"; }
.faq summary:hover { color: var(--red); }
.faq__a { padding: 0 22px 20px; color: var(--muted); line-height: 1.6; }
.faq__a a { color: var(--blue); font-weight: 600; }
.faq details[open] .faq__a { animation: faqIn 0.25s ease; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* ---------- Legal / privacy copy ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-size: 1.4rem; margin-top: 36px; scroll-margin-top: 90px; color: var(--navy); }
.legal h3 { font-size: 1.1rem; margin-top: 24px; }
.legal ul { padding-left: 20px; }
.legal li { margin-bottom: 8px; }
.legal p { line-height: 1.7; }
.legal-toc { background: var(--sky); border-radius: 16px; padding: 18px 22px; margin-bottom: 8px; }
.legal-toc__title { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; margin: 0 0 8px; color: var(--ink); }
.legal-toc ul { list-style: none; padding-left: 0; margin: 0; }
.legal-toc li { margin-bottom: 4px; }
.legal-toc a { color: var(--blue); font-weight: 600; text-decoration: none; }
.legal-toc a:hover { text-decoration: underline; }

/* ---------- Footer (white) ---------- */
.site-footer { background: #fff; color: var(--muted); border-top: 4px solid var(--blue); }
.site-footer .container { padding-top: 56px; padding-bottom: 32px; }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr; }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer img.footer-logo { height: 104px; width: auto; margin-bottom: 16px; }
.footer-wordmark { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; line-height: 0.95; margin-bottom: 12px; }
.footer-wordmark b { display: block; color: var(--red); font-size: 1.5rem; }
.footer-wordmark span { display: block; color: var(--navy); font-size: 1rem; letter-spacing: 4px; }
.site-footer h4 { color: var(--red); font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; font-family: var(--font-display); }
.site-footer a { color: var(--navy); text-decoration: none; }
.site-footer a:hover { color: var(--red); }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.footer-contact .ico { color: var(--red); flex: none; }
.footer-social { display: flex; gap: 14px; margin-top: 16px; }
.footer-social a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--sky); color: var(--navy); }
.footer-social a:hover { background: var(--blue); color: #fff; }
.footer-social a svg { width: 20px; height: 20px; }
.footer-tagline { font-family: var(--font-display); font-weight: 600; font-style: italic; color: var(--navy); font-size: 1.05rem; }
.footer-bottom { border-top: 1px solid var(--line); }
.footer-bottom .container { display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; align-items: center; padding: 18px 24px; font-size: 13px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
.card.reveal, .menu-card.reveal, .review-card.reveal { transform: none; }
.menu-card__body li, .amenities li { transition: opacity 0.45s ease, transform 0.45s ease; }
.reveal:not(.in) .menu-card__body li,
.reveal:not(.in) .amenities li { opacity: 0; transform: translateY(8px); }
.reveal.in :is(.menu-card__body, .amenities) li:nth-child(1) { transition-delay: 0.06s; }
.reveal.in :is(.menu-card__body, .amenities) li:nth-child(2) { transition-delay: 0.11s; }
.reveal.in :is(.menu-card__body, .amenities) li:nth-child(3) { transition-delay: 0.16s; }
.reveal.in :is(.menu-card__body, .amenities) li:nth-child(4) { transition-delay: 0.21s; }
.reveal.in :is(.menu-card__body, .amenities) li:nth-child(5) { transition-delay: 0.26s; }
.reveal.in :is(.menu-card__body, .amenities) li:nth-child(6) { transition-delay: 0.31s; }
.reveal.in :is(.menu-card__body, .amenities) li:nth-child(n+7) { transition-delay: 0.36s; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn--free, .btn--club, .hero__spark, .hero__art, .hero__slide, .mascot-peek, .cta-strip .btn--free { animation: none !important; }
  .hero::after, .page-hero::after { animation: none; opacity: 0; }
  .hero__slide { opacity: 0; transform: none; }
  .hero__slide:first-of-type { opacity: 1; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .menu-card__body li, .amenities li { opacity: 1 !important; transform: none !important; transition: none; }
  .card:hover, .menu-card:hover, .btn:hover { transform: none; }
  .faq details[open] .faq__a { animation: none; }
}
