/* ============================================================
   MIGHTY SHINE CAR WASH — Main Stylesheet
   Brand: Sky blue #29ABE2 · Gold #F7941D · Navy #1B1464
         Red #ED1C24 · Cream #FFF8E7
   ============================================================ */

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --sky-blue:  #29ABE2;
  --gold:      #F7941D;
  --navy:      #1B1464;
  --red:       #ED1C24;
  --cream:     #FFF8E7;
  --white:     #ffffff;
  --dark-bg:   #0d0d2b;

  --font-pixel: 'Press Start 2P', cursive;
  --font-body:  'Inter', system-ui, sans-serif;

  --section-pad: 96px 0;
  --max-w: 1200px;
  --pad-x: 0 24px;

  --radius-pixel: 0px; /* intentionally square for pixel aesthetic */
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--navy);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* === UTILITY === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad-x);
}

.pixel-text { font-family: var(--font-pixel); }

.text--gold   { color: var(--gold); }
.text--cream  { color: var(--cream); }
.text--light  { color: rgba(255, 248, 231, 0.82); }
.text--navy   { color: var(--navy); }
.text--center { text-align: center; }

.section-title {
  font-family: var(--font-pixel);
  font-size: clamp(1rem, 2.8vw, 1.7rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.section-subhead {
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-pixel);
  font-size: 0.6rem;
  padding: 14px 22px;
  border: 3px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.5;
  position: relative;
}

/* Pixel drop-shadow on every btn variant */
.btn::after {
  content: '';
  position: absolute;
  inset: 3px -4px -4px 3px; /* bottom-right offset */
  z-index: -1;
  transition: inset 0.12s ease;
}

.btn:hover { transform: translate(-2px, -2px); }
.btn:hover::after { inset: 5px -6px -6px 5px; }

/* Gold */
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--navy);
}
.btn--gold::after { background: var(--navy); }

/* Navy */
.btn--navy {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--cream);
}
.btn--navy::after { background: rgba(255,248,231,0.4); }

/* Outline cream (on dark backgrounds) */
.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn--outline::after { background: rgba(255,248,231,0.15); }
.btn--outline:hover { background: var(--cream); color: var(--navy); }

/* Outline colored variants (wash cards) */
.btn--outline-blue {
  background: transparent;
  color: var(--sky-blue);
  border: 3px solid var(--sky-blue);
  font-family: var(--font-pixel);
  font-size: 0.5rem;
  padding: 10px 14px;
}
.btn--outline-blue::after { background: rgba(41,171,226,0.15); }
.btn--outline-blue:hover  { background: var(--sky-blue); color: var(--white); }

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border: 3px solid var(--gold);
  font-family: var(--font-pixel);
  font-size: 0.5rem;
  padding: 10px 14px;
}
.btn--outline-gold::after { background: rgba(247,148,29,0.15); }
.btn--outline-gold:hover  { background: var(--gold); color: var(--navy); }

.btn--outline-red {
  background: transparent;
  color: var(--red);
  border: 3px solid var(--red);
  font-family: var(--font-pixel);
  font-size: 0.5rem;
  padding: 10px 14px;
}
.btn--outline-red::after { background: rgba(237,28,36,0.15); }
.btn--outline-red:hover  { background: var(--red); color: var(--white); }

.btn--lg   { padding: 18px 32px; font-size: 0.65rem; }
.btn--full { width: 100%; text-align: center; }


/* ============================================================
   SCANLINE TEXTURE (dark sections)
   ============================================================ */
.scanline-overlay {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.09) 2px,
    rgba(0, 0, 0, 0.09) 4px
  );
  pointer-events: none;
  z-index: 1;
}


/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
  padding: 10px 0;
  transition: background 0.2s;
}

