/* ========================================================================
   Power Pals LLC — site styles
   Palette pulled from the real Power Pals logo:
   navy #192653 · gold #E0AA12 · blue #008CCB
   ======================================================================== */
:root {
  --navy: #192653;
  --navy-dark: #0E1A3E;
  --gold: #e0aa12;
  --gold-dark: #b8890a;
  --gold-soft: #fbf1d6;
  --wash: #0a74b8;          /* pressure washing lane = water blue */
  --wash-dark: #075a91;
  --wash-soft: #e6f2fb;
  --move: var(--gold);      /* moving lane = brand gold */
  --move-dark: var(--gold-dark);
  --move-soft: var(--gold-soft);
  --ink: #192653;
  --ink-soft: #5a6275;
  --line: #e2e8ef;
  --bg: #ffffff;
  --bg-alt: #f4f8fb;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(16, 32, 43, .08);
  --maxw: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .wordmark, .btn, legend, .eyebrow { font-family: 'Poppins', sans-serif; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.ic { width: 18px; height: 18px; }

/* ----------------------------- wordmark (footer) ----------------------------- */
.wordmark { display: inline-flex; align-items: baseline; gap: 5px; font-weight: 800; font-size: 24px; letter-spacing: .5px; }
.wordmark-power { color: var(--navy); }
.wordmark-pals  { color: var(--gold); }
.wordmark-llc   { font-size: .5em; font-weight: 700; color: var(--ink-soft); letter-spacing: 2px; transform: translateY(-2px); }
.wordmark-sm { font-size: 22px; }
.wordmark-header { font-size: 25px; }
/* cartoon header brand — matches the logo's popped bubble lettering */
.brand-cartoon { display: inline-flex; align-items: baseline; gap: 7px; font-family: 'Luckiest Guy', system-ui, cursive; line-height: 1; letter-spacing: .5px; }
.brand-cartoon .bc-main { font-size: 30px; color: var(--wash); -webkit-text-stroke: 3px var(--gold); paint-order: stroke fill; text-shadow: 2px 3px 0 var(--navy); }
.brand-cartoon .bc-llc { font-size: 13px; color: var(--gold); -webkit-text-stroke: 1.2px var(--navy); paint-order: stroke fill; text-shadow: 1px 2px 0 var(--navy); }
/* footer sits on dark navy */
.site-footer .wordmark-power { color: #fff; }
.site-footer .wordmark-llc { color: #aeb9c4; }
.brand-logo { height: 48px; width: auto; display: block; }

/* ----------------------------- header ----------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.93); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 20px; height: 78px; }
.main-nav { margin-left: auto; display: flex; gap: 26px; font-weight: 500; }
.main-nav a { color: var(--ink-soft); transition: color .15s; }
.main-nav a:hover { color: var(--wash); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px; padding: 11px 20px; border-radius: 999px;
  border: 0; cursor: pointer; transition: transform .12s, box-shadow .12s, background .15s; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-phone { background: var(--gold); color: var(--navy); }
.btn-phone:hover { background: var(--gold-dark); color: var(--navy); }
.btn-primary { color: #fff; box-shadow: var(--shadow); }
.btn-wash { background: var(--wash); color: #fff; }
.btn-wash:hover { background: var(--wash-dark); }
.btn-move { background: var(--gold); color: var(--navy); }
.btn-move:hover { background: var(--gold-dark); color: var(--navy); }

/* ----------------------------- hero ----------------------------- */
.hero {
  background:
    radial-gradient(120% 120% at 85% -10%, var(--wash-soft) 0%, transparent 55%),
    radial-gradient(120% 120% at 0% 110%, var(--gold-soft) 0%, transparent 50%),
    var(--bg);
  padding: 64px 0 56px;
}
.hero-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: 13px; font-weight: 600; color: var(--wash); margin-bottom: 14px; }
.eyebrow-wash { color: var(--wash); }
.eyebrow-move { color: var(--gold-dark); }
.hero h1 { font-size: clamp(34px, 5vw, 52px); line-height: 1.08; font-weight: 800; letter-spacing: -.5px; color: var(--navy); }
.lede { font-size: 18px; color: var(--ink-soft); margin: 20px 0 28px; max-width: 30em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.trust-line { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 24px; }
.trust-line li { position: relative; font-size: 14px; font-weight: 600; color: var(--navy); padding-left: 22px; }
.trust-line li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  width: 16px; height: 16px; font-size: 11px; line-height: 16px; text-align: center;
  color: #fff; background: var(--gold); border-radius: 50%;
}

.hero-art { display: grid; place-items: center; }
.hero-mascot { width: 100%; max-width: 280px; height: auto; filter: drop-shadow(0 14px 26px rgba(16,32,43,.18)); }

/* ----------------------------- services ----------------------------- */
.services { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 60px 22px; }
.svc-card { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; transition: transform .15s, box-shadow .15s; }
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.svc-ic { width: 56px; height: 56px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 18px; }
.svc-ic svg { width: 34px; height: 34px; }
.svc-wash .svc-ic { background: var(--wash-soft); color: var(--wash); }
.svc-move .svc-ic { background: var(--gold-soft); color: var(--gold-dark); }
.svc-card h3 { font-size: 22px; margin-bottom: 8px; color: var(--navy); }
.svc-card p { color: var(--ink-soft); margin-bottom: 16px; }
.svc-wash .svc-link { color: var(--wash); font-weight: 600; }
.svc-move .svc-link { color: var(--gold-dark); font-weight: 600; }
.svc-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; }
.svc-chips li { font-size: 13px; font-weight: 600; padding: 5px 11px; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--navy); }
.svc-wash .svc-chips li { border-color: #cfe4f6; }
.svc-move .svc-chips li { border-color: #f0dca6; }

.section-sub { text-align: center; color: var(--ink-soft); margin: -22px auto 30px; max-width: 40em; }

/* ----------------------------- on-the-job videos ----------------------------- */
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 700px; margin: 0 auto; }
.job-video { width: 100%; height: 460px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); background: #0e1a2e; display: block; }
@media (max-width: 560px) { .job-video { height: 380px; } }

/* ----------------------------- featured before/after ----------------------------- */
.ba-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 22px; }
.ba-item { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.ba-item img { display: block; width: 100%; height: 320px; object-fit: cover; }
.ba-item figcaption { position: absolute; top: 12px; left: 12px; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 12px; letter-spacing: .05em; text-transform: uppercase; padding: 5px 13px; border-radius: 999px; }
.ba-item.before figcaption { background: rgba(25,38,83,.88); color: #fff; }
.ba-item.after figcaption { background: var(--gold); color: var(--navy); }
@media (max-width: 560px) { .ba-item img { height: 200px; } }

/* ----------------------------- see our work ----------------------------- */
.work { padding: 60px 0; background: var(--bg-alt); }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.shot { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.shot img { display: block; width: 100%; height: 240px; object-fit: cover; }
.shot figcaption { position: absolute; left: 0; bottom: 0; right: 0; padding: 18px 14px 10px; color: #fff; font-family: 'Poppins'; font-weight: 700; font-size: 15px; background: linear-gradient(to top, rgba(15,23,35,.82), transparent); }

/* ----------------------------- about ----------------------------- */
.about { padding: 64px 0; }
.about-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: center; }
.about-media img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-copy h2 { font-size: clamp(26px, 3.4vw, 36px); color: var(--navy); margin-bottom: 14px; line-height: 1.12; }
.about-copy p { color: var(--ink-soft); margin-bottom: 14px; }
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.badges span { font-size: 13px; font-weight: 700; color: var(--navy); background: var(--gold-soft); border: 1px solid #f0dca6; padding: 7px 13px; border-radius: 999px; }

/* ----------------------------- about (centered, no photo) ----------------------------- */
.about-center { padding: 60px 0; text-align: center; }
.about-center h2 { font-size: clamp(26px, 3.4vw, 36px); color: var(--navy); margin: 8px 0 14px; }
.about-center p { color: var(--ink-soft); max-width: 42em; margin: 0 auto 12px; }
.badges-center { justify-content: center; margin-top: 22px; }

/* ----------------------------- how it works ----------------------------- */
.how { padding: 8px 22px 56px; }
.section-title { font-family: 'Poppins'; font-size: clamp(24px,3vw,32px); font-weight: 800; color: var(--navy); text-align: center; margin-bottom: 34px; }
.how-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.step { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; text-align: center; }
.step-n { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: var(--gold); font-family: 'Poppins'; font-weight: 800; font-size: 20px; margin-bottom: 14px; }
.step h3 { font-size: 19px; color: var(--navy); margin-bottom: 6px; }
.step p { color: var(--ink-soft); }

/* ----------------------------- why ----------------------------- */
.why { background: var(--navy); color: #fff; padding: 44px 0; }
.why-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.why-item { display: flex; flex-direction: column; gap: 6px; }
.why-item strong { font-family: 'Poppins'; font-size: 18px; }
.why-item strong { color: #fff; }
.why-item span { color: #aeb9c4; }

/* ----------------------------- lanes / forms ----------------------------- */
.lane { padding: 72px 0; }
.lane-wash { background: var(--wash-soft); }
.lane-move { background: var(--gold-soft); }
.lane-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 44px; align-items: start; }
.lane-intro { position: sticky; top: 100px; }
.lane-logo { display: block; width: 168px; height: auto; background: #fff; padding: 12px; border-radius: 14px; box-shadow: var(--shadow); margin-bottom: 20px; }
.lane-intro h2 { font-size: clamp(26px, 3.4vw, 36px); line-height: 1.12; margin-bottom: 12px; color: var(--navy); }
.lane-intro p { color: var(--ink-soft); }

.lead-form { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px; }
.lead-form fieldset { border: 0; margin-bottom: 22px; }
.lead-form legend { font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); margin-bottom: 14px; }
.field { display: block; margin-bottom: 16px; }
.field > span { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; color: var(--navy); }
.field .opt { font-style: normal; font-weight: 500; font-size: .85em; color: var(--ink-soft); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
input, select, textarea {
  width: 100%; font: inherit; color: var(--ink);
  padding: 11px 13px; border: 1px solid var(--line); border-radius: 10px; background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus { outline: 0; border-color: var(--wash); box-shadow: 0 0 0 3px rgba(10,116,184,.15); }
.lane-move input:focus, .lane-move select:focus, .lane-move textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(224,170,18,.22); }
textarea { resize: vertical; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.checks label { display: flex; align-items: center; gap: 8px; font-weight: 500; cursor: pointer; }
.checks input { width: auto; }
.field input.error, .field select.error, .field textarea.error { border-color: #e04a4a; box-shadow: 0 0 0 3px rgba(224,74,74,.15); }
.btn-submit { width: 100%; margin-top: 4px; padding: 14px; font-size: 16px; }
.form-status { margin-top: 14px; font-weight: 600; min-height: 1.4em; }
.form-status.ok { color: #1a8a4a; }
.form-status.err { color: #e04a4a; }

/* ----------------------------- footer ----------------------------- */
.site-footer { background: var(--navy); color: #fff; padding-top: 48px; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; padding-bottom: 36px; }
.footer-brand p { color: #aeb9c4; margin-top: 8px; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; transition: background .15s, color .15s, transform .15s; }
.footer-social a:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.footer-social svg { width: 20px; height: 20px; }

/* ----------------------------- conversion: trust + reassure ----------------------------- */
.form-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 9px 14px; margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--navy); }
.form-trust span { display: inline-flex; align-items: center; gap: 6px; }
.form-trust span::before { content: "✓"; flex: none; width: 16px; height: 16px; font-size: 11px; line-height: 16px; text-align: center; color: #fff; background: var(--gold); border-radius: 50%; }
.reviews-link { display: inline-flex; align-items: center; gap: 5px; font-weight: 700; color: var(--gold-dark); }
.reviews-link:hover { text-decoration: underline; }
.form-reassure { margin-top: 12px; font-size: 13px; color: var(--ink-soft); text-align: center; }

/* ----------------------------- conversion: sticky call/text bar (mobile) ----------------------------- */
.callbar { display: none; }
@media (max-width: 768px) {
  .callbar { display: grid; grid-template-columns: 1fr 1fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 200; box-shadow: 0 -4px 18px rgba(16,32,43,.22); }
  .callbar a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 8px; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 16px; }
  .callbar .cb-call { background: var(--gold); color: var(--navy); }
  .callbar .cb-text { background: var(--navy); color: #fff; }
  .callbar svg { width: 20px; height: 20px; }
  body { padding-bottom: 58px; }
}
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact a, .footer-contact span { color: #d6dee6; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; }
.footer-bottom span { color: #8b97a3; font-size: 14px; }

/* ----------------------------- nav active ----------------------------- */
.main-nav a.active { color: var(--navy); font-weight: 700; }

/* ----------------------------- home: click the logos ----------------------------- */
.hero-home {
  text-align: center;
  background:
    radial-gradient(55% 45% at 16% 12%, rgba(10,116,184,.12), transparent 70%),
    radial-gradient(50% 45% at 86% 16%, rgba(224,170,18,.14), transparent 70%),
    linear-gradient(180deg, #eaf3fb 0%, #ffffff 72%);
}
.hero-head { max-width: 760px; margin: 0 auto 30px; }
.hero-head h1 { color: var(--navy); }
.hero-head .lede { margin-left: auto; margin-right: auto; }
.choose { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 800px; margin: 0 auto; }
.logo-choice {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 18px; border-radius: 20px; transition: transform .18s ease, background .18s ease;
}
.logo-choice:hover { transform: translateY(-6px); background: rgba(255,255,255,.6); }
.logo-choice img { width: 240px; height: 240px; object-fit: contain; display: block; filter: drop-shadow(0 12px 22px rgba(16,32,43,.20)); transition: transform .18s ease; }
.logo-choice:hover img { transform: scale(1.05); }
.choice-label { font-family: 'Poppins'; font-weight: 800; font-size: 22px; color: var(--navy); }
.choice-cue { font-family: 'Poppins'; font-weight: 700; font-size: 14px; }
.cc-wash .choice-cue { color: var(--wash); }
.cc-move .choice-cue { color: var(--gold-dark); }
.trust-center { justify-content: center; margin-top: 34px; }

/* ----------------------------- service page hero ----------------------------- */
.page-hero { text-align: center; padding: 48px 0 40px; }
.ph-wash { background: radial-gradient(120% 130% at 50% -20%, var(--wash-soft), transparent 70%), var(--bg); }
.ph-move { background: radial-gradient(120% 130% at 50% -20%, var(--gold-soft), transparent 70%), var(--bg); }
.back-link { display: inline-block; margin-bottom: 18px; color: var(--ink-soft); font-weight: 600; font-size: 14px; }
.back-link:hover { color: var(--navy); }
.page-logo { width: 188px; height: auto; margin: 0 auto 18px; display: block; filter: drop-shadow(0 12px 22px rgba(16,32,43,.18)); }
.page-hero h1 { font-size: clamp(30px, 4.6vw, 44px); color: var(--navy); line-height: 1.08; margin-bottom: 12px; }
.page-hero > .container > p { color: var(--ink-soft); max-width: 44em; margin: 0 auto 18px; font-size: 17px; }
.chips-wide { justify-content: center; }
.see-work { margin-top: 18px; }
.see-work a { color: var(--wash); font-weight: 600; }

/* ----------------------------- cross-link band ----------------------------- */
.cross { padding: 44px 0; }
.cross-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; border-radius: var(--radius); padding: 28px 34px; box-shadow: var(--shadow); }
.cross-wash .cross-inner { background: var(--wash-soft); }
.cross-move .cross-inner { background: var(--gold-soft); }
.cross-inner h3 { font-size: 22px; color: var(--navy); margin-bottom: 4px; }
.cross-inner p { color: var(--ink-soft); }

/* ----------------------------- animation ----------------------------- */
.shot img { transition: transform .45s ease; }
.shot:hover img { transform: scale(1.06); }

@media (prefers-reduced-motion: no-preference) {
  /* scroll-reveal (class added by script.js, so no-JS keeps everything visible) */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.in { opacity: 1; transform: none; }

  /* hero entrance */
  .hero-copy { animation: pp-rise .7s ease both; }
  .hero-art { animation: pp-rise .8s .15s ease both; }
  .hero-mascot { animation: pp-float 5.5s ease-in-out infinite; }

  /* gentle pulse on the two main CTAs so the "two directions" pop */
  .hero-cta .btn { animation: pp-pop .5s ease both; }
  .hero-cta .btn-wash { animation-delay: .35s; }
  .hero-cta .btn-move { animation-delay: .5s; }
}
@keyframes pp-rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes pp-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pp-pop { from { opacity: 0; transform: scale(.92); } to { opacity: 1; transform: scale(1); } }

/* ----------------------------- responsive ----------------------------- */
@media (max-width: 860px) {
  .main-nav { display: none; }
  .hero-inner, .services, .why-inner, .lane-inner, .how-steps, .about-inner, .choose, .video-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .about-media { order: -1; }
  .cross-inner { flex-direction: column; text-align: center; }
  .cross-inner .btn { width: 100%; }
  .hero-art { order: -1; }
  .hero-mascot { max-width: 200px; }
  .lane-intro { position: static; }
  .field-row, .checks { grid-template-columns: 1fr; }
  .hero { padding: 44px 0; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .gallery { grid-template-columns: 1fr; }
  .logo-choice img { width: 200px; height: 200px; }
  .header-inner { gap: 10px; }
  .brand-logo { height: 38px; }
  .brand-cartoon .bc-main { font-size: 23px; }
  .brand-cartoon .bc-llc { font-size: 11px; }
  .btn-phone { padding: 10px 14px; font-size: 14px; }
}
