:root{
  --bg-dark:#0d1218;
  --bg-darker:#070a0f;
  --nav-black:#050505;
  --white:#ffffff;
  --off-white:#f5f7fa;
  --soft-gray:#d9dee7;
  --border:#e2e8f0;
  --text:#132235;
  --text-soft:#405168;
  --blue-gray:#9eacc4;
  --navy:#22385f;
  --gold:#d8bf75;
  --gold-deep:#d4a13f;
  --shadow:0 14px 40px rgba(0,0,0,0.14);
  --max-width:1320px;
  --radius:22px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Montserrat", sans-serif;
  background:#fff;
  color:var(--text);
  line-height:1.5;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

ul{
  list-style:none;
}

.container{
  width:min(92%, var(--max-width));
  margin:0 auto;
}

.narrow{
  max-width:900px;
}

.center-text{
  text-align:center;
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(5,5,5,0.95);
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.nav-wrap{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.brand-logo{
  width:54px;
  height:auto;
  object-fit:contain;
  flex-shrink:0;
}

.brand-name{
  color:#fff;
  font-weight:700;
  font-size:1rem;
  line-height:1.2;
}

.main-nav ul{
  display:flex;
  align-items:center;
  gap:30px;
}

.main-nav a{
  color:#fff;
  font-weight:700;
  font-size:0.98rem;
  transition:opacity 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active{
  color:var(--gold);
}

.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:48px;
  height:48px;
  background:transparent;
  border:none;
  cursor:pointer;
}

.nav-toggle span{
  width:26px;
  height:3px;
  border-radius:999px;
  background:#fff;
  display:block;
  margin:0 auto;
}

/* HERO SHARED */
.subhero{
  position:relative;
  min-height:560px;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.subhero-services{
  background:
    linear-gradient(rgba(7,10,15,0.62), rgba(7,10,15,0.70)),
    url("../images/pressure-washing/pressure-washing-1.jpg") center center / cover no-repeat;
}

.subhero-quote{
  background:
    linear-gradient(rgba(7,10,15,0.66), rgba(7,10,15,0.72)),
    url("../images/window-cleaning/window-cleaning.jpg") center center / cover no-repeat;
}

.subhero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.35));
}

.subhero-content{
  position:relative;
  z-index:2;
  color:#fff;
  max-width:900px;
  padding:80px 0;
}

.eyebrow,
.section-label{
  display:inline-block;
  font-size:0.9rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:0.14em;
  color:var(--gold);
  margin-bottom:18px;
}

.subhero h1,
.team-heading h1,
.reviews-heading h1{
  font-size:clamp(2.6rem, 6vw, 5.4rem);
  line-height:0.98;
  font-weight:900;
  letter-spacing:-0.04em;
  margin-bottom:22px;
  color:#fff;
  text-transform:uppercase;
}

.subhero-text{
  font-size:clamp(1.05rem, 1.8vw, 1.25rem);
  max-width:760px;
  color:rgba(255,255,255,0.94);
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:34px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:58px;
  padding:16px 28px;
  border-radius:999px;
  font-weight:800;
  font-size:1rem;
  transition:transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
  box-shadow:var(--shadow);
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-primary{
  background:var(--gold-deep);
  color:#fff;
}

.btn-secondary{
  background:rgba(255,255,255,0.12);
  color:#fff;
  border:1px solid rgba(255,255,255,0.16);
}

.btn-full{
  width:100%;
}

/* SECTIONS */
.section{
  padding:88px 0;
}

.section-white{
  background:#fff;
}

.section-light{
  background:var(--off-white);
}

.section-dark{
  background:var(--bg-dark);
  color:#fff;
}

.section-dark h2,
.section-dark p{
  color:#fff;
}

.section-label.light{
  color:var(--gold);
}

.section-title{
  font-size:clamp(2rem, 4vw, 3.5rem);
  line-height:1.04;
  letter-spacing:-0.03em;
  margin-bottom:18px;
  font-weight:900;
}

.section-intro{
  max-width:760px;
  margin:0 auto;
  font-size:1.06rem;
  color:var(--text-soft);
}

/* SERVICES */
.services-grid{
  display:grid;
  gap:28px;
}

.services-grid--image{
  grid-template-columns:repeat(4, 1fr);
}

.service-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
}

.service-image{
  width:100%;
  height:240px;
  object-fit:cover;
}

.service-card-body{
  padding:24px 22px 24px;
}

.service-card h3{
  font-size:1.35rem;
  line-height:1.05;
  margin-bottom:14px;
  font-weight:800;
}

.service-card p{
  color:var(--text-soft);
  margin-bottom:16px;
  font-size:0.98rem;
}

.service-card ul{
  display:grid;
  gap:8px;
}

.service-card li{
  position:relative;
  padding-left:18px;
  color:var(--text);
  font-weight:600;
  font-size:0.96rem;
}

.service-card li::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--gold-deep);
}