.nav__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Logo — styled placeholder until real image is dropped in */
.nav__logo-img {
  height: 50px;
  width: auto;
  image-rendering: pixelated;
  /* Placeholder background shown when image is missing */
  background: linear-gradient(135deg, var(--sky-blue) 0%, var(--navy) 100%);
  min-width: 140px;
  border: 2px solid var(--gold);
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0 auto;
  align-items: center;
}

.nav__links a {
  font-family: var(--font-pixel);
  font-size: 0.48rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color 0.15s;
  white-space: nowrap;
  padding: 4px 0;
}

.nav__links a:hover { color: var(--gold); }

.nav__cta { flex-shrink: 0; }

/* Mobile CTA item — only visible in mobile drawer */
.nav__mobile-cta { display: none; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  padding: 8px 10px;
  margin-left: auto;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  transition: all 0.2s ease;
}

.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 24px 72px;
  overflow: hidden;
  background: var(--dark-bg);
}

/* Pixel grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(41,171,226,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,171,226,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* Scanline */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.07) 3px,
    rgba(0, 0, 0, 0.07) 4px
  );
  pointer-events: none;
  z-index: 2;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13, 13, 43, 0.85) 0%,
    rgba(27, 20, 100, 0.7) 50%,
    rgba(13, 13, 43, 0.9) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 920px;
}

.hero__eyebrow {
  font-size: clamp(0.42rem, 1.2vw, 0.6rem);
  color: var(--sky-blue);
  letter-spacing: 0.18em;
  margin-bottom: 1.8rem;
  text-shadow: 0 0 12px rgba(41, 171, 226, 0.6);
}

.hero__headline {
  font-size: clamp(1.4rem, 5.5vw, 3.2rem);
  line-height: 1.45;
  margin-bottom: 1.6rem;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.55);
}

.headline--light { color: var(--cream); }
.headline--gold  { color: var(--gold); }

.hero__subhead {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255, 248, 231, 0.84);
  max-width: 600px;
  margin: 0 auto 2.8rem;
  line-height: 1.75;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Pixel corner accents */
.hero__corner {
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 3;
  border: 4px solid var(--gold);
}
.hero__corner--tl { top: 82px; left: 24px; border-right: none; border-bottom: none; }
.hero__corner--br { bottom: 24px; right: 24px; border-left: none; border-top: none; }


/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem {
  padding: var(--section-pad);
  background: var(--cream);
}

.problem__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.problem .section-title {
  font-size: clamp(0.8rem, 2.2vw, 1.35rem);
  line-height: 1.75;
  margin-bottom: 0;
}

.problem__copy p {
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
  color: #444;
  line-height: 1.75;
}

.problem__bold {
  font-family: var(--font-pixel);
  font-size: 0.7rem;
  color: var(--navy);
  border-left: 5px solid var(--gold);
  padding: 12px 0 12px 20px;
  margin-top: 1.5rem;
  line-height: 2;
  background: rgba(247, 148, 29, 0.06);
}


/* ============================================================
   TICKER BAR
   ============================================================ */
.ticker {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker__track {
  display: inline-flex;
  align-items: center;
  animation: ticker-scroll 32s linear infinite;
  white-space: nowrap;
}

.ticker:hover .ticker__track { animation-play-state: paused; }

.ticker__item {
  font-size: 0.58rem;
  color: var(--gold);
  padding: 0 20px;
  letter-spacing: 0.06em;
}

.ticker__dot {
  color: var(--sky-blue);
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ============================================================
   AMENITIES
   ============================================================ */
.amenities {
  padding: var(--section-pad);
  background: var(--white);
}

.amenities .section-title { margin-bottom: 3.5rem; }

.amenities__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}

.amenities__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.amenity-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 18px;
  border: 3px solid #e5eef5;
  background: var(--cream);
  transition: border-color 0.15s, transform 0.12s;
}

.amenity-card:hover {
  border-color: var(--sky-blue);
  transform: translate(-2px, -2px);
}

.amenity-card__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.amenity-card__title {
  font-size: 0.48rem;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.7;
}

.amenity-card p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.55;
}

