/* ===========================================================
   SprayTech Power Wash LLC — brand blue (sourced from
   spraytechpowerwash.com), bold sans.
   Mobile-first. Breakpoints enhance upward at 600 / 900 / 1200.
   =========================================================== */

:root {
  --navy-950: #0340c4;
  --navy-900: #022a7f;
  --navy-800: #2552f1;
  --navy-700: #4f85f8;
  --lime: #cfe0ff;
  --lime-dark: #2552f1;
  --ink: #0c1420;
  --paper: #f5f7f2;
  --paper-2: #eef2e6;
  --white: #ffffff;
  --muted: #5b6472;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(6, 15, 31, 0.14);
  --font-head: "Archivo Black", "Arial Black", sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.08;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--lime);
  color: var(--navy-950);
  padding: 10px 16px;
  z-index: 1000;
  font-weight: 700;
}
.skip-link:focus { left: 8px; top: 8px; }

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.eyebrow {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--lime-dark);
  margin-bottom: 0.6em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--lime);
  color: var(--navy-950);
}
.btn-primary:hover { background: var(--lime-dark); color: var(--white); box-shadow: 0 8px 20px rgba(37,82,241,0.35); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--lime); color: var(--lime); }

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--navy-950);
  border-bottom: 3px solid var(--lime);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo {
  height: 38px;
  width: auto;
  display: block;
  background: var(--white);
  padding: 5px 10px;
  border-radius: 8px;
}
.footer-brand .logo {
  height: 42px;
  margin-bottom: 14px;
}
.brand-text {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 1.15rem;
  line-height: 1;
  display: flex;
  flex-direction: column;
}
.brand-sub {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: var(--lime);
  margin-top: 3px;
}

.main-nav {
  display: none;
}
.main-nav a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover { border-color: var(--lime); color: var(--lime); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-tel {
  display: none;
  align-items: center;
  gap: 6px;
  color: var(--lime);
  font-weight: 800;
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 2px solid var(--lime);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--lime);
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main-nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--navy-900);
  padding: 10px 20px 20px;
  border-bottom: 3px solid var(--lime);
}
.main-nav.open a {
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  min-height: 44px;
  display: flex;
  align-items: center;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy-950);
  color: var(--white);
  overflow: hidden;
  padding: 64px 0 56px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.5; }
.hero-stripe {
  position: absolute;
  background: var(--navy-800);
  transform: skewY(-6deg);
}
.stripe-1 { width: 140%; height: 60px; top: 10%; left: -20%; }
.stripe-2 { width: 140%; height: 40px; top: 55%; left: -20%; background: var(--navy-700); }
.stripe-3 { width: 140%; height: 90px; top: 82%; left: -20%; }

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.hero-eyebrow {
  color: var(--lime);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2rem, 7vw, 3.4rem);
  color: var(--white);
  margin-bottom: 0.4em;
}
.hero h1 .hl { color: var(--lime); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto 1.8em;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 2em;
}
.hero-ctas .btn { width: 100%; }

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.trust-item { display: flex; align-items: center; gap: 8px; }
.trust-stars { color: var(--lime); letter-spacing: 2px; }

/* ---------- Charity strip ---------- */
.charity-strip {
  background: var(--lime);
  color: var(--navy-950);
  padding: 18px 0;
}
.charity-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 600;
}
.charity-icon { flex-shrink: 0; margin-top: 2px; }

/* ---------- Services ---------- */
.services { padding: 64px 0; background: var(--paper); }
.services h2, .gallery-section h2, .about h2, .reviews h2, .faq h2, .contact h2 {
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  color: var(--navy-950);
}
.section-lede {
  color: var(--muted);
  max-width: 620px;
  font-size: 1.02rem;
  margin-bottom: 2em;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--lime);
}
.service-icon { font-size: 1.8rem; margin-bottom: 10px; }
.service-card h3 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy-950);
  margin-bottom: 0.4em;
}
.service-card p { color: var(--muted); font-size: 0.94rem; margin: 0; }

.service-area-note {
  margin-top: 2em;
  padding: 16px 18px;
  background: var(--paper-2);
  border-radius: 10px;
  font-size: 0.92rem;
  color: var(--navy-900);
}

/* ---------- Gallery / before-after ---------- */
.gallery-section { padding: 64px 0; background: var(--navy-950); color: var(--white); }
.gallery-section .eyebrow { color: var(--lime); }
.gallery-section h2 { color: var(--white); }
.gallery-section .section-lede { color: rgba(255,255,255,0.72); }

.bas-wrap { max-width: 720px; margin: 0 auto; }
.bas-track {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  box-shadow: var(--shadow);
  touch-action: pan-y;
}
.bas-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.bas-after {
  background:
    repeating-linear-gradient(135deg, var(--navy-700), var(--navy-700) 14px, var(--navy-800) 14px, var(--navy-800) 28px);
}
.bas-before {
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, #6b7280, #6b7280 14px, #4b5563 14px, #4b5563 28px);
}
.bas-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bas-tag-after { background: var(--lime); color: var(--navy-950); }
.bas-tag-before { background: rgba(255,255,255,0.9); color: var(--ink); }

