:root {
  --ink: #132025;
  --muted: #5a6970;
  --line: #d8e0e3;
  --panel: #f4f7f8;
  --steel: #24404c;
  --steel-dark: #0f2027;
  --safety: #e9b44c;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
}

a {
  color: inherit;
}

.test-banner {
  background: #fff2c9;
  color: #5f4300;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.65rem 1rem;
  text-align: center;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  position: sticky;
  top: 0;
  z-index: 5;
}

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

.brand-mark {
  align-items: center;
  background: var(--steel);
  border-radius: 7px;
  color: white;
  display: inline-flex;
  height: 2.4rem;
  justify-content: center;
  width: 2.4rem;
}

nav {
  display: flex;
  gap: clamp(0.75rem, 3vw, 2rem);
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  min-height: calc(100vh - 8rem);
  padding: clamp(2rem, 6vw, 6rem) clamp(1rem, 4vw, 4rem);
}

.eyebrow {
  color: #8a640f;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(2.35rem, 5vw, 5.35rem);
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 1.3rem;
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  letter-spacing: 0;
  line-height: 1.05;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  max-width: 62ch;
}

.actions,
.button {
  align-items: center;
  display: flex;
}

.actions {
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  border-radius: 7px;
  font-weight: 900;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.1rem;
  text-decoration: none;
}

.primary {
  background: var(--safety);
  color: #221600;
}

.secondary {
  border: 1px solid var(--line);
  color: var(--steel);
}

.hero-visual svg {
  display: block;
  height: auto;
  max-width: 100%;
}

.quick-contact {
  background: var(--steel-dark);
  color: white;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.quick-contact div {
  background: var(--steel);
  padding: 1.35rem clamp(1rem, 4vw, 4rem);
}

.quick-contact span {
  color: #c9d7dc;
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.quick-contact strong {
  font-size: 1.05rem;
}

.section,
.contact,
.emergency {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 4rem);
}

.section-heading {
  max-width: 860px;
}

.service-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 2rem;
}

.service-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 190px;
  padding: 1.25rem;
}

.service-grid p,
.contact p,
.payment-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.emergency {
  align-items: start;
  background: #eef3f5;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
}

.emergency ul {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.emergency li {
  background: white;
  border-left: 5px solid var(--safety);
  border-radius: 6px;
  font-weight: 800;
  padding: 1rem;
}

.contact {
  align-items: start;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) 360px;
}

.contact-card {
  background: var(--steel-dark);
  border-radius: 8px;
  color: white;
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
}

.contact-card a {
  font-size: 1.25rem;
  font-weight: 900;
  text-decoration: none;
}

.contact-card p,
.contact-card small {
  color: #d7e4e8;
}

footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  padding: 1.5rem clamp(1rem, 4vw, 4rem);
}

.payment-shell {
  align-items: center;
  background: linear-gradient(135deg, #eef3f5, #ffffff);
  display: flex;
  min-height: 100vh;
  padding: 1rem;
}

.payment-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(15, 32, 39, 0.12);
  margin: auto;
  max-width: 620px;
  padding: clamp(1.5rem, 5vw, 3rem);
}

.payment-panel h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  max-width: 14ch;
}

.price {
  color: var(--steel);
  font-size: 2.4rem;
  font-weight: 950;
  margin: 1.5rem 0;
}

.wide {
  margin-top: 0.75rem;
  width: 100%;
}

.fine-print {
  font-size: 0.86rem;
  margin-top: 1.5rem;
}

@media (max-width: 980px) {
  .hero,
  .emergency,
  .contact {
    grid-template-columns: 1fr;
  }

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

  h1 {
    max-width: 13ch;
  }
}

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

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

  nav {
    flex-wrap: wrap;
  }

  .contact-card {
    width: 100%;
  }
}