/* Right-side graphic */
.amenities__graphic { position: sticky; top: 100px; }

.pixel-car-box {
  background: linear-gradient(145deg, var(--navy) 0%, #0d1a4a 100%);
  border: 4px solid var(--gold);
  padding: 40px 32px;
  text-align: center;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.pixel-car-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(41,171,226,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,171,226,0.07) 1px, transparent 1px);
  background-size: 20px 20px;
}

.pixel-car-img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  image-rendering: pixelated;
}

.pixel-car-fallback {
  position: relative;
  z-index: 1;
}

.pcf__car {
  font-size: 5rem;
  margin-bottom: 12px;
  filter: drop-shadow(4px 4px 0 rgba(0,0,0,0.5));
  display: block;
}

.pcf__sparks {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 8px;
  margin-bottom: 16px;
  display: block;
  animation: sparkle 1.8s ease-in-out infinite alternate;
}

@keyframes sparkle {
  0%   { opacity: 0.4; }
  100% { opacity: 1; }
}

.pcf__label {
  font-size: 0.58rem;
  color: var(--gold);
  line-height: 1.9;
  margin-bottom: 8px;
}

.pcf__sub {
  font-size: 0.82rem;
  color: rgba(255,248,231,0.65);
  line-height: 1.6;
}


/* ============================================================
   WHY MIGHTY SHINE
   ============================================================ */
.why-us {
  position: relative;
  padding: var(--section-pad);
  background: var(--navy);
  overflow: hidden;
}

.why-us > .container { position: relative; z-index: 2; }

.why-us .section-title { margin-bottom: 3.5rem; }

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 3px solid rgba(255, 255, 255, 0.12);
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.2s, transform 0.12s;
}

.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.why-card--featured {
  border-color: var(--gold);
  background: rgba(247, 148, 29, 0.08);
}

.why-card__badge {
  position: absolute;
  top: -14px;
  left: 28px;
  font-size: 0.36rem;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 10px;
}

.why-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.why-card__title {
  font-size: 0.62rem;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.why-card__copy {
  color: rgba(255, 248, 231, 0.78);
  font-size: 0.95rem;
  line-height: 1.65;
}


/* ============================================================
   WASH MENU
   ============================================================ */
.wash-menu {
  padding: var(--section-pad);
  background: var(--cream);
}

.wash-menu .section-title { margin-bottom: 1rem; }

.wash-menu .section-subhead {
  color: #555;
  margin-bottom: 3rem;
}

.wash-menu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

.wash-card {
  border: 4px solid;
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  background: var(--white);
  transition: transform 0.12s;
}

.wash-card:hover { transform: translate(-3px, -3px); }

.wash-card--blue  { border-color: var(--sky-blue); }
.wash-card--gold  { border-color: var(--gold); }
.wash-card--red   { border-color: var(--red); }
.wash-card--navy  { border-color: var(--navy); background: var(--navy); }

.wash-card--popular { margin-top: 16px; }

.wash-card__popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 0.35rem;
  padding: 5px 12px;
  white-space: nowrap;
  letter-spacing: 0.06em;
}

.wash-card__level {
  font-size: 0.42rem;
  letter-spacing: 0.12em;
  color: #aaa;
}

.wash-card--navy .wash-card__level { color: var(--sky-blue); opacity: 0.8; }

.wash-card__name {
  font-size: 0.72rem;
  line-height: 1.6;
}

.wash-card--blue .wash-card__name  { color: var(--sky-blue); }
.wash-card--gold .wash-card__name  { color: var(--gold); }
.wash-card--red  .wash-card__name  { color: var(--red); }
.wash-card--navy .wash-card__name  { color: var(--gold); }

.wash-card__price {
  font-size: 1.5rem;
  color: var(--navy);
  line-height: 1;
}

.wash-card--navy .wash-card__price { color: var(--cream); }

.wash-card__price span {
  font-size: 0.55rem;
  opacity: 0.65;
}

