:root{
  --heat:#e23b2e;
  --cool:#1e6fdb;
  --sun:#f2c200;
  --ink:#111827;
  --muted:#f5f7fa;
  --card:#ffffff;
  --border:rgba(17,24,39,.12);
  --shadow:0 10px 30px rgba(17,24,39,.10);
  --radius:16px;
  --max:1120px;
  --font: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:var(--font);
  color:var(--ink);
  background:#fff;
  line-height:1.5;
}

a{color:inherit;text-decoration:none}
a:hover{text-decoration:underline}

.container{max-width:var(--max); margin:0 auto; padding:0 20px;}
.section{padding:56px 0;}
.section.alt{background:var(--muted);}

.badges{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.badge{
  font-size:13px;
  padding:8px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  background:#fff;
  display:inline-flex;
  gap:8px;
  align-items:center;
}
.badge .dot{width:8px;height:8px;border-radius:99px;background:var(--cool)}
.badge.heat .dot{background:var(--heat)}
.badge.sun .dot{background:var(--sun)}

.topbar{
  background:linear-gradient(90deg, rgba(226,59,46,.08), rgba(30,111,219,.08));
  border-bottom:1px solid var(--border);
  font-size:14px;
}
.topbar .row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
  gap:12px;
  flex-wrap:wrap;
}
.topbar strong{font-weight:800}

header{
  position:sticky;
  top:0;
  z-index:50;
  background:#fff;
  border-bottom:1px solid var(--border);
}
@media (min-width: 921px){
  header .container{ max-width:1440px; }
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:18px;
}

/* =========================
   HEADER LOGO (CONTAIN — NO CROPPING)
   ========================= */

/* Make the <a class="brandmark"> itself be the rectangle */
.brandmark{
  display:flex;
  align-items:center;
  justify-content:center;

  width:420px;
  height:110px;

  padding:0;           /* IMPORTANT: no padding so the img can size cleanly */
  border-radius:14px;
  overflow:hidden;     /* keeps the logo inside rounded corners */
  text-decoration:none;
}

.brandmark:hover{
  text-decoration:none;
  background:rgba(17,24,39,.03);
}

/* Make the logo image fit INSIDE the rectangle without cropping */
.brandmark img{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
  object-position:center;
}

/* Responsive logo rectangle */
@media (max-width: 920px){
  .brandmark{ width:420px; height:110px; }
}

@media (max-width: 720px){
  .brandmark img{ height:auto; }
}

nav ul{
  list-style:none;
  display:flex;
  gap:18px;
  margin:0;
  padding:0;
  align-items:center;
}
nav a{
  font-weight:700;
  font-size:14px;
  padding:10px 10px;
  border-radius:10px;
}
nav a.active{
  background:rgba(30,111,219,.10);
  text-decoration:none;
}

.actions{
  display:flex;
  gap:10px;
  align-items:center;
}
.actions .btn.primary{
  padding:6px 14px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  font-weight:800;
  font-size:14px;
  box-shadow:0 1px 0 rgba(17,24,39,.04);
}
.btn.primary{
  background:var(--heat);
  color:#fff;
  border-color:rgba(226,59,46,.6);
}
.btn.secondary{
  background:var(--cool);
  color:#fff;
  border-color:rgba(30,111,219,.6);
}
.btn.sun{
  background:var(--sun);
  color:#1b1b1b;
  border-color:rgba(242,194,0,.7);
}

.menu-btn{
  display:none;
  border:1px solid var(--border);
  border-radius:12px;
  padding:10px 12px;
  font-weight:900;
  background:#fff;
}

.hero{
  padding:44px 0 26px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:start;
}
.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  font-weight:900;
  letter-spacing:.02em;
  font-size:13px;
  color:rgba(17,24,39,.75);
  text-transform:uppercase;
}
.kicker .pill{
  padding:6px 10px;
  border-radius:999px;
  background:rgba(226,59,46,.10);
  border:1px solid rgba(226,59,46,.18);
}
h1{
  margin:10px 0 10px;
  font-size:44px;
  line-height:1.06;
  letter-spacing:-.02em;
}
.subhead{
  font-size:18px;
  color:rgba(17,24,39,.75);
  max-width:60ch;
}
.hero-cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}

