:root {
  --red: #b4232a;
  --red-dark: #8f1a20;
  --ink: #16181d;
  --ink-soft: #2a2e36;
  --text: #23262c;
  --text-soft: #5b6270;
  --line: #e3e7ee;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
h1, h2, h3 { line-height: 1.2; margin: 0 0 14px; }

.shell { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* Header — fixed so it never detaches from the top while scrolling. */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
body { padding-top: 74px; }
.header-inner { display: flex; align-items: center; gap: 26px; min-height: 74px; }
.brand img { display: block; }
.site-nav { display: flex; align-items: center; gap: 22px; margin-left: auto; font-weight: 600; }
.site-nav a:hover, .site-nav .active { color: var(--red); }
.nav-dropdown { position: relative; }
.nav-dropdown > button {
  font: inherit; font-weight: 600; border: 0; background: none; cursor: pointer; padding: 0; color: inherit;
}
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  display: none; min-width: 220px; padding: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 18px 40px rgba(22, 24, 29, 0.12);
}
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { display: grid; }
.nav-dropdown-menu a { padding: 8px 12px; border-radius: 8px; }
.nav-dropdown-menu a:hover { background: var(--bg-soft); color: var(--red); }
.button-call {
  padding: 11px 18px; border-radius: 999px; background: var(--red); color: #fff; font-weight: 700; white-space: nowrap;
}
.button-call:hover { background: var(--red-dark); }
.nav-burger { display: none; font-size: 1.4rem; border: 0; background: none; cursor: pointer; }

/* Buttons */
.button-primary, .button-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 24px; border-radius: 10px; font-weight: 700;
}
.button-primary { background: var(--red); color: #fff; }
.button-primary:hover { background: var(--red-dark); }
.button-ghost { border: 1.5px solid currentColor; }
.button-ghost:hover { color: var(--red); }
.block { width: 100%; margin-top: 10px; }

/* Hero */
.hero {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(180, 35, 42, 0.4), transparent 60%),
    linear-gradient(160deg, rgba(22, 24, 29, 0.9) 0%, rgba(42, 46, 54, 0.86) 100%),
    url("/img/hero-firefighter.jpg") center / cover no-repeat;
  color: #fff;
}

