/* Ohio Prime Power Washing — site styles
   Palette pulled from the door hangers / business card:
   deep navy-black backgrounds, bright blue accent, white type. */

:root {
  --navy: #0a1628;
  --navy-2: #0f1f3a;
  --black: #070b14;
  --blue: #1a6ee8;
  --blue-dark: #0e4fb8;
  --blue-light: #4d8ff5;
  --white: #ffffff;
  --off-white: #f3f6fb;
  --gray: #c7d0de;
  --gray-dark: #56627a;
  --text-dark: #111827;

  --font-head: "Oswald", "Arial Narrow", Impact, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius: 10px;
  --container: 1140px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--white);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-light); }
ul, ol { margin: 0; padding: 0; }

.container { width: min(var(--container), 100% - 2.5rem); margin-inline: auto; }
.container.narrow { max-width: 780px; }
.center { text-align: center; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--blue); color: var(--white); padding: .5rem 1rem; z-index: 100;
}
.skip-link:focus { left: 0; }

.icon { width: 1.1em; height: 1.1em; fill: currentColor; vertical-align: -0.15em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase;
  letter-spacing: .04em; font-size: 1rem; line-height: 1;
  padding: .85rem 1.4rem; border-radius: 6px; text-decoration: none;
  border: 2px solid transparent; transition: transform .15s, background .15s, color .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { font-size: 1.15rem; padding: 1rem 1.75rem; }
.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-white { background: var(--white); color: var(--blue-dark); border-color: var(--white); }
.btn-white:hover { background: var(--off-white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 11, 20, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 72px; }

.brand {
  display: grid; grid-template-columns: auto auto; grid-template-rows: auto auto;
  column-gap: .35rem; align-items: baseline;
  text-decoration: none; color: var(--white); font-family: var(--font-head);
  font-style: italic; line-height: .9;
}
.brand-ohio { font-size: 1.6rem; font-weight: 700; letter-spacing: -.02em; display: inline-flex; align-items: center; }
.brand-o { color: var(--blue); }
.brand-prime { font-size: 1.6rem; font-weight: 700; color: var(--blue); letter-spacing: .01em; }
.brand-sub {
  grid-column: 1 / -1; font-style: normal; font-weight: 500; font-size: .7rem;
  letter-spacing: .28em; text-transform: uppercase; color: var(--gray); margin-top: .25rem;
}

.site-nav { display: flex; gap: 1.5rem; }
.site-nav a {
  color: var(--gray); text-decoration: none; font-weight: 500; font-size: .95rem;
  padding: .25rem 0; border-bottom: 2px solid transparent;
}
.site-nav a:hover { color: var(--white); border-color: var(--blue); }
.header-cta { font-size: .95rem; padding: .7rem 1.1rem; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(88vh, 820px); display: grid; align-items: center; overflow: hidden; isolation: isolate; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background: url("/assets/img/hero-house.jpg") center 40% / cover no-repeat;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(7,11,20,.92) 0%, rgba(7,11,20,.78) 45%, rgba(7,11,20,.35) 100%),
    linear-gradient(180deg, rgba(7,11,20,.2) 0%, rgba(7,11,20,.6) 100%);
}
.hero-inner { padding: 5rem 0 6rem; max-width: 720px; }

.eyebrow {
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase;
  letter-spacing: .22em; font-size: .8rem; color: var(--blue-light); margin: 0 0 .75rem;
}
.eyebrow.light { color: #cfe0ff; }

.hero-title {
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  line-height: .92; margin: 0 0 1.25rem; display: grid; gap: .1em;
}
.hero-title .line-white { font-size: clamp(2.6rem, 7vw, 5.2rem); color: var(--white); }
.hero-title .line-blue { font-size: clamp(3.4rem, 10vw, 7.2rem); color: var(--blue); letter-spacing: -.01em; }
.hero-title .line-brush {
  justify-self: start; font-style: italic; font-size: clamp(1.4rem, 3.6vw, 2.4rem);
  background: var(--black); color: var(--white); padding: .2em .6em .15em;
  transform: rotate(-2deg); margin-top: .25em; border-bottom: 4px solid var(--blue);
}
.hero-copy { font-size: 1.15rem; color: var(--gray); max-width: 540px; margin: 0 0 1.75rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }

.hero-badges {
  list-style: none; display: flex; flex-wrap: wrap; gap: .6rem 1.5rem;
  margin-top: 2.25rem; font-family: var(--font-head); font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em; font-size: .9rem; color: var(--gray);
}
.hero-badges .icon { color: var(--blue-light); margin-right: .25rem; }

/* ---------- Sections ---------- */
.section { padding: 5rem 0; }
.section-dark { background: var(--navy); }
.section-light { background: var(--off-white); color: var(--text-dark); }
.section-light a:not(.btn) { color: var(--blue-dark); }
.section-blue { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); }

.section-title {
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1; margin: 0 0 1rem;
}
.section-lead { color: var(--gray); max-width: 640px; margin-inline: auto; margin-bottom: 3rem; }

/* Services */
.services-grid {
  list-style: none; display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.service {
  background: var(--navy-2); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius); padding: 1.6rem 1.4rem;
  transition: transform .15s, border-color .15s;
}
.service:hover { transform: translateY(-4px); border-color: var(--blue); }
.service-icon {
  display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%;
  border: 3px solid var(--blue); background: rgba(26,110,232,.12); margin-bottom: 1rem;
}
.service-icon svg { width: 34px; height: 34px; fill: var(--white); }
.service h3 {
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase;
  letter-spacing: .04em; font-size: 1.2rem; margin: 0 0 .4rem;
}
.service p { margin: 0; color: var(--gray); font-size: .95rem; }
.services-note { margin-top: 2.5rem; color: var(--gray); }

/* Results */
.results-grid, .area-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center;
}
.results-copy p, .area-copy p { color: var(--gray-dark); }
.check-list { list-style: none; margin: 1.25rem 0 2rem; display: grid; gap: .6rem; }
.check-list li { position: relative; padding-left: 1.75rem; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .3em; width: 1.1rem; height: 1.1rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%231a6ee8'/%3E%3Cpath d='M7 12.5l3 3 7-7' stroke='white' stroke-width='2.5' fill='none'/%3E%3C/svg%3E") center / contain no-repeat;
}
.results-figure, .area-figure { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.results-figure figcaption {
  position: absolute; inset: auto 1rem 1rem 1rem; display: flex; justify-content: space-between;
}
.tag {
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase; font-style: italic;
  letter-spacing: .05em; padding: .3rem .8rem; color: var(--white); font-size: .9rem;
}
.tag-dark { background: var(--black); }
.tag-blue { background: var(--blue); }

/* Why us */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.why-card {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center;
}
.why-icon { width: 48px; height: 48px; fill: var(--white); margin-bottom: 1rem; }
.why-card h3 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .04em; font-size: 1.25rem; margin: 0 0 .5rem; }
.why-card p { margin: 0; color: #e3ecfb; font-size: .95rem; }

/* Steps */
.steps { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; margin-top: 3rem; counter-reset: step; }
.step { text-align: center; padding: 0 1rem; }
.step-num {
  display: grid; place-items: center; width: 56px; height: 56px; margin: 0 auto 1rem;
  border-radius: 50%; background: var(--blue); color: var(--white);
  font-family: var(--font-head); font-weight: 700; font-size: 1.5rem;
}
.step h3 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .04em; font-size: 1.3rem; margin: 0 0 .5rem; }
.step p { margin: 0; color: var(--gray); }

