:root{
  --orange:#f46b10;
  --orange-dark:#d95400;
  --black:#111111;
  --charcoal:#1b1b1b;
  --muted:#666;
  --soft:#f6f2ee;
  --line:#e7e1da;
  --white:#ffffff;
  --shadow:0 18px 50px rgba(0,0,0,.12);
  --radius:24px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--black);
  background:#fff;
  line-height:1.55;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:12px clamp(18px,4vw,56px);
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
}
.brand img{width:142px;height:auto}
.nav{display:flex;gap:24px;font-weight:700;font-size:14px}
.nav a{opacity:.78}
.nav a:hover{opacity:1;color:var(--orange-dark)}
.header-call{
  background:var(--black);
  color:white;
  padding:11px 16px;
  border-radius:999px;
  font-size:14px;
  font-weight:800;
}
.hero{
  min-height:720px;
  position:relative;
  display:grid;
  place-items:center;
  overflow:hidden;
  background:#fff;
}
.hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,.72) 42%, rgba(255,255,255,.98) 70%),
    url("assets/clean-garage.png"),
    linear-gradient(135deg,#fff,#f3f3f3);
  background-size:cover;
  background-position:center;
  opacity:.75;
}
.hero-content{
  position:relative;
  width:min(980px,92vw);
  margin-left:auto;
  padding:84px 0;
  text-align:left;
}
.eyebrow{
  margin:0 0 12px;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--orange-dark);
  font-weight:900;
  font-size:13px;
}
h1,h2,h3{
  font-family:Outfit, Inter, sans-serif;
  line-height:1.02;
  margin:0;
}
h1{
  max-width:720px;
  font-size:clamp(48px,8vw,96px);
  letter-spacing:-.05em;
}
h2{
  font-size:clamp(34px,5vw,62px);
  letter-spacing:-.04em;
}
h3{font-size:25px;letter-spacing:-.02em}
.hero-copy{
  max-width:650px;
  font-size:clamp(18px,2.3vw,24px);
  color:#333;
  margin:22px 0 30px;
}
.hero-actions,.trust-row{display:flex;flex-wrap:wrap;gap:13px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:14px 20px;
  border-radius:999px;
  font-weight:900;
  border:2px solid var(--black);
}
.btn.primary{background:var(--orange);border-color:var(--orange);color:#111}
.btn.secondary{background:white}
.trust-row{margin-top:28px}
.trust-row span{
  background:rgba(255,255,255,.82);
  border:1px solid var(--line);
  padding:10px 14px;
  border-radius:999px;
  font-weight:800;
  box-shadow:0 8px 24px rgba(0,0,0,.05);
}
.section{
  padding:clamp(56px,8vw,110px) clamp(18px,5vw,76px);
}
.intro-card{
  margin:0 auto;
  width:min(1180px,92vw);
  transform:translateY(-54px);
  background:var(--black);
  color:white;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:40px;
  padding:clamp(28px,5vw,54px);
}
.intro-card .eyebrow{color:#ffb27a}
.intro-card p:last-child{font-size:19px;color:#e9e9e9;margin:0}
.split{
  width:min(1180px,92vw);
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:52px;
  align-items:center;
  padding-top:20px;
}
.split p:not(.eyebrow){font-size:20px;color:var(--muted)}
.mini-list{
  display:grid;
  gap:14px;
}
.mini-list div{
  display:flex;
  gap:18px;
  align-items:center;
  padding:20px;
  border-radius:18px;
  background:var(--soft);
  border:1px solid var(--line);
}
.mini-list strong{
  width:42px;height:42px;display:grid;place-items:center;
  background:var(--orange);border-radius:50%;
  font-family:Outfit;font-size:24px;
}
.mini-list span{font-weight:800}
.section-heading{
  width:min(900px,92vw);
  margin:0 auto 36px;
  text-align:center;
}
.section-heading p:not(.eyebrow){font-size:19px;color:var(--muted)}
.services,.pricing,.faq{background:var(--soft)}
.service-grid{
  width:min(1180px,92vw);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.service-grid article{
  background:white;
  border:1px solid var(--line);
  border-radius:22px;
  padding:28px;
  box-shadow:0 10px 28px rgba(0,0,0,.04);
}
.service-grid article:before{
  content:"";
  display:block;
  width:42px;height:5px;
  background:var(--orange);
  border-radius:999px;
  margin-bottom:22px;
}
.service-grid p{color:var(--muted);margin-bottom:0}
.work{background:#fff}
.photo-grid{
  width:min(1180px,92vw);
  margin:0 auto;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:18px;
}
.photo-grid figure{
  margin:0;
  border-radius:24px;
  overflow:hidden;
  background:#111;
  position:relative;
  min-height:340px;
}
.photo-grid .wide{grid-row:span 2}
.photo-grid img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.photo-grid figcaption{
  position:absolute;
  left:16px;right:16px;bottom:16px;
  background:rgba(0,0,0,.72);
  color:white;
  border-radius:14px;
  padding:12px 14px;
  font-weight:800;
}
.pricing-cards{
  width:min(1180px,92vw);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.pricing-cards article{
  background:white;
  border:1px solid var(--line);
  border-radius:24px;
  padding:28px;
}
.pricing-cards .featured{
  background:var(--black);
  color:white;
  transform:translateY(-10px);
}
.pricing-cards span{
  color:var(--orange-dark);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:12px;
}
.pricing-cards p{color:var(--muted)}
.pricing-cards .featured p{color:#ddd}
.pricing-cards .featured span{color:#ffb27a}
.reviews{
  width:min(1180px,92vw);
  margin:0 auto;
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:34px;
  align-items:center;
}
.reviews-copy p:not(.eyebrow){font-size:19px;color:var(--muted)}
.stars{font-size:30px;color:var(--orange);letter-spacing:3px}
.review-shot{
  border-radius:24px;
  box-shadow:var(--shadow);
  border:1px solid var(--line);
}
.story{
  background:
    linear-gradient(rgba(0,0,0,.66), rgba(0,0,0,.66)),
    url("assets/story-town.png");
  background-size:cover;
  background-position:center;
}
.story-card{
  width:min(820px,92vw);
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(8px);
  border-radius:28px;
  padding:clamp(28px,5vw,56px);
  box-shadow:var(--shadow);
}
.story-card p:not(.eyebrow){font-size:18px;color:#444}
.faq-grid{
  width:min(980px,92vw);
  margin:0 auto;
  display:grid;
  gap:12px;
}
details{
  background:white;
  border:1px solid var(--line);
  border-radius:18px;
  padding:20px 22px;
}
summary{
  cursor:pointer;
  font-weight:900;
  font-size:18px;
}
details p{color:var(--muted);margin-bottom:0}
.quote{
  width:min(1180px,92vw);
  margin:0 auto;
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:40px;
  align-items:start;
}
.quote p:not(.eyebrow){font-size:19px;color:var(--muted)}
.contact-box{
  display:grid;
  gap:12px;
  margin-top:24px;
}
.contact-box a{
  padding:16px 18px;
  border:1px solid var(--line);
  border-radius:16px;
  font-weight:900;
  background:var(--soft);
}
.quote-form{
  background:var(--soft);
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px;
  display:grid;
  gap:16px;
}
label{font-weight:900;color:#333}
input,select,textarea{
  margin-top:8px;
  width:100%;
  border:1px solid #d8d0c8;
  border-radius:14px;
  padding:14px 15px;
  font:inherit;
  background:#fff;
}
textarea{resize:vertical}
button{cursor:pointer}
.footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  background:var(--black);
  color:white;
  padding:36px clamp(18px,5vw,76px);
}
.footer img{width:150px}
.footer p{margin:4px 0;color:#d8d8d8}
.footer a{font-weight:900;color:#ffb27a}
@media (max-width:900px){
  .nav{display:none}
  .header-call{font-size:12px;padding:10px 12px}
  .brand img{width:112px}
  .hero{min-height:640px}
  .hero-bg{
    background:
      linear-gradient(180deg, rgba(255,255,255,.2), rgba(255,255,255,.96) 58%),
      url("assets/clean-garage.png");
    background-size:cover;
    background-position:left top;
  }
  .hero-content{padding-top:260px}
  .intro-card,.split,.service-grid,.photo-grid,.pricing-cards,.reviews,.quote{
    grid-template-columns:1fr;
  }
  .intro-card{transform:none;margin-top:22px}
  .photo-grid figure{min-height:280px}
  .pricing-cards .featured{transform:none}
  .footer{flex-direction:column;align-items:flex-start}
}
@media (max-width:560px){
  h1{font-size:48px}
  .section{padding-left:16px;padding-right:16px}
  .hero-actions .btn{width:100%}
  .trust-row span{width:100%;text-align:center}
}


.review-link{
  margin-top:18px;
}

.review-cards{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

.review-card{
  background:white;
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}

.review-top{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:14px;
}

.review-top img{
  width:58px;
  height:58px;
  border-radius:50%;
  object-fit:cover;
  border:3px solid var(--orange);
}

.review-top h3{
  font-size:20px;
  margin:0 0 2px;
}

.review-top span{
  color:var(--muted);
  font-weight:800;
  font-size:13px;
}

.review-stars{
  color:var(--orange);
  letter-spacing:2px;
  font-size:20px;
  font-weight:900;
  margin-bottom:12px;
}

.review-card p{
  font-size:18px;
  color:#333;
  margin:0;
}

@media (max-width:900px){
  .review-cards{
    grid-template-columns:1fr;
  }
}


@media (max-width:1100px){
  .review-cards{
    grid-template-columns:1fr;
  }
}


/* Review section refresh */
.reviews{
  width:min(1180px,92vw);
  margin:0 auto;
  display:block;
}

.reviews-copy{
  max-width:640px;
  margin-bottom:28px;
}

.review-cards{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
  align-items:stretch;
}

.review-card{
  background:#fff;
  border:1px solid #e5ddd4;
  border-radius:26px;
  padding:24px 22px;
  box-shadow:0 16px 40px rgba(0,0,0,.06);
  min-height:100%;
  display:flex;
  flex-direction:column;
}

.review-top{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:16px;
}

.review-top img{
  width:64px;
  height:64px;
  min-width:64px;
  border-radius:999px;
  object-fit:cover;
  object-position:center;
  border:3px solid var(--orange);
  background:#f4f1ec;
  box-shadow:0 4px 10px rgba(0,0,0,.08);
}

.review-top h3{
  font-size:18px;
  line-height:1.05;
  margin:0 0 4px;
}

.review-top span{
  display:inline-block;
  color:#6f6a63;
  font-weight:800;
  font-size:14px;
}

.review-stars{
  color:var(--orange);
  letter-spacing:2px;
  font-size:22px;
  font-weight:900;
  margin-bottom:14px;
}

.review-card p{
  font-size:17px;
  line-height:1.65;
  color:#2b2b2b;
  margin:0;
}

@media (max-width:1100px){
  .review-cards{grid-template-columns:repeat(2,minmax(0,1fr));}
}

@media (max-width:760px){
  .review-cards{grid-template-columns:1fr;}
  .reviews-copy{margin-bottom:22px;}
}


/* V6 avatar consistency fix */
.review-top img{
  width:64px !important;
  height:64px !important;
  min-width:64px !important;
  max-width:64px !important;
  aspect-ratio:1 / 1;
  border-radius:50% !important;
  object-fit:cover !important;
  object-position:center center !important;
  overflow:hidden;
}


/* v11 fixes */
.contact-box a[target="_blank"]{
  display:inline-flex;
  align-items:center;
  justify-content:flex-start;
}
.footer-main{display:grid;gap:6px}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px 16px;
  margin-top:10px;
}
.footer-links a{
  color:#ffb27a;
  font-weight:800;
}
.back-to-top{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  background:rgba(255,255,255,.06);
  color:#fff;
}
.faq-grid details[open]{box-shadow:0 10px 30px rgba(0,0,0,.05)}
.faq-grid summary::-webkit-details-marker{display:none}
.faq-grid summary{list-style:none;position:relative;padding-right:28px}
.faq-grid summary::after{
  content:'+';
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  font-size:24px;
  line-height:1;
  color:var(--orange-dark);
}
.faq-grid details[open] summary::after{content:'−'}
@media (max-width:900px){
  .hero-content{
    width:min(100%,92vw);
    margin:0 auto;
    padding-top:220px;
    padding-bottom:64px;
  }
  .hero-copy{font-size:20px}
  .split p:not(.eyebrow),
  .quote p:not(.eyebrow),
  .section-heading p:not(.eyebrow){font-size:18px}
  .photo-grid figcaption{font-size:15px}
  .footer-links{flex-direction:column;align-items:flex-start}
}
@media (max-width:640px){
  .site-header{
    gap:12px;
    padding:10px 14px;
  }
  .brand img{width:96px}
  .header-call{
    font-size:11px;
    padding:9px 10px;
    white-space:nowrap;
  }
  .hero{min-height:auto}
  .hero-content{padding-top:180px}
  h1{font-size:clamp(42px,12vw,58px)}
  h2{font-size:clamp(30px,10vw,44px)}
  .intro-card,
  .story-card,
  .quote-form,
  .service-grid article,
  .pricing-cards article,
  .review-card{border-radius:20px}
  .footer{padding:28px 16px}
  .footer img{width:120px}
}
@media (max-width:420px){
  .header-call{font-size:10px;padding:8px 9px}
  .hero-copy{font-size:18px}
  .btn{width:100%}
}


/* v12 clean deploy safeguards */
html, body {
  width: 100%;
  overflow-x: hidden;
}

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 132px;
  max-height: 76px;
  object-fit: contain;
}

.nav {
  margin-left: auto;
  margin-right: 18px;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.hero {
  min-height: 650px;
  display: flex;
  align-items: center;
}

.hero-bg {
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,.72) 42%, rgba(255,255,255,.98) 70%),
    url("assets/clean-garage.png");
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 720px;
  margin-left: auto;
  margin-right: clamp(22px, 7vw, 110px);
}

.hero h1 {
  text-transform: none;
  font-size: clamp(48px, 6.5vw, 86px);
  color: #111;
}

.hero-copy {
  color: #222;
}

.intro-card {
  margin-top: -40px;
}

.footer {
  scroll-margin-top: 120px;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 78px;
  }

  .brand img {
    width: 104px;
    max-height: 62px;
  }

  .nav {
    display: none;
  }

  .header-call {
    margin-left: auto;
  }

  .hero {
    min-height: 620px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(255,255,255,.2), rgba(255,255,255,.96) 58%),
      url("assets/clean-garage.png");
    background-size: cover;
    background-position: center top;
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 220px;
    padding-bottom: 58px;
    width: min(100%, 92vw);
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 70px;
    padding: 8px 12px;
  }

  .brand img {
    width: 88px;
  }

  .header-call {
    font-size: 10.5px;
    padding: 8px 9px;
  }

  .hero-content {
    padding-top: 170px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .intro-card {
    margin-top: 0;
  }
}
