.top-bar{
  width:100%;
  height:20px;
  background:var(--red);
} 

:root{
  --red:#cf2027;
  --red-dark:#b51c22;
  --text:#1f1f1f;
  --muted:#666;
  --bg:#ffffff;
  --light:#f6f6f6;
  --border:#e9e9e9;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:Arial,Helvetica,sans-serif;color:var(--text);background:#fff}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1180px, calc(100% - 40px));margin:0 auto}
.site-header{
  background:#fff;
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:20;
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
  padding:16px 0;
}
.logo img{
  height:128px;
  width:auto;
}
.main-nav{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:24px;
  padding-left:12px;
  margin-left:0;
  position:relative;
}
.main-nav a,.dropbtn{
  font-size:0.95rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  font-weight:800;
}
.dropdown{position:relative}
.dropbtn{background:none;border:none;padding:0;cursor:pointer;color:var(--text);font:inherit}
.dropdown-content{
  position:absolute;top:calc(100% + 14px);left:0;min-width:250px;
  background:#fff;border:1px solid var(--border);box-shadow:0 12px 30px rgba(0,0,0,.08);
  display:none;padding:10px 0;border-radius:14px
}
.dropdown-content a{display:block;padding:12px 16px;font-weight:600}
.dropdown-content a:hover{background:#fafafa;color:var(--red)}
.dropdown:hover .dropdown-content{display:block}
.hero{background:var(--red);overflow:hidden}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;min-height:620px}
.hero-copy{color:#fff;padding:48px 0 72px;display:flex;align-items:center}
.hero-copy-inner{max-width:560px}
.kicker{font-size:.95rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;opacity:.92;margin-bottom:18px}
.hero h1{font-size:clamp(2.6rem,6vw,5.4rem);line-height:.95;margin:0 0 18px;font-weight:900;text-transform:uppercase}
.hero p{font-size:1.1rem;line-height:1.6;max-width:520px;margin:0 0 30px;color:rgba(255,255,255,.92)}
.hero-actions{display:flex;gap:16px;flex-wrap:wrap}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:18px 30px;
  border-radius:12px;
  font-weight:800;
  font-size:1rem;
  min-width:170px;
  transition:all 0.2s ease;
}
.btn-light{background:#fff;color:var(--red)}
.btn-outline{border:2px solid rgba(255,255,255,.75);color:#fff}
.hero-visual{position:relative;display:flex;align-items:stretch;justify-content:flex-end}
.hero-angle{position:absolute;inset:0;background:#fff;clip-path:polygon(26% 0,100% 0,100% 100%,46% 100%)}
.hero-image-placeholder{
  position:relative;z-index:1;display:flex;align-items:flex-end;justify-content:center;
  width:100%;padding:40px 0 0
}
.worker-card{
  width:min(520px,90%);height:520px;border-radius:26px 26px 0 0;
  background:linear-gradient(180deg,#ececec,#d9d9d9);border:8px solid #fff;border-bottom:none;
  box-shadow:0 24px 60px rgba(0,0,0,.16);display:flex;align-items:center;justify-content:center;
  color:#777;text-align:center;padding:24px;font-weight:700
}
.section{padding:72px 0}
.section-light{background:var(--light)}
.section h2{font-size:2.1rem;margin:0 0 14px}
.lead{font-size:1.08rem;color:var(--muted);max-width:760px}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:30px}
.card{background:#fff;border:1px solid var(--border);border-radius:18px;padding:24px}
.card h3{margin:0 0 12px;font-size:1.2rem}
.card p{margin:0;color:var(--muted);line-height:1.6}
.cta-band{background:var(--red);color:#fff;border-radius:24px;padding:34px;display:flex;justify-content:space-between;align-items:center;gap:20px}
.page-hero{background:linear-gradient(135deg,var(--red) 0%, var(--red-dark) 100%);color:#fff;padding:72px 0}
.page-hero h1{margin:0 0 10px;font-size:clamp(2rem,4vw,3.4rem)}
.breadcrumbs{font-size:.95rem;opacity:.9;margin-bottom:8px}
.content{padding:60px 0}
.content p{line-height:1.7;color:#444;max-width:820px}
.site-footer{background:#111;color:#fff;padding:28px 0;margin-top:40px}
.footer-grid{display:flex;justify-content:space-between;gap:20px;align-items:center}
.contact-form{display:grid;gap:16px;max-width:720px;margin-top:26px}
.field{display:grid;gap:8px}
.field label{font-weight:700}
.field input,.field textarea,.field select{
  border:1px solid #d9d9d9;border-radius:10px;padding:14px 16px;font:inherit
}
.field textarea{min-height:160px;resize:vertical}
.small-note{color:var(--muted);font-size:.95rem}
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .hero-copy{padding:38px 0}
  .hero-angle{clip-path:polygon(0 0,100% 0,100% 100%,0 100%)}
  .hero-visual{min-height:360px;background:#fff}
  .main-nav{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:28px;
  padding-left:22px;
  margin-left:6px;
}
  .cards{grid-template-columns:1fr 1fr}
}
@media (max-width: 760px){
  .nav-wrap{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:24px;
  padding:18px 0;
}
  .main-nav{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:28px;
  padding-left:22px;
  margin-left:6px;
}
  .logo img{
  height:108px;
  width:auto;
}
  .hero h1{font-size:2.8rem}
  .cards{grid-template-columns:1fr}
  .cta-band,.footer-grid{flex-direction:column;align-items:flex-start}
}

.main-nav a,
.dropbtn{
  font-size:0.95rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  font-weight:900;
  color:#000;
}

.main-nav a:hover,
.dropbtn:hover{
  color:var(--red);
}

.btn-light{
  background:#fff;
  color:var(--red);
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}
.btn-outline{
  border:2px solid rgba(255,255,255,.85);
  color:#fff;
}

.dropbtn{font-weight:900 !important;}
.main-nav a{font-weight:900 !important;}




.main-nav a,
.dropbtn{
  color:#000;
  position:relative;
}

.main-nav a:hover,
.dropbtn:hover{
  color:var(--red);
}

.main-nav a::after,
.dropbtn::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:2px;
  background:var(--red);
  transition:0.3s;
}

.main-nav a:hover::after,
.dropbtn:hover::after{
  width:100%;
}


.logo{
  display:flex;
  align-items:center;
  flex:0 0 auto;
  margin-right:2px;
}



.main-nav{
  min-height:60px;
}

.main-nav{
  display:flex;
  align-items:center;
}

.main-nav{
  position:relative;
}




.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:16px;
  padding:18px 0;
}

.logo{
  margin-right:6px;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:24px;
  padding-left:16px;
  position:relative;
}

.main-nav::before{
  content:'';
  position:absolute;
  left:0;
  height:48px;
  width:3px;
  background:var(--red);
}


/* Header refinement */
.main-nav::before{
  content:'';
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  height:58px;
  width:3px;
  background:var(--red);
}

.main-nav a,
.dropbtn{
  color:#000;
  position:relative;
  font-size:0.95rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  font-weight:900 !important;
}

.main-nav a:hover,
.dropbtn:hover{
  color:var(--red);
}

.main-nav a::after,
.dropbtn::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:2px;
  background:var(--red);
  transition:width 0.25s ease;
}

.main-nav a:hover::after,
.dropbtn:hover::after{
  width:100%;
}

/* Hero refinement */
.hero-grid{
  display:grid;
  grid-template-columns:1fr 0.95fr;
  min-height:620px;
}

.hero-copy{
  color:#fff;
  padding:54px 0 70px;
  display:flex;
  align-items:center;
}

.hero-copy-inner{
  max-width:500px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.kicker{display:none;}

.hero h1{
  font-size:clamp(2.2rem,4.8vw,4.6rem);
  line-height:0.96;
  margin:0 0 18px;
  font-weight:900;
  text-transform:uppercase;
}

.hero p{
  font-size:1.02rem;
  line-height:1.55;
  max-width:470px;
  margin:0 0 34px;
  color:rgba(255,255,255,.92);
}

.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  padding-top:4px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:18px 30px;
  border-radius:12px;
  font-weight:800;
  font-size:1rem;
  min-width:170px;
  transition:all 0.2s ease;
}

.btn-light{
  background:#fff;
  color:var(--red);
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}

.btn-outline{
  border:2px solid rgba(255,255,255,.85);
  color:#fff;
  background:transparent;
}

.hero-visual{
  position:relative;
  display:flex;
  align-items:stretch;
  justify-content:flex-end;
  overflow:hidden;
}

.hero-angle{
  position:absolute;
  inset:0;
  background:#fff;
  clip-path:polygon(30% 0,100% 0,100% 100%,48% 100%);
  z-index:0;
}

.hero-image-placeholder,
.worker-card{
  display:none !important;
}

.hero-image-pane{
  position:relative;
  z-index:1;
  width:100%;
  height:100%;
  min-height:620px;
  overflow:hidden;
  clip-path:polygon(29% 0,100% 0,100% 100%,47% 100%);
}

.hero-image-pane img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  display:block;
}

@media (max-width: 980px){
  .logo img{
    height:104px;
  }

  .hero-grid{
    grid-template-columns:1fr;
    min-height:auto;
  }

  .hero-angle{
    clip-path:none;
  }

  .hero-image-pane{
    clip-path:none;
    min-height:420px;
  }
}

@media (max-width: 760px){
  .nav-wrap{
    gap:12px;
  }

  .logo img{
    height:86px;
  }

  .main-nav{
    gap:18px;
    padding-left:10px;
    flex-wrap:wrap;
    row-gap:12px;
  }

  .main-nav::before{
    height:42px;
  }

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

  .hero-image-pane{
    min-height:320px;
  }
}


/* v11 refinements */
.site-header{
  padding: 0;
}

.nav-wrap{
  padding: 10px 0 !important;
}

.logo img{
  height: 108px !important;
}

.hero-grid{
  min-height: 520px !important;
}

.hero-copy{
  padding: 36px 0 42px !important;
}

.hero-copy-inner{
  max-width: 470px !important;
}

.hero h1{
  font-size: clamp(2rem,4.2vw,4rem) !important;
}

.hero p{
  font-size: 0.98rem !important;
  max-width: 430px !important;
  margin: 0 0 28px !important;
}

.hero-angle{
  clip-path: polygon(42% 0, 100% 0, 100% 100%, 56% 100%) !important;
}

.hero-image-pane{
  min-height: 520px !important;
  clip-path: polygon(41% 0, 100% 0, 100% 100%, 55% 100%) !important;
}

.hero-image-pane img{
  object-position: center 18% !important;
}

@media (max-width: 980px){
  .nav-wrap{
    padding: 10px 0 !important;
  }

  .logo img{
    height: 92px !important;
  }

  .hero-grid{
    min-height: auto !important;
  }

  .hero-copy{
    padding: 28px 0 34px !important;
  }

  .hero-image-pane{
    min-height: 360px !important;
    clip-path: none !important;
  }

  .hero-angle{
    clip-path: none !important;
  }
}

@media (max-width: 760px){
  .logo img{
    height: 78px !important;
  }

  .hero h1{
    font-size: 2.45rem !important;
  }

  .hero-image-pane{
    min-height: 300px !important;
  }
}


/* HERO OVERLAY (to improve text contrast without copying other site) */
.hero-visual{
  position:relative;
}

.hero-visual::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(207,32,39,0.92) 0%,
    rgba(207,32,39,0.88) 35%,
    rgba(207,32,39,0.75) 55%,
    rgba(207,32,39,0.35) 70%,
    rgba(207,32,39,0.0) 85%
  );
  z-index:1;
  pointer-events:none;
}

/* Ensure image sits behind overlay */
.hero-image-pane{
  position:relative;
  z-index:0;
}

/* Slightly softer angle again */
.hero-angle{
  clip-path: polygon(46% 0, 100% 0, 100% 100%, 60% 100%) !important;
}

.hero-image-pane{
  clip-path: polygon(45% 0, 100% 0, 100% 100%, 59% 100%) !important;
}

/* Keep text above overlay */
.hero-copy{
  position:relative;
  z-index:2;
}

/* Subtle polish on buttons so they sit nicer */
.hero-actions .btn{
  box-shadow:0 6px 18px rgba(0,0,0,0.15);
}



/* v13 hero fix */
.hero{
  background: var(--red) !important;
}

.hero-grid{
  grid-template-columns: 1fr 0.95fr !important;
  min-height: 540px !important;
}

.hero-copy{
  position: relative !important;
  z-index: 2 !important;
  padding: 42px 0 48px !important;
  background:
    linear-gradient(rgba(207,32,39,0.84), rgba(207,32,39,0.84)),
    url('hero-worker.jpeg') center center / cover no-repeat !important;
}

.hero-copy::after{
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  right: -110px !important;
  width: 220px !important;
  height: 100% !important;
  background: linear-gradient(rgba(207,32,39,0.84), rgba(207,32,39,0.84)) !important;
  clip-path: polygon(0 0, 72% 0, 100% 100%, 28% 100%) !important;
  z-index: -1 !important;
}

.hero-copy-inner{
  max-width: 470px !important;
}

.hero h1{
  font-size: clamp(2.1rem,4.3vw,4.1rem) !important;
}

.hero p{
  max-width: 430px !important;
}

.hero-visual{
  overflow: hidden !important;
  position: relative !important;
}

.hero-visual::after{
  display: none !important;
}

.hero-angle{
  display: none !important;
}

.hero-image-pane{
  clip-path: none !important;
  min-height: 540px !important;
  z-index: 1 !important;
}

.hero-image-pane img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 18% !important;
}

@media (max-width: 980px){
  .hero-copy{
    background:
      linear-gradient(rgba(207,32,39,0.88), rgba(207,32,39,0.88)),
      url('hero-worker.jpeg') center center / cover no-repeat !important;
    padding: 30px 0 34px !important;
  }

  .hero-copy::after{
    display:none !important;
  }

  .hero-image-pane{
    min-height: 360px !important;
  }
}


/* v17 - use the correct uploaded image with angled > red overlay */
.hero{
  position:relative !important;
  background:none !important;
  overflow:hidden !important;
}

.hero-grid{
  position:relative !important;
  display:grid !important;
  grid-template-columns:1fr 0.95fr !important;
  min-height:560px !important;
}

/* full hero image underneath everything */
.hero-grid::before{
  content:'' !important;
  position:absolute !important;
  inset:0 !important;
  background:url('hero-correct.jpeg') center center / cover no-repeat !important;
  z-index:0 !important;
}

/* remove older hero treatments */
.hero-grid::after{
  display:none !important;
}

.hero-visual,
.hero-image-pane,
.hero-angle,
.hero-image-placeholder,
.worker-card{
  display:none !important;
}

/* the actual >-style angled branded overlay */
.hero-angle-overlay{
  position:absolute !important;
  inset:0 auto 0 0 !important;
  width:64% !important;
  background:linear-gradient(
    90deg,
    rgba(207,32,39,0.92) 0%,
    rgba(207,32,39,0.84) 55%,
    rgba(207,32,39,0.72) 100%
  ) !important;
  clip-path:polygon(0 0, 82% 0, 100% 50%, 82% 100%, 0 100%) !important;
  z-index:1 !important;
  pointer-events:none !important;
}

/* text sits above the overlay */
.hero-copy{
  position:relative !important;
  z-index:2 !important;
  color:#fff !important;
  padding:44px 0 50px !important;
  background:none !important;
}

.hero-copy::after{
  display:none !important;
}

.hero-copy-inner{
  max-width:480px !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-start !important;
}

.kicker{
  display:none !important;
}

.hero h1{
  font-size:clamp(2.2rem,4.4vw,4.1rem) !important;
  line-height:0.97 !important;
  margin:0 0 18px !important;
  font-weight:900 !important;
  text-transform:uppercase !important;
}

.hero p{
  max-width:440px !important;
  font-size:1rem !important;
  line-height:1.6 !important;
  margin:0 0 32px !important;
  color:rgba(255,255,255,.95) !important;
}

.hero-actions{
  display:flex !important;
  gap:16px !important;
  flex-wrap:wrap !important;
}

.hero-actions .btn{
  box-shadow:0 8px 22px rgba(0,0,0,0.12) !important;
}

/* keep header sizing from prior polished version */
.nav-wrap{
  padding:10px 0 !important;
}

.logo img{
  height:108px !important;
}

/* mobile */
@media (max-width:980px){
  .hero-grid{
    grid-template-columns:1fr !important;
    min-height:auto !important;
  }

  .hero-angle-overlay{
    width:100% !important;
    clip-path:none !important;
    background:linear-gradient(
      180deg,
      rgba(207,32,39,0.90) 0%,
      rgba(207,32,39,0.82) 45%,
      rgba(207,32,39,0.55) 100%
    ) !important;
  }

  .hero-copy{
    padding:30px 0 36px !important;
  }

  .logo img{
    height:90px !important;
  }
}

@media (max-width:760px){
  .hero h1{
    font-size:2.6rem !important;
  }

  .logo img{
    height:78px !important;
  }
}


/* v18 FIX: stable full-width overlay with correct > shape */
.hero-angle-overlay{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  background:linear-gradient(
    90deg,
    rgba(207,32,39,0.92) 0%,
    rgba(207,32,39,0.88) 40%,
    rgba(207,32,39,0.85) 100%
  );
  clip-path: polygon(
    0 0,
    55% 0,
    68% 50%,
    55% 100%,
    0 100%,
    100% 100%,
    100% 0
  );
  z-index:1;
  pointer-events:none;
}


/* v19 dropdown hover fix */
.dropdown{
  position:relative;
}

.dropdown::after{
  content:'';
  position:absolute;
  left:0;
  top:100%;
  width:100%;
  height:14px;
}

.dropdown-content{
  top:100% !important;
}


/* v21: restore header alignment + stable dropdown */
.main-nav{
  align-items:center !important;
}

.dropdown{
  position:relative !important;
  display:flex !important;
  align-items:center !important;
  padding-bottom:0 !important;
}

.dropdown::after{
  content:'' !important;
  position:absolute !important;
  left:0 !important;
  top:100% !important;
  width:100% !important;
  height:18px !important;
}

.dropdown-content{
  top:calc(100% + 2px) !important;
  left:0 !important;
  opacity:0 !important;
  visibility:hidden !important;
  transform:translateY(8px) !important;
  transition:opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease !important;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover{
  opacity:1 !important;
  visibility:visible !important;
  transform:translateY(0) !important;
}

/* v21: stable hero using the correct image */
.hero{
  position:relative !important;
  overflow:hidden !important;
  background:var(--red) !important;
}

.hero-grid{
  position:relative !important;
  min-height:560px !important;
  display:flex !important;
  align-items:center !important;
}

/* full image underneath everything */
.hero-grid::before{
  content:'' !important;
  position:absolute !important;
  inset:0 !important;
  background:url('hero-correct.jpeg') center center / cover no-repeat !important;
  z-index:0 !important;
}

/* remove old split image treatments */
.hero-grid::after{
  display:none !important;
}

.hero-visual,
.hero-angle,
.hero-image-pane,
.hero-image-placeholder,
.worker-card{
  display:none !important;
}

/* left > overlay */
.hero-left-overlay{
  position:absolute !important;
  top:0 !important;
  bottom:0 !important;
  left:0 !important;
  width:clamp(540px, 57vw, 760px) !important;
  background:linear-gradient(
    90deg,
    rgba(207,32,39,0.92) 0%,
    rgba(207,32,39,0.86) 60%,
    rgba(207,32,39,0.78) 100%
  ) !important;
  clip-path:polygon(0 0, 79% 0, 100% 50%, 79% 100%, 0 100%) !important;
  z-index:1 !important;
  pointer-events:none !important;
}

/* right red band */
.hero-right-overlay{
  position:absolute !important;
  top:0 !important;
  bottom:0 !important;
  right:0 !important;
  width:clamp(120px, 18vw, 260px) !important;
  background:linear-gradient(
    90deg,
    rgba(207,32,39,0.76) 0%,
    rgba(207,32,39,0.88) 100%
  ) !important;
  z-index:1 !important;
  pointer-events:none !important;
}

/* text stays above overlays */
.hero-copy{
  position:relative !important;
  z-index:2 !important;
  color:#fff !important;
  background:none !important;
  padding:44px 0 50px !important;
}

.hero-copy::after{
  display:none !important;
}

.hero-copy-inner{
  max-width:490px !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-start !important;
}

.kicker{
  display:none !important;
}

.hero h1{
  font-size:clamp(2.2rem,4.3vw,4rem) !important;
  line-height:0.97 !important;
  margin:0 0 18px !important;
  font-weight:900 !important;
  text-transform:uppercase !important;
}

.hero p{
  max-width:450px !important;
  font-size:1rem !important;
  line-height:1.6 !important;
  margin:0 0 32px !important;
  color:rgba(255,255,255,.95) !important;
}

.hero-actions{
  display:flex !important;
  gap:16px !important;
  flex-wrap:wrap !important;
}

.hero-actions .btn{
  box-shadow:0 8px 22px rgba(0,0,0,0.12) !important;
}

/* keep header sizing from the versions you liked */
.nav-wrap{
  padding:10px 0 !important;
}

.logo img{
  height:108px !important;
}

/* mobile fallback */
@media (max-width:980px){
  .hero-grid{
    min-height:auto !important;
  }

  .hero-left-overlay{
    width:100% !important;
    clip-path:none !important;
    background:linear-gradient(
      180deg,
      rgba(207,32,39,0.90) 0%,
      rgba(207,32,39,0.80) 50%,
      rgba(207,32,39,0.52) 100%
    ) !important;
  }

  .hero-right-overlay{
    display:none !important;
  }

  .hero-copy{
    padding:30px 0 36px !important;
  }

  .logo img{
    height:90px !important;
  }
}

@media (max-width:760px){
  .hero h1{
    font-size:2.6rem !important;
  }

  .logo img{
    height:78px !important;
  }
}
