/* ============================================================
   HIGH SCHOOL SOLUTIONS — pressure washing
   palette: black + white + deep navy + bright water cyan
   ============================================================ */

:root {
  --bg: #0a0a0a;
  --bg-2: #141414;
  --bg-3: #1c1c1c;
  --ink: #0a0a0a;
  --white: #ffffff;
  --cream: #f4f4f4;
  --muted: #a8a8a8;
  --muted-dim: #6e6e6e;
  --navy: #0e2a47;
  --navy-2: #14365b;
  --cyan: #4ed3ff;
  --cyan-bright: #79e0ff;
  --border: rgba(255,255,255,0.10);
  --border-strong: rgba(255,255,255,0.20);
  --border-light: rgba(0,0,0,0.10);
  --radius: 12px;
  --radius-lg: 22px;
  --shadow-lg: 0 30px 80px rgba(0,0,0,0.5);
  --font-display: 'Archivo Black', 'Archivo', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max: 1280px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ====== TYPE ====== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.6rem, 7.5vw, 5.6rem); }
h2 { font-size: clamp(2rem, 5vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
p { color: var(--muted); }
.lead { color: var(--cream); font-size: 1.1rem; max-width: 60ch; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--cyan);
  padding: 8px 14px;
  border: 1px solid rgba(78,211,255,0.3);
  border-radius: 999px;
  background: rgba(78,211,255,0.06);
}
.eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }

.cyan { color: var(--cyan); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

/* ====== NAV ====== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  transition: background .35s, padding .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 0;
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; max-width: var(--max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--white);
}
.brand-logo {
  height: 44px; width: auto;
  display: block;
  /* On light sections (white bg) the logo's blue/cyan reads naturally.
     On dark sections we get a soft glow to lift it off the background. */
  filter: drop-shadow(0 2px 8px rgba(78,211,255,0.18));
  transition: filter .2s;
}
.brand:hover .brand-logo { filter: drop-shadow(0 4px 12px rgba(78,211,255,0.35)); }
.section-light .brand-logo { filter: none; }
.footer .brand-logo { height: 56px; }
@media (max-width: 600px) {
  .brand-logo { height: 38px; }
}

.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  padding: 8px 14px; border-radius: 999px;
  font-size: 0.92rem; font-weight: 500; color: var(--muted);
  transition: color .25s, background .25s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.nav-links a.active { color: var(--cyan); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: 999px;
  background: var(--cyan); color: var(--ink); font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 6px 20px rgba(78,211,255,0.35);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.nav-cta:hover { background: var(--cyan-bright); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(121,224,255,0.45); }
.nav-cta svg { width: 14px; height: 14px; }

.nav-burger { display: none; width: 40px; height: 40px; border-radius: 8px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px auto; transition: transform .3s, opacity .3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 11px 14px; }
  .nav.mobile-open .nav-links {
    display: flex; position: fixed; top: 60px; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--bg-2); padding: 18px;
    border-bottom: 1px solid var(--border);
  }
  .nav.mobile-open .nav-links a {
    padding: 14px 18px; font-size: 1.05rem;
  }
}

/* ====== BUTTONS ====== */
.btn-primary, .btn-ghost, .btn-light {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.02em;
  transition: transform .25s, box-shadow .25s, background .25s, border-color .25s, color .25s;
  text-transform: uppercase;
  font-family: var(--font-body);
  will-change: transform;
}
.btn-primary {
  background: var(--cyan); color: var(--ink);
  box-shadow: 0 12px 30px rgba(78,211,255,0.35);
}
.btn-primary:hover { background: var(--cyan-bright); box-shadow: 0 18px 40px rgba(78,211,255,0.5); }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-light {
  background: var(--white); color: var(--ink);
  box-shadow: 0 12px 30px rgba(255,255,255,0.15);
}
.btn-light:hover { background: var(--cream); }
.btn-primary svg, .btn-ghost svg, .btn-light svg { width: 16px; height: 16px; }

