:root {
  --navy: #071833;
  --navy-2: #102a52;
  --red: #c8161d;
  --red-2: #ef2b32;
  --ink: #0c1628;
  --muted: #586579;
  --line: #d9e1ed;
  --surface: #ffffff;
  --soft: #f4f7fb;
  --silver: #eef2f7;
  --shadow: 0 22px 58px rgba(7, 24, 51, 0.16);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.55;
  padding-bottom: 0;
}

body,
button,
input,
textarea {
  font: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.96);
  border-top: 4px solid var(--red);
  border-bottom: 1px solid rgba(7, 24, 51, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--navy);
  font-weight: 1000;
  text-transform: uppercase;
}

.brand img {
  width: 62px;
  height: 62px;
  border-radius: 6px;
  object-fit: contain;
}

.brand span {
  font-size: clamp(1rem, 2vw, 1.35rem);
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
}

.site-nav a:not(.nav-phone) {
  border-bottom: 3px solid transparent;
}

.site-nav a:not(.nav-phone):hover,
.site-nav a:not(.nav-phone):focus-visible {
  border-bottom-color: var(--red);
}

.nav-phone {
  padding: 0 14px;
  color: white;
  background: var(--navy);
  border-radius: 6px;
}

.language-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, 42px);
  align-items: center;
  padding: 3px;
  background: var(--silver);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.language-toggle button {
  min-height: 34px;
  border: 0;
  border-radius: 4px;
  color: var(--navy);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 1000;
  cursor: pointer;
}

.language-toggle button[aria-pressed="true"] {
  color: white;
  background: var(--red);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px auto;
  border-radius: 10px;
  background: var(--navy);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  min-height: clamp(540px, 74svh, 760px);
  padding: clamp(52px, 7vw, 90px) clamp(20px, 6vw, 72px);
  overflow: hidden;
  color: white;
  background:
    linear-gradient(115deg, rgba(7, 24, 51, 0.98) 0%, rgba(7, 24, 51, 0.92) 46%, rgba(200, 22, 29, 0.92) 100%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.18), transparent 34%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  content: "";
  background: repeating-linear-gradient(90deg, white 0 58px, var(--red) 58px 92px, var(--navy) 92px 130px);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red-2);
  font-size: 0.82rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: white;
}

.hero h1 {
  display: grid;
  gap: 10px;
  margin: 0;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 span {
  font-size: clamp(3rem, 7vw, 6.4rem);
}

.hero h1 strong {
  color: #ffffff;
  font-size: clamp(1.9rem, 4.2vw, 4rem);
  text-shadow: 0 4px 0 rgba(200, 22, 29, 0.88);
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 750;
}

.hero-actions,
.trust-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  font-weight: 1000;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: white;
  background: var(--red);
  box-shadow: 0 16px 30px rgba(200, 22, 29, 0.3);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-2);
}

.button-secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.78);
}

.trust-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  min-height: 34px;
  padding: 7px 11px;
  color: var(--navy);
  background: white;
  border-left: 4px solid var(--red);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.hero-mark {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: min(500px, 100%);
}

.hero-mark img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 28px 46px rgba(0, 0, 0, 0.28));
}

.services-section,
.process-section,
.area-section,
.estimate-section {
  padding: clamp(54px, 7vw, 94px) clamp(20px, 6vw, 72px);
}

.section-heading {
  width: min(860px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

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

.section-heading h2,
.area-copy h2,
.estimate-intro h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading p:not(.eyebrow),
.area-copy p,
.estimate-intro p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  font-weight: 650;
}

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

.service-card,
.process-card {
  min-width: 0;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(7, 24, 51, 0.07);
}

.service-card svg {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  fill: var(--red);
}

.service-card h3,
.process-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-card p,
.process-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 620;
}

.service-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.process-section {
  background: var(--soft);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-card {
  position: relative;
  min-height: 230px;
  padding-top: 74px;
}

.process-card span {
  position: absolute;
  top: 22px;
  left: 24px;
  color: var(--red);
  font-size: 2rem;
  font-weight: 1000;
  line-height: 1;
}

.area-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: center;
  gap: clamp(24px, 6vw, 78px);
}

.area-facts {
  display: grid;
  gap: 14px;
  margin: 0;
}

.area-facts div {
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--red);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 30px rgba(7, 24, 51, 0.08);
}

.area-facts dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.area-facts dd {
  margin: 4px 0 0;
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 1000;
}

.estimate-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  color: white;
  background: var(--navy);
}

.estimate-intro h2,
.estimate-intro p {
  color: white;
}

.contact-strip {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-strip a {
  display: grid;
  gap: 3px;
  min-height: 78px;
  padding: 16px;
  color: white;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.contact-strip span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.contact-strip strong {
  font-size: 1.12rem;
}

.lead-form {
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.lead-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.lead-form label.full,
.form-submit,
.form-status {
  grid-column: 1 / -1;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
  text-transform: none;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200, 22, 29, 0.14);
}

.file-field small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: none;
}

.form-submit {
  width: 100%;
  margin-top: 18px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--navy);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 30px clamp(20px, 6vw, 72px);
  color: white;
  background: #061226;
}

.site-footer img {
  width: 74px;
  height: 74px;
  border-radius: 6px;
  object-fit: contain;
  background: white;
}

.site-footer p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.mobile-actions {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 -12px 32px rgba(7, 24, 51, 0.2);
}

.mobile-actions a {
  display: grid;
  min-height: 58px;
  place-items: center;
  color: white;
  background: var(--navy);
  font-size: 0.86rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.mobile-actions a:first-child {
  background: var(--red);
}

@media (max-width: 1180px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body {
    padding-bottom: 58px;
  }

  .site-header {
    min-height: 78px;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px 20px 20px;
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 36px rgba(7, 24, 51, 0.12);
  }

  .site-nav[data-open] {
    display: grid;
  }

  .site-nav a {
    min-height: 48px;
  }

  .nav-phone {
    justify-content: center;
    margin: 8px 0;
  }

  .language-toggle {
    width: 120px;
  }

  .hero,
  .area-section,
  .estimate-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-mark {
    width: min(320px, 78vw);
  }

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

  .process-card {
    min-height: 190px;
  }

  .mobile-actions {
    display: grid;
  }
}

@media (max-width: 560px) {
  .brand span {
    max-width: 150px;
    line-height: 1.05;
  }

  .hero h1 span {
    font-size: clamp(2.55rem, 16vw, 4rem);
  }

  .hero h1 strong {
    font-size: clamp(1.55rem, 10vw, 2.8rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    align-items: flex-start;
  }
}
