:root {
  --navy: #0b2342;
  --navy-2: #102f55;
  --orange: #f45a1b;
  --orange-2: #d94811;
  --blue: #2f6f9f;
  --ink: #111827;
  --muted: #5d6a7a;
  --line: #dbe3ec;
  --soft: #f5f7fa;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(11, 35, 66, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  z-index: 20;
  width: auto;
  height: auto;
  clip: auto;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--orange);
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.utility {
  background: var(--navy);
  color: var(--white);
  font-size: 0.86rem;
}

.utility__inner,
.nav,
.section,
.proof-section,
.estimate-section,
.trust-band,
.footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.utility__inner {
  display: flex;
  gap: 22px;
  align-items: center;
  min-height: 42px;
}

.utility__inner a {
  margin-left: auto;
  color: var(--white);
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  min-width: max-content;
}

.brand strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 44px;
  color: var(--navy);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-links a:not(.button):hover {
  color: var(--orange);
}

.nav-phone {
  color: var(--orange);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  border-radius: var(--radius);
}

.nav-toggle svg {
  width: 24px;
  margin: auto;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1;
}

.button svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.button--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(244, 90, 27, 0.25);
}

.button--primary:hover {
  background: var(--orange-2);
}

.button--outline {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
}

.button--outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 650px;
  background: linear-gradient(90deg, var(--white) 0%, var(--white) 46%, #eef3f7 46%, #eef3f7 100%);
}

.hero__copy {
  align-self: center;
  width: min(560px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - 1180px) / 2));
  padding: 78px 0;
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.55rem, 4.8vw, 4.85rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero p {
  max-width: 540px;
  margin: 26px 0 0;
  color: #35465b;
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.hero__media::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.18) 28%, transparent 54%);
  pointer-events: none;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.trust-band {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: -56px;
  overflow: hidden;
  color: var(--white);
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-band div {
  padding: 26px 24px;
  background: var(--navy);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  font-size: 1rem;
}

.trust-band span {
  margin-top: 5px;
  color: #c8d5e5;
  font-size: 0.9rem;
}

.section,
.proof-section,
.estimate-section {
  padding: 96px 0;
}

.section__header {
  max-width: 720px;
  margin-bottom: 34px;
}

.section__header h2,
.proof-copy h2,
.estimate-copy h2,
.split h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section__header p,
.proof-copy p,
.estimate-copy p,
.split p {
  color: var(--muted);
  font-size: 1.04rem;
}

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

.service-card {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  color: var(--orange);
  border: 1px solid rgba(244, 90, 27, 0.32);
  border-radius: 50%;
  font-size: 0.86rem;
  font-weight: 900;
}

.service-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.22rem;
}

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

.proof-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 40px;
  align-items: center;
  background: var(--soft);
  box-shadow: 50vw 0 0 var(--soft), -50vw 0 0 var(--soft);
}

.proof-copy {
  max-width: 430px;
}

.gallery-frame {
  margin: 0;
}

.gallery-frame img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-frame figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 42px;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #35465b;
}

.check-list li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 10px;
  height: 10px;
  color: var(--orange);
  background: var(--orange);
  border-radius: 50%;
  content: "";
}

.quote-panel {
  padding: 34px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-panel strong {
  color: #ffb08b;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.quote-panel p {
  margin-bottom: 0;
  color: var(--white);
  font-size: 1.2rem;
}

.service-areas {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  box-shadow: 50vw 0 0 #f8fafc, -50vw 0 0 #f8fafc;
}

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

.area-grid a {
  padding: 18px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
}

.area-grid a:hover {
  color: var(--orange);
  border-color: rgba(244, 90, 27, 0.36);
}

.reviews {
  padding-top: 20px;
}

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

.review-row article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.review-row strong {
  color: var(--navy);
  font-size: 1.08rem;
}

.review-row p {
  color: var(--muted);
}

.estimate-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: 0;
  align-items: stretch;
}

.estimate-copy {
  padding: 38px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius) 0 0 var(--radius);
}

.estimate-copy h2,
.estimate-copy p,
.estimate-copy a {
  color: var(--white);
}

.estimate-copy dl {
  display: grid;
  gap: 18px;
  margin: 32px 0 0;
}

.estimate-copy dt {
  color: #ffb08b;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.estimate-copy dd {
  margin: 3px 0 0;
}

.estimate-form {
  display: grid;
  gap: 18px;
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
}

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

label span,
legend {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cfd8e3;
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
}

input:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(244, 90, 27, 0.28);
  outline-offset: 3px;
}

fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

fieldset label,
.sms-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

fieldset input,
.sms-consent input {
  width: auto;
  margin-top: 5px;
}

.sms-consent span {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.sms-consent a {
  color: var(--navy);
  font-weight: 900;
  text-decoration: underline;
}

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

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin-bottom: 0;
  color: var(--muted);
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 0.75fr;
  gap: 34px;
  padding: 50px 0;
  color: #d7e2ef;
  background: var(--navy);
  box-shadow: 50vw 0 0 var(--navy), -50vw 0 0 var(--navy);
}

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

.brand--footer small,
.footer p {
  color: #aebdd0;
}

.footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer a:hover {
  color: #ffb08b;
}

.footer__fine {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.88rem;
}

.legal-page {
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: 44px 0 80px;
}

.legal-page article {
  margin-top: 40px;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-page h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.legal-page h2 {
  margin-top: 34px;
  color: var(--navy);
}

.legal-page p {
  color: var(--muted);
}

.legal-page a:not(.brand) {
  color: var(--navy);
  font-weight: 900;
  text-decoration: underline;
}

@media (max-width: 920px) {
  .utility__inner {
    flex-wrap: wrap;
    gap: 10px 18px;
    padding: 9px 0;
  }

  .utility__inner a {
    margin-left: 0;
  }

  .nav {
    min-height: 74px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    padding: 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

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

  .hero {
    background: var(--white);
  }

  .hero__copy {
    width: min(100% - 40px, 680px);
    margin-inline: auto;
    padding: 58px 0 34px;
  }

  .hero__media {
    min-height: 340px;
  }

  .hero__media::before {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.6), transparent 42%);
  }

  .trust-band,
  .service-grid,
  .area-grid,
  .review-row,
  .form-grid,
  .footer {
    grid-template-columns: 1fr 1fr;
  }

  .proof-section {
    gap: 26px;
  }

  .estimate-copy {
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .estimate-form {
    border-left: 1px solid var(--line);
    border-radius: 0 0 var(--radius) var(--radius);
  }
}

@media (max-width: 620px) {
  .utility__inner,
  .nav,
  .section,
  .proof-section,
  .estimate-section,
  .trust-band,
  .footer {
    width: min(100% - 28px, 1180px);
  }

  .brand strong {
    font-size: 1.25rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .brand-mark {
    width: 46px;
    height: 38px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 14vw, 4rem);
  }

  .hero__actions,
  .hero__actions .button {
    width: 100%;
  }

  .trust-band,
  .service-grid,
  .area-grid,
  .review-row,
  .form-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .section,
  .proof-section,
  .estimate-section {
    padding: 68px 0;
  }

  .trust-band {
    margin-top: 0;
  }

  .estimate-copy,
  .estimate-form,
  .legal-page article {
    padding: 28px 20px;
  }
}
