/* =========================================
   BUBBA'S EXPRESS CAR WASH
   Colors pulled directly from the logo:
     Navy:    #1A2B6B  (logo text / primary)
     Blue:    #2651B3  (sections / cards)
     Sky:     #3B9FD4  (logo circle / accents)
     Gold:    #F5A800  (flag poles / CTAs)
     Orange:  #E56A00  (banner / secondary)
     Dark:    #0D1433  (footer / nav)
   Fonts:
     Headlines: Barlow Condensed 900 italic
     Body: Barlow 400/600
   ========================================= */

:root {
  --navy:      #1A2B6B;
  --blue:      #2651B3;
  --sky:       #3B9FD4;
  --gold:      #F5A800;
  --gold-dk:   #C98900;
  --orange:    #E56A00;
  --dark:      #0D1433;
  --darker:    #080D24;
  --white:     #FFFFFF;
  --off-wh:    #F7F8FC;
  --light-bg:  #EEF2FF;
  --text:      #1A2040;
  --gray:      #6B7280;
  --lgray:     #D1D5E0;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ---- UTILITIES ---- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--navy);
}

.section-title.on-dark { color: var(--white); }

.text-gold   { color: var(--gold); }
.text-sky    { color: var(--sky); }

.section-sub {
  font-size: 1.15rem;
  color: var(--gray);
  line-height: 1.75;
  margin-top: 14px;
}
.section-sub.on-dark { color: rgba(255,255,255,.72); }

.section-intro { margin-bottom: 52px; }

/* ---- SECTION BACKGROUNDS ---- */
.section-white    { background: var(--white); }
.section-off-wh   { background: var(--off-wh); }
.section-light    { background: var(--light-bg); }
.section-navy     { background: var(--navy); }
.section-dark     { background: var(--dark); }
.section-gold-bg  { background: var(--gold); }

/* ---- CHECKERED DIVIDER ---- */
.checkered-divider {
  height: 16px;
  background-image: repeating-conic-gradient(var(--dark) 0% 25%, var(--gold) 0% 50%);
  background-size: 16px 16px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 28px;
  min-height: 44px;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn:hover::after { transform: translateX(100%); }
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(245,168,0,0.38);
}
.btn-gold:hover { background: #FFD04D; box-shadow: 0 8px 32px rgba(245,168,0,0.65); transform: translateY(-2px); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,43,107,0.3);
}
.btn-navy:hover { background: #162260; }
.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(255,255,255,0.15);
}
.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,255,255,0.2);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.65);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 20, 51, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(245,168,0,0.15);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(8, 13, 36, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo img {
  height: 64px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links li a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: 8px 12px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav-links li a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 9px 20px !important;
  border-radius: 6px !important;
  font-weight: 800 !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--gold-dk) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    url('../assets/hero-bg.jpg') center center / cover no-repeat;
  overflow: hidden;
  padding-top: 68px;
}

/* Dark overlay so text stays legible over the photo */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(8,13,36,0.82) 0%,
    rgba(26,43,107,0.65) 55%,
    rgba(26,43,107,0.25) 100%
  );
  pointer-events: none;
}

#bubbleCanvas { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding-top: 48px;
  padding-bottom: 80px;
}

.hero-col-text { display: flex; flex-direction: column; align-items: flex-start; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,168,0,0.15);
  border: 1px solid rgba(245,168,0,0.4);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
}
.hero-badge span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-badge i { color: var(--gold); font-size: 0.75rem; }

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.98;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-accent { color: var(--gold); display: block; }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.80);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  flex: 1;
  min-width: 120px;
}
.trust-item + .trust-item { border-left: 1px solid rgba(255,255,255,0.1); }
.trust-icon {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.trust-item strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}
.trust-item span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.2;
  margin-top: 1px;
}

/* Hero mascot column */
.hero-col-mascot {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-mascot-img {
  width: 100%;
  max-width: 440px;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.45));
  animation: mascot-float 5s ease-in-out infinite;
}
@keyframes mascot-float {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50%       { transform: translateY(-14px) rotate(1deg); }
}

.hero-chevron {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-chevron a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
  animation: bounce 2.4s ease-in-out infinite;
}
.hero-chevron a:hover { background: rgba(255,255,255,0.2); color: var(--white); }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* =========================================
   DIFFERENCE SECTION
   ========================================= */
.difference-section {
  padding: 96px 0;
  background: var(--off-wh);
  position: relative;
  overflow: hidden;
}
.difference-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-conic-gradient(var(--navy) 0% 25%, var(--gold) 0% 50%);
  background-size: 12px 12px;
}
.diff-intro {
  max-width: 640px;
  margin-bottom: 60px;
}
.vs-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(26,43,107,0.14);
}
.vs-panel {
  padding: 40px 36px;
}
.vs-panel-bubbas { background: var(--navy); }
.vs-panel-other  { background: var(--off-wh); }

