:root {
  --blue: #1e5fbf;
  --blue-deep: #143f84;
  --blue-soft: #e8f1fb;
  --blue-mid: #4a86d4;
  --ink: #142033;
  --muted: #5a6b82;
  --line: #d7e2ef;
  --white: #ffffff;
  --page: #f7fafc;
  --card: #ffffff;
  --water: #2f8fd6;
  --fire: #3d6eb5;
  --mould: #3a8f7a;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(20, 63, 132, 0.10);
  --shadow-sm: 0 8px 24px rgba(20, 63, 132, 0.08);
  --font: "DM Sans", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(30, 95, 191, 0.08), transparent 55%),
    radial-gradient(700px 380px at 100% 8%, rgba(74, 134, 212, 0.07), transparent 50%),
    var(--page);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 {
  line-height: 1.15; margin: 0 0 0.55em;
  font-weight: 700; letter-spacing: -0.03em; color: var(--ink);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.12rem; }
p { margin: 0 0 1rem; color: var(--muted); }
ul { margin: 0; padding: 0; list-style: none; }

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

.urgency-bar {
  display: flex; align-items: center; justify-content: center; gap: 0.65rem;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue) 45%, var(--blue-deep));
  color: #fff;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.55rem 1rem;
  text-align: center;
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #9fd0ff;
  box-shadow: 0 0 0 0 rgba(159, 208, 255, 0.7);
  animation: pulse 1.8s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(159, 208, 255, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(159, 208, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(159, 208, 255, 0); }
}

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

.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; gap: 1.25rem;
  min-height: 76px;
}
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-mark {
  display: grid; place-items: center;
  flex-shrink: 0;
}
.brand-logo {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: #f0f0f0;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--line), var(--shadow-sm);
}
.brand-footer .brand-logo { width: 38px; height: 38px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 1.05rem; color: var(--blue-deep); }
.brand-text span {
  font-size: 0.68rem; color: var(--muted);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.nav {
  display: none; gap: 1.35rem; margin-left: auto;
  color: var(--muted); font-size: 0.95rem; font-weight: 500;
}
.nav a:hover { color: var(--blue); }
.header-cta { margin-left: auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 0.72rem 1.25rem;
  font-weight: 700; font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(180deg, var(--blue-mid), var(--blue));
  color: #fff;
  box-shadow: 0 10px 28px rgba(30, 95, 191, 0.28);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #5b94db, var(--blue-deep));
}
.btn-ghost {
  border-color: var(--line);
  color: var(--blue-deep);
  background: var(--white);
}
.btn-ghost:hover { border-color: var(--blue-mid); background: var(--blue-soft); }
.btn-lg { padding: 1rem 1.5rem; font-size: 1.02rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 0.85rem;
  color: var(--blue); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.eyebrow.light { color: #cfe3ff; }
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 95, 191, 0.2);
}

.hero { padding: 3.6rem 0 2.4rem; }
.hero-grid {
  display: grid; gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}
.lede { font-size: 1.12rem; max-width: 36rem; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0 1rem; }
.hero-note {
  font-size: 0.92rem; color: var(--muted);
  border-left: 3px solid var(--blue-mid); padding-left: 0.85rem;
  background: var(--blue-soft);
  padding: 0.75rem 0.85rem 0.75rem 1rem;
  border-radius: 0 12px 12px 0;
}
.hero-note strong { color: var(--blue-deep); }

.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.4rem 1.35rem;
  box-shadow: var(--shadow);
}
.hero-card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
}
.hero-card h2 { font-size: 0.95rem; color: var(--muted); font-weight: 600; margin: 0; }
.badge-hot {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: #fff; background: var(--blue);
  padding: 0.28rem 0.55rem; border-radius: 999px;
}
.priority-list { display: grid; gap: 1rem; }
.priority-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.priority-list strong { display: block; color: var(--ink); margin-bottom: 0.15rem; }
.priority-list span:last-child { color: var(--muted); font-size: 0.92rem; }
.icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: var(--blue-soft); position: relative;
  border: 1px solid var(--line);
}
.icon::after {
  content: ""; position: absolute; inset: 11px;
  border-radius: 999px;
}
.icon.fire::after { background: var(--fire); box-shadow: 0 0 14px rgba(61, 110, 181, 0.35); }
.icon.water::after { background: var(--water); box-shadow: 0 0 14px rgba(47, 143, 214, 0.35); }
.icon.mould::after { background: var(--mould); box-shadow: 0 0 14px rgba(58, 143, 122, 0.3); }