.bas-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  transform: translateX(-50%);
  pointer-events: none;
}
.bas-handle::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 3px;
  background: var(--lime);
  transform: translateX(-50%);
}
.bas-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  pointer-events: all;
  cursor: ew-resize;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}
.bas-arrows { font-size: 1.2rem; }
.bas-caption {
  text-align: center;
  margin-top: 16px;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}
.noscript-note {
  text-align: center;
  color: rgba(255,255,255,0.8);
  background: var(--navy-800);
  padding: 16px;
  border-radius: 10px;
}

/* ---------- About ---------- */
.about { padding: 64px 0; background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
.about-copy h2 { color: var(--navy-950); }
.about-copy p { color: var(--navy-800); }
.about-checks { margin-top: 1.4em; display: grid; gap: 10px; }
.about-checks li {
  padding-left: 30px;
  position: relative;
  font-weight: 600;
  color: var(--navy-900);
  font-size: 0.95rem;
}
.about-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--lime);
}
.about-checks li::after {
  content: "\2713";
  position: absolute;
  left: 4.5px;
  top: 1px;
  color: var(--navy-950);
  font-weight: 900;
  font-size: 0.8rem;
}
.about-visual { display: flex; justify-content: center; }
.about-panel {
  background: var(--navy-950);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  width: 100%;
  max-width: 320px;
  border: 3px solid var(--lime);
}
.about-panel-rating {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--lime);
}
.about-panel-count {
  display: block;
  margin-top: 8px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

/* ---------- Reviews ---------- */
.reviews { padding: 64px 0; background: var(--paper-2); }
.reviews h2 { color: var(--navy-950); }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 1.5em;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 22px;
  margin: 0;
  box-shadow: var(--shadow);
  position: relative;
}
.review-card p {
  font-size: 1.05rem;
  color: var(--navy-900);
  margin-bottom: 0.8em;
}
.review-card cite {
  font-style: normal;
  font-weight: 700;
  color: var(--lime-dark);
  font-size: 0.88rem;
}

/* ---------- FAQ ---------- */
.faq { padding: 64px 0; background: var(--paper); }
.faq h2 { color: var(--navy-950); }
.faq-list { margin-top: 1.5em; display: grid; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 20px;
  font-weight: 700;
  cursor: pointer;
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--navy-950);
  list-style: none;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 1.4rem;
  color: var(--lime-dark);
  font-weight: 800;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-body { padding: 0 20px 20px; color: var(--muted); }
.faq-body p { margin: 0; }

/* ---------- Contact ---------- */
.contact { padding: 64px 0; background: var(--navy-950); color: var(--white); }
.contact .eyebrow { color: var(--lime); }
.contact h2 { color: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
.contact-info p { color: rgba(255,255,255,0.78); }

.contact-list { margin: 1.6em 0; display: grid; gap: 16px; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
  min-height: 44px;
}
.contact-list li a { color: var(--lime); }
.contact-list svg { flex-shrink: 0; margin-top: 2px; color: var(--lime); }

.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--navy-700);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 28px 22px;
  display: grid;
  gap: 6px;
  box-shadow: var(--shadow);
}
.contact-form label {
  font-weight: 700;
  font-size: 0.88rem;
  margin-top: 10px;
  color: var(--navy-900);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #dfe3e0;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  min-height: 44px;
  color: var(--ink);
}
.contact-form textarea { min-height: 100px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--lime-dark);
}
.contact-form button { margin-top: 16px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.8); padding: 48px 0 0; }
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.footer-brand .brand-text.light { color: var(--white); }
.footer-brand p { margin-top: 12px; font-size: 0.88rem; color: rgba(255,255,255,0.6); max-width: 320px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime);
  margin-bottom: 0.7em;
}
.footer-col p { font-size: 0.92rem; margin-bottom: 0.5em; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom {
  margin-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 20px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ===========================================================
   Tablet — 600px+
   =========================================================== */
@media (min-width: 600px) {
  .hero-ctas { flex-direction: row; justify-content: center; }
  .hero-ctas .btn { width: auto; }
  .hero-trust { flex-direction: row; gap: 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1.3fr 1fr 1fr; }
}

/* ===========================================================
   Desktop — 900px+
   =========================================================== */
@media (min-width: 900px) {
  .header-tel { display: flex; }
  .main-nav {
    display: flex;
    flex-direction: row;
    gap: 22px;
    position: static;
    background: none;
    padding: 0;
    border: 0;
  }
  .nav-toggle { display: none; }

  .hero { padding: 100px 0 90px; text-align: center; }
  .hero-inner { max-width: 860px; }

  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1.3fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

/* ===========================================================
   Large desktop — 1200px+
   =========================================================== */
@media (min-width: 1200px) {
  .hero-inner { max-width: 920px; }
  .services-grid { gap: 22px; }
}
