:root{
  --charcoal:#293D4C;
  --charcoal-2:#33485A;
  --charcoal-3:#3F5567;
  --steel-grey:#6B6B6B;
  --fog:#9A9A9A;
  --safety-yellow:#DF341F;
  --safety-yellow-dark:#B8280F;
  --off-white:#F4F3EF;
  --paper:#FFFFFF;
  --ink:#293D4C;
  --border:#E1DFD8;
  --line-dark:#42576A;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Barlow', sans-serif;
  background:var(--off-white);
  color:var(--ink);
  line-height:1.6;
  font-size:16px;
}
h1,h2,h3,.brand{
  font-family:'Barlow Condensed', sans-serif;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:0.01em;
  line-height:1.05;
}
a{color:inherit; text-decoration:none;}
.wrap{max-width:1160px; margin:0 auto; padding:0 24px;}

.skip-link{
  position:absolute; left:-999px; top:0; background:var(--safety-yellow); color:var(--off-white);
  padding:12px 18px; z-index:200; font-weight:600;
}
.skip-link:focus{left:12px; top:12px;}

/* diagonal divider - signature element (distinct from zigzag shingle pattern) */
.diag-cut{
  height:36px; width:100%;
  background:var(--charcoal);
  clip-path:polygon(0 100%, 100% 0, 100% 100%);
}
.diag-cut.flip{
  background:var(--off-white);
  clip-path:polygon(0 0, 100% 100%, 0 100%);
}
#services + .diag-cut.flip{ margin-top:-1px; }

/* header */
header{
  background:var(--charcoal);
  color:var(--off-white);
  position:sticky; top:0; z-index:50;
  border-bottom:3px solid var(--safety-yellow);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 24px;
}
.brand{
  font-size:24px; color:var(--off-white); display:flex; align-items:center; gap:10px; line-height:1;
}
.brand-text{display:flex; flex-direction:column; line-height:1;}
.logo{height:40px; width:auto; max-width:120px; object-fit:contain; display:block; flex-shrink:0;}
.brand-sub{
  font-family:'Barlow', sans-serif; font-weight:600; text-transform:uppercase;
  font-size:10.5px; letter-spacing:0.16em; color:var(--off-white); margin-top:3px;
}
@media (max-width:420px){ .brand{font-size:19px; gap:7px;} .brand-sub{font-size:9px;} .header-inner{padding:12px 16px;} .logo{height:32px; max-width:96px;} }

nav{display:flex; gap:26px; align-items:center;}
nav a.nav-link{font-size:14.5px; font-weight:600; color:var(--fog); transition:color .15s; text-transform:uppercase; letter-spacing:0.03em;}
nav a.nav-link:hover{color:var(--off-white);}
.call-btn{
  background:var(--safety-yellow); color:var(--off-white)!important;
  padding:11px 20px; font-weight:800; font-size:14.5px;
  font-family:'Barlow Condensed', sans-serif; letter-spacing:0.03em;
  text-transform:uppercase; border-radius:1px;
  min-height:44px; display:flex; align-items:center;
}
.call-btn:hover{background:var(--safety-yellow-dark);}

.menu-toggle{
  display:none; background:none; border:2px solid var(--line-dark); border-radius:2px;
  width:44px; height:44px; align-items:center; justify-content:center;
  cursor:pointer; flex-direction:column; gap:5px;
}
.menu-toggle span{width:20px; height:2px; background:var(--off-white); display:block;}
@media (max-width:780px){
  nav a.nav-link{display:none;}
  .call-btn{display:none;}
  .menu-toggle{display:flex;}
}
.mobile-menu{
  display:none; flex-direction:column; background:var(--charcoal-2);
  border-top:1px solid var(--line-dark); padding:8px 24px 18px;
}
.mobile-menu.open{display:flex;}
.mobile-menu a{
  padding:14px 4px; font-size:16px; color:var(--off-white); font-weight:600;
  border-bottom:1px solid var(--line-dark); min-height:44px; display:flex; align-items:center;
  text-transform:uppercase; letter-spacing:0.02em;
}
.mobile-menu a:last-child{border-bottom:none; color:var(--off-white);}