.vs-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 12px;
  flex-wrap: wrap;
}
.vs-logo { height: 44px; width: auto; }
.vs-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.0;
  display: flex;
  flex-direction: column;
}
.vs-name span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  font-style: normal;
}
.vs-other-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--gray);
  letter-spacing: 0.04em;
}
.vs-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--dark);
  padding: 4px 12px;
  border-radius: 100px;
}
.vs-tag-muted { background: var(--lgray); color: var(--gray); }

.vs-list { display: flex; flex-direction: column; gap: 12px; }
.vs-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.3;
}
.vs-panel-bubbas .vs-list li { color: rgba(255,255,255,0.9); }
.vs-panel-other  .vs-list li { color: var(--gray); }
.vs-panel-bubbas .vs-list .fa-circle-check { color: var(--gold); }
.vs-panel-other  .vs-list .fa-xmark        { color: #E04444; font-size: 0.85rem; }
.vs-panel-other  .vs-list .fa-minus        { color: var(--lgray); font-size: 0.85rem; }

.vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  width: 56px;
  padding: 20px 0;
}
.vs-divider span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  text-transform: uppercase;
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.how-it-works {
  padding: 96px 0;
  background: linear-gradient(135deg, #FFCE00 0%, #F5A800 55%, #E08A00 100%);
  position: relative;
  overflow: hidden;
}
.how-it-works .section-label {
  color: var(--dark);
  opacity: 0.8;
}
.how-it-works .section-title { color: var(--dark); }
.how-it-works .section-title .text-gold { color: var(--white); }
.how-it-works .section-intro { position: relative; z-index: 1; }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
}
.step-card {
  background: var(--navy);
  border-radius: 20px;
  padding: 44px 32px 40px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.step-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: var(--gold);
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.35);
}
.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 6rem;
  color: rgba(245,168,0,0.18);
  line-height: 1;
  position: absolute;
  top: -10px; right: 16px;
  pointer-events: none;
  user-select: none;
}
.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--navy);
  box-shadow: 0 6px 20px rgba(245,168,0,0.4);
}
.step-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: var(--dark);
  font-size: 2rem;
  font-weight: 900;
}

/* =========================================
   PRICING
   ========================================= */
.pricing-section {
  padding: 96px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.pricing-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  pointer-events: none;
  animation: pricingFloat linear infinite;
}
@keyframes pricingFloat {
  0%   { transform: translateY(0)    scale(1);    opacity: 0.6; }
  30%  { transform: translateY(-22px) scale(1.02); opacity: 0.8; }
  55%  { transform: translateY(-10px) scale(0.98); opacity: 0.6; }
  80%  { transform: translateY(-28px) scale(1.03); opacity: 0.85; }
  100% { transform: translateY(0)    scale(1);    opacity: 0.6; }
}
.pricing-section .section-label { color: var(--gold); }
.pricing-section .section-title { color: var(--white); }
.pricing-section .section-sub { color: rgba(255,255,255,0.7); }

.location-tabs-wrap {
  margin-top: 32px;
  margin-bottom: 44px;
}
.location-tabs-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.location-tabs-label i { font-size: 0.65rem; color: var(--gold); }
.location-tabs {
  display: flex;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 6px;
  width: fit-content;
  margin-bottom: 0;
  border: 1px solid rgba(255,255,255,0.1);
}
.loc-tab {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  background: transparent;
  color: rgba(255,255,255,0.5);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.loc-tab.active {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 2px 12px rgba(245,168,0,0.35);
}
.loc-tab:not(.active):hover { background: rgba(255,255,255,0.08); color: var(--white); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
/* ---- PRICE CARDS — two-zone layout matching printed menu ---- */
.price-card {
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  background: var(--navy);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
}
.price-card.featured {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(245,168,0,0.3);
  transform: scale(1.03);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-5px); }

/* Top zone: blue, package name + single price */
.price-top {
  padding: 22px 20px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.price-ribbon {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 0 0 10px 10px;
  white-space: nowrap;
}
.price-card .price-ribbon { background: #27AE60; color: #fff; }
.price-card.featured .price-ribbon { background: var(--orange); color: #fff; }

.price-tier {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.9rem;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.0;
}

.pc-price-group {
  display: flex;
  align-items: flex-start;
  gap: 1px;
  flex-shrink: 0;
}
.pc-dollar {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--gold);
  margin-top: 4px;
}
.pc-amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
}

/* Bottom zone: colored band with features + unlimited */
.price-band {
  padding: 14px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* Per-package colors matching the menu */
.price-card--touchup  .price-band { background: rgba(255,255,255,0.10); }
.price-card--premium  .price-band { background: #D4660A; }
.price-card--best     .price-band { background: #B92B27; }
.price-card--ultimate .price-band { background: #1F8C3B; }

.price-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 2px;
}
.price-card--touchup .price-tagline { color: rgba(255,255,255,0.75); }

/* Unlimited row sits inline in the band */
.price-unlimited-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,0,0,0.18);
  border-radius: 8px;
  padding: 7px 12px;
}
.pc-label-unl {
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.pc-unl-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--gold);
}
.pc-per { font-size: 0.75rem; font-weight: 500; }

/* Legacy fields hidden — we replaced with top/band layout */
.price-block { display: none; }
.price-single-row { display: none; }
.pc-label { display: none; }

.price-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 4px 0 12px;
  flex: 1;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  line-height: 1.3;
}
.price-features li i { color: var(--gold); font-size: 0.75rem; margin-top: 2px; flex-shrink: 0; }

.price-cta { width: 100%; justify-content: center; margin-top: auto; }

/* Add-ons strip — orange bottom bar like the menu */
.addons-strip {
  background: var(--orange);
  border-radius: 14px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}
.addons-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-conic-gradient(rgba(0,0,0,0.06) 0% 25%, transparent 0% 50%);
  background-size: 10px 10px;
  pointer-events: none;
}
.addons-strip-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
  margin-right: 8px;
  position: relative;
}
.addon-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  position: relative;
}
.addon-item i { color: var(--white); font-size: 0.7rem; }

