:root{
  --black:#000;
  --white:#fff;
  --grey:#70706f;
  --light:#eee;
  --mid:#d9d9d9;
  --text:#000;
  --muted:#444;
  --accent:#d7332f;
  --charcoal:#171717;
  --page:1280px;
  --article:768px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  background:var(--white);
  color:var(--text);
  font-family:Arial, Helvetica, sans-serif;
  line-height:1.5;
}

img{
  display:block;
  max-width:100%;
}

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

h1,h2,h3,p{
  margin-top:0;
  overflow-wrap:anywhere;
}

.navbar{
  min-height:72px;
  padding:0 72px;
  display:grid;
  grid-template-columns:1fr auto auto;
  align-items:center;
  gap:32px;
  border-bottom:1px solid var(--black);
  background:var(--white);
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-size:1.35rem;
  font-weight:800;
}

.brand img{
  width:34px;
  height:34px;
  border-radius:50%;
}

.navlinks{
  display:flex;
  align-items:center;
  gap:32px;
  font-size:1rem;
}

.navactions{
  display:flex;
  align-items:center;
  gap:16px;
}

.button{
  min-height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 22px;
  border:1px solid var(--accent);
  background:var(--accent);
  color:var(--white);
  font-weight:700;
  line-height:1;
}

.button_light{
  border-color:var(--black);
  background:var(--white);
  color:var(--black);
}

.hero{
  position:relative;
  min-height:495px;
  display:grid;
  place-items:center;
  background:var(--charcoal);
  color:var(--white);
  text-align:center;
  overflow:hidden;
}

.hero:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.64), rgba(0,0,0,.34) 48%, rgba(0,0,0,.58)),
    linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.32));
}

.hero_photo{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(.9) contrast(.98);
}

.hero_inner{
  position:relative;
  z-index:2;
  width:min(100% - 48px, 860px);
  min-height:260px;
  display:grid;
  align-content:center;
  justify-items:center;
  padding:40px 0;
}

.hero_category{
  position:relative;
  z-index:2;
  margin:0 0 20px;
  font-weight:800;
  color:#fff;
}

.hero_placeholder{
  display:none;
  position:absolute;
  inset:50% auto auto 50%;
  width:290px;
  height:230px;
  transform:translate(-50%, -48%);
  border-radius:28px;
  background:#5f5f5f;
  opacity:.95;
}

.hero_icon{
  position:absolute;
  left:50%;
  top:54%;
  width:200px;
  height:102px;
  transform:translate(-50%, -50%);
}

.hero_icon:before,
.hero_icon:after{
  content:"";
  position:absolute;
  bottom:0;
  width:112px;
  height:88px;
  background:#858585;
  clip-path:polygon(50% 0, 100% 100%, 0 100%);
  border-radius:8px;
}

.hero_icon:before{
  left:0;
}

.hero_icon:after{
  right:0;
  width:138px;
  height:122px;
  background:#777;
}

.hero_icon span{
  position:absolute;
  z-index:2;
  left:50%;
  top:60%;
  width:56px;
  height:56px;
  transform:translate(-50%, -50%);
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#ddd;
}

.hero_icon span:after{
  content:"";
  width:10px;
  height:8px;
  border:2px solid #aaa;
}

h1{
  position:relative;
  z-index:2;
  max-width:920px;
  margin:0;
  font-size:clamp(2.8rem, 4.7vw, 4.75rem);
  line-height:1.1;
  font-weight:800;
  letter-spacing:0;
}

.hero_author{
  position:relative;
  z-index:2;
  margin-top:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  font-size:.95rem;
}

.hero_author strong{
  flex-basis:100%;
  font-weight:800;
  color:#fff;
}

.hero_author span + span:before{
  content:"•";
  margin-right:10px;
}

.article{
  padding:112px 0 88px;
}

.article_shell{
  width:min(var(--article), calc(100% - 48px));
  margin-inline:auto;
}

.article_meta{
  margin-bottom:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
}

.breadcrumb{
  display:flex;
  align-items:center;
  gap:12px;
}

.share{
  display:flex;
  align-items:center;
  gap:8px;
}

.share a{
  width:32px;
  height:32px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--light);
  font-size:.9rem;
  font-weight:800;
}

.share a:hover{
  background:var(--accent);
  color:var(--white);
}

