/* HHI Pressure Washing Guys — refreshed UI
   Brand: crimson red + charcoal, clean water-blue accents */

:root {
  --red: #d11f26;
  --red-dark: #a8161c;
  --charcoal: #16202b;
  --charcoal-2: #1f2b38;
  --blue: #1f7fb8;        /* water accent, used sparingly */
  --ink: #1c2530;
  --muted: #5b6775;
  --line: #e6eaef;
  --bg: #ffffff;
  --bg-soft: #f5f8fb;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(20, 32, 45, 0.10);
  --shadow-sm: 0 4px 14px rgba(20, 32, 45, 0.08);
  --max: 1160px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }

h1, h2, h3 { line-height: 1.15; color: var(--charcoal); margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; letter-spacing: -0.01em; }
h3 { font-size: 1.2rem; font-weight: 700; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 22px; }

.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section__head p { color: var(--muted); font-size: 1.08rem; margin: 0; }
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--red); margin-bottom: 12px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: 1rem; padding: 14px 26px; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer; transition: all .18s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(209,31,38,.28); }
.btn--primary:hover { background: var(--red-dark); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn--dark { background: var(--charcoal); color: #fff; }
.btn--dark:hover { background: var(--charcoal-2); color: #fff; transform: translateY(-2px); }
.btn--lg { padding: 16px 32px; font-size: 1.08rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav__menu { display: flex; align-items: center; justify-content: space-between; flex: 1; gap: 28px; margin-left: 40px; }
.brand img { height: 42px; width: auto; max-width: calc(100vw - 96px); }
.nav__links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav__links a { color: var(--ink); font-weight: 600; font-size: .98rem; }
.nav__links a:hover { color: var(--red); }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__phone { font-weight: 800; color: var(--charcoal); font-size: 1.02rem; }
.nav__phone:hover { color: var(--red); }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { display: block; width: 26px; height: 3px; background: var(--charcoal); border-radius: 3px; margin: 5px 0; transition: .2s; }

/* Hero */
.hero {
  position: relative; color: #fff;
  background: linear-gradient(rgba(16,24,33,.62), rgba(16,24,33,.72)), url("../images/slide01.jpg") center/cover no-repeat;
}
.hero__inner { padding: 110px 0 120px; max-width: 720px; }
.hero h1 { color: #fff; }
.hero p { font-size: 1.22rem; color: rgba(255,255,255,.92); margin: 18px 0 32px; max-width: 600px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 40px; }
.hero__badge { display: flex; align-items: center; gap: 8px; font-weight: 600; color: rgba(255,255,255,.95); }
.hero__badge svg { width: 22px; height: 22px; flex: none; }

/* Trust bar */
.trustbar { background: var(--charcoal); color: #fff; }
.trustbar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 30px 0; text-align: center; }
.trustbar__num { font-size: 1.7rem; font-weight: 800; color: #fff; }
.trustbar__lbl { font-size: .92rem; color: rgba(255,255,255,.7); }

/* Services */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__icon {
  width: 54px; height: 54px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(209,31,38,.10); color: var(--red); margin-bottom: 18px;
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin: 0; font-size: .98rem; }

/* Why us / split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 100%; object-fit: cover; }
.feature-list { list-style: none; margin: 22px 0 0; padding: 0; }
.feature-list li { display: flex; gap: 14px; margin-bottom: 18px; }
.feature-list .tick {
  flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--red);
  color: #fff; display: grid; place-items: center; font-size: 15px; margin-top: 2px;
}
.feature-list h3 { margin: 0 0 2px; font-size: 1.05rem; }
.feature-list p { margin: 0; color: var(--muted); font-size: .96rem; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-grid a { display: block; border-radius: 10px; overflow: hidden; aspect-ratio: 1/1; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-grid a:hover img { transform: scale(1.08); }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff; border-radius: 22px; padding: 56px 48px; text-align: center;
  box-shadow: var(--shadow);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); font-size: 1.12rem; max-width: 560px; margin: 0 auto 28px; }
.cta-band .btn--primary { background: #fff; color: var(--red); box-shadow: 0 8px 20px rgba(0,0,0,.18); }
.cta-band .btn--primary:hover { background: #f3f3f3; color: var(--red-dark); }

/* Estimate page */
.estimate-wrap { display: grid; grid-template-columns: 360px 1fr; gap: 44px; align-items: start; }
.estimate-side { position: sticky; top: 100px; }
.estimate-side .info-card {
  background: var(--charcoal); color: #fff; border-radius: var(--radius); padding: 30px; margin-bottom: 22px;
}
.estimate-side .info-card h3 { color: #fff; }
.info-row { display: flex; gap: 12px; margin: 16px 0; }
.info-row svg { width: 20px; height: 20px; flex: none; color: var(--red); margin-top: 3px; }
.info-row span { color: rgba(255,255,255,.85); font-size: .96rem; }
.info-row a { color: #fff; font-weight: 600; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; box-shadow: var(--shadow-sm); }
.form-card iframe { width: 100%; max-width: 640px; margin: 0 auto; display: block; border: none; min-height: 1150px; }
.form-fallback { text-align: center; font-size: .9rem; color: var(--muted); margin: 14px 0 0; }

/* Reviews */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
}
.stars { color: #f5a623; letter-spacing: 2px; margin-bottom: 10px; font-size: 1.05rem; }
.review p { font-style: italic; color: var(--ink); margin: 0 0 16px; }
.review__who { font-weight: 700; color: var(--charcoal); font-size: .95rem; }

/* Footer */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,.78); padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin: 0 0 16px; }
.footer-brand { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer-brand span { color: var(--red); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: #fff; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.10);
  display: grid; place-items: center;
}
.footer-social a:hover { background: var(--red); }
.footer-social svg { width: 20px; height: 20px; color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: .88rem; color: rgba(255,255,255,.6);
}

/* Page hero (sub pages) */
.page-hero { background: var(--charcoal); color: #fff; padding: 70px 0; text-align: center; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.8); margin: 8px 0 0; font-size: 1.1rem; }

/* Responsive */
@media (max-width: 960px) {
  .cards, .reviews { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .estimate-wrap { grid-template-columns: 1fr; }
  .estimate-side { position: static; }
  .trustbar__grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .nav__menu { display: none; }
  .nav__toggle { display: block; }
  .nav.open .nav__menu {
    display: flex; flex-direction: column; align-items: stretch; gap: 16px; margin: 0;
    position: absolute; top: 76px; left: 0; right: 0; background: #fff;
    padding: 18px 22px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .nav.open .nav__links { display: flex; flex-direction: column; gap: 14px; }
  .nav.open .nav__cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .nav.open .nav__cta .btn { width: 100%; justify-content: center; }
  .section { padding: 60px 0; }
  .cta-band { padding: 40px 24px; }
}
@media (max-width: 520px) {
  .cards, .reviews { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__inner { padding: 80px 0 90px; }
}
