:root {
  --navy: #0c2340;
  --navy-2: #071a31;
  --green: #108b5f;
  --green-2: #12a874;
  --text: #12213a;
  --muted: #5d6a7d;
  --line: #d9e1e8;
  --soft: #f4f7f8;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(12, 35, 64, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 70px;
  color: var(--text);
  font-family: Lato, Arial, sans-serif;
  background: var(--white);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 148px;
  min-height: 148px;
  padding: 0 clamp(38px, 3vw, 42px) 0 244px;
  background: var(--navy);
  color: var(--white);
  box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.18);
}

.brand {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 224px;
  height: 148px;
  overflow: hidden;
}

.brand img {
  display: block;
  position: absolute;
  z-index: 1;
  top: -20px;
  left: 16px;
  width: 192px;
  max-width: none;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.7vw, 30px);
  width: 100%;
  height: 148px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover {
  opacity: 1;
  color: #9fe8cd;
}

.site-nav a:not(.nav-cta).active {
  position: relative;
  opacity: 1;
}

.site-nav a:not(.nav-cta).active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 4px;
  border-radius: 99px;
  background: var(--white);
}

.nav-cta {
  min-width: 138px;
  padding: 18px 22px;
  border-radius: 4px;
  background: var(--green);
  color: var(--white);
  text-align: center;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  min-height: calc(100vh - 148px);
  display: grid;
  align-items: center;
  padding: clamp(48px, 8vw, 110px) clamp(18px, 6vw, 92px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 33%, rgba(255, 255, 255, 0.1) 62%),
    url("assets/hero-clean-home.png") center / cover no-repeat;
}

.hero-content {
  max-width: 560px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid rgba(12, 35, 64, 0.16);
  background: rgba(12, 35, 64, 0.08);
  color: var(--navy);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 560px;
  color: var(--navy);
  font-size: clamp(21px, 6vw, 42px);
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  color: var(--navy);
  font-size: clamp(16px, 4vw, 32px);
}

h3 {
  color: var(--navy);
  font-size: 18px;
  text-transform: uppercase;
}

p {
  line-height: 1.65;
}

.hero-copy {
  max-width: 440px;
  margin: 22px 0 28px;
  color: #26354d;
  font-size: 17px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 2px solid var(--green);
  border-radius: 4px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.button.primary {
  background: var(--green);
  color: var(--white);
}

.button.secondary {
  color: var(--green);
  background: var(--white);
}

.button.light {
  border-color: var(--white);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--navy);
  color: var(--white);
}