.richtext h2{
  margin-bottom:22px;
  font-size:2.5rem;
  line-height:1.15;
  font-weight:800;
}

.richtext p,
.richtext li{
  color:var(--text);
  font-size:1rem;
}

.richtext p{
  margin-bottom:22px;
}

.richtext section + section{
  margin-top:64px;
}

.service_topics{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:30px;
  padding:8px 0 20px;
  border-bottom:1px solid var(--black);
}

.service_topics button{
  min-height:46px;
  padding:0 22px;
  border:1px solid #dedede;
  border-radius:999px;
  background:#f7f7f7;
  color:var(--black);
  font:inherit;
  font-weight:800;
  box-shadow:0 8px 20px rgba(0,0,0,.04);
  cursor:pointer;
  transition:background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.service_topics button:hover{
  border-color:var(--accent);
  box-shadow:0 10px 24px rgba(224,48,45,.12);
  transform:translateY(-1px);
}

.service_topics button.is-active{
  background:var(--accent);
  border-color:var(--accent);
  color:var(--white);
  box-shadow:0 14px 30px rgba(224,48,45,.22);
}

.service_panel{
  margin-top:24px;
  padding:26px 28px;
  border:1px solid var(--black);
  background:#f7f7f7;
}

.service_panel small,
.service_carousel small{
  display:block;
  margin-bottom:10px;
  color:var(--accent);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.service_panel ul{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
  margin:0;
  padding:0;
  list-style:none;
}

.service_panel li{
  min-height:56px;
  display:flex;
  align-items:center;
  padding:12px 14px;
  background:var(--white);
  border:1px solid #dedede;
  font-weight:800;
}

.service_carousel{
  position:relative;
  overflow:hidden;
  margin-top:30px;
  padding:2px 0;
  border-top:1px solid var(--black);
  border-bottom:1px solid var(--black);
}

.service_carousel::before,
.service_carousel::after{
  content:"";
  position:absolute;
  z-index:2;
  top:0;
  bottom:0;
  width:64px;
  pointer-events:none;
}

.service_carousel::before{
  left:0;
  background:linear-gradient(90deg, var(--white), transparent);
}

.service_carousel::after{
  right:0;
  background:linear-gradient(270deg, var(--white), transparent);
}

.service_carousel_track{
  display:flex;
  width:max-content;
  gap:16px;
  padding:18px 0;
  animation:serviceScroll 14s linear infinite;
}

.service_carousel:hover .service_carousel_track{
  animation-play-state:paused;
}

.service_carousel article{
  width:260px;
  min-height:150px;
  padding:20px;
  flex:0 0 auto;
  background:#f7f7f7;
  border:1px solid #dedede;
}

.service_carousel strong{
  display:block;
  margin-bottom:10px;
  font-size:1.05rem;
  line-height:1.2;
}

.service_carousel p{
  margin:0;
  color:var(--muted);
  font-size:.95rem;
}

@keyframes serviceScroll{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(calc(-50% - 8px));
  }
}

.image_block{
  margin:48px 0;
}

.image_block img,
.image_placeholder_large{
  width:100%;
  height:360px;
  object-fit:cover;
  background:var(--mid);
}

blockquote{
  margin:56px 0;
  padding:0 0 0 24px;
  border-left:4px solid var(--accent);
}

blockquote p{
  margin:0;
  font-size:1.5rem;
  line-height:1.35;
  font-weight:800;
}

.richtext ul{
  margin:22px 0 0;
  padding-left:1.25rem;
}

.reviews_section{
  margin-top:64px;
  padding:40px 0;
  border-top:1px solid var(--black);
  border-bottom:1px solid var(--black);
}

.reviews_header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:28px;
}

