/* Rochester Pressure Washing — slate/sky outdoor-wash template (unique charcoal + sky) */

:root {
  --slate-deep: #0D1B2A;
  --slate: #1B263B;
  --slate-mid: #415A77;
  --mist: #F5F7FA;
  --mist-2: #E8EEF5;
  --white: #FFFFFF;
  --ink: #1B263B;
  --ink-soft: #415A77;
  --sky: #3A86FF;
  --sky-bright: #4CC9F0;
  --sky-deep: #2563EB;
  --sky-glow: rgba(58, 134, 255, 0.18);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 12px 40px rgba(13, 27, 42, 0.12);
  --shadow-sky: 0 10px 28px rgba(58, 134, 255, 0.35);
  --header-h: 72px;
  --callbar-h: 64px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}
body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  padding-bottom: var(--callbar-h);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sky); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--sky-deep); }
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--sky); color: #fff; padding: .6rem 1rem; z-index: 1000;
}
.skip:focus { left: 1rem; top: 1rem; }

.wrap { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }
.wrap-narrow { width: min(720px, calc(100% - 2rem)); margin-inline: auto; }

/* —— Sticky slate header + sky CTA —— */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: linear-gradient(180deg, var(--slate-deep) 0%, var(--slate) 100%);
  border-bottom: 1px solid rgba(76, 201, 240, 0.22);
  box-shadow: 0 4px 24px rgba(13, 27, 42, 0.35);
}
.header-inner {
  width: min(1120px, calc(100% - 1.5rem));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex; align-items: center; gap: 1rem;
}
.wordmark {
  display: flex; align-items: center; gap: .75rem; min-width: 0;
  text-decoration: none; color: #fff; margin-right: auto;
}
.wm-text { min-width: 0; overflow: hidden; }
.wm-top, .wm-mid { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 420px) {
  .header-cta { display: none; }
  .wm-mid { display: none; }
}
.wm-mark {
  width: 40px; height: 40px; border-radius: 11px;
  background: linear-gradient(145deg, var(--sky) 0%, var(--sky-bright) 100%);
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.05rem; color: #fff;
  box-shadow: 0 0 0 3px rgba(76, 201, 240, 0.25);
}
.wm-text { display: flex; flex-direction: column; line-height: 1.15; }
.wm-top { font-weight: 700; font-size: .95rem; letter-spacing: .01em; }
.wm-mid { font-size: .72rem; color: rgba(255,255,255,.72); font-weight: 500; }
.nav-desktop { display: none; gap: 1.1rem; }
.nav-desktop a {
  color: rgba(255,255,255,.88); text-decoration: none;
  font-size: .9rem; font-weight: 550;
}
.nav-desktop a:hover { color: var(--sky-bright); }
.header-cta { flex-shrink: 0; }
.nav-mobile { display: block; position: relative; }
.nav-mobile summary {
  list-style: none; cursor: pointer; padding: .45rem;
  border-radius: 8px; border: 1px solid rgba(255,255,255,.2);
}
.nav-mobile summary::-webkit-details-marker { display: none; }
.burger { display: flex; flex-direction: column; gap: 4px; width: 22px; }
.burger i { display: block; height: 2px; background: #fff; border-radius: 2px; }
.nav-mobile:not([open]) .mobile-panel { display: none; }
.mobile-panel {
  position: fixed;
  right: max(0.75rem, env(safe-area-inset-right));
  left: auto;
  top: calc(var(--header-h, 4.25rem) + 0.35rem);
  width: min(16rem, calc(100vw - 1.5rem));
  max-width: calc(100vw - 1.5rem);
  z-index: 80;
  background: var(--slate-deep); border: 1px solid rgba(76,201,240,.25);
  border-radius: var(--radius); padding: .75rem;
  display: flex; flex-direction: column; gap: .5rem;
  box-shadow: var(--shadow);
  box-sizing: border-box;
}
.mobile-panel a {
  color: #fff; text-decoration: none; padding: .55rem .7rem;
  border-radius: 8px; font-weight: 550;
}
.mobile-panel a:hover { background: rgba(58,134,255,.2); }

@media (min-width: 860px) {
  .nav-desktop { display: flex; }
  .nav-mobile { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  padding: .85rem 1.35rem; border-radius: 999px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  border: none; cursor: pointer; transition: transform .15s, box-shadow .15s, background .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-sky {
  background: linear-gradient(135deg, var(--sky) 0%, var(--sky-bright) 100%);
  color: #fff !important;
  box-shadow: var(--shadow-sky);
}
.btn-sky:hover { filter: brightness(1.05); color: #fff !important; }
.btn-ghost {
  background: transparent; color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.45);
}
.btn-ghost:hover { border-color: var(--sky-bright); color: var(--sky-bright) !important; }
.btn-lg { padding: 1.05rem 1.7rem; font-size: 1.12rem; }
.btn-block { width: 100%; }

/* —— Asymmetric hero —— */
.hero {
  position: relative;
  background: var(--slate-deep);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-grid {
  width: min(1180px, calc(100% - 0px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  min-height: clamp(520px, 78vh, 720px);
}
.hero-copy {
  padding: 2.5rem 1.25rem 3.5rem;
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  gap: 1.1rem;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(58,134,255,.22), transparent 55%),
    linear-gradient(160deg, var(--slate-deep) 0%, var(--slate) 70%, #152238 100%);
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--sky-bright);
}
.hero-kicker::before {
  content: ""; width: 28px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--sky), var(--sky-bright));
}
.hero h1 {
  margin: 0; font-size: clamp(1.75rem, 4.5vw, 2.65rem);
  line-height: 1.15; font-weight: 800; letter-spacing: -.02em;
  max-width: 18ch;
}
.hero-lead {
  margin: 0; font-size: 1.05rem; color: rgba(255,255,255,.84);
  max-width: 38ch; line-height: 1.6;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .35rem; }
.hero-visual {
  position: relative; min-height: 280px;
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
  min-height: 280px;
}
.hero-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13,27,42,.55) 100%);
  pointer-events: none;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
  }
  .hero-copy {
    padding: 3.5rem 2.5rem 4.5rem 1.5rem;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
    margin-right: -8%;
  }
  .hero-visual {
    margin-left: -4%;
  }
  .hero-visual img { min-height: 100%; }
  .hero-visual::before {
    content: "";
    position: absolute; left: 0; top: 8%; bottom: 8%; width: 18px; z-index: 2;
    background: linear-gradient(180deg, var(--sky), var(--sky-bright));
    border-radius: 0 12px 12px 0;
    box-shadow: 0 0 24px rgba(76,201,240,.5);
  }
}

