:root {
  --navy: #003b73;
  --navy-dark: #092942;
  --orange: #f28c00;
  --orange-dark: #c86f00;
  --white: #ffffff;
  --warm-grey: #f5f5f2;
  --soft-blue: #e8f2f9;
  --text: #1f2933;
  --muted: #5b6875;
  --line: #dce4ea;
  --danger: #b42318;
  --shadow: 0 18px 40px rgba(15, 35, 52, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--white);
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

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

.honeypot,
.honeypot[hidden] {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  pointer-events: none !important;
  border: 0 !important;
}

.skip-link:focus {
  z-index: 10;
  width: auto;
  height: auto;
  margin: 12px;
  padding: 10px 14px;
  clip: auto;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--navy-dark);
  font-weight: 800;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 64px;
  max-width: min(250px, 58vw);
  max-height: 64px;
  object-fit: contain;
  flex: 0 1 auto;
  filter: drop-shadow(0 4px 8px rgba(15, 35, 52, 0.12));
}

.nav-toggle {
  display: inline-grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--navy);
}

.nav-links {
  position: absolute;
  inset: 72px 16px auto;
  display: none;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.nav-links a {
  padding: 10px 12px;
  color: var(--navy-dark);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--navy);
  background: var(--soft-blue);
}

.nav-links .nav-cta {
  color: var(--white);
  background: var(--orange);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta[aria-current="page"] {
  color: var(--white);
  background: var(--orange-dark);
}

.nav-phone {
  white-space: nowrap;
}

.hero {
  overflow: hidden;
  padding: 44px 0 56px;
  background: linear-gradient(135deg, var(--warm-grey), var(--white) 54%, var(--soft-blue));
}

.hero-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy-dark);
  line-height: 1.12;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.2rem, 9vw, 4.4rem);
}

h2 {
  font-size: clamp(1.7rem, 5vw, 2.7rem);
}

h3 {
  font-size: 1.2rem;
}

.hero-text {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(242, 140, 0, 0.24);
}

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

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
}

.button-secondary:hover {
  background: var(--soft-blue);
}

.button-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.button-light:hover {
  background: rgba(255, 255, 255, 0.22);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.trust-list li,
.benefit-grid span {
  padding: 8px 12px;
  color: var(--navy-dark);
  font-weight: 800;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-media {
  position: relative;
  min-height: 280px;
}

.hero-media img {
  width: 100%;
  height: min(72vw, 520px);
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.price-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  min-width: 112px;
  padding: 12px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.price-badge span {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
}

.price-badge strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
}

.section,
.page-hero {
  padding: 58px 0;
}

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

.page-hero h1,
.page-hero p {
  color: var(--white);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: #e3edf5;
  font-size: 1.08rem;
}

.page-hero a {
  color: var(--white);
  font-weight: 800;
}

.section-tint {
  background: var(--warm-grey);
}

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

.card-grid {
  display: grid;
  gap: 16px;
}

.card,
.feature-card,
.service-item,
.quote-form {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(15, 35, 52, 0.08);
}

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

.installation-gallery {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.installation-gallery img,
.service-intro img,
.about-photo {
  display: block;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(15, 35, 52, 0.08);
}

.installation-gallery img {
  aspect-ratio: 4 / 3;
  height: clamp(150px, 48vw, 220px) !important;
  max-height: 220px;
}

.split {
  display: grid;
  gap: 28px;
  align-items: center;
}

.split p:not(.eyebrow),
.prose p {
  color: var(--muted);
  font-size: 1.04rem;
}

.cta-band {
  padding: 54px 0;
  color: var(--white);
  background: var(--navy-dark);
}

.cta-content {
  display: grid;
  gap: 14px;
}

.cta-content h2,
.cta-content p,
.cta-content a:not(.button) {
  color: var(--white);
}

.cta-content p {
  margin: 0;
}

.service-list {
  display: grid;
  gap: 16px;
}

.service-intro {
  display: grid;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}

.service-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.service-intro img {
  aspect-ratio: 16 / 10;
  height: clamp(220px, 54vw, 360px) !important;
  max-height: 360px;
}

.prose {
  max-width: 900px;
}

.about-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}

.about-photo {
  aspect-ratio: 4 / 5;
  height: clamp(280px, 74vw, 460px) !important;
  max-height: 460px;
}

.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.form-shell {
  max-width: 900px;
}

.quote-form {
  display: grid;
  gap: 22px;
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

legend,
label {
  color: var(--navy-dark);
  font-weight: 800;
}

.radio-row {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.radio-row label {
  display: flex;
  gap: 8px;
  align-items: center;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.radio-row input[type="radio"] {
  width: 22px;
  min-width: 22px;
  max-width: 22px;
  height: 22px;
  min-height: 22px;
  max-height: 22px;
  flex: 0 0 22px;
  padding: 0;
  margin: 0;
  accent-color: var(--navy);
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 7px;
}

input,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--text);
  font: inherit;
  border: 1px solid #b8c4ce;
  border-radius: var(--radius);
  background: var(--white);
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
.button:focus-visible,
.nav a:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(242, 140, 0, 0.42);
  outline-offset: 2px;
}

.error-message {
  margin: 0;
  color: var(--danger);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-footer {
  padding: 38px 0;
  color: #d8e3ec;
  background: #082033;
}

.site-footer h2,
.site-footer a,
.footer-brand {
  color: var(--white);
}

.site-footer h2 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.site-footer p,
.site-footer ul {
  margin: 8px 0 0;
}

.site-footer ul {
  padding: 0;
  list-style: none;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.footer-logo,
.footer-brand .footer-logo {
  display: block;
  width: auto;
  max-width: min(220px, 72vw);
  height: 50px;
  max-height: 50px;
  flex: 0 1 auto;
  object-fit: contain;
}

@media (max-width: 640px) {
  .brand-logo {
    height: 52px;
    max-height: 52px;
    max-width: min(220px, 58vw);
  }
}

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

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .hero-media {
    margin-top: 30px;
  }

  .installation-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-grid.two,
  .form-grid,
  .service-list,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .split {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .service-intro,
  .about-layout {
    grid-template-columns: 1fr 0.8fr;
  }

  .radio-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .form-field.full {
    grid-column: 1 / -1;
  }
}

@media (min-width: 980px) {
  .hero {
    padding: 70px 0 82px;
  }

  .section,
  .page-hero {
    padding: 76px 0;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }
}
