:root {
  --navy: #071f3d;
  --navy-soft: #0d335d;
  --orange: #ee6f1c;
  --orange-soft: #f58a34;
  --ink: #142033;
  --muted: #5c6674;
  --paper: #f7f7f4;
  --white: #ffffff;
  --line: #d9e1e8;
  --teal: #1f6f68;
  --shadow: 0 18px 48px rgba(7, 31, 61, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.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;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 225, 232, 0.8);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: min(300px, 48vw);
  text-decoration: none;
}

.brand img {
  width: auto;
  max-height: 60px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 28px);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--orange);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: var(--white);
  background: var(--orange);
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(620px, 84svh, 790px);
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url("hero-property-services.jpg");
  background-position: center right;
  background-size: cover;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 31, 61, 0.96) 0%, rgba(7, 31, 61, 0.88) 42%, rgba(7, 31, 61, 0.42) 76%, rgba(7, 31, 61, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 31, 61, 0.08), rgba(7, 31, 61, 0.36));
}

.hero-inner,
.section-inner,
.footer-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.hero-inner {
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: center;
  padding: 66px 0 52px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-soft);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section-inner h2 {
  margin: 0;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 860px;
  font-size: clamp(2.9rem, 5.3vw, 5rem);
  text-transform: uppercase;
}

.hero-copy {
  max-width: 710px;
  margin: 22px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
}

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

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

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

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(850px, 100%);
  margin: 38px 0 0;
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-facts div {
  min-height: 128px;
  padding: 18px;
  background: rgba(7, 31, 61, 0.72);
}

.hero-facts dt {
  color: var(--orange-soft);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

.service-band,
.maintenance,
.proof,
.areas,
.contact {
  padding: clamp(58px, 8vw, 92px) 0;
}

.service-band {
  background: var(--white);
}

.split-intro,
.proof-layout,
.areas-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.section-inner h2 {
  max-width: 760px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.split-intro > p,
.areas-layout p,
.contact-copy p,
.maintenance-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card {
  overflow: hidden;
  min-height: 430px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(7, 31, 61, 0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card h3 {
  margin: 20px 20px 8px;
  color: var(--navy);
  font-size: 1.08rem;
  text-transform: uppercase;
}

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

.maintenance {
  background:
    linear-gradient(90deg, rgba(31, 111, 104, 0.09), rgba(238, 111, 28, 0.055)),
    var(--paper);
}

.maintenance-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}

.maintenance-copy p {
  margin-top: 20px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 44px;
  padding: 11px 12px 11px 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(7, 31, 61, 0.05);
}

.check-list li::before {
  position: absolute;
  left: 13px;
  top: 16px;
  width: 12px;
  height: 8px;
  border-left: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  content: "";
  transform: rotate(-45deg);
}

.maintenance-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.maintenance-photos img {
  width: 100%;
  min-height: 178px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.maintenance-photos img:first-child {
  grid-row: span 2;
  height: 100%;
}

.proof {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 31, 61, 1) 0%, rgba(13, 51, 93, 1) 68%, rgba(31, 111, 104, 0.92) 100%);
}

.proof .eyebrow,
.proof h2 {
  color: var(--white);
}

.proof-points {
  display: grid;
  gap: 16px;
}

.proof-points article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.proof-points h3 {
  margin: 0 0 8px;
  color: var(--orange-soft);
  font-size: 1.1rem;
  text-transform: uppercase;
}

.proof-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

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

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.area-list li {
  min-height: 44px;
  padding: 11px 14px;
  color: var(--navy);
  background: var(--paper);
  border-left: 5px solid var(--orange);
  font-weight: 900;
}

.area-call {
  margin-top: 24px;
}

.contact {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
}

.contact h2,
.contact .eyebrow {
  color: var(--white);
}

.contact-copy p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.call-panel {
  justify-self: end;
  width: min(400px, 100%);
  padding: clamp(26px, 5vw, 40px);
  color: var(--white);
  background: var(--white);
  background:
    linear-gradient(135deg, rgba(238, 111, 28, 0.96), rgba(245, 138, 52, 0.92)),
    var(--orange);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.call-panel span {
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.call-panel strong {
  display: block;
  margin-top: 8px;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(2.1rem, 5vw, 3.1rem);
  line-height: 1;
}

.call-panel p {
  margin: 18px 0 0;
  font-weight: 900;
}

.site-footer {
  padding: 32px 0;
  color: rgba(255, 255, 255, 0.82);
  background: #06172c;
}

.footer-inner {
  display: grid;
  grid-template-columns: 240px 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-inner img {
  width: 240px;
  padding: 10px;
  background: var(--white);
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-grid;
    justify-self: end;
    place-items: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: var(--navy);
    border: 0;
    border-radius: 6px;
  }

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

  .site-nav,
  .header-call {
    display: none;
  }

  .site-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-top: 12px;
  }

  .site-nav.is-open a {
    padding: 12px;
    background: var(--paper);
    border-radius: 6px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(7, 31, 61, 0.96), rgba(7, 31, 61, 0.72));
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-intro,
  .proof-layout,
  .areas-layout,
  .contact-layout,
  .maintenance-layout {
    grid-template-columns: 1fr;
  }

  .call-panel {
    justify-self: start;
  }

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

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand {
    max-width: min(250px, 64vw);
  }

  .hero {
    min-height: 730px;
  }

  .hero-media {
    background-position: 69% center;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .service-grid,
  .check-list,
  .area-list,
  .site-nav.is-open {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
  }

  .hero-facts div {
    min-height: 96px;
    padding: 12px 9px;
  }

  .hero-facts dt {
    font-size: 0.72rem;
  }

  .hero-facts dd {
    font-size: 0.72rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .service-card {
    min-height: auto;
  }

  .maintenance-photos {
    grid-template-columns: 1fr;
  }

  .maintenance-photos img:first-child {
    grid-row: auto;
  }
}