.reviews_header small{
  display:block;
  margin-bottom:8px;
  color:var(--accent);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.reviews_header h2{
  margin:0;
}

.reviews_header a{
  color:var(--black);
  font-size:.95rem;
  font-weight:700;
  text-decoration:underline;
  text-underline-offset:4px;
}

.reviews_summary{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  border:1px solid var(--black);
  margin-bottom:20px;
}

.reviews_summary div{
  padding:18px 20px;
}

.reviews_summary div + div{
  border-left:1px solid var(--black);
}

.reviews_summary strong,
.reviews_summary span{
  display:block;
}

.reviews_summary strong{
  margin-bottom:6px;
  font-size:1.35rem;
  text-transform:uppercase;
}

.reviews_summary span{
  color:var(--muted);
}

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

.reviews_grid article{
  padding:24px;
  background:#f7f7f7;
  border:1px solid #dedede;
}

.stars{
  margin-bottom:18px;
  color:var(--accent);
  font-size:.95rem;
  letter-spacing:.08em;
}

.reviews_grid p{
  margin-bottom:20px;
  font-size:1.05rem;
  line-height:1.55;
}

.reviews_grid footer{
  color:var(--muted);
  font-size:.92rem;
  font-weight:700;
}

.google_reviews_card{
  padding:26px 28px;
  border:1px solid var(--black);
  background:#f7f7f7;
}

.google_reviews_card p{
  max-width:680px;
  margin:0 0 12px;
  font-size:1.05rem;
  line-height:1.55;
}

.google_reviews_card span{
  display:block;
  color:var(--muted);
  font-size:.9rem;
  font-weight:700;
}

.reviews_actions{
  margin-top:20px;
  display:flex;
  justify-content:flex-start;
}

.partners_section{
  margin-top:64px;
  padding:40px 0;
  border-bottom:1px solid var(--black);
}

.partners_header{
  margin-bottom:28px;
}

.partners_header small{
  display:block;
  margin-bottom:8px;
  color:var(--accent);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.partners_header h2{
  margin:0;
}

.partners_grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  border-top:1px solid var(--black);
  padding-top:20px;
}

.partners_grid article{
  min-height:112px;
  padding:22px 24px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid #dedede;
  background:#f7f7f7;
}

.partners_grid img{
  display:block;
  max-width:150px;
  max-height:48px;
  width:auto;
  height:auto;
  object-fit:contain;
}

.cta{
  padding:80px 0;
  border-top:1px solid var(--black);
  text-align:center;
  background:#f7f7f7;
}

.cta h2{
  margin-bottom:16px;
  font-size:2.5rem;
  line-height:1.1;
  font-weight:800;
}

.cta p{
  max-width:560px;
  margin:0 auto 28px;
}

.footer{
  min-height:76px;
  padding:0 72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  border-top:1px solid var(--black);
  color:var(--muted);
}

@media (max-width:980px){
  .navbar{
    grid-template-columns:1fr;
    padding:20px 32px;
  }

  .navlinks,
  .navactions{
    justify-content:flex-start;
    flex-wrap:wrap;
  }

  .hero{
    min-height:520px;
  }
}

@media (max-width:640px){
  .navbar{
    padding:18px 20px;
    gap:20px;
  }

  .brand{
    font-size:1.35rem;
  }

  .navlinks{
    gap:16px;
  }

  .navactions{
    width:100%;
  }

  .button{
    min-height:42px;
    padding:0 16px;
  }

  .hero{
    min-height:460px;
  }

  .hero_inner{
    width:min(100% - 32px, 860px);
  }

  .hero_placeholder{
    width:240px;
    height:200px;
  }

  h1{
    font-size:2.4rem;
  }

  .hero_author{
    margin-top:98px;
  }

  .article{
    padding:72px 0;
  }

  .article_shell{
    width:min(100% - 32px, var(--article));
  }

  .article_meta{
    align-items:flex-start;
    flex-direction:column;
    margin-bottom:52px;
  }

  .richtext h2,
  .cta h2{
    font-size:2rem;
  }

  .service_topics{
    display:grid;
    grid-template-columns:1fr;
  }

  .service_topics button{
    width:100%;
  }

  .service_panel{
    padding:22px;
  }

  .service_panel ul{
    grid-template-columns:1fr;
  }

  .service_carousel_track{
    animation-duration:12s;
  }

  .service_carousel article{
    width:230px;
  }

  .reviews_header{
    align-items:flex-start;
    flex-direction:column;
  }

  .reviews_summary,
  .reviews_grid{
    grid-template-columns:1fr;
  }

  .reviews_summary div + div{
    border-left:0;
    border-top:1px solid var(--black);
  }

  .partners_grid{
    grid-template-columns:1fr;
  }

  .image_placeholder_large{
    height:260px;
  }

  .footer{
    display:grid;
    justify-items:center;
    padding:24px 20px;
    text-align:center;
  }
}
