/* ==========================================================================
   Right Now NJ — styles.css
   Brand: Plumbing / Heating / Cooling. Northern New Jersey.
   Palette derived from the Right Now logo.
   No sticky header. Mobile-first. Modern, human, non-templated.
   ========================================================================== */

:root {
  /* Brand palette (from logo) */
  --brand:        #0079c2;   /* logo blue */
  --brand-dark:   #0a2540;   /* deep navy */
  --brand-deep:   #063a63;   /* mid navy for gradients */
  --brand-light:  #e6f3fb;   /* pale blue wash */
  --heat:         #e8431f;   /* heating red-orange */
  --heat-dark:    #c2360f;
  --cool:         #1e9de6;   /* cooling accent */
  --ink:          #14202e;   /* body text */
  --ink-soft:     #46586b;   /* secondary text */
  --line:         #dbe4ec;   /* hairlines */
  --bg:           #ffffff;
  --bg-alt:       #f4f8fb;   /* section alt */
  --bg-navy:      #071b2f;   /* dark sections + footer */
  --white:        #ffffff;
  --gold:         #f4a91f;   /* stars / accents */

  --radius:       14px;
  --radius-sm:    9px;
  --radius-lg:    22px;
  --shadow:       0 10px 30px -12px rgba(6, 37, 64, .28);
  --shadow-lg:    0 24px 60px -20px rgba(6, 37, 64, .4);
  --shadow-sm:    0 4px 14px -6px rgba(6, 37, 64, .25);
  --maxw:         1180px;
  --gap:          clamp(1rem, 3vw, 2rem);

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

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

/* Global icon sizing guard: every inline SVG defaults to a small, text-relative
   size so no icon can ever render at full default dimensions. Context-specific
   rules below override this where a different size is needed. */
svg { width: 1.15em; height: 1.15em; flex: 0 0 auto; vertical-align: middle; }
.eyebrow::before { width: 26px; height: 3px; }  /* keep the eyebrow bar shape */


a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--brand-dark);
  line-height: 1.05;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: .3px;
}
h1 { font-size: clamp(2.1rem, 5.5vw, 3.6rem); text-transform: uppercase; }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); text-transform: uppercase; }
h3 { font-size: clamp(1.25rem, 2.6vw, 1.6rem); }
p { margin: 0 0 1.1em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .6rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 3px;
  background: var(--heat);
  display: inline-block;
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.05rem;
  padding: .85rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--heat); color: #fff; box-shadow: 0 8px 20px -8px rgba(232,67,31,.6); }