/* floating phone (mobile) */
.floating-call {
  position: fixed; bottom: 22px; right: 22px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--cyan);
  display: grid; place-items: center;
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(78,211,255,0.55);
  animation: pulse 2.2s infinite;
}
.floating-call svg { width: 26px; height: 26px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(78,211,255,0.55), 0 0 0 0 rgba(78,211,255,0.5); }
  50% { box-shadow: 0 10px 30px rgba(78,211,255,0.55), 0 0 0 18px rgba(78,211,255,0); }
}
@media (min-width: 900px) { .floating-call { display: none; } }

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 100px; padding-bottom: 60px;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg);
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  filter: brightness(0.55) saturate(1.05);
}
.hero-media {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(1.05);
}
.hero-mobile-only { display: none; }
@media (max-width: 900px), (pointer: coarse) {
  .hero-desktop-only { display: none; }
  .hero-mobile-only { display: block; }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.1) 40%, rgba(10,10,10,0.85) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.2) 70%);
}
.hero-content {
  max-width: 820px;
  position: relative; z-index: 1;
}
.hero-title {
  font-size: clamp(2.8rem, 9vw, 7rem);
  line-height: 0.95;
  margin: 22px 0 22px;
}
.hero-title .accent { color: var(--cyan); }
.hero-sub {
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  max-width: 560px; margin-bottom: 32px;
  color: var(--cream);
}
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-top: 38px; padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 16px; height: 16px; color: var(--cyan); }

/* hero placeholder note (the user will replace this with their pressure-washer animation) */
.hero-placeholder-note {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted-dim);
  background: rgba(0,0,0,0.5);
  padding: 6px 14px; border-radius: 999px;
  border: 1px dashed var(--border);
  pointer-events: none;
}

/* ====== SECTION ====== */
.section { padding: clamp(70px, 11vh, 130px) 0; position: relative; }
.section-light { background: var(--white); color: var(--ink); }
.section-light p { color: #4a4a4a; }
.section-light .eyebrow { color: var(--navy); border-color: rgba(14,42,71,0.3); background: rgba(14,42,71,0.06); }
.section-light .eyebrow::before { background: var(--navy); box-shadow: 0 0 8px var(--navy); }
.section-light .lead { color: #1a1a1a; }
.section-head { text-align: center; max-width: 780px; margin: 0 auto 64px; }
.section-head h2 { margin: 16px 0 18px; }
.section-head p { font-size: 1.05rem; }
.section-head.left { text-align: left; margin-left: 0; }

/* ====== SERVICES STRIP ====== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.service-card:hover { border-color: rgba(78,211,255,0.4); transform: translateY(-4px); }
.service-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(78,211,255,0.08), transparent 60%);
  transform: translate(40%, -40%);
  pointer-events: none;
}
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--cyan);
  margin-bottom: 22px;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.service-card ul {
  list-style: none; margin-top: 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.service-card li {
  font-size: 0.9rem; color: var(--muted);
  display: flex; align-items: center; gap: 10px;
}
.service-card li::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--cyan); flex-shrink: 0;
}

/* ====== BEFORE / AFTER ====== */
.ba-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 28px;
}

/* Tighter version used on the homepage, right under the hero */
.ba-grid-home {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
.ba-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--border);
}
.ba-pair {
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative;
  aspect-ratio: 4 / 3;
}
.ba-pair > div {
  background-size: cover;
  background-position: center;
  position: relative;
}
.ba-pair > div::after {
  content: ''; position: absolute; bottom: 12px; left: 12px;
  padding: 4px 12px; border-radius: 999px;
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
}
.ba-pair > .before::after { content: 'BEFORE'; background: rgba(0,0,0,0.7); color: var(--white); }
.ba-pair > .after::after { content: 'AFTER'; background: var(--cyan); color: var(--ink); }
.ba-pair-divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: var(--white);
  box-shadow: 0 0 30px rgba(0,0,0,0.6);
  transform: translateX(-50%);
}
.ba-caption {
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
}
.ba-caption h3 { font-size: 1.05rem; }
.ba-caption span { font-size: 0.82rem; color: var(--muted); }

/* split hero showcase (the FullSizeRender shot) */
.split-showcase {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0 auto;
  max-width: 1100px;
  aspect-ratio: 3 / 2;
  border: 1px solid var(--border);
  background: var(--bg-2) center/cover no-repeat;
}
.split-showcase .label {
  position: absolute;
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.split-showcase .label-before {
  bottom: 28px; left: 28px;
  background: rgba(0,0,0,0.75); color: var(--white);
  border: 1px solid var(--border-strong);
}
.split-showcase .label-after {
  bottom: 28px; right: 28px;
  background: var(--cyan); color: var(--ink);
}

/* ====== TRUST / STATS ====== */
.trust-band {
  background: linear-gradient(135deg, var(--navy) 0%, #06182d 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 50px 44px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
  position: relative;
  overflow: hidden;
}
.trust-band::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.trust-item { text-align: center; }
.trust-num {
  font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--cyan); line-height: 1;
}
.trust-label {
  margin-top: 10px; font-size: 0.85rem; color: var(--cream);
  text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600;
}

/* ====== TESTIMONIALS ====== */
.tm-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px;
}
.tm-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}
.tm-card::before {
  content: '"'; position: absolute; top: 8px; left: 22px;
  font-family: var(--font-display); font-size: 5rem;
  color: var(--cyan); opacity: 0.18; line-height: 1;
}
.tm-stars { color: var(--cyan); letter-spacing: 3px; margin-bottom: 14px; font-size: 1rem; }
.tm-text { color: var(--cream); font-size: 1rem; line-height: 1.6; margin-bottom: 16px; position: relative; }
.tm-author {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.88rem; color: var(--muted);
}
.tm-author strong { color: var(--white); font-weight: 700; }
.tm-author .dot { color: var(--cyan); }