/* SPLIT CALLOUT */
.split-callout{
  display:grid;
  grid-template-columns:1.2fr 0.9fr;
  gap:36px;
  align-items:center;
}

.split-copy h2{
  font-size:clamp(2rem, 4vw, 3.1rem);
  line-height:1.03;
  margin-bottom:16px;
  font-weight:900;
}

.check-card{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:var(--radius);
  padding:32px 28px;
}

.check-card ul{
  display:grid;
  gap:16px;
}

.check-card li{
  position:relative;
  padding-left:22px;
  font-weight:700;
  color:#fff;
}

.check-card li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--gold);
  font-weight:900;
}

/* QUOTE PAGE */
.quote-layout{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:34px;
  align-items:start;
}

.quote-copy h2{
  font-size:clamp(2rem, 4vw, 3rem);
  line-height:1.05;
  font-weight:900;
  margin-bottom:16px;
}

.quote-copy p{
  color:var(--text-soft);
  margin-bottom:18px;
}

.contact-box{
  margin-top:28px;
  background:var(--off-white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:24px;
}

.contact-box h3{
  margin-bottom:14px;
  font-size:1.2rem;
  font-weight:800;
}

.quote-form-wrap{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:30px;
  box-shadow:var(--shadow);
}

.quote-form{
  display:grid;
  gap:18px;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.form-group{
  display:grid;
  gap:8px;
}

.form-group label{
  font-size:0.95rem;
  font-weight:700;
}

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  border:1px solid #ccd6e2;
  background:#fff;
  border-radius:14px;
  padding:15px 16px;
  font:inherit;
  color:var(--text);
  outline:none;
  transition:border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color:var(--gold-deep);
  box-shadow:0 0 0 4px rgba(212, 161, 63, 0.14);
}

.hidden-field{
  display:none;
}

/* REVIEWS STYLE PAGE */
.reviews-hero-style{
  position:relative;
  min-height:100vh;
  padding:90px 0 80px;
  background:
    linear-gradient(rgba(7,10,15,0.70), rgba(7,10,15,0.74)),
    url("../images/pressure-washing/pressure-washing-12.jpg") center center / cover no-repeat;
  overflow:hidden;
}

.reviews-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.18);
}

.reviews-heading{
  position:relative;
  z-index:2;
  text-align:center;
  margin-bottom:42px;
}

.reviews-collage{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:40px 80px;
  align-items:start;
}

.review-quote{
  color:var(--blue-gray);
  max-width:560px;
}

.review-quote p{
  font-size:clamp(1.55rem, 2.8vw, 3rem);
  line-height:0.95;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:-0.04em;
  text-shadow:3px 3px 0 rgba(255,255,255,0.04);
}

.review-quote span{
  display:block;
  margin-top:18px;
  color:var(--gold);
  font-size:clamp(1.3rem, 2vw, 2rem);
  font-weight:900;
  text-transform:uppercase;
}

.stars{
  color:#fff;
  font-size:clamp(2rem, 3vw, 3.2rem);
  letter-spacing:0.16em;
  margin-bottom:16px;
  font-weight:900;
}

.review-quote--left-top{ justify-self:start; }
.review-quote--right-top{ justify-self:end; text-align:right; }
.review-quote--left-bottom{ justify-self:start; margin-top:16px; }
.review-quote--right-bottom{ justify-self:end; text-align:right; margin-top:12px; }

/* TEAM STYLE PAGE */
.team-hero-style{
  position:relative;
  min-height:100vh;
  padding:90px 0 90px;
  background:
    linear-gradient(rgba(7,10,15,0.66), rgba(7,10,15,0.72)),
    url("../images/pressure-washing/pressure-washing-2.jpg") center center / cover no-repeat;
}