/* Floating trust pills */
.trust-pills {
  display: flex; flex-wrap: wrap; gap: .55rem;
  margin-top: .85rem;
  margin-bottom: .25rem;
  max-width: 36rem;
}
.pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem .85rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(76,201,240,.35);
  border-radius: 999px;
  font-size: .78rem; font-weight: 650; color: #fff;
  backdrop-filter: blur(8px);
}
.pill-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sky-bright);
  box-shadow: 0 0 8px var(--sky-bright);
}
/* trust-float removed — pills live inside hero .trust-pills */

/* Sections */
.section { padding: 3.5rem 0; }
.section-mist { background: var(--mist); }
.section-slate {
  background: linear-gradient(165deg, var(--slate) 0%, var(--slate-deep) 100%);
  color: #fff;
}
.eyebrow {
  font-size: .78rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--sky); margin: 0 0 .5rem;
}
.section-slate .eyebrow { color: var(--sky-bright); }
.section h2 {
  margin: 0 0 1rem; font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.2; letter-spacing: -.015em;
}
.lead { font-size: 1.05rem; color: var(--ink-soft); max-width: 58ch; }
.section-slate .lead { color: rgba(255,255,255,.8); }

/* Direct answer / intro */
.intro-card {
  display: grid; gap: 1.5rem;
  background: var(--white);
  border: 1px solid var(--mist-2);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  margin-top: 2.5rem;
}
@media (min-width: 800px) {
  .intro-card {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    padding: 2rem 2.25rem;
  }
}
.intro-card h2 { margin-bottom: .65rem; }
.intro-card p { margin: 0 0 .85rem; color: var(--ink-soft); }
.intro-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.intro-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Service rows — horizontal wash-type */
.service-rows { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.75rem; }
.service-row {
  display: grid; grid-template-columns: 1fr;
  background: var(--white);
  border: 1px solid var(--mist-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.service-row:hover {
  border-color: rgba(58,134,255,.45);
  box-shadow: 0 8px 28px rgba(58,134,255,.12);
}
.service-row-media {
  aspect-ratio: 16/10; overflow: hidden; background: var(--slate);
}
.service-row-media img { width: 100%; height: 100%; object-fit: cover; }
.service-row-body { padding: 1.25rem 1.35rem 1.4rem; }
.service-row-body h3 {
  margin: 0 0 .45rem; font-size: 1.2rem; color: var(--slate-deep);
}
.service-row-body p { margin: 0; color: var(--ink-soft); font-size: .95rem; }
.service-tag {
  display: inline-block; margin-bottom: .55rem;
  font-size: .7rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: var(--sky);
  background: var(--sky-glow); padding: .25rem .55rem; border-radius: 6px;
}
@media (min-width: 720px) {
  .service-row {
    grid-template-columns: 220px 1fr;
    align-items: stretch;
  }
  .service-row-media { aspect-ratio: auto; min-height: 150px; }
  .service-row:nth-child(even) { grid-template-columns: 1fr 220px; }
  .service-row:nth-child(even) .service-row-media { order: 2; }
}

/* Why / salt band */
.why-grid {
  display: grid; gap: 1rem; margin-top: 1.5rem;
}
@media (min-width: 700px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}
.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(76,201,240,.22);
  border-radius: var(--radius);
  padding: 1.35rem;
}
.why-card h3 {
  margin: 0 0 .5rem; font-size: 1.05rem;
  color: var(--sky-bright);
}
.why-card p { margin: 0; color: rgba(255,255,255,.8); font-size: .94rem; }

/* Soft wash explainer split */
.split-edu {
  display: grid; gap: 1.5rem; margin-top: 1.25rem;
}
@media (min-width: 800px) {
  .split-edu { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
.edu-panel {
  border-radius: var(--radius-lg); padding: 1.5rem;
  border: 1px solid var(--mist-2); background: var(--white);
}
.edu-panel.soft {
  border-color: rgba(58,134,255,.35);
  background: linear-gradient(160deg, #fff 0%, #F0F6FF 100%);
}
.edu-panel.hard {
  border-color: rgba(65,90,119,.25);
  background: linear-gradient(160deg, #fff 0%, var(--mist) 100%);
}
.edu-panel h3 { margin: 0 0 .6rem; font-size: 1.15rem; }
.edu-panel ul { margin: .5rem 0 0; padding-left: 1.15rem; color: var(--ink-soft); }
.edu-panel li { margin-bottom: .35rem; }

/* Process — vertical spring wash checklist */
.process-list {
  list-style: none; margin: 1.75rem 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 0;
  position: relative;
}
.process-list::before {
  content: "";
  position: absolute; left: 23px; top: 12px; bottom: 12px; width: 3px;
  background: linear-gradient(180deg, var(--sky), var(--sky-bright), var(--slate-mid));
  border-radius: 2px;
}
.process-item {
  display: grid; grid-template-columns: 48px 1fr; gap: 1rem;
  padding: 1rem 0; position: relative;
}
.process-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(145deg, var(--sky), var(--sky-bright));
  color: #fff; font-weight: 800; font-size: 1.05rem;
  display: grid; place-items: center;
  box-shadow: 0 0 0 6px var(--mist), 0 6px 16px rgba(58,134,255,.35);
  position: relative; z-index: 1;
}
.process-item h3 { margin: 0 0 .3rem; font-size: 1.1rem; }
.process-item p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

/* Areas */
.areas-map {
  display: grid; gap: 1.25rem; margin-top: 1.25rem;
}
@media (min-width: 800px) {
  .areas-map { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
}
.chip-cloud { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  background: var(--white); border: 1px solid var(--mist-2);
  border-radius: 999px; padding: .4rem .85rem;
  font-size: .85rem; font-weight: 600; color: var(--slate);
}
.areas-photo {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 5/4; box-shadow: var(--shadow);
}
.areas-photo img { width: 100%; height: 100%; object-fit: cover; }

/* FAQ */
.faq-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .65rem; }
.faq-item {
  background: var(--white); border: 1px solid var(--mist-2);
  border-radius: var(--radius); overflow: hidden;
}
.faq-item summary {
  cursor: pointer; padding: 1rem 1.15rem;
  font-weight: 700; color: var(--slate-deep);
  list-style: none; display: flex; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; color: var(--sky); font-size: 1.3rem; font-weight: 400;
  line-height: 1;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-a {
  padding: 0 1.15rem 1.1rem; margin: 0;
  color: var(--ink-soft); font-size: .95rem;
}

/* Article */
.article {
  padding: 3.5rem 0 4rem;
}
.article h2 { margin-top: 0; }
.article h3 {
  margin: 1.75rem 0 .6rem; font-size: 1.25rem; color: var(--slate);
}
.article p { color: var(--ink-soft); margin: 0 0 1rem; }
.article ul { color: var(--ink-soft); margin: 0 0 1rem; padding-left: 1.2rem; }
.article li { margin-bottom: .35rem; }
.article-meta {
  font-size: .85rem; color: var(--slate-mid); margin-bottom: 1.25rem;
}

/* Final CTA */
.final-cta {
  padding: 3.5rem 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 20%, rgba(76,201,240,.2), transparent 50%),
    linear-gradient(145deg, var(--slate-deep), var(--slate));
  color: #fff; text-align: center;
}
.final-cta h2 { margin: 0 0 .75rem; color: #fff; }
.final-cta p { margin: 0 auto 1.35rem; max-width: 42ch; color: rgba(255,255,255,.82); }
.final-phone {
  display: block; font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800; color: var(--sky-bright) !important;
  text-decoration: none; margin-bottom: 1.1rem; letter-spacing: .02em;
}
.final-phone:hover { color: #fff !important; }

/* Footer */
.site-footer {
  background: var(--slate-deep); color: rgba(255,255,255,.75);
  padding: 2.5rem 0 5.5rem; font-size: .9rem;
}
.footer-grid {
  display: grid; gap: 1.5rem;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr; align-items: start; }
}
.footer-brand { display: flex; gap: .85rem; align-items: flex-start; }
.nap { margin: 0; line-height: 1.7; }
.nap strong { color: #fff; }
.nap a { color: var(--sky-bright); text-decoration: none; }
.footer-links { display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; }
.footer-links a { color: rgba(255,255,255,.75); text-decoration: none; }
.footer-links a:hover { color: var(--sky-bright); }
.footer-note { margin: 1.25rem 0 0; font-size: .8rem; opacity: .7; }

/* Mobile sticky call bar — sky blue */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 300;
  padding: .65rem .85rem calc(.65rem + env(safe-area-inset-bottom));
  background: linear-gradient(90deg, var(--sky) 0%, var(--sky-bright) 100%);
  box-shadow: 0 -6px 24px rgba(13,27,42,.25);
}
.callbar .btn {
  width: 100%; background: #fff; color: var(--slate-deep) !important;
  font-weight: 800; box-shadow: none;
}
.callbar .btn:hover { background: var(--mist); color: var(--slate-deep) !important; }
@media (min-width: 860px) {
  .callbar { display: none; }
  body { padding-bottom: 0; }
  .site-footer { padding-bottom: 2.5rem; }
}

/* Privacy page */
.page-main { padding: 2.5rem 0 4rem; }
.page-main h1 { margin-top: 0; font-size: 2rem; }
.page-main p { color: var(--ink-soft); }

/* Utilities */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