.btn-primary:hover { background: var(--heat-dark); color:#fff; }
.btn-blue { background: var(--brand); color:#fff; box-shadow: 0 8px 20px -8px rgba(0,121,194,.6); }
.btn-blue:hover { background: var(--brand-deep); color:#fff; }
.btn-ghost { background: transparent; color: var(--brand-dark); border-color: var(--brand); }
.btn-ghost:hover { background: var(--brand); color:#fff; }
.btn-white { background:#fff; color: var(--brand-dark); }
.btn-white:hover { background: var(--brand-light); }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.15rem; }
.btn svg { width: 1.1em; height: 1.1em; }

/* Inline text-link icons (e.g. "Learn more →") */
.more svg, .crumbs svg, .prose a svg { width: 1em; height: 1em; }

/* Review stars — small, inline, gold */
.review-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: .6rem; display: inline-flex; gap: 2px; }
.review-stars svg { width: 18px; height: 18px; }

/* Header phone icon */
.header-phone svg { width: 20px; height: 20px; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--brand-dark);
  color: #cfe1f0;
  font-size: .85rem;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-top: .5rem; padding-bottom: .5rem; flex-wrap: wrap;
}
.topbar a { color: #fff; font-weight: 600; }
.topbar .tb-left { display:flex; gap:1.3rem; flex-wrap: wrap; align-items:center; }
.topbar .tb-item { display:inline-flex; align-items:center; gap:.4rem; white-space:nowrap; }
.topbar .tb-right a { white-space:nowrap; }
.topbar .tb-badge { color: var(--gold); font-weight:600; }

/* ---------- Header (NOT sticky) ---------- */
.site-header {
  position: relative;   /* explicitly not sticky/fixed */
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-top: .7rem; padding-bottom: .7rem;
}
.logo-link { display:inline-flex; align-items:center; }
.logo-link img { height: 96px; width: auto; }
.header-cta { display:flex; align-items:center; gap:.8rem; }
.header-phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--brand-dark);
  letter-spacing: .5px;
  display:inline-flex; align-items:center; gap:.5rem;
}
.header-phone small { display:block; font-family: var(--font-body); font-size:.7rem; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; color: var(--heat); }
.header-phone:hover { text-decoration:none; }

/* ---------- Primary nav ---------- */
.nav-wrap { background: var(--brand); }
.mainnav { position: relative; }
.mainnav .container { display:flex; align-items:center; }
.nav-toggle {
  display:none; background:transparent; border:0; color:#fff; cursor:pointer;
  font-family: var(--font-display); text-transform:uppercase; letter-spacing:1px;
  font-size:1.1rem; padding:.9rem 0; align-items:center; gap:.6rem;
}
.nav-toggle svg { width:26px; height:26px; }
.navlist { display:flex; flex-wrap:wrap; list-style:none; margin:0; padding:0; gap:0; }
.navlist > li { position: relative; }
.navlist > li > a {
  display:block; color:#fff; font-family: var(--font-display); text-transform:uppercase;
  font-weight:600; letter-spacing:.7px; font-size:1.05rem; padding: 1rem 1.05rem;
}
.navlist > li > a:hover { background: rgba(255,255,255,.14); text-decoration:none; }
.has-sub > a::after { content:"▾"; font-size:.7rem; margin-left:.35rem; opacity:.85; }
.submenu {
  list-style:none; margin:0; padding:.4rem 0; position:absolute; top:100%; left:0;
  background:#fff; min-width: 260px; box-shadow: var(--shadow); border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  border-top: 3px solid var(--heat); opacity:0; visibility:hidden; transform: translateY(8px);
  transition: all .18s ease; z-index: 40;
}
.navlist > li:hover .submenu { opacity:1; visibility:visible; transform: translateY(0); }
.submenu a { display:block; color: var(--brand-dark); padding:.6rem 1.2rem; font-weight:500; font-size:.95rem; }
.submenu a:hover { background: var(--brand-light); text-decoration:none; color: var(--brand); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(120deg, rgba(7,27,47,.94) 0%, rgba(6,58,99,.86) 45%, rgba(0,121,194,.72) 100%),
    radial-gradient(circle at 80% 20%, rgba(30,157,230,.5), transparent 55%);
  background-color: var(--brand-dark);
  color:#fff;
  overflow:hidden;
}
.hero::after {
  content:""; position:absolute; inset:0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 46px);
  pointer-events:none;
}

/* Hero with a real job-site photo behind the gradient. The photo sits in a
   ::before layer; the .hero gradient background stays on top as a readable
   overlay so white text always has enough contrast (WCAG-friendly). */
.hero--photo::before {
  content:""; position:absolute; inset:0; z-index:0;
  background-image: var(--hero-bg);
  background-size: cover; background-position: center;
  opacity:.28;
}
.hero--photo {
  background:
    linear-gradient(120deg, rgba(7,27,47,.90) 0%, rgba(6,58,99,.78) 45%, rgba(0,121,194,.55) 100%),
    var(--brand-dark);
}