.wash-card__features {
  list-style: none;
  flex: 1;
}

.wash-card__features li {
  font-size: 0.88rem;
  padding: 7px 0 7px 18px;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
  position: relative;
  line-height: 1.4;
}

.wash-card--navy .wash-card__features li {
  border-bottom-color: rgba(255,255,255,0.1);
  color: rgba(255,248,231,0.85);
}

.wash-card__features li::before {
  content: '▶';
  position: absolute;
  left: 0;
  top: 7px;
  font-size: 0.45rem;
  color: var(--gold);
}

.wash-card__badge {
  font-size: 0.35rem;
  background: rgba(0,0,0,0.05);
  padding: 7px 10px;
  color: var(--navy);
  text-align: center;
  letter-spacing: 0.05em;
}

.wash-card--navy .wash-card__badge {
  background: rgba(255,255,255,0.08);
  color: var(--cream);
}

.wash-card__badge--gold {
  background: var(--gold) !important;
  color: var(--navy) !important;
}


/* ============================================================
   MEMBERSHIP
   ============================================================ */
.membership {
  position: relative;
  padding: var(--section-pad);
  background: var(--navy);
  overflow: hidden;
}

.membership > .container { position: relative; z-index: 2; }

.membership .section-title { margin-bottom: 1rem; }

.membership .section-subhead { margin-bottom: 3rem; }

/* Savings toggle */
.savings-toggle {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.savings-toggle__label {
  font-size: 0.6rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
  letter-spacing: 0.06em;
}

.savings-toggle__buttons {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.toggle-btn {
  font-family: var(--font-pixel);
  font-size: 0.58rem;
  padding: 12px 24px;
  background: transparent;
  border: 3px solid rgba(255, 255, 255, 0.25);
  color: var(--cream);
  cursor: pointer;
  transition: all 0.15s;
  letter-spacing: 0.04em;
}

.toggle-btn:hover,
.toggle-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.savings-display {
  background: rgba(255, 255, 255, 0.04);
  border: 3px solid rgba(247, 148, 29, 0.35);
  padding: 36px 32px;
}

.savings-display__vs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.savings-display__col {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.savings-display__col--featured {
  border: 2px solid rgba(247, 148, 29, 0.4);
  padding: 20px 28px;
  background: rgba(247, 148, 29, 0.08);
}

.savings-display__label {
  font-size: 0.46rem;
  color: rgba(255,248,231,0.55);
  letter-spacing: 0.08em;
}

.savings-display__amount {
  font-size: 2rem;
  color: var(--cream);
  line-height: 1.1;
}

.savings-display__amount--gold { color: var(--gold); }

.savings-display__sublabel {
  font-size: 0.78rem;
  color: rgba(255,248,231,0.45);
}

.savings-display__divider {
  font-size: 0.75rem;
  color: rgba(255,248,231,0.3);
  flex-shrink: 0;
}

.savings-display__result {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(255, 255, 255, 0.08);
}

.savings-label {
  font-size: 0.52rem;
  color: rgba(255,248,231,0.65);
}

.savings-display__save {
  font-size: 1.1rem;
}

.savings-display__note {
  font-size: 0.72rem;
  color: rgba(255,248,231,0.35);
  margin-top: 1.2rem;
  font-style: italic;
}

.membership__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: var(--section-pad);
  background: var(--cream);
}

.testimonials .section-title { margin-bottom: 3rem; }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 3px solid #e8e8e8;
  padding: 32px 24px;
  transition: border-color 0.18s, transform 0.12s;
}

.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.testimonial-card--featured {
  border-color: var(--gold);
  background: var(--white);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

.testimonial-card__quote {
  font-size: 0.96rem;
  color: #444;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 2px;
}

.testimonial-card__author span {
  font-size: 0.8rem;
  color: #999;
}

.testimonials__disclaimer {
  text-align: center;
  font-size: 0.76rem;
  color: #bbb;
  font-style: italic;
  margin-top: 0.5rem;
}


/* ============================================================
   FUNDRAISING
   ============================================================ */
.fundraising {
  position: relative;
  padding: var(--section-pad);
  background: var(--dark-bg);
  overflow: hidden;
  text-align: center;
}

.fundraising::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(41,171,226,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,171,226,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.fundraising__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(27,20,100,0.7), rgba(0,0,0,0.4));
}

.fundraising > .container { position: relative; z-index: 2; }

.fundraising .section-title { margin-bottom: 1.5rem; }

.fundraising .section-subhead {
  color: rgba(255,248,231,0.82);
  margin-bottom: 2.5rem;
}

.fundraising__features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.fundraising__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,248,231,0.75);
  font-size: 0.9rem;
  font-weight: 600;
}

