/* ============================================================
   Cares Car Wash — site styles
   ============================================================ */

:root {
  --blue: #23A3EA;        /* bright brand blue (rgb 35,163,234) */
  --blue-dark: #1690d3;
  --navy: #182857;        /* deep navy (rgb 24,40,87) */
  --navy-2: #172c56;
  --red: #dc2625;         /* CTA red (brand secondary) */
  --red-dark: #b91c1c;
  --orange: #fc5a25;      /* brand secondary orange */
  --gold: #fac61c;        /* gold / yellow accent (brand secondary) */
  --text: #000000;
  --white: #ffffff;
  --gray-100: #f4f6f9;
  --gray-slot: #e7ebf1;
  --radius: 22px;
  --container: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  line-height: 1.55;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.center { text-align: center; }

/* ---------- Image placeholder slots ---------- */
.img-slot {
  position: relative;
  background:
    repeating-linear-gradient(45deg, #eef1f6 0 14px, #e6eaf1 14px 28px);
  border: 2px dashed #9fb0c6;
  border-radius: 14px;
  min-height: 120px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-slot::after {
  content: "📷 " attr(data-label);
  color: #5a6b82;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  padding: 8px 12px;
}
.img-slot--bg {
  position: absolute;
  inset: 0;
  border-radius: 0;
  min-height: 0;
  z-index: 0;
}
.img-slot--framed { border-radius: 14px; }
.img-slot--video {
  aspect-ratio: 4/5;
  background: #14213d;
  border-color: #14213d;
}
.img-slot--video::after { content: ""; }
.img-slot--video .play-btn {
  position: relative;
  z-index: 2;
  width: 74px; height: 74px;
  border-radius: 16px;
  background: #000;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  padding-left: 6px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-block;
  font-weight: 700;
  letter-spacing: .3px;
  text-align: center;
  border-radius: 999px;
  padding: 14px 30px;
  cursor: pointer;
  transition: transform .12s ease, background .2s ease, box-shadow .2s ease;
  border: none;
  font-size: .95rem;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 17px 40px; font-size: 1.05rem; }

.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); }

.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 4px 0 rgba(0,0,0,.12); }
.btn-blue:hover { background: var(--blue-dark); }

