:root {
  --navy: #06182f;
  --navy-2: #0b2445;
  --navy-3: #102f57;
  --yellow: #ffd338;
  --yellow-2: #efb900;
  --white: #ffffff;
  --paper: #eef3f8;
  --ink: #102033;
  --muted: #9fb0c3;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--white);
  background: var(--navy);
  font-family: "Inter", Arial, sans-serif;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(6, 24, 47, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 8px;
}

.nav-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--white);
}

.site-nav {
  position: absolute;
  top: 66px;
  left: 14px;
  right: 14px;
  display: none;
  flex-direction: column;
  padding: 10px;
  background: #0b2445;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.site-nav.is-open { display: flex; }

.site-nav a {
  padding: 12px;
  color: rgba(255, 255, 255, 0.82);
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a:hover { background: rgba(255, 255, 255, 0.08); color: var(--white); }

.header-emergency {
  display: none;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 8px;
  font-weight: 900;
}

.hero {
  min-height: 100svh;
  padding: 92px 16px 24px;
  background:
    linear-gradient(90deg, rgba(6, 24, 47, 1), rgba(6, 24, 47, 0.9)),
    var(--navy);
}

.hero-grid {
  width: min(1240px, 100%);
  min-height: calc(100svh - 118px);
  margin: 0 auto;
  display: grid;
  gap: 22px;
  align-items: center;
}

.hero-copy-block {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 10vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(2.05rem, 6.5vw, 3.7rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  color: var(--white);
  line-height: 1.15;
}

.hero-copy,
.section-heading p:not(.eyebrow),
.estimator-copy p,
.callback-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-copy {
  max-width: 620px;
  font-size: 1.08rem;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.primary-button,
.secondary-button,
.alert-button,
.submit-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 900;
}

.primary-button,
.submit-button {
  color: var(--navy);
  background: var(--yellow);
}

.primary-button:hover,
.submit-button:hover,
.header-emergency:hover {
  background: var(--yellow-2);
}

.secondary-button {
  color: var(--white);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.alert-button {
  color: var(--white);
  background: #e23d31;
  box-shadow: 0 16px 32px rgba(226, 61, 49, 0.28);
}

.quick-alert {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  max-width: 560px;
  padding: 16px;
  background: rgba(255, 211, 56, 0.1);
  border: 1px solid rgba(255, 211, 56, 0.28);
  border-radius: 8px;
}

.quick-alert > span {
  display: grid;
  height: 42px;
  place-items: center;
  background: rgba(255, 211, 56, 0.18);
  border-radius: 8px;
}

.quick-alert p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.hero-visual {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 24, 47, 0), rgba(6, 24, 47, 0.34));
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  object-position: 58% center;
}

.job-panel {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  width: min(420px, calc(100% - 28px));
  padding: 14px 16px;
  color: var(--navy);
  background: rgba(255, 211, 56, 0.96);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.job-panel span {
  color: rgba(6, 24, 47, 0.68);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.job-panel strong {
  display: block;
  margin-top: 4px;
  font-size: 1.05rem;
}

.section,
.why-section,
.callback-section,
.map-section {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading.left { margin-inline: 0; text-align: left; }

.services-section,
.references-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-grid,
.why-grid,
.before-after-grid,
 .review-grid {
  display: grid;
  gap: 14px;
}

.service-card,
.why-grid article,
.before-after-card,
.review-grid article,
.quote-form {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-card {
  min-height: 228px;
  padding: 22px;
}

.service-card > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 28px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 8px;
  font-size: 1.25rem;
}

.service-card h3,
.before-after-card h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
}

.service-card p,
.before-after-card p {
  color: var(--muted);
  line-height: 1.58;
}

.simple-work-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.simple-work-list span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 800;
}

.why-section {
  display: grid;
  gap: 26px;
}

.why-grid article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 4px 12px;
  padding: 18px;
}

.why-grid span {
  grid-row: span 2;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  background: rgba(255, 211, 56, 0.15);
  border-radius: 8px;
}

.why-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.before-after-card {
  padding: 14px;
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.ba {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  background: var(--navy-2);
  border-radius: 8px;
}

.ba img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.ba span {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 7px 10px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 900;
}

.callback-section {
  width: min(1240px, calc(100% - 24px));
  display: grid;
  gap: 22px;
  margin-block: 26px;
  padding: 22px;
  background: var(--yellow);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.callback-section .eyebrow {
  color: #765800;
}

.callback-copy h2,
.callback-copy p {
  color: var(--navy);
}

.callback-copy p {
  max-width: 620px;
  opacity: 0.78;
}

.callback-copy .alert-button {
  margin-top: 14px;
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: var(--navy);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  outline: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 211, 56, 0.16);
}

.quote-form ::placeholder { color: rgba(255, 255, 255, 0.5); }
.quote-form option { color: var(--ink); }

.map-section {
  display: grid;
  gap: 18px;
  padding-top: 42px;
}

.map-lead {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.65;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.area-list span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 900;
}

.area-list span:first-child {
  color: var(--navy);
  background: var(--yellow);
  border-color: var(--yellow);
}

.map-section iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.floating-call {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
  font-weight: 900;
}

.site-footer {
  display: grid;
  gap: 8px;
  padding: 28px 20px 90px;
  color: var(--muted);
  background: #041326;
  text-align: center;
}

.site-footer strong { color: var(--white); }

@media (min-width: 760px) {
  .nav-toggle { display: none; }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .header-emergency { display: inline-flex; }
  .hero-actions { display: flex; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .before-after-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(3, 1fr); }

  .map-section {
    grid-template-columns: minmax(0, 0.82fr) minmax(380px, 1fr);
    align-items: start;
  }

  .callback-section {
    grid-template-columns: minmax(0, 0.86fr) minmax(390px, 1fr);
    align-items: center;
    padding: 28px;
  }
}

@media (min-width: 1080px) {
  .site-header { padding-inline: 32px; }
  .hero { padding: 108px 32px 34px; }

  .hero-grid {
    grid-template-columns: minmax(390px, 0.76fr) minmax(620px, 1.24fr);
    gap: 34px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 660px;
  }

  .service-grid { grid-template-columns: repeat(4, 1fr); }
  .why-section { grid-template-columns: 0.85fr 1.15fr; align-items: center; }
  .floating-call { display: none; }
  .site-footer { padding-bottom: 28px; }
}
