:root {
  --navy: #263d4a;
  --navy2: #314e5c;
  --red: #a94f43;
  --red2: #8f3f35;
  --ink: #2b3d47;
  --muted: #697982;
  --paper: #f3f4f2;
  --white: #fff;
  --line: #dfe3e6;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "DM Sans",Arial,sans-serif;
  color: var(--ink);
  line-height: 1.65;
}
a {
  color: inherit;
}
.container {
  width: min(calc(100% - 40px),var(--max));
  margin: auto;
}
.topbar {
  background: var(--navy);
  color: #fff;
  font-size: 12px;
}
.top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 36px;
}
.top-inner div {
  display: flex;
  gap: 22px;
}
.top-inner a {
  text-decoration: none;
}
.header {
  background: #fff;
  box-shadow: 0 3px 18px #263d4a1a;
  position: relative;
  z-index: 5;
}
.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand-logo {
  display: block;
  width: 225px;
  height: auto;
}
nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
nav a {
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}
nav a:hover {
  color: var(--red);
}
.nav-quote {
  background: var(--red);
  color: #fff;
  padding: 14px 19px;
}

a.nav-quote active{
  background: var(--red);
  color: #fff;
  padding: 14px 19px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 26px;
}
.hero {
  height: 650px;
  position: relative;
  color: #fff;
  overflow: hidden;
}
.hero>img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(30,50,61,.94) 0%,rgba(30,50,61,.74) 48%,rgba(30,50,61,.16) 100%);
}
.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-copy {
  max-width: 690px;
  padding-top: 10px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.2px;
  color: var(--red);
  margin: 0 0 13px;
}
.hero .eyebrow {
  color: #fff;
}
.hero h1,.page-hero h1,.section h2,.cta h2 {
  font-family: Oswald,Arial,sans-serif;
  text-transform: uppercase;
  line-height: 1.03;
  margin: 0;
}
.hero h1 {
  font-size: clamp(52px,7vw,88px);
  letter-spacing: .5px;
}
.hero h1 span,.page-hero h1 span,.section h2 span {
  color: var(--red);
}
.hero-copy>p:not(.eyebrow) {
  font-size: 18px;
  max-width: 610px;
  color: #e8edf1;
  margin: 25px 0;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 14px 21px;
  font-weight: 800;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}