.btn-white-red { background: #fff; color: var(--red); border: 2px solid var(--red); }

.btn-directions {
  background: var(--red);
  color: var(--gold);
  border: 2px solid var(--gold);
  font-weight: 800;
  padding: 12px 26px;
}

/* ============================================================
   Header
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 100; }

.topbar { background: var(--blue); color: #fff; font-size: .85rem; }
.topbar-inner {
  display: flex;
  justify-content: flex-end;
  gap: 34px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.topbar-link { font-weight: 700; letter-spacing: .4px; display: inline-flex; align-items: center; gap: 8px; }
.topbar-link .ico { font-size: .95rem; }

.navbar { background: #fff; box-shadow: 0 2px 14px rgba(0,0,0,.06); }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}

.logo-text { display: inline-flex; flex-direction: column; line-height: .9; font-weight: 800; position: relative; }
.logo-cares { color: var(--blue); font-size: 2rem; letter-spacing: 1px; }
.logo-sub { color: var(--red); font-size: 1.15rem; letter-spacing: 2px; }
.logo-heart { color: var(--red); position: absolute; right: -22px; top: -2px; font-size: 1.2rem; }

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav ul { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; }
.main-nav a { font-weight: 600; font-size: .92rem; color: #1c2540; letter-spacing: .3px; }
.main-nav ul a:hover { color: var(--blue); }
.nav-cta { padding: 13px 26px; }

.nav-toggle { display: none; background: none; border: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 3px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero .img-slot--bg { background: #24324f; border: none; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,20,45,.45), rgba(10,20,45,.55));
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 70px 24px; }
.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 900;
  line-height: .98;
  margin: 0 0 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-title .gold { color: var(--gold); }
.hero-title .white { color: #fff; }
.hero-sub {
  color: #fff;
  max-width: 720px;
  margin: 0 auto 34px;
  font-size: 1.18rem;
  font-weight: 500;
  font-style: italic;
}
.hero-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Section headings
   ============================================================ */
.section-heading {
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.08;
  margin: 0 0 18px;
  color: var(--navy);
}
.section-heading.center { text-align: center; }
.section-heading.dark { color: var(--navy); }
.section-heading.light { color: #fff; }
.section-heading .blue { color: var(--blue); }
.section-heading .red { color: var(--red); }
.section-heading .white { color: #fff; }
.gold-heading { color: var(--gold); }
.red-heading { color: var(--red); }

.section-sub { font-size: 1.1rem; max-width: 820px; margin: 0 auto 40px; color: #33415c; }
.section-sub.light { color: #eaf6ff; }
.section-sub .blue-bold { color: var(--blue); font-weight: 700; }

.eyebrow { font-weight: 800; letter-spacing: 1px; text-transform: uppercase; font-size: .95rem; margin: 0 0 6px; }
.eyebrow-red { color: var(--red); }
.eyebrow-gold { color: var(--gold); }

.blue { color: var(--blue); }
.gold { color: var(--gold); }
.red { color: var(--red); }
.heart-inline { color: var(--red); }

/* ============================================================
   Wave dividers
   ============================================================ */
/* Real Simvoly shape dividers. Each is a "top" divider whose fill is the
   section's own colour, curving up into the section above it. */
.wave-top-blue,
.wave-top-white,
.wave-top-navy,
.wave-bottom-navy {
  position: absolute;
  left: 0; right: 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 1;
}
/* Signature layered blue wave (viewBox 300x100, fill rgb(35,163,234)) */
.wave-top-blue {
  height: 118px;
  top: -117px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 100' preserveAspectRatio='none'%3E%3Cpath fill='%2323A3EA' d='M10.9,63.9c0,0,42.9-34.5,87.5-14.2c77.3,35.1,113.3-2,146.6-4.7C293.7,41,315,61.2,315,61.2v54.4H10.9V63.9z'/%3E%3C/svg%3E");
}
/* White curve (viewBox 1920x60) */
.wave-top-white {
  height: 64px;
  top: -63px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 60' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M1920,60H0S361,0,960,0,1920,60,1920,60Z'/%3E%3C/svg%3E");
}
/* Navy curve (viewBox 1920x60, fill rgb(24,40,87)) */
.wave-top-navy {
  height: 64px;
  top: -63px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 60' preserveAspectRatio='none'%3E%3Cpath fill='%23182857' d='M1920,60H0S361,0,960,0,1920,60,1920,60Z'/%3E%3C/svg%3E");
}
/* White curve at a section bottom (navy -> white transitions) */
.wave-bottom-navy {
  height: 64px;
  bottom: -1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 60' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0,0H1920S1559,60,960,60,0,0,0,0Z'/%3E%3C/svg%3E");
}

/* ============================================================
   Check lists
   ============================================================ */
.check-list { list-style: none; margin: 22px 0 28px; padding: 0; }
.check-list li { display: flex; align-items: center; gap: 12px; font-weight: 700; margin: 14px 0; }
.check-list .chk {
  width: 26px; height: 26px; flex: 0 0 26px;
  background: var(--blue); color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .85rem;
}
.check-list--joy li { color: #fff; }
.check-list .chk-shield { background: transparent; color: var(--gold); font-size: 1.2rem; }

/* ============================================================
   Joy section
   ============================================================ */
.joy-section { position: relative; background: var(--blue); padding: 120px 0 90px; }
.joy-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.joy-card { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 48px 44px; }
.joy-title { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 800; text-transform: uppercase; line-height: 1.1; margin: 0 0 20px; }
.joy-text { color: #dfe7f2; margin: 0 0 10px; }
.joy-mascot { display: flex; justify-content: center; }
.joy-mascot .img-slot { max-width: 460px; }

/* ============================================================
   Wash Club section
   ============================================================ */
.washclub-section { position: relative; padding: 90px 0; background: #fff; }
.washclub-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: center; }
.washclub-video .img-slot { max-width: 300px; }

/* ============================================================
   Locations
   ============================================================ */
.locations-section { padding: 80px 0 100px; background: #fff; }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
}
.loc-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 430px;
  display: flex;
  box-shadow: 0 18px 40px rgba(20,40,80,.18);
}
.loc-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,41,79,.72), rgba(22,41,79,.82)); z-index: 1; }
.loc-content {
  position: relative; z-index: 2;
  color: #fff; text-align: center;
  padding: 34px 26px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: space-between;
  width: 100%;
}
.loc-content h3 { font-size: 1.9rem; font-weight: 800; margin: 6px 0 14px; }
.loc-pin { font-size: 1.8rem; }
.loc-addr { font-size: 1.15rem; margin: 14px 0 24px; }

/* proper 3 + 2 centered layout */
.locations-grid { grid-template-columns: repeat(6, 1fr); }
.loc-card { grid-column: span 2; }
.loc-card:nth-child(4) { grid-column: 2 / 4; margin-left: 0; }
.loc-card:nth-child(5) { grid-column: 4 / 6; }

/* ============================================================
   Pricing
   ============================================================ */
.pricing-section { position: relative; background: var(--blue); padding: 120px 0 100px; }
.pricing-section .section-heading { color: #0e1f3f; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1080px; margin: 40px auto 0; }
.price-card {
  background: #fff;
  border: 3px solid var(--red);
  border-radius: 18px;
  padding: 40px 34px 0;
  text-align: center;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.price-icon { font-size: 3rem; margin-bottom: 10px; line-height: 1; }
.heart-icon { color: var(--red); }
.icon-circle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 66px; height: 66px; border-radius: 50%;
  background: var(--blue); color: #fff; font-size: 1.7rem;
}
.price-title { color: var(--red); font-size: 2.2rem; font-weight: 800; margin: 6px 0 22px; }
.price-btn { align-self: center; padding: 15px 40px; margin-bottom: 26px; }
.price-rule { border: none; border-top: 2px solid var(--red); width: 88%; margin: 0 auto 24px; }
.price-includes { font-weight: 800; letter-spacing: .5px; margin: 0 0 20px; }
.price-list { list-style: none; margin: 0 0 8px; padding: 0; text-align: left; }
.price-list li { display: flex; align-items: center; gap: 12px; font-weight: 700; margin: 16px 0; }
.price-list .li-mark { color: var(--red); font-size: 1.15rem; width: 22px; flex: 0 0 22px; }
.price-list--heart .li-mark { color: var(--red); }
.price-list--star .li-mark { color: var(--red); }
.guarantee-banner {
  margin: auto -34px 0;
  background: var(--gold);
  color: #1c1c1c;
  font-weight: 800;
  letter-spacing: .5px;
  padding: 16px;
  font-size: 1.15rem;
}
.guarantee-banner--mid { margin-top: auto; }

/* ============================================================
   How it works
   ============================================================ */
.howitworks-section { position: relative; background: var(--navy); color: #fff; padding: 150px 0 160px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 980px; margin: 50px auto 46px; }
.step { text-align: center; }
.step-num { color: var(--gold); font-size: 3rem; font-weight: 800; margin-bottom: 14px; }
.step p { font-size: 1.35rem; font-weight: 700; max-width: 300px; margin: 0 auto; }
.step .blue { color: var(--blue); }

/* ============================================================
   Reviews
   ============================================================ */
.reviews-section { padding: 90px 0 100px; background: #fff; }
.reviews-section .eyebrow { color: #1c1c1c; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1120px; margin: 40px auto 0; }
.review-card { background: var(--navy); color: #fff; border-radius: 18px; padding: 40px 36px; text-align: center; }
.review-card h3 { font-size: 1.5rem; font-weight: 800; margin: 0 0 6px; }
.stars { color: var(--gold); font-size: 1.25rem; letter-spacing: 3px; margin-bottom: 20px; }
.review-card p { color: #e2e9f4; font-size: 1.02rem; }

/* ============================================================
   Community / difference maker
   ============================================================ */
.community-section { position: relative; background: var(--navy); color: #fff; padding: 150px 0 110px; }
.community-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.community-text { color: #dfe7f2; margin: 0 0 18px; font-size: 1.08rem; }
.community-photo .img-slot--framed { border: 3px solid var(--red); box-shadow: 0 0 40px rgba(28,167,228,.35); }

/* ============================================================
   Gallery strip
   ============================================================ */
.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.gallery-strip .img-slot { border-radius: 0; min-height: 340px; border-width: 1px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding: 80px 0 100px; background: #fff; }
.faq-rule { width: 200px; height: 4px; background: #111; margin: 6px auto 50px; }
.faq-category { font-size: 1.9rem; font-weight: 800; text-transform: uppercase; margin: 0 0 24px; }
.faq-list { display: flex; flex-direction: column; gap: 18px; }
.faq-item { background: #fff; border-radius: 12px; box-shadow: 0 6px 20px rgba(0,0,0,.08); overflow: hidden; }
.faq-q {
  width: 100%;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 18px;
  padding: 24px 28px;
  font-family: inherit;
  font-size: 1.15rem;
  text-align: left;
}
.faq-toggle { font-size: 1.6rem; font-weight: 400; color: #111; width: 22px; }
.faq-divider { width: 1px; align-self: stretch; background: #c9c9c9; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 28px; }
.faq-a p { margin: 0; padding-bottom: 24px; color: #33415c; }
.faq-item.open .faq-a { max-height: 320px; }
.faq-item.open .faq-toggle { }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: #fff; padding-top: 70px; border-top: 1px solid #eef0f4; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-logo { display: inline-block; margin-bottom: 26px; }
.socials { display: flex; gap: 22px; }
.social-ico { color: var(--red); font-size: 1.5rem; }
.footer-col h4 { font-size: 1.15rem; font-weight: 800; margin: 0 0 6px; letter-spacing: .5px; }
.footer-col h4 + ul { border-top: 2px solid var(--red); padding-top: 20px; margin-top: 10px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin: 14px 0; }
.footer-col a { color: #1c1c1c; font-size: 1.05rem; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom { border-top: 1px solid #eef0f4; padding: 26px 0; text-align: center; }
.footer-bottom p { margin: 0; color: #1c1c1c; font-weight: 500; }
.footer-bottom a { color: var(--red); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 24px;
    box-shadow: 0 12px 20px rgba(0,0,0,.1);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav li { border-bottom: 1px solid #eee; }
  .main-nav li a { display: block; padding: 14px 0; }
  .nav-cta { margin-top: 14px; text-align: center; }

  .joy-grid,
  .washclub-grid,
  .community-grid { grid-template-columns: 1fr; }
  .washclub-video { display: flex; justify-content: center; }

  .locations-grid { grid-template-columns: 1fr 1fr; }
  .loc-card,
  .loc-card:nth-child(4),
  .loc-card:nth-child(5) { grid-column: auto; }

  .pricing-grid,
  .steps-grid,
  .reviews-grid { grid-template-columns: 1fr; max-width: 460px; }

  .gallery-strip { grid-template-columns: 1fr 1fr; }
  .gallery-strip .img-slot { min-height: 240px; }

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

@media (max-width: 560px) {
  .topbar-inner { gap: 16px; font-size: .78rem; }
  .locations-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 540px; }
}

/* ============================================================
   Dropdown nav
   ============================================================ */
.main-nav .has-drop { position: relative; }
.drop-parent { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.caret { font-size: .7em; }
.main-nav .subnav {
  position: absolute; top: 100%; left: 0;
  background: #fff; border-radius: 12px;
  box-shadow: 0 14px 34px rgba(0,0,0,.14);
  min-width: 210px; padding: 8px 0; margin: 8px 0 0;
  list-style: none; display: none; z-index: 200;
}
.main-nav .has-drop:hover .subnav,
.main-nav .has-drop:focus-within .subnav { display: block; }
.subnav li { margin: 0; }
.subnav a { display: block; padding: 11px 20px; font-size: .9rem; white-space: nowrap; color: #1c2540; }
.subnav a:hover { background: var(--gray-100); color: var(--blue); }

/* ============================================================
   Generic interior page hero
   ============================================================ */
.page-hero, .loc-hero {
  position: relative; min-height: 460px;
  display: flex; align-items: center; overflow: hidden;
}
.page-hero .img-slot--bg, .loc-hero .img-slot--bg { background: #24324f; border: none; }
.page-hero-title { font-size: clamp(2.1rem, 5vw, 3.8rem); }

/* ============================================================
   Feature trio
   ============================================================ */
.trio-section { padding: 80px 0; background: #fff; }
.trio-section--blue { background: var(--blue); }
.feature-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 1080px; margin: 30px auto 0; }
.feature { text-align: center; }
.feature-ico {
  width: 84px; height: 84px; margin: 0 auto 18px;
  border-radius: 50%; background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 2.1rem;
}
.feature h3 { font-size: 1.4rem; font-weight: 800; text-transform: uppercase; margin: 0 0 12px; color: var(--navy); }
.feature p { color: #33415c; margin: 0; }
.feature-trio--light .feature-ico { background: #fff; color: var(--blue); }
.feature-trio--light .feature h3 { color: #fff; }
.feature-trio--light .feature p { color: #eaf6ff; }

/* ============================================================
   Split section (image + copy)
   ============================================================ */
.split-section { padding: 80px 0; background: #fff; }
.split-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.split-copy p { color: #33415c; margin: 0 0 22px; font-size: 1.08rem; }

/* how it works — light variant (fundraising / wash books) */
.howitworks-light { background: var(--blue); color: #fff; padding: 80px 0; }
.howitworks-light .section-heading { color: #fff; }
.howitworks-light .gold-heading { color: var(--navy); }
.howitworks-light .step h3 { font-size: 1.2rem; font-weight: 800; margin: 6px 0 10px; }
.howitworks-light .step p { font-size: 1rem; font-weight: 500; color: #eaf6ff; max-width: 320px; }
.steps-grid--3text .step p { font-weight: 500; }

/* ============================================================
   Location info
   ============================================================ */
.loc-info { padding: 70px 0 40px; background: #fff; }
.loc-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1040px; margin: 20px auto 0; align-items: start; }
.loc-info-card { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 34px 32px; }
.loc-info-line { margin: 12px 0 4px; font-size: 1.08rem; }
.loc-info-line span { margin-right: 8px; }
.loc-info-card a { color: #cfe6ff; }
.loc-tag { margin-top: 18px; font-weight: 800; color: var(--gold); font-size: 1.1rem; }

/* price tags on pricing cards */
.price-tags { margin: -8px 0 18px; }
.price-monthly { display: block; font-size: 1.5rem; font-weight: 800; color: var(--navy); }
.price-club { display: block; font-size: .72rem; font-weight: 700; letter-spacing: 1px; color: var(--blue); text-transform: uppercase; margin-bottom: 6px; }
.price-single { display: inline-block; font-size: 1rem; font-weight: 700; color: #55627a; }

/* ============================================================
   Contact
   ============================================================ */
.contact-section { padding: 80px 0; background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 20px 0 28px; }
.contact-list li { display: flex; align-items: center; gap: 12px; font-size: 1.12rem; margin: 14px 0; }
.ci-ico { font-size: 1.3rem; }
.contact-form, .freewash-form { display: flex; flex-direction: column; gap: 16px; background: var(--gray-100); padding: 34px; border-radius: 18px; }
.contact-form label, .freewash-form label { display: flex; flex-direction: column; font-weight: 700; gap: 6px; font-size: .95rem; }
.contact-form input, .contact-form textarea, .freewash-form input {
  font-family: inherit; font-size: 1rem; padding: 12px 14px;
  border: 1px solid #cfd6e2; border-radius: 10px; background: #fff;
}
.contact-form button, .freewash-form button { align-self: flex-start; }

/* ============================================================
   Free wash
   ============================================================ */
.freewash-section { padding: 70px 0 90px; background: #fff; }
.freewash-wrap { max-width: 520px; margin: 0 auto; }
.freewash-form h2 { text-align: center; font-size: 1.7rem; font-weight: 800; color: var(--navy); margin: 0 0 6px; }
.freewash-form button { align-self: stretch; }
.freewash-fine { font-size: .8rem; color: #77839a; text-align: center; margin: 4px 0 0; }

/* ============================================================
   Checkout
   ============================================================ */
.checkout-section { padding: 60px 0 100px; background: #fff; }

/* ============================================================
   Legal
   ============================================================ */
.legal-page { padding: 70px 0 90px; background: #fff; }
.legal-content { max-width: 820px; margin: 0 auto; color: #33415c; }
.legal-content p { margin: 0 0 16px; }
.legal-fineprint { max-width: 900px; margin: 40px auto 0; color: #55627a; font-size: .9rem; }
.legal-fineprint h4 { color: var(--navy); font-size: 1.1rem; margin: 0 0 12px; }
.legal-fineprint p { margin: 0 0 12px; }

/* reviews 2-up (careers) */
.reviews-grid--2 { grid-template-columns: 1fr 1fr; max-width: 860px; }

.faq-link { color: var(--blue); font-weight: 700; }

@media (max-width: 960px) {
  .main-nav .has-drop .subnav {
    position: static; display: block; box-shadow: none;
    padding: 0 0 0 14px; margin: 0; min-width: 0; border-radius: 0;
  }
  .drop-parent .caret { display: none; }
  .feature-trio { grid-template-columns: 1fr; }
  .split-grid, .loc-info-grid, .contact-grid, .reviews-grid--2 { grid-template-columns: 1fr; }
}

/* ============================================================
   Real images loaded into slots (via js/main.js)
   ============================================================ */
.img-slot.has-img {
  border: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.img-slot.has-img::after { content: none; }
.img-slot.has-img .play-btn { position: relative; z-index: 2; }
.logo-img { height: 54px; width: auto; display: block; }
.footer-logo .logo-img { height: 60px; }
.price-icon-img { height: 66px; width: auto; margin: 0 auto; }

/* Free-wash opt-in page (Paperform embed only) */
.paperform-page { padding: 48px 0 80px; min-height: 60vh; }