.panel{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}
.panel h3{margin:0 0 10px; font-size:16px}
.panel p{margin:0; color:rgba(17,24,39,.75)}
.panel .list{margin:10px 0 0; padding-left:18px; color:rgba(17,24,39,.80)}
.panel .list li{margin:6px 0}
.panel .list-two-columns{
  column-count:2;
  column-gap:32px;
}
.panel .list-two-columns li{
  break-inside:avoid;
}

.request-intro,
.request-layout{
  display:grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap:18px;
}

.request-intro{
  align-items:start;
  margin-bottom:18px;
}

.request-aside{
  align-self:stretch;
}

.request-contact-card h2,
.request-layout h2{
  margin:0 0 10px;
  font-size:24px;
}

.request-form-copy{
  margin-bottom:16px;
}

.request-contact-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:16px 0;
}

.request-contact-meta{
  display:grid;
  gap:8px;
}

.request-form{
  display:grid;
  gap:14px;
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}

.field{
  display:grid;
  gap:6px;
}

.field label{
  font-size:14px;
  font-weight:700;
}

.field input,
.field select,
.field textarea{
  width:100%;
  padding:12px 13px;
  border:1px solid rgba(17,24,39,.18);
  border-radius:12px;
  font:inherit;
  color:var(--ink);
  background:#fff;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  outline:none;
  border-color:rgba(30,111,219,.6);
  box-shadow:0 0 0 3px rgba(30,111,219,.12);
}

.field textarea{
  resize:vertical;
  min-height:140px;
}

.field-hidden{
  display:none;
}

.request-submit{
  width:100%;
  cursor:pointer;
}

.request-submit[disabled]{
  opacity:.7;
  cursor:wait;
}

.form-status{
  margin:0;
  min-height:24px;
  font-weight:700;
}

.form-status.is-success{
  color:#0f766e;
}

.form-status.is-error{
  color:#b91c1c;
}

/* === Thin click-to-call logo strip (matches your small screenshot) === */
.hero-logo-strip{
  margin-top:14px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:10px 12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:fit-content;
  max-width:100%;
  box-shadow:0 1px 0 rgba(17,24,39,.04);
  text-decoration:none;
}
.hero-logo-strip:hover{
  text-decoration:none;
  box-shadow:var(--shadow);
}
.hero-logo-strip:focus-visible{
  outline:3px solid rgba(30,111,219,.35);
  outline-offset:3px;
}
.hero-logo-strip img{
  height:48px;
  width:auto;
  display:block;
  object-fit:contain;
}
@media (max-width: 720px){
  .hero-logo-strip img{ height:44px; }
}

/* Services tiles (6) */
.services-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.service-tile{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:0 1px 0 rgba(17,24,39,.04);
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.service-icon{
  width:44px;
  height:44px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:950;
  letter-spacing:.08em;
  background:rgba(30,111,219,.10);
  border:1px solid rgba(30,111,219,.18);
  flex:0 0 auto;
}
.service-icon.heat{ background:rgba(226,59,46,.10); border-color:rgba(226,59,46,.18); }
.service-icon.sun{ background:rgba(242,194,0,.18); border-color:rgba(242,194,0,.28); }
.service-tile h3{ margin:0 0 6px; font-size:16px; }
.service-tile p{ margin:0 0 10px; color:rgba(17,24,39,.75); }
.service-tile a{ font-weight:900; color:var(--cool); }

/* Reviews */
.stars{
  letter-spacing:1px;
  color:#f4b400;
  font-size:14px;
  margin-bottom:10px;
}
.review-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.review-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
}
.review-card p{ margin:0 0 10px; color:rgba(17,24,39,.80); }
.review-card .by{ font-weight:900; font-size:13px; color:rgba(17,24,39,.60); }