/* Full service note (Citrus Heights only) */
.fs-note {
  margin-top: 28px;
  background: linear-gradient(135deg, #FFCE00 0%, #F5A800 55%, #E08A00 100%);
  border-radius: 16px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.fs-note::before { display: none; }
.fs-note-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.fs-note-star {
  width: 48px;
  height: 48px;
  background: var(--dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fs-note-star i {
  color: var(--gold);
  font-size: 1.3rem;
}
.fs-note-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(13,20,51,0.65);
  margin-bottom: 2px;
}
.fs-note-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1.05;
  margin: 0 0 4px;
}
.fs-note-sub {
  font-size: 0.88rem;
  color: rgba(13,20,51,0.7);
  line-height: 1.4;
  margin: 0;
}
.fs-services {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.fs-service-badge {
  background: var(--dark);
  border-radius: 12px;
  padding: 14px 20px;
  text-align: center;
  min-width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.fs-service-badge i {
  font-size: 1.1rem;
  color: var(--gold);
}
.fs-service-badge span {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1;
}
.fs-service-badge small {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.3;
}
.fs-service-badge--member {
  border: 2px solid var(--gold);
}
.fs-service-badge--member i,
.fs-service-badge--member span { color: var(--gold); }

/* =========================================
   AMENITIES
   ========================================= */
.amenities-section {
  padding: 96px 0;
  background: var(--white);
}
.amenities-section .section-title { color: var(--navy); }
.amenities-section .section-label { color: var(--gold-dk); }
.amenities-section .section-sub { color: var(--gray); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.amenity-card {
  background: var(--white);
  border: 2px solid var(--lgray);
  border-radius: 20px;
  padding: 40px 24px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.amenity-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
}
.amenity-card:nth-child(1)::before { background: var(--gold); }
.amenity-card:nth-child(2)::before { background: #B92B27; }
.amenity-card:nth-child(3)::before { background: var(--sky); }
.amenity-card:nth-child(4)::before { background: #1F8C3B; }
.amenity-card:nth-child(5)::before { background: var(--orange); }
.amenity-card:nth-child(6)::before { background: var(--navy); }
.amenity-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(26,43,107,0.12);
}
.amenity-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.2rem;
  background: rgba(245,168,0,0.12);
  color: var(--gold);
}
.amenity-card:nth-child(2) .amenity-icon { background: rgba(185,43,39,0.1); color: #B92B27; }
.amenity-card:nth-child(3) .amenity-icon { background: rgba(59,159,212,0.12); color: var(--sky); }
.amenity-card:nth-child(4) .amenity-icon { background: rgba(31,140,59,0.1); color: #1F8C3B; }
.amenity-card:nth-child(5) .amenity-icon { background: rgba(229,106,0,0.1); color: var(--orange); }
.amenity-card:nth-child(6) .amenity-icon { background: rgba(26,43,107,0.08); color: var(--navy); }
.amenity-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 8px;
}
.amenity-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

/* =========================================
   MEMBERSHIPS
   ========================================= */
.memberships-section {
  padding: 96px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.memberships-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -20deg, transparent, transparent 60px,
    rgba(245,168,0,0.03) 60px, rgba(245,168,0,0.03) 61px
  );
  pointer-events: none;
}
.memberships-section .section-label { color: var(--gold); }

.member-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.member-perks-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.member-perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.perk-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(245,168,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dk);
  font-size: 1rem;
}
.perk-text strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 2px;
}
.perk-text p { font-size: 0.88rem; color: var(--gray); line-height: 1.5; }

.member-locations-col { display: flex; flex-direction: column; gap: 20px; }

.member-location-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 28px 28px;
  border: 2px solid var(--lgray);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.member-location-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(26,43,107,0.1);
}
.member-location-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}
.member-location-card .loc-address {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 16px;
}
.member-price-highlight {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}
.member-price-highlight .pr-label {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-right: 4px;
}
.member-price-highlight .pr-from {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--navy);
  line-height: 1;
}
.member-price-highlight .pr-mo {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--lgray);
  color: var(--gray);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