.fundraising__feature span:first-child { font-size: 2rem; }


/* ============================================================
   FUNDRAISING FORM
   ============================================================ */
.fundraising-form-section {
  padding: var(--section-pad);
  background: var(--white);
}

.fundraising-form-section .section-title { margin-bottom: 1rem; }
.fundraising-form-section .section-subhead { margin-bottom: 3rem; }

.pixel-form {
  max-width: 720px;
  margin: 0 auto;
}

.pixel-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}

.pixel-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.pixel-form__row .pixel-form__group { margin-bottom: 20px; }

.pixel-form__label {
  font-size: 0.42rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pixel-form__input {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 16px;
  border: 3px solid var(--navy);
  background: var(--cream);
  color: var(--navy);
  outline: none;
  transition: border-color 0.15s, background 0.15s;
  appearance: none;
  border-radius: 0;
  width: 100%;
}

.pixel-form__input:focus {
  border-color: var(--gold);
  background: var(--white);
}

.pixel-form__input::placeholder { color: #aaa; }

.pixel-form__textarea {
  resize: vertical;
  min-height: 130px;
}


/* ============================================================
   LOCATION
   ============================================================ */
.location {
  padding: var(--section-pad);
  background: var(--cream);
}

.location .section-title { margin-bottom: 3rem; }

.location__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 52px;
  align-items: start;
}

.location__info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.location__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.location__icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }

.location__detail-label {
  font-size: 0.42rem;
  color: var(--gold);
  margin-bottom: 5px;
  letter-spacing: 0.08em;
}

.location__address,
.location__hours {
  font-style: normal;
  font-size: 1rem;
  color: #444;
  line-height: 1.65;
}

.location__link {
  color: var(--navy);
  font-size: 1rem;
  text-decoration: underline;
  text-decoration-color: var(--gold);
}

.location__link:hover { color: var(--gold); }

.location__map iframe {
  display: block;
  border: 4px solid var(--navy) !important;
  width: 100%;
}


/* ============================================================
   FAQ
   ============================================================ */
.faq {
  position: relative;
  padding: var(--section-pad);
  background: var(--navy);
  overflow: hidden;
}

.faq > .container { position: relative; z-index: 2; }

.faq .section-title { margin-bottom: 3rem; }

.accordion {
  max-width: 820px;
  margin: 0 auto;
}

.accordion__item {
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 0.48rem;
  text-align: left;
  cursor: pointer;
  gap: 16px;
  line-height: 1.75;
  transition: color 0.15s;
}

.accordion__trigger:hover { color: var(--gold); }

.accordion__trigger[aria-expanded="true"] { color: var(--gold); }

.accordion__icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  line-height: 1;
  font-family: monospace;
  font-weight: 300;
  transition: transform 0.22s ease;
}

.accordion__trigger[aria-expanded="true"] .accordion__icon {
  transform: rotate(45deg);
}

.accordion__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion__body.open {
  max-height: 400px;
  padding-bottom: 20px;
}

.accordion__body p {
  color: rgba(255, 248, 231, 0.75);
  font-size: 0.96rem;
  line-height: 1.65;
}