.footer{
  padding:28px 0;
  border-top:1px solid var(--border);
  background:#fff;
}
.footer .row{
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.small{font-size:13px; color:rgba(17,24,39,.70)}
.footer a{font-weight:800}

.form-embed{
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  background:#fff;
}
.form-embed iframe{
  width:100%;
  height:920px;
  border:0;
}

.sticky-actions{
  position:fixed;
  right:14px;
  bottom:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index:80;
  transition: opacity .25s ease, transform .25s ease;
}
.sticky-actions a{ text-decoration:none; }
.sticky-actions .btn{ box-shadow:var(--shadow); }
.sticky-actions--hidden{
  opacity:0;
  transform:translateY(20px);
  pointer-events:none;
}

@media (max-width: 920px){
  .hero-grid{grid-template-columns: 1fr; }
  h1{font-size:38px}
  .services-grid{grid-template-columns: 1fr 1fr;}
  .review-grid{grid-template-columns: 1fr 1fr;}
  .panel .list-two-columns{column-count:1;}
  nav ul{gap:10px}
}

/* === Large phone call-to-action band === */
.phone-band{
  background:var(--heat);
  padding:10px 0;
  text-align:center;
}
.phone-band .phone-band-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
}
.phone-band .phone-number{
  font-size:42px;
  font-weight:900;
  color:#fff;
  letter-spacing:-0.03em;
  line-height:1;
  text-decoration:none;
  display:inline-block;
}
.phone-band .phone-number:hover{text-decoration:underline}
.phone-band .phone-label{
  font-size:13px;
  font-weight:700;
  color:rgba(255,255,255,.85);
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-top:4px;
}

/* === Image placeholder === */
.img-placeholder{
  background:var(--muted);
  border:2px dashed rgba(17,24,39,.18);
  border-radius:var(--radius);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  color:rgba(17,24,39,.40);
  padding:24px;
  text-align:center;
}
.img-placeholder .ph-icon{
  font-size:40px;
  line-height:1;
  opacity:.6;
}
.img-placeholder .ph-label{
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.img-placeholder .ph-hint{
  font-size:12px;
  font-weight:400;
  text-transform:none;
  color:rgba(17,24,39,.35);
}

/* === Split section (image + content side by side) === */
.split-section{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:36px;
  align-items:center;
}
.split-content h2{margin:0 0 12px}
.split-content p{color:rgba(17,24,39,.75); margin:0 0 14px}
.split-content ul.check-list{
  list-style:none;
  padding:0;
  margin:0 0 18px;
}
.split-content ul.check-list li{
  padding:7px 0;
  border-bottom:1px solid var(--border);
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:15px;
  color:rgba(17,24,39,.80);
}
.split-content ul.check-list li:last-child{border-bottom:none}
.split-content ul.check-list li::before{
  content:"✓";
  color:var(--heat);
  font-weight:900;
  flex-shrink:0;
  margin-top:1px;
}

/* === Testimonial / quote review cards === */
.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:20px;
}
.testimonial-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:24px 20px 18px;
  position:relative;
  box-shadow:0 2px 10px rgba(17,24,39,.06);
}
.testimonial-card .quote-icon{
  position:absolute;
  top:10px;
  left:16px;
  font-size:56px;
  line-height:1;
  color:rgba(226,59,46,.12);
  font-family:Georgia,'Times New Roman',serif;
  font-weight:900;
  pointer-events:none;
  user-select:none;
}
.testimonial-card .t-stars{
  font-size:18px;
  letter-spacing:2px;
  color:#f4b400;
  margin-bottom:10px;
  margin-top:22px;
}
.testimonial-card blockquote{
  margin:0 0 14px;
  padding:0;
  font-size:15px;
  line-height:1.65;
  color:rgba(17,24,39,.80);
  font-style:italic;
}
.testimonial-card .t-reviewer{
  font-weight:900;
  font-size:12px;
  color:rgba(17,24,39,.50);
  text-transform:uppercase;
  letter-spacing:.06em;
}