/* =========================================
   LOCATIONS
   ========================================= */
.locations-section {
  padding: 96px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.locations-section::before { display: none; }
.locations-section .section-label { color: var(--gold-dk); }
.locations-section .section-title { color: var(--navy); }
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 52px;
  position: relative;
  z-index: 1;
}
.location-card {
  background: var(--off-wh);
  border: 2px solid var(--lgray);
  border-top: 5px solid var(--gold);
  border-radius: 16px;
  padding: 40px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.location-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 160px; height: 160px;
  background: radial-gradient(circle at bottom right, rgba(245,168,0,0.07), transparent 70%);
  pointer-events: none;
}
.location-card:hover {
  border-color: var(--gold);
  border-top-color: var(--gold);
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.location-card-badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--dark);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.location-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 2.2rem;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.05;
}
.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.location-detail i {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}
.location-detail span, .location-detail a {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.4;
}
.location-detail a:hover { color: var(--gold-dk); }

.location-services-note {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--lgray);
}
.location-services-note p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.5;
}
.location-services-note strong { color: var(--text); }

.location-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-section {
  padding: 96px 0;
  background: var(--off-wh);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before { display: none; }
.testimonials-section .section-label { color: var(--gold-dk); }
.testimonials-section .section-title { color: var(--navy); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
  position: relative;
  z-index: 1;
}
.review-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px 32px;
  border: 1px solid var(--lgray);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.review-card:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: -10px; right: 20px;
  font-family: Georgia, serif;
  font-size: 9rem;
  line-height: 1;
  color: rgba(245,168,0,0.18);
  pointer-events: none;
}
.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}
.review-stars i { color: var(--gold); font-size: 1.1rem; }

.review-text {
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.reviewer-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
}
.reviewer-location {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 3px;
}
.yelp-source {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: var(--gray);
  margin-top: 12px;
}
.yelp-source i { color: #D32323; }

.testimonial-photo-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
}
.testimonial-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 50%;
  display: block;
}

/* =========================================
   FUNDRAISING CTA
   ========================================= */
.fundraising-cta-section {
  padding: 80px 0;
  background: var(--gold);
}
.fundraising-cta-section .section-label { color: var(--dark); opacity: 0.6; }
.fundraising-cta-section .section-title { color: var(--dark); }
.fundraising-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.fundraising-cta-text { flex: 1; max-width: 560px; }
.fundraising-cta-text .section-sub { color: rgba(13,20,51,0.72); margin-top: 10px; }

/* =========================================
   FAQ
   ========================================= */
.faq-section {
  padding: 96px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-conic-gradient(rgba(255,255,255,0.015) 0% 25%, transparent 0% 50%);
  background-size: 32px 32px;
  pointer-events: none;
}
.faq-section .section-label { color: var(--gold); }
.faq-section .section-title { color: var(--white); }
.faq-section .section-sub { color: rgba(255,255,255,0.65); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 52px;
  position: relative;
  z-index: 1;
}
.faq-item {
  background: rgba(10,16,50,0.75);
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.12);
  border-left: 5px solid rgba(245,168,0,0.4);
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}
.faq-item.open {
  border-color: var(--gold);
  border-left-color: var(--gold);
  background: rgba(10,16,50,0.9);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-q-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.3;
}
.faq-item.open .faq-q-text { color: var(--gold); }
.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s, border-color 0.2s;
}
.faq-item.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-a p {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  padding-bottom: 22px;
}
.faq-item.open .faq-a { max-height: 220px; padding: 0 24px; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--darker);
  padding: 72px 0 0;
  color: rgba(255,255,255,0.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .footer-logo { height: 80px; width: auto; margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 20px;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.social-link:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-location-block { margin-bottom: 20px; }
.footer-location-block h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-location-block p {
  font-size: 0.83rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
}
.footer-location-block a { color: rgba(255,255,255,0.55); }
.footer-location-block a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
}
.footer-bottom p, .footer-bottom a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =========================================
   PHOTO PLACEHOLDER (until real photos arrive)
   ========================================= */
.photo-placeholder {
  background: linear-gradient(135deg, var(--light-bg), var(--lgray));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  min-height: 280px;
  color: var(--gray);
  border: 2px dashed var(--lgray);
}
.photo-placeholder i { font-size: 2rem; color: var(--lgray); }
.photo-placeholder p { font-size: 0.85rem; font-weight: 500; }

/* =========================================
   LOCATION PAGE HERO (shorter hero)
   ========================================= */
.page-hero {
  background: linear-gradient(135deg, var(--darker) 0%, var(--navy) 100%);
  padding: 136px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -20deg,
    transparent, transparent 60px,
    rgba(245,168,0,0.025) 60px, rgba(245,168,0,0.025) 61px
  );
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--gold); margin-bottom: 8px; }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2.4rem, 6vw, 4rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 28px;
}
.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}
.page-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.page-meta-item i { color: var(--gold); }

