:root {
  color-scheme: light;
  --ink: #191919;
  --muted: #5d6168;
  --paper: #f7f3ec;
  --surface: #ffffff;
  --line: #ded7cc;
  --red: #b42222;
  --red-dark: #7d1717;
  --gold: #f0b429;
  --charcoal: #25282d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  background: rgba(25, 25, 25, 0.94);
  border-bottom: 4px solid var(--gold);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
}

.badge {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--red-dark);
  background: var(--gold);
  border: 3px solid #fff;
  font-size: 0.8rem;
  font-weight: 900;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: 0.95rem;
}

nav a {
  color: #fff;
  text-decoration: none;
}

nav a:hover {
  color: var(--gold);
}

.hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(56px, 9vw, 112px) clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(25, 25, 25, 0.9), rgba(25, 25, 25, 0.7), rgba(125, 23, 23, 0.78)),
    url("https://images.unsplash.com/photo-1508440767412-59ce0b206bbc?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 7vw, 5.6rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.hero p {
  max-width: 640px;
  color: #f3ede4;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 2px solid transparent;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: #1b1306;
  background: var(--gold);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.incident-panel {
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border-top: 6px solid var(--red);
}

.incident-panel h2 {
  font-size: 1.45rem;
}

dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-weight: 700;
}

dd {
  margin: 0;
  font-weight: 900;
  text-align: right;
}

.section {
  padding: clamp(50px, 8vw, 90px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.safety-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: clamp(42px, 7vw, 72px) clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--red-dark);
}

.safety-band p:last-child {
  margin: 0;
  color: #f6e8d3;
  font-size: 1.15rem;
}

.contact-section {
  background: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
}

.large {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.18rem;
}

address {
  padding: 24px;
  background: var(--charcoal);
  color: #fff;
  font-style: normal;
}

address a {
  color: var(--gold);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: #fff;
  background: #151515;
}

footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .hero,
  .safety-band,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
  }
}
