/* ===== USA Water Company — Styles ===== */
:root {
  --navy: #0d2340;
  --navy-2: #12305a;
  --red: #c0392b;
  --red-dark: #97281e;
  --blue: #2a5eaa;
  --blue-light: #eaf1fa;
  --peach: #fbe6e2;
  --cream: #f6f7f9;
  --text: #1c2733;
  --muted: #6b7684;
  --white: #ffffff;
  --border: #e6e9ee;
  --shadow: 0 10px 30px rgba(13, 35, 64, 0.08);
  --shadow-lg: 0 20px 50px rgba(13, 35, 64, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* Scroll reveal (classes applied by reveal.js only) */
.reveal { opacity: 0; transition: opacity .6s ease, transform .6s ease; will-change: opacity, transform; }
.reveal-left { transform: translateX(-42px); }
.reveal-right { transform: translateX(42px); }
.reveal-up { transform: translateY(36px); }
.reveal-down { transform: translateY(-32px); }
.reveal-zoom { transform: scale(.9); }
.reveal-rotate { transform: translateY(28px) rotate(-3deg); }
.reveal-fade { transform: none; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-up, .reveal-down, .reveal-zoom, .reveal-rotate, .reveal-fade {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}

body {
  font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  overflow-x: hidden;
}

.container { width: 90%; max-width: 1180px; margin: 0 auto; }

h1, h2, h3, h4 { color: var(--navy); line-height: 1.15; font-weight: 800; letter-spacing: -0.5px; }
h1 { font-size: 3.1rem; }
h2 { font-size: 2.6rem; }
a { color: var(--blue); text-decoration: none; }
.accent { color: var(--red); }
.center { text-align: center; }

/* Pills / eyebrows */
.pill {
  display: inline-block; background: var(--peach); color: var(--red);
  text-transform: uppercase; letter-spacing: 1.5px; font-weight: 800; font-size: .75rem;
  padding: .45rem 1.1rem; border-radius: 999px; margin-bottom: 1.1rem;
}
.pill-light { background: rgba(255,255,255,.14); color: #ffd7d0; }
.pill-text { color: var(--red); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 800; font-size: .75rem; display: block; margin-bottom: .5rem; }

.section-head { max-width: 720px; margin: 0 auto 3rem; }
.section-head h2 { margin-bottom: .8rem; }
.section-sub { color: var(--muted); font-size: 1.05rem; }
.section-head .section-sub { margin: 0 auto; max-width: 600px; }

/* Buttons */
.btn {
  display: inline-block; padding: .9rem 1.7rem; border-radius: 999px;
  font-weight: 700; font-size: .95rem; cursor: pointer; border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(192,57,43,.28); }
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-block { width: 100%; }

/* Top bar */
.topbar { background: var(--navy); color: #cdd8e6; font-size: .85rem; }
.topbar-inner { display: flex; justify-content: space-between; padding: .55rem 0; }
.topbar a { color: #fff; font-weight: 700; }

/* Header */
.header {
  background: var(--white);
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--red) 50%, var(--blue) 50%) 1;
  position: sticky; top: 0; z-index: 50;
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; padding: .7rem 0; }
.brand img { height: 52px; width: auto; display: block; }
.nav { display: flex; gap: 1.6rem; margin-left: auto; }
.nav a { color: var(--navy); font-weight: 600; }
.nav a:hover { color: var(--red); }
.nav-cta { padding: .6rem 1.3rem; }
.hamburger { display: none; font-size: 1.6rem; background: none; border: none; color: var(--navy); cursor: pointer; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 55%, #1c4a86 100%);
  color: #fff; padding: 5rem 0;
}
.hero { position: relative; overflow: hidden; }
.hero > .container { position: relative; z-index: 3; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(70px); z-index: 1; pointer-events: none; }
.hero-glow-1 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(42,94,170,.65), transparent 70%); top: -170px; right: -70px; }
.hero-glow-2 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(192,57,43,.30), transparent 70%); bottom: -170px; left: -120px; }
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; }
.hero h1 { color: #fff; margin-bottom: 1.2rem; }
.lead { font-size: 1.15rem; color: #d6e0ee; margin-bottom: 1.8rem; max-width: 520px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust { display: flex; gap: 1.4rem; flex-wrap: wrap; font-size: .9rem; color: #cfe0f5; }
.hero-trust span { display: inline-flex; align-items: center; gap: .4rem; }
.ico-check { width: 16px; height: 16px; color: #6fb1ff; flex-shrink: 0; }

.hero-card { background: #fff; color: var(--text); border-radius: 16px; padding: 1.9rem; box-shadow: var(--shadow-lg); }
.hero-card h3 { margin-bottom: 1rem; font-size: 1.3rem; }
.hero-card form { display: flex; flex-direction: column; gap: .8rem; }
.hero-card input, .hero-card select, .hero-card textarea {
  padding: .85rem; border: 1px solid var(--border); border-radius: 8px; font-size: .95rem; font-family: inherit;
}
.hero-card input:focus, .hero-card select:focus, .hero-card textarea:focus { outline: 2px solid var(--blue); border-color: transparent; }
.form-note { font-size: .78rem; color: var(--muted); text-align: center; }

/* Trust bar */
.trustbar { background: var(--navy); padding: 2.6rem 0; }
.trustbar-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.trust-item { display: flex; flex-direction: column; align-items: center; }
.trust-icon {
  width: 56px; height: 56px; border-radius: 14px; background: rgba(192,57,43,.16);
  display: flex; align-items: center; justify-content: center; margin-bottom: .9rem;
}
.trust-icon svg { width: 26px; height: 26px; color: #ff8a7a; }
.trust-item strong { color: #fff; font-size: 1rem; }
.trust-item span { color: #9fb0c6; font-size: .85rem; }

/* Sections */
.section { padding: 5rem 0; }
.section-alt { background: var(--cream); }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 2rem; transition: transform .15s, box-shadow .15s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 56px; height: 56px; margin-bottom: 1.2rem; border-radius: 14px;
  background: var(--blue-light); display: flex; align-items: center; justify-content: center;
}
.card-icon svg { width: 28px; height: 28px; color: var(--blue); }
.card h3 { margin-bottom: .6rem; font-size: 1.3rem; }
.card p { color: var(--muted); }
.card-link { display: inline-block; margin-top: 1rem; color: var(--red); font-weight: 700; }
.card-link:hover { color: var(--red-dark); }

/* Reviews */
.card.review { position: relative; }
.quote-mark { font-size: 3.4rem; line-height: 1; color: var(--peach); font-family: Georgia, serif; margin-bottom: .3rem; }
.card.review .stars { color: #f5a623; margin: .8rem 0 .6rem; letter-spacing: 3px; }
.card.review strong { display: block; color: var(--navy); }
.card.review > span { color: var(--muted); font-size: .88rem; }

/* Steps / How It Works */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 3.5rem; position: relative; }
.step { text-align: center; padding: 0 .5rem; }
.step-badge {
  width: 74px; height: 74px; border-radius: 50%; background: var(--red);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem;
  position: relative; box-shadow: 0 10px 24px rgba(192,57,43,.28);
}
.step-badge svg { width: 32px; height: 32px; color: #fff; }
.step-num {
  position: absolute; top: -6px; right: -6px; background: #fff; color: var(--red);
  width: 26px; height: 26px; border-radius: 50%; font-size: .72rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow);
}
.step h4 { font-size: 1.15rem; margin-bottom: .5rem; }
.step p { color: var(--muted); font-size: .95rem; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: 20px; padding: 2.6rem; color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.cta-band h3 { color: #fff; font-size: 1.7rem; margin-bottom: .4rem; }
.cta-band p { color: #ccd8e8; max-width: 560px; }

/* About */
.about-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.checklist { list-style: none; margin: 1.4rem 0; }
.checklist li { padding: .4rem 0 .4rem 1.9rem; position: relative; }
.checklist li::before { content: ""; position: absolute; left: 0; top: .72rem; width: 12px; height: 12px; border-radius: 50%; background: var(--blue); }
.about-highlight {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  color: #fff; border-radius: 18px; padding: 2.6rem; box-shadow: var(--shadow-lg);
}
.about-highlight h3 { color: #fff; margin-bottom: 1rem; }
.about-highlight p { font-size: 1.25rem; font-style: italic; margin-bottom: 1rem; }
.about-highlight span { color: #cfe0f5; font-weight: 600; }

/* Region cards (homepage service areas) */
.region-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-bottom: 1.5rem; }
.region-card {
  display: block; background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 2.2rem 2rem; text-align: center; transition: transform .15s, box-shadow .15s, border-color .15s;
}
.region-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.region-icon {
  width: 58px; height: 58px; border-radius: 14px; background: var(--blue-light);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.1rem;
}
.region-icon svg { width: 28px; height: 28px; color: var(--blue); }
.region-card h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.region-card p { color: var(--muted); margin-bottom: 1rem; }
.region-card .choose-link { color: var(--red); font-weight: 700; }
.region-card:hover .choose-link { color: var(--red-dark); }

/* Areas */
.areas-region { margin-bottom: 2rem; }
.areas-region h3 { text-align: center; color: var(--red); margin-bottom: 1rem; font-size: 1.3rem; }
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.areas-grid span {
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: .8rem; text-align: center; font-weight: 600; color: var(--navy);
}
.areas-note { color: var(--muted); margin-top: 1rem; }

/* Contact */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-list { list-style: none; margin-top: 1.4rem; }
.contact-list li { padding: .7rem 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: .7rem; }
.contact-list-center { max-width: 620px; margin: 0 auto; }
.schedule-form-wrap { max-width: 640px; margin: 0 auto; }
.schedule-form { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 2rem; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: .9rem; }
.schedule-form input, .schedule-form select, .schedule-form textarea { padding: .85rem; border: 1px solid var(--border); border-radius: 8px; font-size: .95rem; font-family: inherit; width: 100%; }
.schedule-form input:focus, .schedule-form select:focus, .schedule-form textarea:focus { outline: 2px solid var(--blue); border-color: transparent; }
.sf-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
@media (max-width: 560px) { .sf-row { grid-template-columns: 1fr; } }

/* Review form */
.review-form { max-width: 640px; margin: 0 auto; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 2rem; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 1rem; }
.review-form input, .review-form textarea { padding: .85rem; border: 1px solid var(--border); border-radius: 8px; font-size: .95rem; font-family: inherit; width: 100%; }
.review-form input:focus, .review-form textarea:focus { outline: 2px solid var(--blue); border-color: transparent; }
.rating-block { display: flex; align-items: center; gap: 1rem; }
.rating-caption { font-weight: 700; color: var(--navy); }
.star-rating { display: inline-flex; flex-direction: row-reverse; }
.star-rating input { display: none; }
.star-rating label { font-size: 2rem; color: #d5dbe3; cursor: pointer; transition: color .15s; padding: 0 .05rem; }
.star-rating label:hover, .star-rating label:hover ~ label { color: #f5a623; }
.star-rating input:checked ~ label { color: #f5a623; }
.calendly-inline-widget { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); background: #fff; }
.ico-c { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; }
.contact-inner textarea { font-family: inherit; }

/* Footer */
.footer { background: var(--navy); color: #c3d0e0; padding: 3.5rem 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand img { height: 46px; width: auto; background: #fff; padding: 8px 14px; border-radius: 8px; margin-bottom: 1rem; }
.footer-name { display: block; color: #fff; font-weight: 800; font-size: 1.15rem; letter-spacing: .3px; margin-bottom: .6rem; }
.footer-slogan { display: block; color: var(--peach); font-weight: 700; font-size: .95rem; letter-spacing: .3px; margin-bottom: .9rem; }
.footer-col h4 { color: #fff; margin-bottom: 1rem; font-size: 1rem; }
.footer-col a, .footer-col span { display: block; color: #c3d0e0; padding: .25rem 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.8rem; padding: 1.3rem 0; font-size: .85rem; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-disclosure { color: #fff; font-weight: 700; }

/* Clickable region headers */
.area-link { display: inline-flex; align-items: center; gap: .6rem; color: var(--red); }
.area-link:hover { color: var(--red-dark); }
.area-link span { font-size: .8rem; font-weight: 700; color: var(--blue); background: var(--blue-light); padding: .25rem .7rem; border-radius: 999px; }
.area-link:hover span { background: var(--blue); color: #fff; }

/* Breadcrumb */
.crumb { background: #fff; border-bottom: 1px solid var(--border); font-size: .85rem; color: var(--muted); }
.crumb .container { padding: .9rem 0; }
.crumb a { color: var(--blue); }
.crumb span { color: var(--navy); font-weight: 600; }

/* Location page layout */
.loc-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.loc-copy p { color: var(--muted); margin-bottom: 1rem; }
.loc-media { position: sticky; top: 90px; }
.map-card { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.map-card iframe { width: 100%; height: 340px; border: 0; display: block; }
.loc-photo { margin-top: 1.2rem; aspect-ratio: 16 / 9; }

.areas-grid-wide { max-width: 900px; margin: 0 auto; }

/* CTA strip */
.cta-strip { background: linear-gradient(135deg, var(--red) 0%, #8a1f16 100%); color: #fff; padding: 3.8rem 0; }
.cta-strip h2 { color: #fff; }
.cta-strip p { margin: .6rem 0 1.8rem; font-size: 1.1rem; opacity: .95; }
.cta-strip .btn-light {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; color: var(--red); font-weight: 800; font-size: 1rem;
  padding: 1rem 2.2rem; border-radius: 999px; border: 0;
  box-shadow: 0 12px 26px rgba(0,0,0,.22); letter-spacing: .2px;
}
.cta-strip .btn-light::after { content: "→"; font-weight: 700; transition: transform .15s ease; }
.cta-strip .btn-light:hover { background: #fff; color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(0,0,0,.28); }
.cta-strip .btn-light:hover::after { transform: translateX(4px); }

/* Photo placeholder (shared) */
.photo-placeholder {
  background: var(--cream); border: 2px dashed #d5dbe3; border-radius: 18px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .7rem; color: #aab4c0; text-align: center;
}
.photo-placeholder svg { width: 52px; height: 52px; }
.photo-placeholder span { font-size: .88rem; font-weight: 600; letter-spacing: .3px; }

/* Button + heading variants for Products page */
.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: #fff; }
.accent-light { color: #ff8a7a; }
.hero-short { padding: 4rem 0 4.5rem; }
.hero-photo {
  background:
    linear-gradient(135deg, rgba(13,35,64,.82) 0%, rgba(18,48,90,.78) 55%, rgba(28,74,134,.72) 100%),
    var(--hero-img) center/cover no-repeat;
}
.center-lead { margin-left: auto; margin-right: auto; }
.center-actions { justify-content: center; }

/* System chooser */
.chooser { background: var(--cream); padding: 3rem 0; border-bottom: 1px solid var(--border); }
.chooser-title { margin-bottom: 1.8rem; }
.chooser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.choose-card {
  display: block; background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 2rem; transition: transform .15s, box-shadow .15s, border-color .15s;
}
.choose-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.choose-eyebrow {
  display: inline-block; background: var(--peach); color: var(--red);
  text-transform: uppercase; letter-spacing: 1.5px; font-weight: 800; font-size: .72rem;
  padding: .4rem 1rem; border-radius: 999px; margin-bottom: 1rem;
}
.choose-card h3 { font-size: 1.45rem; margin-bottom: .6rem; }
.choose-card p { color: var(--muted); margin-bottom: 1rem; }
.choose-link { color: var(--red); font-weight: 700; }
.choose-card:hover .choose-link { color: var(--red-dark); }

/* Homepage system cards (image + body) */
.system-card {
  display: block; background: #fff; border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; transition: transform .15s, box-shadow .15s, border-color .15s;
}
.system-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.system-img { background: #fff; display: flex; align-items: center; justify-content: center; padding: 1.6rem; border-bottom: 1px solid var(--border); }
.system-img img { max-height: 230px; width: auto; max-width: 100%; }
.system-body { padding: 1.8rem; }
.system-body h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.system-body p { color: var(--muted); margin-bottom: 1rem; }
.system-card:hover .choose-link { color: var(--red-dark); }

/* Smooth-scroll to product anchors, offset for sticky header */
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 90px; }

/* Filter bar */
.filterbar { border-bottom: 1px solid var(--border); background: #fff; }
.filterbar-inner { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; padding: 1.4rem 0; }
.filter-pill {
  border: 1px solid var(--border); border-radius: 999px; padding: .55rem 1.3rem;
  font-weight: 600; color: var(--navy); font-size: .9rem; background: #fff;
}

/* Featured product */
.featured { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 3.5rem; }
.featured-media { text-align: center; }
.featured-media img { width: 100%; max-width: 460px; border-radius: 16px; background: #fff; border: 1px solid var(--border); padding: 1.5rem; }
.media-note { font-size: .8rem; color: #9aa4b0; margin-top: .6rem; font-style: italic; }
.featured-copy h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.stage-list { list-style: none; counter-reset: stage; margin-bottom: 1.4rem; }
.stage-list li { position: relative; padding: .55rem 0 .55rem 3rem; color: var(--muted); border-bottom: 1px solid var(--border); }
.stage-list li strong { color: var(--navy); }
.stage-list li::before {
  counter-increment: stage; content: counter(stage);
  position: absolute; left: 0; top: .5rem; width: 30px; height: 30px; border-radius: 50%;
  background: var(--blue-light); color: var(--blue); font-weight: 800; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
}
.diagram-figure { text-align: center; margin-top: 2.5rem; }
.diagram-figure img { width: 100%; max-width: 640px; border-radius: 16px; background: #fff; border: 1px solid var(--border); padding: 1rem; }
.diagram-figure figcaption { color: var(--muted); font-size: .9rem; margin-top: .8rem; }
.finishes { text-align: center; }
.finishes h3 { margin-bottom: 1.2rem; }
.finishes-img { width: 100%; max-width: 620px; border-radius: 16px; }
.finishes-names { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem; }
.finishes-names span { background: var(--cream); border: 1px solid var(--border); border-radius: 999px; padding: .45rem 1.1rem; font-weight: 600; color: var(--navy); font-size: .9rem; }

/* Product grid */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-bottom: 2rem; }
.product-item {
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 2rem;
  display: flex; flex-direction: column; transition: transform .15s, box-shadow .15s;
}
.product-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-item h2 { font-size: 1.5rem; margin-bottom: .8rem; }
.product-item p { color: var(--muted); margin-bottom: 1rem; }
.product-note { font-size: .88rem; color: #8a96a3; }
.product-item .btn { margin-top: auto; align-self: flex-start; }

.catalog-disclaimer { text-align: center; max-width: 820px; margin: 1rem auto 0; color: #9aa4b0; font-size: .85rem; }

/* 4-column footer */
.footer-4 { grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; }

/* Responsive */
@media (max-width: 960px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .featured { grid-template-columns: 1fr; gap: 2rem; }
  .chooser-grid { grid-template-columns: 1fr; }
  .region-grid { grid-template-columns: 1fr; }
  .footer-4 { grid-template-columns: 1fr 1fr; }
  .loc-inner { grid-template-columns: 1fr; }
  .loc-media { position: static; top: auto; }
  .area-link { flex-direction: column; align-items: flex-start; gap: .4rem; }
  h1, .hero h1 { font-size: 2.3rem; }
  h2 { font-size: 2rem; }
  .hero-inner, .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .trustbar-inner, .steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; text-align: center; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); flex-direction: column; gap: 0; padding: 1rem 5%; box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: .7rem 0; border-bottom: 1px solid var(--border); }
  .nav-cta { display: none; }
  .hamburger { display: block; margin-left: auto; }
  .topbar-inner span { display: none; }
}
@media (max-width: 560px) {
  .cards, .trustbar-inner, .steps, .areas-grid, .footer-inner, .product-grid, .footer-4 { grid-template-columns: 1fr; }
}

/* Promo bar + summer sale section */
.promobar { background: #f26522; color: #fff; font-size: .92rem; }
.promobar-inner { display: flex; align-items: center; justify-content: center; gap: 1rem; padding: .6rem 2.2rem; position: relative; flex-wrap: wrap; }
.promobar p { margin: 0; }
.promobar-cta { background: #fff; color: #c0392b; font-weight: 800; padding: .35rem 1rem; border-radius: 999px; font-size: .85rem; white-space: nowrap; }
.promobar-cta:hover { background: #fff4ef; }
.promobar-close { position: absolute; right: .4rem; top: 50%; transform: translateY(-50%); background: none; border: 0; color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer; padding: 0 .4rem; opacity: .85; }
.promobar-close:hover { opacity: 1; }

.promo-wrap { display: grid; grid-template-columns: 0.85fr 1fr; gap: 3rem; align-items: center; }
.promo-art img { width: 100%; border-radius: 16px; box-shadow: var(--shadow-lg); display: block; }
.promo-copy h2 { font-size: 2.4rem; margin: .6rem 0 .9rem; }
.promo-price { color: var(--red); }
.promo-list { list-style: none; margin: 1.4rem 0 1.8rem; }
.promo-list li { display: flex; align-items: flex-start; gap: .7rem; padding: .4rem 0; color: var(--text); }
.promo-list svg { width: 20px; height: 20px; color: var(--red); flex: 0 0 auto; margin-top: 3px; }
.promo-fine { color: var(--muted); font-size: .85rem; margin-top: 1rem; }
@media (max-width: 860px) {
  .promo-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .promo-art { max-width: 420px; margin: 0 auto; }
  .promo-copy h2 { font-size: 1.9rem; }
}

/* Market picker for booking */
.market-picker { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.8rem; }
.market-btn {
  background: #fff; border: 2px solid var(--border); color: var(--navy);
  font-weight: 700; font-size: .95rem; padding: .7rem 1.5rem; border-radius: 999px;
  cursor: pointer; transition: border-color .15s, background .15s, color .15s;
}
.market-btn:hover { border-color: var(--blue); }
.market-btn.is-active { background: var(--red); border-color: var(--red); color: #fff; }
.market-note { text-align: center; color: var(--muted); font-size: .9rem; margin-bottom: 1.4rem; }

/* Zip code routing */
.zip-form { max-width: 470px; margin: 0 auto 1.6rem; text-align: center; }
.zip-form label { display: block; font-weight: 700; color: var(--navy); margin-bottom: .7rem; }
.zip-row { display: flex; gap: .6rem; justify-content: center; }
.zip-row input {
  flex: 1; min-width: 0; padding: .85rem 1.1rem; border: 2px solid var(--border);
  border-radius: 999px; font-size: 1rem; font-family: inherit; color: var(--text);
}
.zip-row input:focus { outline: none; border-color: var(--blue); }
.zip-row .btn { white-space: nowrap; }
.zip-status { margin-top: .8rem; font-size: .92rem; min-height: 1.2em; }
.zip-status.is-found { color: var(--muted); }
.zip-status.is-error { color: var(--red); }
.zip-status a { color: var(--red); font-weight: 700; text-decoration: underline; }
.form-note.is-error { color: var(--red); font-weight: 600; }
.form-note.is-error a { color: var(--red); text-decoration: underline; }