/* Service area */
.area-copy h3 { font-family: var(--font-head); text-transform: uppercase; color: var(--blue-dark); letter-spacing: .05em; font-size: 1.1rem; margin: 0 0 .5rem; }
.area-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 1.5rem; }
.area-columns ul { list-style: none; display: grid; gap: .3rem; color: var(--text-dark); }
.area-columns li::before { content: "•"; color: var(--blue); margin-right: .5rem; }

/* FAQ */
.faq { display: grid; gap: .75rem; margin-top: 2.5rem; }
.faq details {
  background: var(--navy-2); border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius);
  padding: 0 1.25rem;
}
.faq details[open] { border-color: var(--blue); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.1rem 2rem 1.1rem 0; font-weight: 600;
  position: relative; font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  color: var(--blue-light); font-size: 1.6rem; font-weight: 300; line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0 0 1.25rem; color: var(--gray); }

/* CTA */
.cta {
  background:
    radial-gradient(ellipse at top, rgba(26,110,232,.35), transparent 60%),
    var(--black);
  text-align: center; padding: 6rem 0;
}
.cta-inner { display: grid; justify-items: center; }
.cta-icon { width: 64px; height: 64px; fill: var(--blue); margin-bottom: .5rem; }
.cta-kicker { font-family: var(--font-head); font-style: italic; font-size: 1.5rem; margin: 0; color: var(--gray); }
.cta-title {
  font-family: var(--font-head); font-style: italic; font-weight: 700; text-transform: uppercase;
  font-size: clamp(2.5rem, 7vw, 4.5rem); line-height: 1; color: var(--blue-light); margin: 0 0 1.5rem;
}
.cta-phone {
  display: inline-block; text-decoration: none; color: var(--white);
  font-family: var(--font-head); font-weight: 700; font-size: clamp(2.2rem, 7vw, 4rem); line-height: 1;
  background: var(--blue); padding: .35em .7em; transform: rotate(-1.5deg); margin-bottom: 2rem;
  box-shadow: var(--shadow);
}
.cta-phone:hover { background: var(--blue-dark); }
.cta-fine { color: var(--gray-dark); margin: 2rem 0 0; font-size: .95rem; }