.section-light .tm-card { background: var(--cream); border-color: rgba(0,0,0,0.08); }
.section-light .tm-card::before { color: var(--navy); opacity: 0.12; }
.section-light .tm-text { color: #1a1a1a; }
.section-light .tm-author { color: #555; }
.section-light .tm-author strong { color: var(--ink); }
.section-light .tm-stars { color: var(--navy); }

/* ====== GALLERY ====== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-2);
  cursor: pointer;
  transition: transform .35s var(--ease);
}
.gallery-item:nth-child(3n) { aspect-ratio: 4/3; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.gallery-item:hover { transform: translateY(-4px); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .gi-tag {
  position: absolute; bottom: 14px; left: 14px;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(6px);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--border-strong);
}
.gallery-item .gi-tag.after { background: var(--cyan); color: var(--ink); border: 0; }

/* ====== FORMS ====== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted); margin-bottom: 8px; font-weight: 600;
}
.form-group input, .form-group textarea, .form-group select {
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--white);
  font: inherit;
  transition: border-color .2s, background .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(78,211,255,0.05);
}
.form-group textarea { min-height: 130px; resize: vertical; }

/* ====== FOOTER ====== */
.footer {
  margin-top: 40px;
  padding: 70px 0 36px;
  background: linear-gradient(180deg, var(--bg) 0%, #050505 100%);
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 50px;
  max-width: var(--max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { font-family: var(--font-body); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--cyan); margin-bottom: 18px; font-weight: 700; }
.footer p, .footer a { font-size: 0.92rem; color: var(--muted); line-height: 1.8; }
.footer a:hover { color: var(--cyan); }
.footer-bottom {
  max-width: var(--max); margin: 50px auto 0;
  padding: 26px clamp(20px, 4vw, 48px) 0;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 0.82rem; color: var(--muted-dim);
}

/* ====== PAGE HERO (inner pages) ====== */
.page-hero {
  padding: 160px 0 60px;
  position: relative;
  text-align: center;
  isolation: isolate;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(78,211,255,0.12), transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(14,42,71,0.5), transparent 60%);
}
.page-hero h1 { margin: 18px auto; }
.page-hero p { max-width: 640px; margin: 0 auto; font-size: 1.05rem; color: var(--cream); }

/* CTA band */
.cta-band {
  padding: 80px 0; text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, #061321 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(78,211,255,0.15), transparent 60%);
  pointer-events: none;
}
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { margin-bottom: 32px; max-width: 540px; margin-left: auto; margin-right: auto; color: var(--cream); }
.cta-band .actions { display: inline-flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* split layout */
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .split-2 { grid-template-columns: 1fr; gap: 40px; } }

.image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.image-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.image-card:hover img { transform: scale(1.04); }

/* ====== UTIL ====== */
.reveal { will-change: transform, opacity; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag-list span {
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid var(--border-strong);
  font-size: 0.8rem; color: var(--cream);
  background: rgba(255,255,255,0.03);
}

/* hours / contact info blocks */
.info-row {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.info-row:last-child { border-bottom: 0; }
.info-row .info-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(78,211,255,0.12); color: var(--cyan);
  display: grid; place-items: center; flex-shrink: 0;
}
.info-row .info-icon svg { width: 18px; height: 18px; }
.info-row .info-body h4 { font-family: var(--font-body); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--cyan); margin-bottom: 4px; font-weight: 700; }
.info-row .info-body p { color: var(--white); }

/* responsive type tweaks */
@media (max-width: 560px) {
  .ba-pair { aspect-ratio: 3/2; }
  .trust-band { padding: 36px 28px; }
}
