/*
Theme Name: Speedy Zone Tires
Theme URI: https://localbusinesspages.org/
Author: Local Business Pages
Description: Standalone WordPress theme for Speedy Zone Tires in Los Angeles.
Version: 1.0.0
Text Domain: speedy-zone-tires
*/

:root{
  --black:#0d0f10;
  --charcoal:#171a1c;
  --steel:#292e31;
  --paper:#f4f1e9;
  --white:#ffffff;
  --yellow:#f3c623;
  --orange:#f06a23;
  --red:#cf2f25;
  --muted:#6d7471;
  --line:#d9ddd9;
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--black);
  background:var(--paper);
  line-height:1.6;
}
a{color:inherit}
img{max-width:100%;height:auto}
.szt-container{width:min(calc(100% - 40px),var(--max));margin:auto}

.szt-topbar{
  background:var(--black);
  color:var(--white);
  font-size:14px;
}
.szt-topbar .szt-container{
  min-height:40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.szt-topbar a{color:var(--yellow);font-weight:900;text-decoration:none}

.szt-header{
  background:rgba(244,241,233,.96);
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(12px);
}
.admin-bar .szt-header{top:32px}
.szt-nav{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:26px;
}
.szt-brand,
.szt-custom-logo .custom-logo-link{
  text-decoration:none;
  display:flex;
  align-items:center;
}
.szt-custom-logo img{
  display:block;
  max-width:290px;
  max-height:64px;
  width:auto;
  height:auto;
  object-fit:contain;
}
.szt-brand-mark{
  width:58px;height:58px;border-radius:50%;
  background:
    radial-gradient(circle at center, #111 0 34%, transparent 35%),
    repeating-radial-gradient(circle at center,#151718 0 7px,#252a2d 8px 12px);
  border:5px solid var(--yellow);
  margin-right:12px;
  position:relative;
}
.szt-brand-mark:after{
  content:"";
  position:absolute;
  inset:18px;
  background:var(--yellow);
  border-radius:50%;
}
.szt-brand-copy strong{
  display:block;
  font-size:22px;
  line-height:1;
  letter-spacing:-.5px;
}
.szt-brand-copy span{
  display:block;
  margin-top:5px;
  font-size:11px;
  color:var(--muted);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1.7px;
}
.szt-menu{display:flex;align-items:center;gap:25px}
.szt-menu a{text-decoration:none;font-size:14px;font-weight:900}
.szt-menu .szt-call{
  background:var(--yellow);
  color:var(--black);
  padding:13px 18px;
  border-radius:5px;
  border:2px solid var(--black);
}

.szt-hero{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(90deg,rgba(13,15,16,.96) 0%,rgba(13,15,16,.92) 48%,rgba(13,15,16,.56) 72%,rgba(13,15,16,.82) 100%),
    var(--szt-hero-image, none),
    linear-gradient(135deg,#202426,#0d0f10);
  background-size:cover;
  background-position:center;
  color:var(--white);
}
.szt-hero:before{
  content:"";
  position:absolute;
  width:620px;height:620px;
  right:-120px;bottom:-240px;
  border:80px solid rgba(243,198,35,.09);
  border-radius:50%;
}
.szt-hero-grid{
  min-height:670px;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:70px;
  align-items:center;
  padding:90px 0;
  position:relative;
  z-index:2;
}
.szt-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:12px;
  font-weight:950;
  margin-bottom:18px;
}
.szt-eyebrow:before{
  content:"";
  width:32px;height:5px;
  background:var(--yellow);
}
.szt-hero h1{
  font-size:clamp(50px,7vw,84px);
  line-height:.96;
  letter-spacing:-3px;
  margin:0 0 24px;
  max-width:780px;
}
.szt-hero h1 span{color:var(--yellow)}
.szt-hero-copy{
  max-width:680px;
  color:#d1d6d3;
  font-size:19px;
  margin-bottom:30px;
}
.szt-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:30px;
}
.szt-btn{
  min-height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 22px;
  border-radius:5px;
  text-decoration:none;
  font-weight:950;
  border:2px solid var(--white);
}
.szt-btn-yellow{
  background:var(--yellow);
  color:var(--black);
  border-color:var(--yellow);
}
.szt-btn-dark{
  background:var(--black);
  color:var(--white);
  border-color:var(--black);
}
.szt-btn-outline{background:transparent;color:var(--white)}
.szt-hero-points{
  display:flex;
  flex-wrap:wrap;
  gap:10px 24px;
  font-size:14px;
  font-weight:800;
  color:#d6dbd8;
}
.szt-hero-points span:before{
  content:"✓";
  color:var(--yellow);
  margin-right:8px;
}

.szt-tire-card{
  background:linear-gradient(145deg,#1f2325,#111315);
  border:1px solid #343a3d;
  border-radius:18px;
  padding:38px;
  box-shadow:0 30px 70px rgba(0,0,0,.35);
}
.szt-tire-visual{
  width:220px;height:220px;
  margin:0 auto 30px;
  border-radius:50%;
  background:
    radial-gradient(circle at center,#f3c623 0 13%,#0d0f10 14% 29%,#70777a 30% 31%,#16191a 32% 48%,#292e31 49% 52%,#111315 53% 67%,#272b2d 68% 71%,#111315 72%);
  box-shadow:inset 0 0 0 10px #0b0d0e,0 12px 30px rgba(0,0,0,.35);
}
.szt-tire-card h2{
  margin:0 0 14px;
  font-size:31px;
  line-height:1.05;
}
.szt-tire-card p{color:#b9c0bc;margin-bottom:25px}
.szt-quick-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.szt-quick-grid div{
  background:#252a2c;
  padding:14px;
  border-radius:8px;
}
.szt-quick-grid small{
  display:block;
  color:#929c97;
  text-transform:uppercase;
  font-size:10px;
  letter-spacing:1px;
  font-weight:800;
}
.szt-quick-grid strong{display:block;margin-top:5px;font-size:14px}

.szt-strip{
  background:var(--yellow);
  border-top:3px solid var(--black);
  border-bottom:3px solid var(--black);
}
.szt-strip-grid{display:grid;grid-template-columns:repeat(4,1fr)}
.szt-strip-item{
  padding:24px;
  border-right:2px solid rgba(13,15,16,.16);
}
.szt-strip-item:last-child{border-right:0}
.szt-strip-item strong{display:block;font-size:16px}
.szt-strip-item span{display:block;color:#5f5019;font-size:13px}

.szt-section{padding:90px 0}
.szt-section-white{background:var(--white)}
.szt-section-dark{background:var(--black);color:var(--white)}
.szt-section-head{max-width:760px;margin-bottom:44px}
.szt-section-head h2{
  font-size:clamp(36px,5vw,56px);
  line-height:1.02;
  letter-spacing:-2px;
  margin:0 0 15px;
}
.szt-section-head p{font-size:17px;color:var(--muted)}
.szt-section-dark .szt-section-head p{color:#b9c0bd}

.szt-services{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.szt-service{
  background:var(--paper);
  border:1px solid var(--line);
  padding:30px;
  border-radius:12px;
  min-height:260px;
}
.szt-service-icon{
  width:48px;height:48px;
  background:var(--black);
  color:var(--yellow);
  border-radius:8px;
  display:grid;
  place-items:center;
  font-weight:950;
  margin-bottom:24px;
}
.szt-service h3{font-size:23px;line-height:1.15;margin:0 0 12px}
.szt-service p{margin:0;color:var(--muted);font-size:15px}

.szt-about-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:60px;
  align-items:center;
}
.szt-about-panel{
  min-height:500px;
  border-radius:16px;
  background:
    linear-gradient(160deg,rgba(243,198,35,.1),transparent 45%),
    #202426;
  position:relative;
  overflow:hidden;
}
.szt-about-panel:before,
.szt-about-panel:after{
  content:"";
  position:absolute;
  border-radius:50%;
}
.szt-about-panel:before{
  width:360px;height:360px;
  background:
    radial-gradient(circle,#f3c623 0 11%,#101214 12% 25%,#81878a 26% 27%,#111315 28% 48%,#2b3032 49% 53%,#0f1112 54%);
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
}
.szt-about-panel:after{
  width:140px;height:140px;
  border:18px solid rgba(243,198,35,.8);
  left:50%;top:50%;
  transform:translate(-50%,-50%);
}
.szt-about-copy h2{
  font-size:clamp(36px,5vw,55px);
  line-height:1.02;
  letter-spacing:-2px;
  margin:0 0 18px;
}
.szt-about-copy p{color:#c2c9c5;font-size:17px}
.szt-checklist{list-style:none;padding:0;margin:25px 0 30px}
.szt-checklist li{
  position:relative;
  padding:8px 0 8px 28px;
}
.szt-checklist li:before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--yellow);
  font-weight:950;
}

.szt-reviews{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:38px;
}
.szt-review-feature{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:14px;
  padding:38px;
}
.szt-stars{color:var(--orange);letter-spacing:3px;font-size:21px}
.szt-review-feature blockquote{
  font-size:25px;
  line-height:1.35;
  font-weight:800;
  margin:22px 0;
}
.szt-review-feature p{margin:0;color:var(--muted)}
.szt-review-points{display:grid;gap:14px}
.szt-review-point{
  background:#ebe6da;
  border-radius:12px;
  padding:23px;
}
.szt-review-point strong{display:block;font-size:17px;margin-bottom:5px}
.szt-review-point span{font-size:14px;color:var(--muted)}

.szt-location-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:48px;
}
.szt-info{
  background:var(--steel);
  border-radius:14px;
  padding:35px;
}
.szt-info-row{
  padding:18px 0;
  border-bottom:1px solid #434a4d;
}
.szt-info-row:first-child{padding-top:0}
.szt-info-row:last-child{border-bottom:0;padding-bottom:0}
.szt-info-row small{
  color:#9ea9a3;
  display:block;
  text-transform:uppercase;
  font-size:10px;
  letter-spacing:1.5px;
  font-weight:900;
}
.szt-info-row strong,
.szt-info-row a{
  display:block;
  color:var(--white);
  margin-top:6px;
  font-size:18px;
  text-decoration:none;
}
.szt-hours{
  background:var(--white);
  color:var(--black);
  border-radius:14px;
  padding:35px;
}
.szt-hours h3{font-size:28px;margin:0 0 22px}
.szt-hour-row{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:12px 0;
  border-bottom:1px solid var(--line);
}
.szt-hour-row:last-of-type{border-bottom:0}
.szt-hours-note{color:var(--muted);font-size:13px;margin-top:20px}

.szt-final{
  background:var(--yellow);
  border-top:3px solid var(--black);
  padding:65px 0;
}
.szt-final-flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:35px;
}
.szt-final h2{
  font-size:clamp(35px,5vw,54px);
  line-height:1;
  letter-spacing:-2px;
  margin:0 0 10px;
}
.szt-final p{margin:0;color:#5b4d18}

.szt-footer{
  background:var(--black);
  color:#c2c9c5;
  padding:34px 0;
}
.szt-footer-flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:25px;
}
.szt-footer strong{color:var(--white)}
.szt-footer a{color:var(--yellow);text-decoration:none}

@media(max-width:900px){
  .szt-hero-grid,.szt-about-grid,.szt-reviews,.szt-location-grid{grid-template-columns:1fr}
  .szt-strip-grid,.szt-services{grid-template-columns:repeat(2,1fr)}
  .szt-menu a:not(.szt-call){display:none}
  .szt-tire-card{max-width:620px}
}
@media(max-width:620px){
  .admin-bar .szt-header{top:46px}
  .szt-container{width:min(calc(100% - 28px),var(--max))}
  .szt-topbar .szt-container{justify-content:center;text-align:center}
  .szt-topbar span{display:none}
  .szt-custom-logo img{max-width:190px;max-height:50px}
  .szt-brand-mark{width:44px;height:44px}
  .szt-brand-copy strong{font-size:18px}
  .szt-brand-copy span{display:none}
  .szt-menu .szt-call{font-size:12px;padding:10px 12px}
  .szt-hero-grid{min-height:auto;padding:65px 0;gap:35px}
  .szt-hero h1{font-size:49px;letter-spacing:-2px}
  .szt-actions{flex-direction:column}
  .szt-btn{width:100%}
  .szt-strip-grid,.szt-services{grid-template-columns:1fr}
  .szt-strip-item{border-right:0;border-bottom:1px solid rgba(13,15,16,.15)}
  .szt-section{padding:65px 0}
  .szt-final-flex,.szt-footer-flex{display:block}
  .szt-final .szt-btn{margin-top:25px}
  .szt-footer{text-align:center}
  .szt-footer-right{margin-top:12px}
}