/* === Full-width CTA band === */
.cta-band{
  background:var(--cool);
  padding:40px 0;
  color:#fff;
  text-align:center;
}
.cta-band h2{
  margin:0 0 8px;
  color:#fff;
  font-size:30px;
}
.cta-band p{
  margin:0 0 20px;
  opacity:.88;
  font-size:16px;
}
.cta-band .cta-actions{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}
.cta-band .btn.white{
  background:#fff;
  color:var(--ink);
  border-color:#fff;
}

/* === Reviews header panel === */
.reviews-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:24px;
  padding-bottom:20px;
  border-bottom:1px solid var(--border);
}
.reviews-header .review-score{
  display:flex;
  align-items:center;
  gap:14px;
}
.reviews-header .score-num{
  font-size:52px;
  font-weight:900;
  line-height:1;
  color:var(--ink);
}
.reviews-header .score-meta{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.reviews-header .score-stars{
  font-size:22px;
  color:#f4b400;
  letter-spacing:2px;
}
.reviews-header .score-label{
  font-size:13px;
  color:rgba(17,24,39,.60);
}
.reviews-title{
  margin:0 0 6px;
}
.reviews-subtitle{
  margin:0;
  color:rgba(17,24,39,.70);
}
.reviews-cta{
  margin-top:20px;
}

/* === About / Feature tiles === */
.feature-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
  margin-top:18px;
}
.feature-tile{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:20px;
  box-shadow:0 1px 4px rgba(17,24,39,.04);
  text-align:center;
}
.feature-tile .feature-icon{
  font-size:32px;
  margin-bottom:10px;
  display:block;
}
.feature-tile h3{
  margin:0 0 8px;
  font-size:16px;
}
.feature-tile p{
  margin:0;
  font-size:14px;
  color:rgba(17,24,39,.70);
}

@media (max-width: 920px){
  .split-section{grid-template-columns:1fr}
  .testimonial-grid{grid-template-columns:1fr 1fr}
  .feature-grid{grid-template-columns:1fr 1fr}
  .request-intro,
  .request-layout,
  .form-grid{grid-template-columns:1fr}
}

/* Mobile logo bar — scrolls with page, not sticky */
.mobile-logo-bar{
  display:none;
}
@media (max-width: 720px){
  .mobile-logo-bar{
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    border-bottom:1px solid var(--border);
    padding:6px 8px;
    width:100%;
    box-sizing:border-box;
  }
  .mobile-logo-bar a{
    display:block;
    text-decoration:none;
    width:100%;
  }
  .mobile-logo-bar img{
    height:auto;
    width:100%;
    max-height:162px;
    display:block;
    object-fit:contain;
  }
}

@media (max-width: 720px){
  .about-team-grid{grid-template-columns:1fr !important;}
  .panel .list-two-columns{
    column-count:2;
    column-gap:18px;
  }
  .panel .list-two-columns li{
    font-size:14px;
  }
  .actions{display:none;}
  .menu-btn{display:none;}
  .brandmark{display:none;}
  header{position:sticky; top:0;}
  .header-inner{flex-wrap:nowrap; justify-content:center; padding:0;}
  nav{display:block; width:100%; position:static; background:#fff; border-bottom:1px solid var(--border); padding:4px 8px; margin-top:0;}
  nav ul{flex-wrap:nowrap; gap:0; justify-content:space-around;}
  nav a{font-size:11px; padding:10px 4px; white-space:nowrap;}
  .services-grid{grid-template-columns: 1fr;}
  .review-grid{grid-template-columns:1fr}
  .testimonial-grid{grid-template-columns:1fr}
  .feature-grid{grid-template-columns:1fr}
  .sticky-actions{
    left:14px;
    right:14px;
    bottom:10px;
    flex-direction:row;
    justify-content:stretch;
    gap:6px;
  }
  .sticky-actions .btn{
    flex:1;
    padding:9px 6px;
    font-size:12px;
    border-radius:10px;
  }
  .phone-band .phone-number{font-size:32px}
  .reviews-header .score-num{font-size:40px}
}