/* Footer */
.site-footer { background: var(--black); padding: 4rem 0 2rem; color: var(--gray); border-top: 4px solid var(--blue); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; align-items: start; }
.footer-brand img { border-radius: 8px; box-shadow: var(--shadow); }
.footer-links h3 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .1em; font-size: 1rem; color: var(--white); margin: 0 0 .75rem; }
.footer-links ul { list-style: none; display: grid; gap: .4rem; }
.footer-links a { color: var(--gray); text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem;
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.08);
  font-size: .85rem; color: var(--gray-dark);
}
.footer-bottom p { margin: 0; }

/* Mobile call bar */
.mobile-call-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: var(--blue); color: var(--white); text-decoration: none;
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
  padding: 1rem; text-align: center; font-size: 1.1rem;
  align-items: center; justify-content: center; gap: .5rem;
  box-shadow: 0 -6px 20px rgba(0,0,0,.35);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .site-nav { display: none; }
  .results-grid, .area-grid, .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .area-grid .area-figure { order: 2; }
  .footer-brand img { max-width: 360px; }
}

@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  .hero { min-height: auto; }
  .hero-inner { padding: 3.5rem 0 4.5rem; }
  .hero-bg::after { background: linear-gradient(180deg, rgba(7,11,20,.7), rgba(7,11,20,.92)); }
  .header-cta { display: none; }
  .brand-ohio, .brand-prime { font-size: 1.4rem; }
  .area-columns { grid-template-columns: 1fr; }
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 60px; }
  .btn-lg { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .service { transition: none; }
}

/* ---------- Before / after compare cards ---------- */
.section-lead.muted { color: var(--gray-dark); }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.compare { margin: 0; }
.compare-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--navy);
}
.compare-side { position: relative; aspect-ratio: 3 / 4; }
.compare-side img { width: 100%; height: 100%; object-fit: cover; }
.compare-side .tag { position: absolute; left: .75rem; bottom: .75rem; }
.compare-side:last-child .tag { left: auto; right: .75rem; }
.compare-wide { grid-column: 1 / -1; }
.compare-wide .compare-side { aspect-ratio: 2 / 1; }
.compare figcaption { margin-top: .85rem; color: var(--gray-dark); font-size: .95rem; text-align: center; }
.results-footer {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem 3rem;
  margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid #dde4ef;
}
.results-footer .check-list { margin: 0; flex: 1 1 420px; }
@media (max-width: 900px) {
  .compare-grid { grid-template-columns: 1fr; }
  .compare-wide .compare-pair { grid-template-columns: 1fr; }
  .results-footer .btn-lg { width: 100%; justify-content: center; }
}