.trust-band div {
  min-height: 136px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.trust-band strong {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
}

.trust-band small {
  max-width: 170px;
  color: #dce9f1;
}

.line-icon {
  width: 40px;
  height: 40px;
  display: inline-block;
  color: currentColor;
  background: currentColor;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.line-icon { color: var(--white); }

.shield { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2 4 5v6c0 5.5 3.4 9.7 8 11 4.6-1.3 8-5.5 8-11V5l-8-3Zm0 3.2 5 1.9V11c0 3.8-2 6.7-5 7.9-3-1.2-5-4.1-5-7.9V7.1l5-1.9Zm3.5 4.1-4.4 4.4-2-2-1.4 1.4 3.4 3.4 5.8-5.8-1.4-1.4Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2 4 5v6c0 5.5 3.4 9.7 8 11 4.6-1.3 8-5.5 8-11V5l-8-3Zm0 3.2 5 1.9V11c0 3.8-2 6.7-5 7.9-3-1.2-5-4.1-5-7.9V7.1l5-1.9Zm3.5 4.1-4.4 4.4-2-2-1.4 1.4 3.4 3.4 5.8-5.8-1.4-1.4Z'/%3E%3C/svg%3E"); }
.sparkle { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='m12 2 1.7 5.1L19 9l-5.3 1.9L12 16l-1.7-5.1L5 9l5.3-1.9L12 2Zm6 10 1 3 3 1-3 1-1 3-1-3-3-1 3-1 1-3ZM5 13l.8 2.2L8 16l-2.2.8L5 19l-.8-2.2L2 16l2.2-.8L5 13Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='m12 2 1.7 5.1L19 9l-5.3 1.9L12 16l-1.7-5.1L5 9l5.3-1.9L12 2Zm6 10 1 3 3 1-3 1-1 3-1-3-3-1 3-1 1-3ZM5 13l.8 2.2L8 16l-2.2.8L5 19l-.8-2.2L2 16l2.2-.8L5 13Z'/%3E%3C/svg%3E"); }
.dollar { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M11 2h2v3c2.3.3 4 1.7 4.7 3.7l-2 .8C15.1 7.9 13.8 7 12 7c-1.9 0-3 .8-3 2s1.2 1.7 3.6 2.2c3 .7 5.4 1.7 5.4 4.9 0 2.5-1.8 4.2-5 4.8V23h-2v-2.1c-2.8-.3-4.7-1.9-5.5-4.2l2.1-.8c.6 1.8 2 2.9 4.4 2.9 2.2 0 3.7-.9 3.7-2.5 0-1.3-1-2-3.8-2.6C9.1 13 6.8 12 6.8 9.1 6.8 6.8 8.4 5.4 11 5V2Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M11 2h2v3c2.3.3 4 1.7 4.7 3.7l-2 .8C15.1 7.9 13.8 7 12 7c-1.9 0-3 .8-3 2s1.2 1.7 3.6 2.2c3 .7 5.4 1.7 5.4 4.9 0 2.5-1.8 4.2-5 4.8V23h-2v-2.1c-2.8-.3-4.7-1.9-5.5-4.2l2.1-.8c.6 1.8 2 2.9 4.4 2.9 2.2 0 3.7-.9 3.7-2.5 0-1.3-1-2-3.8-2.6C9.1 13 6.8 12 6.8 9.1 6.8 6.8 8.4 5.4 11 5V2Z'/%3E%3C/svg%3E"); }
.calendar { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 2h2v3h6V2h2v3h3v17H4V5h3V2Zm13 8H6v10h14V10ZM6 8h14V7H6v1Zm4 5h2v2h-2v-2Zm4 0h2v2h-2v-2Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 2h2v3h6V2h2v3h3v17H4V5h3V2Zm13 8H6v10h14V10ZM6 8h14V7H6v1Zm4 5h2v2h-2v-2Zm4 0h2v2h-2v-2Z'/%3E%3C/svg%3E"); }
.home { -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 3 2 12h3v9h6v-6h2v6h6v-9h3L12 3Zm0 2.7 5 4.5V19h-2v-6H9v6H7v-8.8l5-4.5Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 3 2 12h3v9h6v-6h2v6h6v-9h3L12 3Zm0 2.7 5 4.5V19h-2v-6H9v6H7v-8.8l5-4.5Z'/%3E%3C/svg%3E"); }

.section,
.pricing-section,
.contact-band {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 6vw, 92px);
}

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

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

.section p,
.booking-copy p {
  font-size: 16px;
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.quick-stats div,
.service-card,
.booking-form,
.pricing-grid article,
blockquote {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(12, 35, 64, 0.07);
}

.quick-stats div {
  min-height: 140px;
  display: grid;
  place-items: center;
  padding: 20px;
  text-align: center;
}

.quick-stats strong {
  color: var(--green);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 36px;
}

.quick-stats span {
  color: var(--muted);
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.service-card {
  min-height: 0;
  padding: 18px 10px 12px;
  text-align: center;
}

.service-card p {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.45;
}

#services {
  padding-bottom: 28px;
}

.slogan-band {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 70px;
  padding: 16px clamp(18px, 6vw, 92px);
  color: var(--white);
  text-align: center;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid #0c234029;
  box-shadow: 0 -10px 28px rgba(7, 26, 49, 0.16);
}

.slogan-band strong {
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(12px, 2.2vw, 20px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: uppercase;
}

.slogan-sparkle {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  background: var(--white);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='m12 2 1.7 5.1L19 9l-5.3 1.9L12 16l-1.7-5.1L5 9l5.3-1.9L12 2Zm6 10 1 3 3 1-3 1-1 3-1-3-3-1 3-1 1-3ZM5 13l.8 2.2L8 16l-2.2.8L5 19l-.8-2.2L2 16l2.2-.8L5 13Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='m12 2 1.7 5.1L19 9l-5.3 1.9L12 16l-1.7-5.1L5 9l5.3-1.9L12 2Zm6 10 1 3 3 1-3 1-1 3-1-3-3-1 3-1 1-3ZM5 13l.8 2.2L8 16l-2.2.8L5 19l-.8-2.2L2 16l2.2-.8L5 13Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.service-icon {
  display: inline-block;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  object-fit: contain;
}

.service-card h3 {
  min-height: 42px;
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.2;
}

.service-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--line);
}


.booking-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: 34px;
  align-items: start;
  background: var(--soft);
}

.estimate-box {
  display: grid;
  gap: 4px;
  max-width: 330px;
  margin-top: 28px;
  padding: 24px;
  border-left: 5px solid var(--green);
  background: var(--white);
  box-shadow: var(--shadow);
}

.estimate-box span {
  color: var(--muted);
  font-weight: 700;
}

.estimate-box strong {
  color: var(--green);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 38px;
  line-height: 1.15;
}

.estimate-box small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.estimate-box .pricing-version {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

label,
legend {
  color: var(--navy);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  min-height: 44px;
  margin-top: 7px;
  padding: 0 12px;
  border: 1px solid #cbd5df;
  border-radius: 4px;
  color: var(--text);
  font: 400 15px Lato, Arial, sans-serif;
  background: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

fieldset {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Lato, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
}

fieldset label small {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.service-fields[hidden],
fieldset[hidden] {
  display: none;
}

.window-addon {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto 76px;
  gap: 10px;
}

.window-addon small {
  margin-left: 0;
}

.window-addon input {
  width: 76px;
  min-height: 36px;
  margin: 0;
}

.promotion-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.promotion-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
}

.promotion-option span {
  display: grid;
  gap: 3px;
}

.promotion-option small {
  color: var(--muted);
  font: 700 13px Lato, Arial, sans-serif;
  text-transform: none;
}

input[type="checkbox"] {
  width: 16px;
  min-height: 16px;
  margin: 0;
  accent-color: var(--green);
}

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

.pricing-section {
  color: var(--white);
  background: var(--navy);
}

.pricing-section h2,
.pricing-section .section-kicker {
  color: var(--white);
}

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

.pricing-grid article {
  min-height: 240px;
  padding: 28px 20px;
  text-align: center;
}

.pricing-grid p {
  margin: 24px 0 0;
  color: var(--muted);
}

.pricing-grid strong {
  display: block;
  margin: 2px 0 14px;
  color: var(--green);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 38px;
  text-transform: uppercase;
}

.pricing-grid span {
  color: var(--muted);
}

.pricing-note {
  margin: 24px auto 0;
  color: #dce9f1;
  text-align: center;
}

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

blockquote {
  margin: 0;
  padding: 28px;
  text-align: center;
}

blockquote div {
  color: var(--green);
  font-size: 20px;
  letter-spacing: 2px;
}

blockquote p {
  color: #2b3850;
}

cite {
  color: var(--navy);
  font-weight: 900;
  font-style: normal;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background: var(--navy);
}

.contact-band h2,
.contact-band .section-kicker {
  color: var(--white);
}

.contact-band .section-kicker {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

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

@media (max-width: 980px) {
  .site-header {
    height: 120px;
    min-height: 120px;
    padding: 0 18px 0 208px;
  }

  .brand {
    width: 190px;
    height: 120px;
  }

  .brand img {
    top: -17px;
    left: 13px;
    width: 165px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 120px;
    right: 18px;
    left: 18px;
    width: auto;
    height: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 8px;
    background: var(--navy-2);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
  }

  .site-nav a.active::after {
    display: none;
  }

  .trust-band,
  .service-grid,
  .pricing-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 720px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 46%, rgba(255, 255, 255, 0.18) 100%),
      url("assets/hero-clean-home.png") center bottom / cover no-repeat;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 84px;
  }

  .site-header {
    height: 96px;
    min-height: 96px;
    padding: 0 14px 0 151px;
  }

  .brand {
    width: 138px;
    height: 96px;
  }

  .brand img {
    top: -13px;
    left: 5px;
    width: 129px;
  }

  .site-nav {
    top: 96px;
  }

  .hero {
    min-height: 680px;
    align-items: start;
    padding-top: 44px;
  }

  .hero-actions,
  .contact-actions,
  .contact-band {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .slogan-band {
    gap: 12px;
    min-height: 84px;
    padding: 18px;
  }

  .slogan-sparkle {
    width: 24px;
    height: 24px;
  }

  .trust-band,
  .service-grid,
  .pricing-grid,
  .review-grid,
  .quick-stats,
  .form-row,
  fieldset {
    grid-template-columns: 1fr;
  }

  .window-addon {
    grid-template-columns: 1fr 72px;
  }

  .window-addon small {
    grid-column: 1;
  }

  .window-addon input {
    grid-row: 1 / 3;
    grid-column: 2;
    align-self: center;
    width: 72px;
  }

  .promotion-options {
    grid-template-columns: 1fr;
  }

  .trust-band div {
    min-height: 118px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
}