.btn-red {
  background: var(--red);
  color: #fff;
}
.btn-red:hover {
  background: var(--red2);
}
.btn-ghost {
  border: 1px solid #ffffff80;
  color: #fff;
}
.hero-points {
  display: flex;
  gap: 26px;
  margin-top: 35px;
  font-size: 12px;
  font-weight: 700;
}
.hero-call {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #263d4aeb;
  border: 1px solid #ffffff50;
  padding: 16px 20px;
  text-decoration: none;
  margin-top: 230px;
}
.hero-call>span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  font-size: 22px;
}
.hero-call small,.hero-call em {
  display: block;
  font-style: normal;
}
.hero-call small {
  font-size: 10px;
  letter-spacing: 1.5px;
}
.hero-call strong {
  display: block;
  font-size: 25px;
}
.hero-call em {
  font-size: 10px;
  color: #b9c3cb;
}
.trust-strip {
  background: var(--navy);
  color: #fff;
  margin-top: 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
}
.trust-grid>div {
  padding: 25px 18px;
  border-right: 1px solid #ffffff24;
}
.trust-grid b {
  display: block;
  color: var(--red);
  font-family: Oswald;
  font-size: 22px;
}
.trust-grid strong {
  font-size: 12px;
  line-height: 1.25;
  display: block;
}
.trust-grid span {
  font-size: 11px;
  color: #aab6bf;
  display: block;
  margin-top: 6px;
}
.section {
  padding: 95px 0;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  align-items: center;
}
.section h2 {
  font-size: clamp(38px,5vw,58px);
}
.copy>p:not(.eyebrow) {
  color: var(--muted);
}
.ticks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin: 24px 0;
  font-size: 13px;
  font-weight: 800;
}
.ticks span: first-letter {
  color: var(--red);
}
.text-btn {
  color: var(--red);
  font-weight: 800;
  text-decoration: none;
}
.photo-collage {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  position: relative;
  min-height: 470px;
}
.photo-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-collage .main-photo {
  grid-row: 1/3;
}
.badge {
  position: absolute;
  left: -25px;
  bottom: 25px;
  background: #fff;
  box-shadow: 0 10px 30px #0002;
  padding: 17px 22px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.badge b {
  font-family: Oswald;
  color: var(--red);
  font-size: 34px;
}
.badge span {
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
}
.services-home {
  background: var(--paper);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 38px;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
.service-card {
  background: #fff;
  text-decoration: none;
  position: relative;
  padding-bottom: 24px;
  box-shadow: 0 3px 16px #263d4a12;
}
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.service-card>span {
  position: absolute;
  top: 195px;
  left: 18px;
  background: var(--red);
  color: #fff;
  padding: 7px 10px;
  font-family: Oswald;
}
.service-card h3,.service-card p,.service-card>b {
  margin-left: 20px;
  margin-right: 20px;
}
.service-card h3 {
  font-family: Oswald;
  text-transform: uppercase;
  font-size: 26px;
  margin-top: 24px;
  margin-bottom: 7px;
}
.service-card p {
  font-size: 13px;
  color: var(--muted);
}
.service-card>b {
  color: var(--red);
  font-size: 12px;
}
.featured {
  background: #fff;
}
.featured>.container {
  display: grid;
  grid-template-columns: .8fr 1.5fr;
  gap: 60px;
  align-items: center;
}
.featured-intro h2 {
  margin-bottom: 18px;
}
.featured-intro>p:not(.eyebrow) {
  color: var(--muted);
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
}
.featured-grid figure {
  margin: 0;
}
.featured-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.featured-grid figcaption {
  padding: 10px 0;
  font-size: 12px;
}
.featured-grid figcaption b {
  color: var(--red);
  margin-right: 7px;
}
.dark-process {
  background: var(--navy);
  color: #fff;
}
.light-head h2 {
  color: #fff;
}
.process {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}
.process>div {
  border-top: 1px solid #ffffff32;
  padding-top: 22px;
}
.process b {
  color: var(--red);
  font-family: Oswald;
  font-size: 28px;
}
.process h3 {
  font-family: Oswald;
  text-transform: uppercase;
  font-size: 25px;
  margin: 8px 0;
}
.process p {
  font-size: 13px;
  color: #aeb9c1;
}
.cta {
  background: #eef0f2;
  padding: 65px 0;
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.cta h2 {
  font-size: 48px;
}
.cta-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.phone {
  font-size: 23px;
  font-weight: 800;
  text-decoration: none;
}
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 85px 0;
}
.page-hero h1 {
  font-size: clamp(48px,6vw,76px);
}
.page-hero>div>p:not(.eyebrow) {
  font-size: 17px;
  color: #c8d1d8;
}
.about-detail {
  align-items: start;
}
.image-band {
  height: 460px;
  position: relative;
  color: #fff;
  overflow: hidden;
}
.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: brightness(.55);
}
.image-band>div {
  position: absolute;
  left: max(20px,calc((100% - 1180px)/2));
  top: 50%;
  transform: translateY(-50%);
}
.image-band h2 {
  font-family: Oswald;
  text-transform: uppercase;
  font-size: 55px;
  line-height: 1.05;
  margin: 0;
}
.light {
  background: var(--paper);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
}
.stats>div {
  background: #fff;
  border: 1px solid var(--line);
  padding: 30px;
}
.stats b {
  font-family: Oswald;
  font-size: 38px;
  color: var(--red);
  display: block;
}
.stats span {
  font-size: 13px;
  font-weight: 700;
}


.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.service-list article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  border: 1px solid var(--line);
  padding: 12px;
}
.service-list img {
  width: 180px;
  height: 160px;
  object-fit: cover;
}
.service-list small {
  color: var(--red);
  font-family: Oswald;
  font-size: 22px;
}
.service-list h2 {
  font-size: 27px;
  margin: 5px 0;
}
.service-list p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.inspection {
  background: var(--paper);
}
.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.area-list span {
  font-family: Oswald;
  text-transform: uppercase;
  font-size: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.centered {
  text-align: center;
}
.phone-link {
  color: var(--red);
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
}
.gallery-section {
  background: var(--paper);
}
.filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.filter button {
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px 16px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.filter button.active,.filter button:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}
.gallery figure {
  margin: 0;
  background: #fff;
}
.gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
.gallery figcaption {
  padding: 12px 15px;
  font-size: 12px;
  font-weight: 800;
}
.contact-grid {
  align-items: start;
}
.contact-info h2 {
  font-size: 55px;
}
.big-phone {
  display: block;
  font-family: Oswald;
  font-size: 42px;
  color: var(--red);
  text-decoration: none;
  margin: 28px 0;
}
.contact-line {
  border-top: 1px solid var(--line);
  padding: 16px 0;
  display: flex;
  flex-direction: column;
}
.contact-line b {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
}
.form-card {
  background: var(--paper);
  padding: 35px;
}
.form-card h2 {
  font-size: 40px;
}
.form-card form {
  display: grid;
  gap: 15px;
}
.form-card label {
  font-size: 13px;
  font-weight: 800;
}
.form-card input,.form-card select,.form-card textarea {
  width: 100%;
  display: block;
  border: 1px solid var(--line);
  padding: 12px;
  margin-top: 5px;
  font: inherit;
  background: #fff;
}
.notice {
  padding: 14px;
  margin-bottom: 18px;
  font-size: 13px;
}
.success {
  background: #e6f4e8;
}
.error {
  background: #fde6e6;
}
.footer {
  background: var(--navy);
  color: #b9c4cb;
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 55px;
}
.footer-brand {
  color: #fff;
}
.footer h4 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer a {
  display: block;
  text-decoration: none;
  margin: 6px 0;
}
.footer-bottom {
  border-top: 1px solid #ffffff17;
  padding: 18px 0;
  font-size: 11px;
}
@media(max-width:900px) {
  .top-inner>span {
    display: none;
  }
  .top-inner {
    justify-content: center;
  }
  .top-inner div {
    gap: 10px;
  }
  .top-inner div a:first-child {
    display: none;
  }
  nav {
    display: none;
    position: absolute;
    top: 88px;
    left: 20px;
    right: 20px;
    background: #fff;
    box-shadow: 0 15px 30px #0002;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  nav.open {
    display: flex;
  }
  nav a {
    padding: 12px;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    height: 680px;
  }
  .hero-call {
    display: none;
  }
  .trust-grid {
    grid-template-columns: repeat(3,1fr);
  }
  .service-cards {
    grid-template-columns: 1fr 1fr;
  }
  .featured>.container {
    grid-template-columns: 1fr;
  }
  .process {
    grid-template-columns: 1fr 1fr;
  }
  .service-list {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
}
@media(max-width:560px) {
  .container {
    width: min(calc(100% - 28px),var(--max));
  }
  .top-inner div a:not(:last-child) {
    display: none;
  }
  .hero h1 {
    font-size: 54px;
  }
  .hero-copy>p:not(.eyebrow) {
    font-size: 16px;
  }
  .hero-points {
    display: grid;
    gap: 8px;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-grid>div:nth-child(5) {
    grid-column: 1/3;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .section {
    padding: 65px 0;
  }
  .photo-collage {
    min-height: 400px;
  }
  .service-cards,.gallery,.stats,.footer-grid {
    grid-template-columns: 1fr;
  }
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .featured-grid img {
    height: 260px;
  }
  .section-head,.cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .process {
    grid-template-columns: 1fr;
  }
  .service-list article {
    grid-template-columns: 110px 1fr;
  }
  .service-list img {
    width: 110px;
    height: 125px;
  }
  .page-hero {
    padding: 65px 0;
  }
  .page-hero h1 {
    font-size: 50px;
  }
  .cta h2 {
    font-size: 38px;
  }
  .cta-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .image-band {
    height: 380px;
  }
  .image-band h2 {
    font-size: 43px;
  }
  .contact-info h2 {
    font-size: 45px;
  }
  .big-phone {
    font-size: 34px;
  }
}