.accordion__body a {
  color: var(--gold);
  text-decoration: underline;
}


/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  padding: var(--section-pad);
  background: var(--sky-blue);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Pixel grid overlay */
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27,20,100,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,20,100,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.final-cta > .container { position: relative; z-index: 1; }

.final-cta__headline {
  color: var(--navy);
  font-size: clamp(1.2rem, 4.5vw, 2.2rem);
  margin-bottom: 1rem;
  text-shadow: 3px 3px 0 rgba(255,255,255,0.3);
}

.final-cta__subhead {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 2.5rem;
  font-weight: 700;
  opacity: 0.85;
}

.final-cta__pixel-border {
  position: absolute;
  inset: 12px;
  border: 3px dashed rgba(27,20,100,0.2);
  pointer-events: none;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  border-top: 4px solid var(--gold);
  padding: 64px 0 32px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer__logo-img {
  height: 58px;
  width: auto;
  image-rendering: pixelated;
  /* Placeholder styles */
  background: linear-gradient(135deg, var(--sky-blue) 0%, var(--navy) 100%);
  min-width: 140px;
  border: 2px solid var(--gold);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  justify-content: flex-end;
  max-width: 620px;
}

.footer__nav a {
  font-family: var(--font-pixel);
  font-size: 0.43rem;
  color: rgba(255, 248, 231, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.15s;
}

.footer__nav a:hover { color: var(--gold); }

.footer__middle {
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.footer__middle p {
  color: rgba(255, 248, 231, 0.65);
  font-size: 0.92rem;
  margin-bottom: 6px;
  line-height: 1.6;
}

.footer__middle a {
  color: var(--gold);
  text-decoration: underline;
}

.footer__bottom .pixel-text {
  font-size: 0.38rem;
  color: rgba(255, 248, 231, 0.38);
  line-height: 2.2;
  letter-spacing: 0.04em;
}

.footer__bottom a {
  color: var(--gold);
}


/* ============================================================
   RESPONSIVE — 1100px
   ============================================================ */
@media (max-width: 1100px) {
  .wash-menu__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenities__grid {
    grid-template-columns: 1fr;
  }

  .amenities__graphic {
    position: static;
    max-width: 440px;
    margin: 0 auto;
  }
}


/* ============================================================
   RESPONSIVE — 900px (tablet / hamburger breakpoint)
   ============================================================ */
@media (max-width: 900px) {
  /* Hide desktop nav links & CTA, show hamburger */
  .nav__links,
  .nav__cta { display: none; }

  .nav__hamburger { display: flex; }

  /* Mobile nav drawer */
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 20px 24px 28px;
    border-bottom: 3px solid var(--gold);
    gap: 18px;
    z-index: 999;
  }

  /* Show CTA inside mobile drawer */
  .nav__links.open .nav__mobile-cta { display: list-item; }

  /* Section adjustments */
  .problem__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .why-us__grid { grid-template-columns: 1fr; }

  .testimonials__grid { grid-template-columns: 1fr; }

  .location__inner { grid-template-columns: 1fr; }

  .amenities__list { grid-template-columns: 1fr; }

  .pixel-form__row { grid-template-columns: 1fr; }

  .savings-display__vs { gap: 24px; }

  .footer__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__nav { justify-content: flex-start; }
}


/* ============================================================
   RESPONSIVE — 600px (mobile)
   ============================================================ */
@media (max-width: 600px) {
  :root { --section-pad: 64px 0; }

  .wash-menu__grid { grid-template-columns: 1fr; }

  .wash-card--popular { margin-top: 20px; }

  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero__corner { display: none; }

  .savings-toggle__buttons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .savings-display__vs {
    flex-direction: column;
    gap: 16px;
  }

  .membership__ctas {
    flex-direction: column;
    align-items: center;
  }

  .fundraising__features { gap: 20px; }

  .footer__nav { justify-content: flex-start; }
}