/* =========================================
   FORM PAGES (fundraiser, contact, employment)
   ========================================= */
.form-section {
  padding: 80px 0;
  background: var(--off-wh);
}
.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.form-sidebar h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.05;
}
.form-sidebar p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}
.form-sidebar .sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-sidebar .sidebar-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.4;
}
.form-sidebar .sidebar-list li i { color: var(--gold-dk); margin-top: 2px; flex-shrink: 0; }

.form-embed-area {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 32px rgba(26,43,107,0.09);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-embed-placeholder {
  text-align: center;
  color: var(--gray);
}
.form-embed-placeholder i { font-size: 2.5rem; color: var(--lgray); margin-bottom: 12px; }
.form-embed-placeholder p { font-size: 0.9rem; line-height: 1.6; }
.form-embed-placeholder strong { color: var(--navy); }

/* =========================================
   THANK YOU PAGE
   ========================================= */
.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0 80px;
  padding-top: calc(68px + 48px);
  background: linear-gradient(135deg, var(--darker) 0%, #0f1f5a 60%, #1a2b6b 100%);
}
.thankyou-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 64px 56px;
  text-align: center;
  max-width: 680px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  border-top: 5px solid var(--gold);
  backdrop-filter: blur(12px);
}
.thankyou-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(245,168,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: var(--gold);
}
.thankyou-card h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 2.8rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.thankyou-card p { font-size: 1rem; color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 32px; }

/* =========================================
   RESPONSIVE — 1024px
   ========================================= */
@media (max-width: 1024px) {
  .pricing-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .steps-grid     { grid-template-columns: 1fr; gap: 24px; }
  .step-arrow     { transform: rotate(90deg); margin: 0 auto; }
  .member-layout  { grid-template-columns: 1fr; gap: 40px; }
  .form-layout    { grid-template-columns: 1fr; }
}

/* =========================================
   RESPONSIVE — 768px
   ========================================= */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--darker);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li a { display: block; padding: 12px 16px; border-radius: 8px; width: 100%; }
  .nav-cta { margin-left: 0 !important; margin-top: 8px; text-align: center; }
  .nav-toggle { display: flex; }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 32px;
    padding-bottom: 60px;
  }
  .hero-col-mascot { order: -1; }
  .hero-mascot-img { max-width: 280px; margin: 0 auto; }
  .hero-trust { flex-direction: column; }
  .trust-item + .trust-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); }

  .vs-wrap { grid-template-columns: 1fr; }
  .vs-divider { width: 100%; height: 40px; writing-mode: horizontal-tb; }
  .vs-divider span { writing-mode: horizontal-tb; }

  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: scale(1); }

  .amenities-grid { grid-template-columns: repeat(2, 1fr); }

  .locations-grid  { grid-template-columns: 1fr; }
  .reviews-grid    { grid-template-columns: 1fr; }
  .faq-grid        { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .fundraising-cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.8rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .amenities-grid { grid-template-columns: 1fr; }
  .fs-services { flex-direction: column; }
  .location-actions { flex-direction: column; }
  .location-actions .btn { width: 100%; justify-content: center; }
}

/* =========================================
   SKIP LINK (accessibility)
   ========================================= */
.skip-link {
  position: absolute;
  top: -100%;
  left: 8px;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 18px;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* =========================================
   NAV DROPDOWN
   ========================================= */
.has-dropdown { position: relative; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--darker);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
  padding: 6px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: rgba(255,255,255,0.12);
  border-top: none;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown.open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 7px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78) !important;
  background: transparent !important;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown li a:hover {
  background: rgba(255,255,255,0.08) !important;
  color: var(--gold) !important;
}
.nav-dropdown li a i { color: var(--gold); font-size: 0.75rem; }

.dropdown-arrow {
  font-size: 0.65rem;
  margin-left: 3px;
  transition: transform 0.2s;
}
.has-dropdown:hover .dropdown-arrow,
.has-dropdown.open .dropdown-arrow { transform: rotate(180deg); }

/* Nav CTA pulse on load */
@keyframes nav-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,168,0,0.45); }
  50%       { box-shadow: 0 0 0 8px rgba(245,168,0,0); }
}
.nav-cta { animation: nav-pulse 2.4s ease-in-out 1.5s 3; }

/* =========================================
   FREE WASH BANNER SECTION
   (replaces fundraising CTA)
   ========================================= */