/* Hero quote form */
.hero-form { display: grid; gap: 10px; margin-top: 14px; }
.hero-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hero-form input, .hero-form select, .hero-form textarea {
  font: inherit; width: 100%; padding: 11px 12px; border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.94); color: var(--text);
}
.hero-form input::placeholder, .hero-form textarea::placeholder { color: var(--text-soft); }
.hero-inner { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 48px; padding-block: 84px; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.8rem; font-weight: 800; color: #f0a9ad; margin: 0 0 12px; }
.hero h1 { font-size: clamp(1.9rem, 4vw, 3rem); }
.hero-sub { color: rgba(255, 255, 255, 0.82); font-size: 1.08rem; margin: 0 0 26px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-cta-center { justify-content: center; }
.button-xl { padding: 16px 40px; font-size: 1.08rem; }
.hero .button-ghost { color: #fff; }
.hero-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px; padding: 28px; backdrop-filter: blur(6px);
}
.hero-panel h2 { font-size: 1.3rem; }
.hero-panel p { color: rgba(255, 255, 255, 0.78); }

/* Highlights */
.highlights { background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.highlight-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; padding-block: 40px; }
.highlight-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px; }
.highlight-card h3 { font-size: 0.98rem; margin-bottom: 6px; }
.highlight-card p { margin: 0; color: var(--text-soft); font-size: 0.9rem; }

/* Services */
.services-section { padding-block: 72px; }
.services-section h2, .reviews h2 { text-align: center; font-size: 2rem; margin-bottom: 34px; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-card {
  display: grid; gap: 8px; align-content: start;
  border: 1px solid var(--line); border-radius: 16px; padding: 24px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(22, 24, 29, 0.1); border-color: color-mix(in srgb, var(--red) 40%, var(--line)); }
.service-card { padding: 0 0 20px; overflow: hidden; }
.service-card h3, .service-card p, .service-card .learn-more { padding-inline: 22px; }
.service-thumb { width: 100%; height: 165px; object-fit: cover; display: block; margin-bottom: 12px; }
.service-card h3 { margin: 0; }
.service-card p { margin: 0; color: var(--text-soft); font-size: 0.95rem; }
.learn-more { color: var(--red); font-weight: 700; font-size: 0.92rem; }

/* Reviews */
.reviews { background: var(--bg-soft); padding-block: 72px; border-block: 1px solid var(--line); }
.review-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.review-card { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 20px; }
.review-card blockquote { margin: 0 0 10px; font-size: 0.95rem; }
.review-card figcaption { color: var(--text-soft); font-weight: 700; font-size: 0.88rem; }

/* News */
.news-section { padding-block: 72px; }
.news-section h2 { text-align: center; font-size: 2rem; margin-bottom: 34px; }
.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.news-card {
  display: grid; overflow: hidden; border: 1px solid var(--line); border-radius: 16px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.news-card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(22, 24, 29, 0.1); }
.news-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.news-body { padding: 18px 20px 20px; }
.news-date { color: var(--text-soft); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.news-card h3 { font-size: 1.05rem; margin: 6px 0 0; }

/* Service page photo */
.page-photo { width: 100%; max-height: 340px; object-fit: cover; border-radius: 16px; margin-bottom: 24px; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--red) 0%, var(--red-dark) 100%); color: #fff; }
.cta-inner { text-align: center; padding-block: 60px; }
.cta-band h2 { font-size: 1.8rem; }
.cta-band p { color: rgba(255, 255, 255, 0.85); margin: 0 0 22px; }
.cta-band .cta-actions { justify-content: center; }
.cta-band .button-primary { background: #fff; color: var(--red); }
.cta-band .button-ghost { color: #fff; }

/* Inner pages */
.page-hero {
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: #fff; padding-block: 56px;
}
.page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 0; }
.page-hero .hero-sub { margin: 10px 0 0; }
.prose-section { padding-block: 56px; }
.prose { max-width: 820px; }
.prose .lead { font-size: 1.12rem; }
.prose h2 { margin-top: 34px; font-size: 1.45rem; }
.prose ul { padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.fact-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin: 26px 0; }
.fact-card { background: var(--bg-soft); border: 1px solid var(--line); border-left: 4px solid var(--red); border-radius: 12px; padding: 18px; }
.fact-card h3 { font-size: 1rem; margin-bottom: 6px; }
.fact-card p { margin: 0; color: var(--text-soft); font-size: 0.95rem; }
.team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin: 34px 0 10px; max-width: 860px; }
.team-card { width: 100%; border-radius: 14px; border: 1px solid var(--line); background: #fff; }
.about-locations { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 28px; }
.about-locations div { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 18px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: 36px; }
.contact-cards { display: grid; gap: 14px; align-content: start; }
.contact-card { border: 1px solid var(--line); border-radius: 12px; padding: 18px; }
.contact-card h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-card p { margin: 0; }
.contact-card a { color: var(--red); font-weight: 700; }
.contact-form { display: grid; gap: 14px; border: 1px solid var(--line); border-radius: 16px; padding: 26px; }
.contact-form label { display: grid; gap: 6px; font-weight: 700; font-size: 0.92rem; }
.contact-form input, .contact-form select, .contact-form textarea {
  font: inherit; padding: 11px 12px; border: 1px solid var(--line); border-radius: 8px; width: 100%;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 2px solid color-mix(in srgb, var(--red) 45%, transparent); }
.form-note { margin: 0; color: var(--text-soft); font-size: 0.85rem; font-weight: 400; }

/* Footer */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.82); margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; padding-block: 52px 30px; }
.site-footer h3 { color: #fff; font-size: 1rem; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-logo { background: #fff; border-radius: 10px; padding: 8px; }
.copyright { text-align: center; padding: 18px; margin: 0; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; }

/* Responsive */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; padding-block: 56px; }
  .team-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .highlight-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .site-nav {
    position: absolute; top: 74px; left: 0; right: 0;
    display: none; flex-direction: column; align-items: flex-start; gap: 4px;
    background: #fff; border-bottom: 1px solid var(--line); padding: 14px 20px 18px;
  }
  .site-nav.open { display: flex; }
  .site-nav a, .nav-dropdown > button { padding: 8px 0; }
  .nav-dropdown-menu { position: static; transform: none; display: grid; border: 0; box-shadow: none; padding: 0 0 0 14px; }
  .nav-burger { display: block; margin-left: auto; }
  .button-call { display: none; }
  .highlight-grid, .service-grid, .review-grid, .fact-cards, .about-locations, .footer-grid, .news-grid, .hero-form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