.team-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.20);
}

.team-heading{
  position:relative;
  z-index:2;
  text-align:center;
  margin-bottom:50px;
}

.team-columns{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:46px;
  align-items:start;
}

.team-member{
  color:#fff;
}

.team-member h2{
  color:#c5c28a;
  font-size:clamp(1.8rem, 3vw, 3rem);
  line-height:1;
  text-transform:uppercase;
  font-weight:900;
  margin-bottom:18px;
}

.team-member p{
  font-size:clamp(1.05rem, 1.5vw, 1.25rem);
  line-height:1.05;
  font-weight:800;
  max-width:560px;
  text-shadow:2px 2px 0 rgba(0,0,0,0.22);
}

/* ABOUT SECTION */
.about-grid{
  display:grid;
  grid-template-columns:1.1fr 0.8fr;
  gap:34px;
  align-items:start;
}

.about-copy h2{
  font-size:clamp(2rem, 4vw, 3rem);
  line-height:1.05;
  font-weight:900;
  margin-bottom:16px;
}

.about-copy p{
  color:var(--text-soft);
  margin-bottom:16px;
}

.about-card{
  background:var(--off-white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px;
}

.about-card h3{
  margin-bottom:16px;
  font-size:1.2rem;
  font-weight:800;
}

.about-card ul{
  display:grid;
  gap:12px;
}

.about-card li{
  position:relative;
  padding-left:18px;
  font-weight:700;
}

.about-card li::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--gold-deep);
}

/* FOOTER */
.site-footer{
  background:var(--bg-darker);
  color:#fff;
  padding-top:52px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 0.8fr 1fr;
  gap:32px;
  padding-bottom:34px;
}

.footer-brand{
  font-size:1.3rem;
  font-weight:900;
  color:#fff;
  display:inline-block;
  margin-bottom:12px;
}

.footer-copy{
  color:rgba(255,255,255,0.74);
  max-width:380px;
}

.site-footer h3{
  font-size:1rem;
  font-weight:800;
  margin-bottom:14px;
  color:var(--gold);
}

.footer-links{
  display:grid;
  gap:10px;
}

.footer-links li,
.footer-links a{
  color:rgba(255,255,255,0.82);
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.08);
  text-align:center;
  padding:18px 0 22px;
  color:rgba(255,255,255,0.65);
  font-size:0.95rem;
}

/* REVEAL */
.reveal-up{
  opacity:0;
  transform:translateY(18px);
  transition:opacity 0.7s ease, transform 0.7s ease;
  will-change:opacity, transform;
}

.reveal-up.is-visible{
  opacity:1;
  transform:translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1180px){
  .services-grid--image{
    grid-template-columns:repeat(2, 1fr);
  }

  .quote-layout,
  .split-callout,
  .about-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .reviews-collage{
    gap:34px;
  }
}

@media (max-width: 980px){
  .nav-toggle{
    display:flex;
  }

  .main-nav{
    position:absolute;
    top:100%;
    right:4%;
    width:min(320px, 92vw);
    background:#0b1016;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:18px;
    padding:18px;
    box-shadow:var(--shadow);
    opacity:0;
    visibility:hidden;
    transform:translateY(8px);
    transition:opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .main-nav.open{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }

  .main-nav ul{
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
  }

  .team-columns,
  .reviews-collage,
  .form-row{
    grid-template-columns:1fr;
  }

  .review-quote,
  .review-quote--left-top,
  .review-quote--right-top,
  .review-quote--left-bottom,
  .review-quote--right-bottom{
    justify-self:start;
    text-align:left;
    max-width:100%;
  }
}

@media (max-width: 680px){
  .brand-name{
    font-size:0.88rem;
  }

  .subhero{
    min-height:500px;
  }

  .section{
    padding:72px 0;
  }

  .services-grid--image{
    grid-template-columns:1fr;
  }

  .btn{
    width:100%;
  }

  .hero-actions{
    flex-direction:column;
  }

  .quote-form-wrap{
    padding:22px;
  }

  .team-member p{
    line-height:1.1;
  }
}

.reviews-collage .review-quote:nth-child(even){
  margin-top: 80px;
}