.free-wash-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, #FFCE00 0%, #F5A800 55%, #E08A00 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
/* Animated bubble circles */
.fwb-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.13);
  pointer-events: none;
  animation: fwbFloat linear infinite;
}
@keyframes fwbFloat {
  0%   { transform: translateY(0)   scale(1);    opacity: 0.7; }
  25%  { transform: translateY(-18px) scale(1.02); opacity: 0.85; }
  50%  { transform: translateY(-8px)  scale(0.98); opacity: 0.7; }
  75%  { transform: translateY(-24px) scale(1.03); opacity: 0.9; }
  100% { transform: translateY(0)   scale(1);    opacity: 0.7; }
}
.fwb-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.fwb-inner .section-label {
  display: inline-block;
  color: var(--dark);
  background: rgba(0,0,0,0.12);
  border-color: rgba(0,0,0,0.2);
  margin-bottom: 10px;
}
.fwb-inner .section-title {
  color: var(--dark);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  text-shadow: 2px 3px 0px rgba(255,255,255,0.25);
}
.fwb-inner .section-sub {
  color: rgba(13,20,51,0.78);
  max-width: 540px;
  margin: 16px auto 40px;
  font-size: 1.05rem;
}
.fwb-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--dark);
  color: var(--gold);
  padding: 22px 56px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 36px rgba(0,0,0,0.35);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.fwb-cta:hover {
  background: var(--navy);
  color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}
.fwb-sub {
  display: block;
  font-size: 0.85rem;
  color: rgba(13,20,51,0.65);
  margin-top: 18px;
}

/* =========================================
   FREE WASH PAGE
   ========================================= */
.free-wash-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--darker) 0%, var(--navy) 60%, #1E3580 100%);
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}
.free-wash-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -20deg, transparent, transparent 60px,
    rgba(245,168,0,0.025) 60px, rgba(245,168,0,0.025) 61px
  );
  pointer-events: none;
}
.free-wash-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}
.free-wash-text .section-label { color: var(--gold); margin-bottom: 12px; }
.free-wash-text h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.98;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.free-wash-text h1 span { color: var(--gold); display: block; }
.free-wash-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 28px;
}
.free-wash-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}
.proof-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.proof-chip i { color: var(--gold); font-size: 0.7rem; }

.free-wash-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}
.free-wash-form-card h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.free-wash-form-card > p {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* =========================================
   MEMBERSHIPS PAGE
   ========================================= */
.memberships-hero {
  background: linear-gradient(135deg, var(--darker) 0%, var(--navy) 100%);
  padding: 136px 0 80px;
  position: relative;
  overflow: hidden;
}
.memberships-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -20deg, transparent, transparent 60px,
    rgba(245,168,0,0.025) 60px, rgba(245,168,0,0.025) 61px
  );
  pointer-events: none;
}
.memberships-hero-inner { position: relative; z-index: 1; }
.memberships-hero .section-label { color: var(--gold); }
.memberships-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 16px;
}
.memberships-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  line-height: 1.65;
}

.membership-location-section {
  padding: 80px 0;
}
.membership-location-section:nth-child(even) { background: var(--off-wh); }

.membership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.membership-location-badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(245,168,0,0.12);
  color: var(--gold-dk);
  border: 1px solid rgba(245,168,0,0.3);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.membership-location-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 2.4rem;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 12px;
}
.membership-signup-panel {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  border: 2px solid var(--lgray);
  box-shadow: 0 4px 24px rgba(26,43,107,0.08);
}
.membership-signup-panel h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.membership-signup-panel > p {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* =========================================
   POLICY / CONTENT PAGES
   ========================================= */
.policy-hero {
  background: linear-gradient(135deg, var(--darker) 0%, var(--navy) 100%);
  padding: 120px 0 60px;
}
.policy-hero .section-label { color: var(--gold); }
.policy-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 8px;
}
.policy-hero p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
}

.policy-content {
  padding: 72px 0;
  background: var(--white);
}
.policy-body {
  max-width: 780px;
}
.policy-body h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin: 36px 0 12px;
}
.policy-body h2:first-child { margin-top: 0; }
.policy-body p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 12px;
}
.policy-body ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}
.policy-body ul li {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 4px;
}
.policy-body a { color: var(--navy); text-decoration: underline; }

/* =========================================
   BRAND GUIDE PAGE
   ========================================= */
.brand-guide-body { padding: 80px 0; background: var(--off-wh); }
.bg-section {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 0 2px 16px rgba(26,43,107,0.06);
}
.bg-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--lgray);
}
.color-swatches { display: flex; flex-wrap: wrap; gap: 16px; }
.swatch {
  width: 120px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.swatch-color { height: 80px; }
.swatch-info { padding: 10px 12px; background: var(--white); border-top: 1px solid var(--lgray); }
.swatch-info strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text); }
.swatch-info span { font-size: 0.75rem; color: var(--gray); font-family: monospace; }
.font-display {
  margin-bottom: 20px;
  padding: 20px;
  background: var(--off-wh);
  border-radius: 10px;
}
.font-display-name {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 6px;
}
.btn-showcase { display: flex; flex-wrap: wrap; gap: 12px; }

/* =========================================
   IMPROVED HERO ACTIONS (mobile)
   ========================================= */