/* hero */
.hero{
  background:var(--charcoal);
  color:var(--off-white);
  padding:64px 0 48px;
}
.hero-inner{display:grid; grid-template-columns:1.3fr 1fr; gap:44px; align-items:center;}
@media (max-width:840px){ .hero-inner{grid-template-columns:1fr;} }
.eyebrow{
  color:var(--off-white); font-size:13.5px; font-weight:700;
  letter-spacing:0.1em; text-transform:uppercase; margin-bottom:16px; display:block;
}
.hero h1{font-size:clamp(36px,6.2vw,60px); margin-bottom:20px;}
.hero-copy > p{color:var(--fog); font-size:17.5px; max-width:48ch; margin-bottom:26px;}
.hero-ctas{display:flex; gap:14px; flex-wrap:wrap; margin-bottom:28px;}
.btn-primary{
  background:var(--safety-yellow); color:var(--off-white);
  padding:15px 28px; font-family:'Barlow Condensed', sans-serif; font-weight:800;
  text-transform:uppercase; letter-spacing:0.03em; border-radius:1px; font-size:16px;
  min-height:44px; display:inline-flex; align-items:center; justify-content:center;
  border:2px solid var(--safety-yellow);
}
.btn-primary:hover{background:var(--safety-yellow-dark); border-color:var(--safety-yellow-dark);}
.btn-ghost{
  border:2px solid var(--line-dark); color:var(--off-white);
  padding:15px 28px; font-family:'Barlow Condensed', sans-serif; font-weight:800;
  text-transform:uppercase; letter-spacing:0.03em; border-radius:1px; font-size:16px;
  min-height:44px; display:inline-flex; align-items:center; justify-content:center;
}
.btn-ghost:hover{border-color:var(--safety-yellow); color:var(--off-white);}

.rating-strip{display:flex; align-items:center; gap:10px; flex-wrap:wrap; font-size:14.5px; color:var(--off-white);}
.stars{color:var(--off-white); font-size:17px; letter-spacing:2px;}

.hero-panel{
  background:var(--charcoal-2); border:1px solid var(--line-dark); border-left:4px solid var(--safety-yellow);
  padding:26px;
}
.hero-panel-row{
  display:flex; justify-content:space-between; align-items:baseline; gap:12px;
  padding:13px 0; border-bottom:1px solid var(--line-dark); font-size:14.5px;
}
.hero-panel-row:last-child{border-bottom:none;}
.hero-panel-row span{color:var(--fog); text-transform:uppercase; letter-spacing:0.05em; font-size:12.5px;}
.hero-panel-row strong{font-family:'Barlow Condensed', sans-serif; font-weight:700; font-size:16px; text-align:right;}

/* trust bar */
.trust-bar{
  background:var(--off-white);
  padding:20px 24px; display:flex; flex-wrap:wrap; gap:14px 30px; justify-content:center;
  font-size:13.5px; font-weight:700; color:var(--charcoal); text-transform:uppercase; letter-spacing:0.03em;
}
.trust-bar span{position:relative; padding-left:22px;}
.trust-bar span::before{
  content:"\2713"; position:absolute; left:0; color:var(--safety-yellow-dark); font-weight:800;
}

section{padding:68px 0;}
#services{padding-top:56px;}
.section-head{max-width:640px; margin:0 auto 42px;}
.section-head .eyebrow{color:var(--safety-yellow-dark);}
.section-head h2{font-size:clamp(28px,4.2vw,40px); color:var(--charcoal);}

