
:root{
  --white:#ffffff;
  --bg:#fafafa;
  --text:#141414;
  --muted:#5a5a5a;
  --line:#e8e8e8;
  --red:#d81820;
  --red-dark:#b91218;
  --soft:#f4f4f4;
  --shadow:0 10px 30px rgba(0,0,0,.08);
  --radius:22px;
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.6;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{
  width:min(var(--max), calc(100% - 32px));
  margin:0 auto;
}
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(8px);
}
.header-inner{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.logo-link img{
  width:210px;
  height:auto;
}
.site-nav{
  display:flex;
  align-items:center;
  gap:28px;
  font-weight:700;
}
.site-nav a{
  color:#252525;
}
.site-nav a:hover{
  color:var(--red);
}
.menu-toggle{
  display:none;
  border:1px solid var(--line);
  background:var(--white);
  border-radius:12px;
  padding:10px 12px;
  font-size:1.2rem;
  cursor:pointer;
}
.hero{
  padding:56px 0 44px;
  background:
    radial-gradient(circle at 85% 10%, rgba(216,24,32,.10), transparent 18%),
    radial-gradient(circle at 15% 20%, rgba(0,0,0,.05), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.05fr) minmax(320px, .95fr);
  gap:42px;
  align-items:center;
}
.badge,.mini-badge{
  display:inline-block;
  background:#fff0f0;
  color:var(--red-dark);
  padding:8px 14px;
  border-radius:999px;
  font-size:.92rem;
  font-weight:700;
}
.hero h1{
  font-size:clamp(2.1rem, 4vw, 4.1rem);
  line-height:1.05;
  letter-spacing:-.03em;
  margin:16px 0 14px;
  max-width:760px;
}
.hero p{
  margin:0;
  color:var(--muted);
  font-size:1.08rem;
  max-width:660px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:28px 0;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  font-weight:700;
  transition:.2s ease;
}
.btn-primary{
  background:var(--red);
  color:var(--white);
}
.btn-primary:hover{background:var(--red-dark)}
.btn-outline{
  background:var(--white);
  color:var(--text);
  border:1px solid var(--line);
}
.btn-outline:hover{border-color:#cfcfcf}
.hero-data{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
.data-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}
.data-card span,
.location-item span,
.contact-action span{
  display:block;
  font-size:.92rem;
  color:var(--muted);
  margin-bottom:6px;
}
.data-card strong,
.location-item strong,
.contact-action strong{
  display:block;
  font-size:1rem;
  line-height:1.4;
}
.hero-media{
  display:flex;
  justify-content:center;
}
.hero-logo-card{
  width:100%;
  max-width:520px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:30px;
  padding:24px;
  box-shadow:var(--shadow);
}
.hero-logo-card img{
  width:100%;
  height:auto;
  object-fit:contain;
}
.summary-strip{
  padding:0 0 18px;
}
.summary-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.summary-card,
.service-card,
.location-card,
.contact-box{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.summary-card{
  padding:24px 20px;
  text-align:center;
}
.summary-card h2{
  margin:0 0 8px;
  font-size:1.08rem;
}
.summary-card p{
  margin:0;
  color:var(--muted);
}
.section{
  padding:78px 0;
}
.section-head h2,
.location-copy h2,
.contact-copy h2{
  font-size:clamp(1.9rem, 3vw, 3rem);
  line-height:1.1;
  margin:14px 0 0;
}
.center{text-align:center}
.services-grid{
  margin-top:30px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.service-card{
  padding:26px 22px;
  min-height:190px;
}
.service-card h3{
  margin:0 0 10px;
  font-size:1.18rem;
}
.service-card p{
  margin:0;
  color:var(--muted);
}
.featured-card{
  background:linear-gradient(180deg,#fff6f6 0%, #ffffff 100%);
}
.phone-list{
  display:grid;
  gap:10px;
  margin-top:18px;
}
.phone-list a{
  background:var(--red);
  color:var(--white);
  padding:12px 14px;
  border-radius:14px;
  text-align:center;
  font-weight:700;
}
.alt-bg{
  background:var(--bg);
}
.location-layout{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(300px, .9fr);
  gap:24px;
  align-items:center;
}
.location-copy p{
  color:var(--muted);
  font-size:1.05rem;
}
.location-card{
  padding:24px;
  display:grid;
  gap:14px;
}
.location-item{
  background:var(--soft);
  border-radius:16px;
  padding:18px;
}
.contact-box{
  padding:30px;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,.95fr);
  gap:22px;
  align-items:center;
}
.contact-copy p{
  color:var(--muted);
  margin-top:12px;
}
.contact-actions{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
.contact-action{
  border:1px solid var(--line);
  border-radius:18px;
  padding:24px 18px;
  text-align:center;
  background:var(--white);
}
.contact-action:hover{
  border-color:#d3d3d3;
}
.site-footer{
  border-top:1px solid var(--line);
  padding:24px 0 90px;
  background:var(--white);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
  flex-wrap:wrap;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.footer-brand img{
  width:96px;
  border-radius:12px;
}
.footer-brand p,
.footer-info p{
  margin:4px 0;
  color:var(--muted);
}
.floating-button{
  position:fixed;
  right:18px;
  bottom:18px;
  width:58px;
  height:58px;
  border-radius:50%;
  background:var(--red);
  color:var(--white);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.45rem;
  box-shadow:0 14px 30px rgba(216,24,32,.35);
}
@media (max-width: 980px){
  .summary-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .services-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .hero-grid,
  .location-layout,
  .contact-box{
    grid-template-columns:1fr;
  }
  .hero-media{
    order:-1;
  }
  .hero-logo-card{
    max-width:420px;
  }
}
@media (max-width: 720px){
  .header-inner{
    min-height:72px;
    flex-wrap:wrap;
    padding:10px 0;
  }
  .menu-toggle{
    display:block;
    margin-left:auto;
  }
  .site-nav{
    width:100%;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
    padding:8px 0 10px;
  }
  .site-nav.open{
    display:flex;
  }
  .logo-link img{
    width:170px;
  }
  .hero{
    padding:34px 0 28px;
  }
  .hero-data,
  .summary-grid,
  .services-grid,
  .contact-actions{
    grid-template-columns:1fr;
  }
  .section{
    padding:58px 0;
  }
  .hero h1{
    font-size:2.1rem;
  }
}