@media (max-width: 768px) {
  .free-wash-hero-inner {
    grid-template-columns: 1fr;
  }
  .free-wash-form-card {
    padding: 32px 24px;
  }
  .membership-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =========================================
   FOOTER OPTSPOT CREDIT
   ========================================= */
.footer-optspot {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  padding: 12px 0 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 8px;
}
.footer-optspot a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-optspot a:hover { color: var(--gold); }

/* =========================================
   ADA ACCESSIBILITY WIDGET OVERRIDES
   (UserWay anchors bottom-left)
   ========================================= */
#userway-s1 {
  left: 16px !important;
  bottom: 16px !important;
  right: auto !important;
}

/* =========================================
   FOCUS STATES (accessibility)
   ========================================= */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================
   HOMEPAGE MEMBERSHIP — DARK REDESIGN
   ========================================= */
.member-savings-hook {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,168,0,0.12);
  border: 1px solid rgba(245,168,0,0.3);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.4;
}
.member-savings-hook i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.member-savings-hook strong { color: var(--gold); }

.member-perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.member-perk-tile {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: background 0.2s, border-color 0.2s;
}
.member-perk-tile:hover {
  background: rgba(245,168,0,0.1);
  border-color: rgba(245,168,0,0.35);
}
.member-perk-tile i {
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.member-perk-tile div { display: flex; flex-direction: column; gap: 3px; }
.member-perk-tile strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1.2;
}
.member-perk-tile span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.3;
}

.member-photo-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* Also make the left column a flex column so both stretch equally */
.memberships-section .member-layout > div:first-child {
  display: flex;
  flex-direction: column;
}
.memberships-section .member-layout > div:first-child .member-perks-grid {
  flex: 1;
  align-content: end;
}

/* Photo */
.member-photo-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  flex: 1;
  min-height: 220px;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
}
.member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Placeholder state when image is missing */
.member-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 2px dashed rgba(245,168,0,0.3);
}
.member-photo-placeholder::after {
  content: 'Photo coming soon';
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.member-photo-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.member-photo-badge i { font-size: 0.9rem; }

/* CTA block */
.member-cta-block {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 4px solid var(--gold);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.member-price-callout {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.price-starting {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
}
.member-big-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--white);
  line-height: 1;
}
.member-big-price .price-cents {
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}
.member-big-price .price-mo {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin-left: 2px;
}
.member-join-btn {
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: 1.1rem;
  padding: 18px;
}
.member-card-fine {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  line-height: 1.4;
  margin: 0;
}

/* =========================================
   PHOTO PLACEHOLDER IMPROVEMENTS
   ========================================= */
.photo-placeholder.tall { min-height: 360px; }
.photo-placeholder.short { min-height: 200px; }

/* =========================================
   GLOBAL IMAGE STYLING
   ========================================= */
.img-rounded {
  border-radius: 16px;
  overflow: hidden;
}
.img-shadow { box-shadow: 0 12px 40px rgba(26,43,107,0.15); }


/* =========================================
   ACCESSIBILITY WIDGET
   ========================================= */
.ada-trigger {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--gold);
  color: var(--white);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
  transition: background 0.2s, transform 0.2s;
}
.ada-trigger:hover { background: var(--gold); color: var(--navy); transform: scale(1.08); }
.ada-trigger:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.ada-panel {
  position: fixed;
  bottom: 88px;
  left: 24px;
  z-index: 9998;
  background: var(--white);
  border: 2px solid var(--lgray);
  border-radius: 16px;
  padding: 20px 18px 16px;
  width: 230px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.ada-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.ada-panel-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--lgray);
}
.ada-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ada-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  border: 1px solid var(--lgray);
  background: var(--off-wh);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  width: 100%;
  text-align: left;
}
.ada-btn i { color: var(--navy); font-size: 0.9rem; width: 16px; text-align: center; }
.ada-btn:hover { background: var(--light-bg); border-color: var(--navy); }
.ada-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.ada-btn.active i { color: var(--gold); }
.ada-reset {
  margin-top: 4px;
  background: transparent;
  border: none;
  color: var(--gray);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 4px 0;
  text-decoration: underline;
  display: block;
  width: 100%;
  text-align: center;
}
.ada-reset:hover { color: var(--navy); }

/* Applied accessibility states
   NOTE: filters are applied to body > * (not body itself) so that
   position:fixed on the widget is not broken by a new stacking context. */
body.ada-large-text { font-size: 110%; }

body.ada-high-contrast > *:not(.ada-trigger):not(.ada-panel) {
  filter: contrast(1.45) brightness(1.05);
}
body.ada-grayscale > *:not(.ada-trigger):not(.ada-panel) {
  filter: grayscale(1);
}
body.ada-high-contrast.ada-grayscale > *:not(.ada-trigger):not(.ada-panel) {
  filter: grayscale(1) contrast(1.45) brightness(1.05);
}

/* =========================================
   MOBILE OPTIMIZATIONS
   ========================================= */

/* Prevent horizontal scroll on all pages */
html, body { overflow-x: hidden; max-width: 100%; }

/* Prevent iOS font size adjustment */
html { -webkit-text-size-adjust: 100%; }