.trust-strip {
  display: grid; gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
  padding: 0.85rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.trust-strip li {
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  background: var(--blue-soft);
}
.trust-strip strong {
  display: block; color: var(--blue-deep); font-size: 0.98rem; margin-bottom: 0.15rem;
}
.trust-strip span { color: var(--muted); font-size: 0.84rem; }

.section { padding: 4rem 0; }
.section-alt {
  background: var(--white);
  border-block: 1px solid var(--line);
}
.section-head { max-width: 40rem; margin-bottom: 2rem; }

.cards {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
  border-top: 3px solid var(--blue);
  box-shadow: var(--shadow-sm);
}
.card-tag {
  display: inline-block; margin-bottom: 0.7rem;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.28rem 0.55rem; border-radius: 999px;
}
.fire-tag { background: #e8eef8; color: var(--fire); }
.water-tag { background: #e5f3fb; color: var(--water); }
.mould-tag { background: #e6f4ef; color: var(--mould); }
.card p { font-size: 0.98rem; }
.card ul { margin-top: 1rem; display: grid; gap: 0.45rem; }
.card li {
  color: var(--ink); font-size: 0.92rem;
  padding-left: 1rem; position: relative;
}
.card li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue);
}

.steps { display: grid; gap: 1.1rem; }
.steps li {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem;
  align-items: start;
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.step-num {
  width: 2.2rem; height: 2.2rem; border-radius: 999px;
  display: grid; place-items: center;
  background: var(--blue-soft); color: var(--blue); font-weight: 800;
}

.why-grid { display: grid; gap: 1.5rem; }
.why-list { display: grid; gap: 0.9rem; }
.why-list li {
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--muted);
  box-shadow: var(--shadow-sm);
}
.why-list strong { color: var(--blue-deep); }

.cta-band {
  padding: 3.5rem 0;
  background:
    linear-gradient(135deg, var(--blue-deep), var(--blue) 55%, #3d7fd0);
  border-top: 1px solid var(--line);
  color: #fff;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); }
.cta-inner { display: grid; gap: 1.5rem; }
.cta-contacts { display: grid; gap: 0.75rem; }
.contact-pill {
  display: flex; flex-direction: column; gap: 0.2rem;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
}
.contact-pill span {
  font-size: 0.78rem; color: rgba(255,255,255,0.75);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.contact-pill strong { font-size: 1.15rem; color: #fff; }

.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.footer-inner { display: grid; gap: 0.85rem; }
.fine { font-size: 0.85rem; margin: 0; }
.kvh-quiet { color: #8a9bb0; font-weight: 400; }

.text-link {
  display: inline-block; margin-top: 0.85rem;
  color: var(--blue); font-weight: 700; font-size: 0.92rem;
}
.text-link:hover { color: var(--blue-deep); }

.detail-grid { display: grid; gap: 1.75rem; }
.detail-blocks { display: grid; gap: 1rem; }
.panel {
  padding: 1.25rem 1.2rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.panel h3 { margin-bottom: 0.75rem; color: var(--blue-deep); }
.tip-panel {
  border-color: #b9d2ef;
  background: var(--blue-soft);
}
.check-list, .num-list { display: grid; gap: 0.55rem; }
.check-list li, .num-list li {
  color: var(--muted); font-size: 0.95rem;
  padding-left: 1.1rem; position: relative;
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--blue);
}
.num-list { list-style: none; padding: 0; }
.num-list li { padding-left: 0; }
.num-list strong { color: var(--ink); }

.audience-row {
  display: grid; gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
}
.audience-row li {
  text-align: center; font-weight: 700; color: var(--blue-deep);
  padding: 1rem; border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 760px) {
  .nav { display: flex; }
  .header-cta { margin-left: 0; }
  .hero-grid { grid-template-columns: 1.2fr 0.8fr; gap: 2.5rem; align-items: center; }
  .trust-strip { grid-template-columns: repeat(4, 1fr); }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; gap: 2rem; }
  .cta-inner { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
  .detail-grid { grid-template-columns: 0.85fr 1.15fr; align-items: start; gap: 2.5rem; }
  .audience-row { grid-template-columns: repeat(4, 1fr); }
}


.nav a.active { color: var(--blue); font-weight: 700; }
.footer-grid {
  display: grid; gap: 1.5rem; margin-bottom: 1.5rem;
}
.footer-heading { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--blue-deep); margin-bottom: 0.6rem; }
.footer-links { display: grid; gap: 0.4rem; }
.footer-links a { color: var(--muted); font-size: 0.95rem; }
.footer-links a:hover { color: var(--blue); }
.page-hero { padding: 2.8rem 0 1.5rem; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 0.4rem; font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--blue); }
.answer-box {
  background: var(--blue-soft); border: 1px solid #b9d2ef; border-radius: var(--radius);
  padding: 1.1rem 1.2rem; margin: 1rem 0 1.5rem;
}
.answer-box strong { color: var(--blue-deep); display: block; margin-bottom: 0.35rem; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; }
.faq details {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 0.95rem 1.1rem; margin-bottom: 0.65rem; box-shadow: var(--shadow-sm);
}
.faq summary { cursor: pointer; font-weight: 700; color: var(--blue-deep); }
.faq details p { margin: 0.7rem 0 0; }
.area-grid, .post-grid {
  display: grid; gap: 1rem; grid-template-columns: 1fr;
}
.area-card, .post-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.2rem; box-shadow: var(--shadow-sm);
}
.area-card h3, .post-card h3 { margin-bottom: 0.4rem; }
.post-meta { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.5rem; }
.prose h2 { margin-top: 1.8rem; }
.prose li { margin: 0.35rem 0 0.35rem 1.1rem; list-style: disc; color: var(--muted); }
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .area-grid { grid-template-columns: repeat(4, 1fr); }
  .post-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Response ETA app */
.eta-app {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-top: 1.25rem;
}
.eta-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.3rem;
  box-shadow: var(--shadow-sm);
}
.eta-panel h2 { font-size: 1.05rem; color: var(--blue-deep); margin-bottom: 0.85rem; }
.eta-field { margin-bottom: 1rem; }
.eta-field label {
  display: block; font-size: 0.82rem; font-weight: 700;
  color: var(--blue-deep); margin-bottom: 0.4rem; letter-spacing: 0.02em;
}
.eta-field input, .eta-field select {
  width: 100%; padding: 0.85rem 0.95rem;
  border: 1px solid var(--line); border-radius: 12px;
  font: inherit; color: var(--ink); background: #fff;
}
.eta-field input:focus, .eta-field select:focus {
  outline: 2px solid rgba(30,95,191,0.25); border-color: var(--blue);
}
.suggest-list {
  list-style: none; margin: 0.35rem 0 0; padding: 0;
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  background: #fff; box-shadow: var(--shadow-sm);
}
.suggest-list li button {
  width: 100%; text-align: left; padding: 0.75rem 0.9rem;
  border: 0; border-bottom: 1px solid var(--line);
  background: #fff; font: inherit; color: var(--ink); cursor: pointer;
}
.suggest-list li:last-child button { border-bottom: 0; }
.suggest-list li button:hover, .suggest-list li button:focus {
  background: var(--blue-soft); outline: none;
}
.eta-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 0.25rem; }
.eta-status {
  font-size: 0.9rem; color: var(--muted); min-height: 1.3em; margin: 0.5rem 0 0;
}
.eta-result-hero {
  display: grid; gap: 0.75rem;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: #fff; border-radius: var(--radius); padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow);
}
.eta-result-hero .label { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.85; }
.eta-minutes { font-size: clamp(2.4rem, 6vw, 3.4rem); font-weight: 800; line-height: 1; }
.eta-arrival { font-size: 1.15rem; font-weight: 600; }
.eta-meta-grid {
  display: grid; gap: 0.75rem; grid-template-columns: 1fr 1fr;
  margin-top: 1rem;
}
.eta-meta {
  background: var(--blue-soft); border-radius: 12px; padding: 0.85rem 0.9rem;
  border: 1px solid #b9d2ef;
}
.eta-meta strong { display: block; color: var(--blue-deep); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.eta-meta span { color: var(--ink); font-size: 0.95rem; }
.eta-live {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; font-weight: 700; color: var(--blue);
}
.eta-disclaimer {
  font-size: 0.88rem; color: var(--muted);
  border-left: 3px solid var(--blue-mid);
  background: var(--blue-soft);
  padding: 0.85rem 1rem; border-radius: 0 12px 12px 0; margin-top: 1rem;
}
.eta-hidden { display: none !important; }
@media (min-width: 860px) {
  .eta-app { grid-template-columns: 1.05fr 0.95fr; align-items: start; }
}