/* services */
.services-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px;}
@media (max-width:860px){ .services-grid{grid-template-columns:1fr 1fr;} }
@media (max-width:560px){ .services-grid{grid-template-columns:1fr;} }
.service-card{
  background:var(--paper); border:1px solid var(--border);
  padding:28px 24px; border-top:4px solid var(--charcoal);
}
.service-card:hover{border-top-color:var(--safety-yellow);}
.service-card h3{font-size:20px; color:var(--charcoal); margin-bottom:10px; text-transform:none; letter-spacing:0;}
.service-card p{font-size:15px; color:#55524A;}
.service-card .num{font-family:'Barlow Condensed', sans-serif; font-weight:700; font-size:15px; color:var(--safety-yellow-dark); display:block; margin-bottom:10px;}

/* cta band */
.cta-band{
  background:var(--charcoal); color:var(--off-white); padding:52px 0;
}
.cta-band-inner{display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;}
.cta-band h2{font-size:clamp(24px,4vw,34px); margin-bottom:8px; color:var(--off-white);}
.cta-band p{color:var(--fog); max-width:46ch; font-size:15.5px;}

/* why-us / testimonials */
.why-grid{display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start;}
@media (max-width:840px){ .why-grid{grid-template-columns:1fr;} }
.why-col{display:flex; flex-direction:column; gap:26px;}
.why-item{border-left:3px solid var(--safety-yellow); padding-left:18px;}
.why-item h3{font-size:19px; color:var(--charcoal); text-transform:none; letter-spacing:0; margin-bottom:6px;}
.why-item p{font-size:15px; color:#55524A;}

/* testimonial carousel (React island) */
.tc-wrap{display:flex; flex-direction:column; gap:18px;}
.tc-quote{
  background:var(--charcoal); color:var(--off-white); border-left:4px solid var(--safety-yellow);
  padding:28px; min-height:160px; display:flex; flex-direction:column; justify-content:center;
}
.tc-quote p{font-size:17px; margin:0 0 16px; font-weight:500;}
.tc-quote footer{font-size:13px; color:var(--fog); text-transform:uppercase; letter-spacing:0.05em; font-weight:700;}
.tc-controls{display:flex; align-items:center; justify-content:center; gap:18px;}
.tc-btn{
  width:44px; height:44px; border-radius:50%; border:2px solid var(--border);
  background:var(--paper); color:var(--charcoal); font-size:20px; line-height:1;
  display:flex; align-items:center; justify-content:center; cursor:pointer;
}
.tc-btn:hover{border-color:var(--safety-yellow-dark); color:var(--safety-yellow-dark);}
.tc-dots{display:flex; gap:4px;}
.tc-dot{
  width:44px; height:44px;
  background:none; border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
}
.tc-dot::before{
  content:""; width:10px; height:10px; border-radius:50%; background:#D4D0C4; display:block;
}
.tc-dot-active::before{background:var(--safety-yellow-dark);}

/* about */
.about-grid{display:grid; grid-template-columns:1.4fr 1fr; gap:48px; align-items:start;}
@media (max-width:840px){ .about-grid{grid-template-columns:1fr;} }
.about-grid p{color:#454239; font-size:15.5px; margin-bottom:14px;}
.about-badge{
  background:var(--charcoal); color:var(--off-white); padding:32px 28px; text-align:center;
  border-top:4px solid var(--safety-yellow);
}
.about-badge-big{
  font-family:'Archivo Black', sans-serif; font-size:44px; display:block; color:var(--off-white);
}
.about-badge-star{font-size:26px; margin-left:4px;}
.about-badge-label{font-size:13px; text-transform:uppercase; letter-spacing:0.05em; color:var(--fog); display:block; margin-top:6px;}
.about-badge hr{border:none; border-top:1px solid var(--line-dark); margin:22px 0;}

/* contact */
.contact-section{background:var(--charcoal-2); color:var(--off-white);}
.eyebrow-light{color:var(--off-white);}
.contact-section h2{color:var(--off-white); margin-bottom:22px;}
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:40px;}
@media (max-width:840px){ .contact-grid{grid-template-columns:1fr;} }
.contact-card{background:var(--charcoal); border:1px solid var(--line-dark); padding:28px; margin-bottom:22px;}
.contact-card .row{display:flex; gap:14px; padding:13px 0; border-bottom:1px solid var(--line-dark); font-size:15px; flex-wrap:wrap;}
.contact-card .row:last-child{border-bottom:none;}
.contact-card .row .k{width:80px; color:var(--fog); text-transform:uppercase; letter-spacing:0.05em; font-size:12px; flex-shrink:0; padding-top:2px; font-weight:700;}
.contact-card .row a{color:var(--off-white); text-decoration:underline;}
.contact-mail-btn{width:100%;}
.map-frame{position:relative; width:100%; padding-bottom:85%; border:1px solid var(--line-dark);}
@media (min-width:600px){ .map-frame{padding-bottom:100%;} }
.map-frame iframe{position:absolute; top:0; left:0; width:100%; height:100%; border:0;}

footer{
  background:var(--charcoal); color:var(--fog); text-align:center;
  padding:28px 24px; font-size:13px; border-top:3px solid var(--safety-yellow);
}
.footer-inner{display:flex; flex-direction:column; gap:8px; align-items:center;}
.footer-brand{font-size:16px; color:var(--off-white); letter-spacing:0.03em;}

:focus-visible{outline:3px solid var(--safety-yellow); outline-offset:2px;}