/* ---- Reusable responsive grid classes ---- */
.loc-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.loc-mem-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ty-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ---- iOS form input zoom prevention ---- */
/* font-size < 16px on inputs causes iOS Safari to auto-zoom */
@media (max-width: 768px) {
  input, select, textarea {
    font-size: 16px !important;
  }
}

/* ---- Minimum touch target size + tap delay elimination ---- */
.btn, button, a.btn,
.nav-links li a,
.loc-tab,
.faq-q,
.ada-trigger {
  min-height: 44px;
  touch-action: manipulation;
}

/* ---- 768px breakpoints ---- */
@media (max-width: 768px) {

  /* Location page service/amenity 3-col → 1-col */
  .loc-services-grid {
    grid-template-columns: 1fr;
  }

  /* Location page memberships 2-col → 1-col */
  .loc-mem-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Contact location cards 2-col → 1-col */
  .contact-loc-grid {
    grid-template-columns: 1fr;
  }

  /* Thank-you 3-step → 1-col */
  .ty-steps-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Memberships guide strip 4-col → 2-col */
  .mem-guide-inner {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Fundraiser / careers hero stats */
  .fr-stats, .car-hero-stats {
    gap: 24px;
  }
  .fr-stat-num, .car-hero-stat-num {
    font-size: 2.2rem;
  }

  /* Fundraiser org chips — allow wrapping but smaller */
  .fr-org-chip {
    font-size: 0.85rem;
    padding: 8px 14px;
  }

  /* Fundraiser + careers form layouts */
  .fr-form-layout, .car-form-layout {
    grid-template-columns: 1fr;
  }

  /* Fundraiser 3-col cards */
  .fr-cards {
    grid-template-columns: 1fr;
  }

  /* Careers perks/roles grids */
  .car-perks-grid {
    grid-template-columns: 1fr;
  }
  .car-roles-grid {
    grid-template-columns: 1fr;
  }

  /* Page hero meta items — stack on mobile */
  .page-hero-meta {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  /* Section padding reduction */
  section[style*="padding:80px"] {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  /* Pricing card featured scale reset */
  .price-card.featured { transform: none; }

  /* Addons strip — wrap items */
  .addons-strip { flex-wrap: wrap; gap: 8px; }

  /* Thank-you card padding */
  .thankyou-card { padding: 32px 20px; }

  /* Free wash hero inner */
  .free-wash-hero-inner { grid-template-columns: 1fr; }
  .free-wash-form-card { padding: 28px 20px; }

  /* Proof chips wrap on small screens */
  .free-wash-proof { flex-direction: column; gap: 8px; }
}

/* ---- 480px breakpoints ---- */
@media (max-width: 480px) {

  /* Memberships guide → 1-col on very small screens */
  .mem-guide-inner {
    grid-template-columns: 1fr !important;
  }

  /* Hero h1 scaling */
  .fr-hero h1, .car-hero h1 { font-size: 2.4rem; }

  /* Trust strip on free-wash landing → 2-col */
  .free-wash-hero .free-wash-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  /* Pricing grid force single col */
  .pricing-grid { grid-template-columns: 1fr !important; }

  /* Button groups stack */
  .btn-group-row {
    flex-direction: column;
  }
  .btn-group-row .btn { width: 100%; justify-content: center; }

  /* fr/car hero stats — tighten */
  .fr-stats, .car-hero-stats {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  /* Careers role card adjust padding */
  .car-role-card { padding: 20px 16px; }

  /* Form sidebar cards on mobile */
  .fr-sidebar-card, .car-sidebar-card { padding: 20px 16px; }

  /* ADA widget — tighter on tiny screens */
  .ada-trigger { bottom: 16px; left: 16px; width: 46px; height: 46px; font-size: 1.15rem; }
  .ada-panel { left: 16px; bottom: 74px; width: calc(100vw - 32px); max-width: 260px; }
}

/* ── IMAGE PLACEHOLDERS ── */
.img-placeholder {
  background: rgba(26,43,107,0.04);
  border: 2px dashed rgba(26,43,107,0.18);
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
}
.img-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 64px 24px;
  color: rgba(26,43,107,0.32);
  text-align: center;
}
.img-placeholder-inner i { font-size: 2.4rem; }
.img-placeholder-inner strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
}
.img-placeholder-inner span {
  font-size: 0.8rem;
  max-width: 220px;
  line-height: 1.55;
  opacity: 0.75;
}
.img-placeholder--dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.14);
}
.img-placeholder--dark .img-placeholder-inner { color: rgba(255,255,255,0.35); }
.img-placeholder--tall .img-placeholder-inner { padding: 96px 24px; }
.img-placeholder--short .img-placeholder-inner { padding: 40px 24px; }

/* ── PAPERFORM ROUNDED CONTAINERS ── */
[data-paperform-id] {
  border-radius: 16px;
  overflow: hidden;
  display: block;
}
[data-paperform-id] iframe {
  border-radius: 16px;
  display: block;
}