/* Content photo (job-site images on service hub pages) */
.content-photo { margin: 0 0 1.6rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.content-photo img { width: 100%; height: auto; display: block; }
.content-photo figcaption {
  background: var(--brand-dark); color: #cfe1f0; font-size: .82rem;
  padding: .6rem .9rem; text-align: center;
}
.hero .container { position:relative; z-index:2; padding-top: clamp(2.5rem, 7vw, 5rem); padding-bottom: clamp(2.5rem, 7vw, 5rem); }
.hero-grid { display:grid; grid-template-columns: 1.3fr .9fr; gap: clamp(1.5rem,4vw,3rem); align-items:center; }
.hero h1 { color:#fff; }
.hero h1 .accent { color: var(--cool); }
.hero .lede { font-size: 1.2rem; color:#d6e6f2; max-width: 40ch; }
.hero-badges { display:flex; flex-wrap:wrap; gap:.6rem; margin: 1.4rem 0 1.8rem; }
.hero-badge {
  display:inline-flex; align-items:center; gap:.45rem;
  background: rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2);
  padding:.45rem .85rem; border-radius: 999px; font-size:.85rem; font-weight:600;
}
.hero-badge svg { width:16px; height:16px; color: var(--cool); }
.hero-actions { display:flex; flex-wrap:wrap; gap:.9rem; }

/* Hero side card / quick form */
.hero-card {
  background:#fff; color: var(--ink); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 1.6rem; border-top: 6px solid var(--heat);
}
.hero-card h3 { color: var(--brand-dark); margin-bottom:.2rem; }
.hero-card p.sub { color: var(--ink-soft); font-size:.9rem; margin-bottom:1rem; }

/* ---------- Forms ---------- */
.form-field { margin-bottom: .8rem; }
.form-field label { display:block; font-weight:600; font-size:.85rem; margin-bottom:.3rem; color: var(--brand-dark); }
.form-field input, .form-field select, .form-field textarea {
  width:100%; padding:.75rem .85rem; border:1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size:1rem; background:#fff; color: var(--ink); transition: border .15s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline:none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(0,121,194,.15);
}
.form-field textarea { min-height: 90px; resize: vertical; }
.form-note { font-size:.75rem; color: var(--ink-soft); margin-top:.5rem; }
.form-success {
  display:none; background: #e7f7ec; border:1.5px solid #8fd6a6; color:#1c7a3d;
  padding:1rem 1.1rem; border-radius: var(--radius-sm); font-weight:600; margin-top:.5rem;
}
.form-success.show { display:block; animation: pop .3s ease; }
@keyframes pop { from { transform: scale(.96); opacity:0; } to { transform: scale(1); opacity:1; } }

/* ---------- Sections ---------- */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-alt { background: var(--bg-alt); }
.section-navy { background: var(--bg-navy); color:#dbe9f5; }
.section-navy h2, .section-navy h3 { color:#fff; }
.section-head { max-width: 60ch; margin-bottom: 2.2rem; }
.section-head.center { margin-left:auto; margin-right:auto; text-align:center; }
.lead { font-size: 1.15rem; color: var(--ink-soft); }

/* ---------- Service cards grid ---------- */
.grid { display:grid; gap: 1.3rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.svc-card {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; transition: transform .18s, box-shadow .18s, border-color .18s;
  position: relative; overflow:hidden;
}
.svc-card::before {
  content:""; position:absolute; left:0; top:0; height:4px; width:100%;
  background: linear-gradient(90deg, var(--brand), var(--cool)); transform: scaleX(0);
  transform-origin:left; transition: transform .25s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-ico {
  width:54px; height:54px; border-radius: 12px; display:grid; place-items:center;
  background: var(--brand-light); color: var(--brand); margin-bottom:1rem;
}
.svc-ico svg { width:28px; height:28px; }
.svc-card h3 { margin-bottom:.4rem; }
.svc-card p { font-size:.95rem; color: var(--ink-soft); margin-bottom:.9rem; }
.svc-card .more { font-family: var(--font-display); text-transform:uppercase; font-weight:600; font-size:.9rem; letter-spacing:.5px; color: var(--heat); }

/* ---------- Feature / trust strip ---------- */
.trust-strip { background: var(--brand-dark); color:#fff; }
.trust-strip .grid { gap: 1.5rem; }
.trust-item { display:flex; gap:.9rem; align-items:flex-start; }
.trust-item .ti-ico { flex:0 0 auto; width:44px; height:44px; border-radius:10px; background: rgba(255,255,255,.1); display:grid; place-items:center; color: var(--cool); }
.trust-item .ti-ico svg { width:22px; height:22px; }
.trust-item h4 { color:#fff; font-size:1.15rem; margin-bottom:.2rem; }
.trust-item p { color:#c4d7e8; font-size:.9rem; margin:0; }

/* ---------- Process steps ---------- */
.steps { counter-reset: step; display:grid; gap:1.2rem; }
.step {
  display:grid; grid-template-columns: auto 1fr; gap:1.1rem; align-items:start;
  background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding:1.3rem 1.4rem;
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-size:1.8rem; font-weight:700; color: var(--brand);
  background: var(--brand-light); width:56px; height:56px; border-radius:12px; display:grid; place-items:center;
}
.step h4 { margin-bottom:.25rem; font-size:1.25rem; }
.step p { margin:0; color: var(--ink-soft); font-size:.95rem; }

/* ---------- Problems list ---------- */
.checklist { list-style:none; margin:0; padding:0; display:grid; gap:.7rem; }
.checklist li { display:flex; gap:.7rem; align-items:flex-start; font-size:1rem; }
.checklist li::before {
  content:""; flex:0 0 auto; width:22px; height:22px; margin-top:2px; border-radius:50%;
  background: var(--heat) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat;
}

/* ---------- FAQ ---------- */
.faq { border-top:1px solid var(--line); }
.faq details { border-bottom:1px solid var(--line); padding: .3rem 0; }
.faq summary {
  cursor:pointer; list-style:none; padding:1.1rem .2rem; font-family: var(--font-display);
  font-size:1.25rem; font-weight:600; color: var(--brand-dark); display:flex; justify-content:space-between; gap:1rem; align-items:center;
}
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:"+"; font-size:1.6rem; color: var(--brand); font-weight:400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 .2rem 1.1rem; color: var(--ink-soft); margin:0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--heat) 0%, var(--heat-dark) 100%);
  color:#fff; text-align:center;
}
.cta-band h2 { color:#fff; }
.cta-band p { color: #ffe6de; max-width: 55ch; margin-left:auto; margin-right:auto; }
.cta-band .hero-actions { justify-content:center; }
.cta-band .btn-white { color: var(--heat-dark); }

/* ---------- Area / city links ---------- */
.area-cols { columns: 4 200px; column-gap: 1.5rem; }
.area-cols a { display:block; padding:.3rem 0; font-size:.92rem; color: var(--brand-dark); }
.area-cols a:hover { color: var(--heat); }
.county-block { margin-bottom: 2rem; }
.county-block h3 { border-bottom: 2px solid var(--brand-light); padding-bottom:.4rem; margin-bottom:.8rem; }

.chip-row { display:flex; flex-wrap:wrap; gap:.5rem; }
.chip {
  display:inline-block; background:#fff; border:1px solid var(--line); border-radius:999px;
  padding:.4rem .9rem; font-size:.85rem; font-weight:600; color: var(--brand-dark);
}
.chip:hover { border-color: var(--brand); color: var(--brand); text-decoration:none; }

/* ---------- Breadcrumb ---------- */
.crumbs { font-size:.82rem; color: var(--ink-soft); padding: .9rem 0; }
.crumbs a { color: var(--brand); }
.crumbs span { margin:0 .4rem; opacity:.5; }

/* ---------- Content prose ---------- */
.prose h2 { margin-top: 1.8rem; }
.prose h3 { margin-top: 1.4rem; color: var(--brand); }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom:.4rem; }
.prose .inline-cta {
  background: var(--brand-light); border-left: 4px solid var(--brand);
  padding: 1rem 1.2rem; border-radius: var(--radius-sm); margin: 1.5rem 0; font-weight:500;
}

/* ---------- Two-column layout ---------- */
.layout-2 { display:grid; grid-template-columns: 1fr 340px; gap: 2.5rem; align-items:start; }
.sidebar-card {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  padding:1.4rem; box-shadow: var(--shadow-sm); margin-bottom:1.4rem;
}
.sidebar-card.accent { background: var(--brand-dark); color:#fff; border:0; }
.sidebar-card.accent h3 { color:#fff; }
.sidebar-card.accent p { color:#c4d7e8; }
.sidebar-card h3 { font-size:1.3rem; margin-bottom:.7rem; }

/* ---------- Blog cards ---------- */
.post-card {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius); overflow:hidden;
  transition: transform .18s, box-shadow .18s; display:flex; flex-direction:column;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card .pc-top { height:8px; background: linear-gradient(90deg, var(--brand), var(--heat)); }
.post-card .pc-body { padding:1.4rem; display:flex; flex-direction:column; gap:.6rem; flex:1; }
.post-card .pc-cat { font-family: var(--font-display); text-transform:uppercase; letter-spacing:1px; font-size:.75rem; color: var(--heat); font-weight:600; }
.post-card h3 { font-size:1.3rem; margin:0; }
.post-card p { font-size:.92rem; color: var(--ink-soft); margin:0; flex:1; }
.post-card .more { color: var(--brand); font-weight:600; font-size:.9rem; margin-top:.4rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-navy); color:#a9c2d8; font-size:.92rem; }
.footer-top { padding: clamp(2.5rem,5vw,4rem) 0 2.5rem; }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
.footer-logo { background: #fff; padding: 1rem 1.2rem; border-radius: var(--radius); display:inline-block; margin-bottom:1rem; }
.footer-logo img { height: 96px; width:auto; }
.site-footer h4 { color:#fff; font-size:1.15rem; text-transform:uppercase; letter-spacing:1px; margin-bottom:1rem; }
.site-footer ul { list-style:none; margin:0; padding:0; }
.site-footer ul li { margin-bottom:.5rem; }
.site-footer a { color:#a9c2d8; }
.site-footer a:hover { color:#fff; }
.footer-contact li { display:flex; gap:.6rem; align-items:flex-start; margin-bottom:.8rem; }
.footer-contact svg { width:18px; height:18px; color: var(--cool); flex:0 0 auto; margin-top:3px; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); padding:1.3rem 0; font-size:.82rem; }
.footer-bottom .container { display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; }

/* ---------- Floating call button ---------- */
.float-call {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  background: var(--heat); color:#fff; border-radius: 999px; padding: .9rem 1.3rem;
  font-family: var(--font-display); font-weight:700; text-transform:uppercase; letter-spacing:.5px;
  font-size:1.05rem; box-shadow: var(--shadow-lg); display:inline-flex; align-items:center; gap:.55rem;
  animation: floatpulse 2.4s ease-in-out infinite;
}
.float-call:hover { text-decoration:none; color:#fff; background: var(--heat-dark); }
.float-call svg { width:20px; height:20px; }
@keyframes floatpulse { 0%,100%{ box-shadow: 0 12px 34px -12px rgba(232,67,31,.9);} 50%{ box-shadow: 0 12px 44px -6px rgba(232,67,31,1);} }

/* ---------- Popup modal ---------- */
.popup-overlay {
  position: fixed; inset:0; background: rgba(7,27,47,.72); backdrop-filter: blur(3px);
  display:none; align-items:center; justify-content:center; z-index: 120; padding: 1rem;
  animation: fadeIn .25s ease;
}
.popup-overlay.show { display:flex; }
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }
.popup {
  background:#fff; border-radius: var(--radius-lg); max-width: 480px; width:100%;
  box-shadow: var(--shadow-lg); overflow:hidden; position:relative; animation: slideUp .3s ease;
}
@keyframes slideUp { from{ transform: translateY(24px); opacity:0;} to{ transform: translateY(0); opacity:1;} }
.popup-head { background: linear-gradient(120deg, var(--brand-dark), var(--brand)); color:#fff; padding:1.5rem 1.6rem; }
.popup-head h3 { color:#fff; margin-bottom:.25rem; font-size:1.7rem; }
.popup-head p { margin:0; color:#d6e6f2; font-size:.95rem; }
.popup-body { padding: 1.4rem 1.6rem 1.7rem; }
.popup-close {
  position:absolute; top:12px; right:14px; background: rgba(255,255,255,.2); border:0; color:#fff;
  width:34px; height:34px; border-radius:50%; font-size:1.3rem; cursor:pointer; line-height:1; z-index:2;
}
.popup-close:hover { background: rgba(255,255,255,.35); }
.popup .urgent { display:inline-flex; align-items:center; gap:.4rem; background: var(--heat); color:#fff; font-family:var(--font-display); text-transform:uppercase; letter-spacing:1px; font-size:.75rem; font-weight:600; padding:.3rem .7rem; border-radius:999px; margin-bottom:.6rem; }

/* ---------- Stat row ---------- */
.stats { display:grid; grid-template-columns: repeat(4,1fr); gap:1rem; }
.stat { text-align:center; }
.stat .num { font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem); font-weight:700; color: var(--brand); line-height:1; }
.stat .lbl { font-size:.85rem; color: var(--ink-soft); text-transform:uppercase; letter-spacing:1px; font-weight:600; }
.section-navy .stat .num { color: var(--cool); }
.section-navy .stat .lbl { color:#9fb8cd; }

/* ---------- Reviews ---------- */
.review-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding:1.5rem; }
.review-card .review-stars { margin-bottom:.6rem; }
.review-card p { font-style:italic; color: var(--ink); }
.review-card .rev-name { font-weight:700; color: var(--brand-dark); font-style:normal; margin:0; }
.review-card .rev-loc { font-size:.82rem; color: var(--ink-soft); font-style:normal; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 460px; }
  .layout-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .area-cols { columns: 2 160px; }

  .nav-toggle { display:inline-flex; margin-left:auto; }
  .navlist {
    display:none; position:absolute; top:100%; left:0; right:0; flex-direction:column;
    background: var(--brand); box-shadow: var(--shadow); z-index:50; padding:.4rem 0;
  }
  .mainnav.open .navlist { display:flex; }
  .navlist > li > a { padding:.85rem 1.3rem; border-bottom:1px solid rgba(255,255,255,.08); }
  .has-sub > a::after { float:right; }
  .submenu {
    position:static; opacity:1; visibility:visible; transform:none; box-shadow:none;
    background: rgba(0,0,0,.15); border-top:0; border-radius:0; display:none; padding:0;
  }
  .submenu a { color:#eaf3fa; padding:.6rem 2.2rem; }
  .submenu a:hover { background: rgba(255,255,255,.1); color:#fff; }
  .mainnav li.sub-open .submenu { display:block; }
}
@media (max-width: 560px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .area-cols { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-bottom .container { flex-direction: column; gap: .5rem; text-align: center; }
  .header-cta .header-phone small { display:none; }
  .logo-link img { height: 60px; }
  .topbar .tb-left { gap:.8rem; font-size:.78rem; }
  .topbar .tb-right { display:none; }
  .topbar .tb-item span:not(.tb-badge) { display:none; }
  .topbar .tb-badge { display:inline; }
  .float-call span { display:none; }
  .float-call { padding: .9rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 3px;
}
