/* ============================================================
   Augusta AC Repair — design system
   Deep green + gold (CSRA) with red emergency CTA accents
   Mobile-safe: overflow locked, off-canvas nav, menu-open pattern
   ============================================================ */
:root{
  --green:#14532D;
  --green-dark:#0C3A1F;
  --pine:#1D6A3F;
  --gold:#C9A227;
  --gold-soft:#F6E9C8;
  --red:#DC2626;
  --red-dark:#B91C1C;
  --ink:#182420;
  --muted:#55645C;
  --bg:#FBFCFB;
  --card:#FFFFFF;
  --border:#E3EAE5;
  --radius:14px;
  --shadow:0 10px 30px rgba(12,58,31,.10);
  --shadow-lg:0 24px 60px rgba(12,58,31,.16);
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;overflow-x:hidden}
body{
  font-family:"Segoe UI",system-ui,-apple-system,Roboto,Helvetica,Arial,sans-serif;
  color:var(--ink);background:var(--bg);line-height:1.65;overflow-x:hidden;
}
img{max-width:100%;height:auto;display:block}
a{color:var(--pine);text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:1180px;margin:0 auto;padding:0 22px}
h1,h2,h3,h4{line-height:1.18;color:var(--green-dark);font-weight:800}
h1{font-size:clamp(2.1rem,4.6vw,3.4rem);letter-spacing:-.02em}
h2{font-size:clamp(1.6rem,3vw,2.3rem);letter-spacing:-.01em;margin-bottom:1rem}
h3{font-size:1.25rem;margin-bottom:.5rem}
p{margin-bottom:1rem}
section{padding:4.2rem 0}
.kicker{
  display:inline-block;font-size:.8rem;font-weight:800;letter-spacing:.16em;
  text-transform:uppercase;color:var(--pine);
  background:var(--gold-soft);border:1px solid #EAD9A6;border-radius:999px;
  padding:.35rem .95rem;margin-bottom:1rem;
}
.lead{font-size:1.12rem;color:var(--muted)}
.text-center{text-align:center}
.mt-2{margin-top:2rem}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.55rem;
  font-weight:800;font-size:1.02rem;border-radius:12px;padding:.95rem 1.7rem;
  border:0;cursor:pointer;text-decoration:none !important;transition:transform .15s ease,box-shadow .15s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-red{
  color:#fff;background:linear-gradient(180deg,#EF4444,#DC2626);
  box-shadow:0 8px 24px rgba(220,38,38,.35);
}
.btn-red:hover{box-shadow:0 12px 30px rgba(220,38,38,.45)}
.btn-green{
  color:#fff;background:linear-gradient(180deg,var(--pine),var(--green));
  box-shadow:0 8px 24px rgba(20,83,45,.30);
}
.btn-ghost{
  color:#fff;background:rgba(255,255,255,.12);
  border:2px solid rgba(255,255,255,.65);backdrop-filter:blur(4px);
}
.btn-ghost:hover{background:rgba(255,255,255,.2)}
.btn-outline{color:var(--green);background:#fff;border:2px solid var(--green)}
.btn svg{flex:none}

/* ---------- header ---------- */
.header{
  position:sticky;top:0;z-index:1000;background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);transition:box-shadow .2s ease;
}
.header.scrolled{box-shadow:0 6px 24px rgba(12,58,31,.10)}
.header .container{display:flex;align-items:center;gap:1.4rem;padding-top:.7rem;padding-bottom:.7rem}
.brand{display:flex;align-items:center;gap:.7rem;text-decoration:none !important}
.brand img{width:184px;height:auto;max-height:78px;object-fit:contain;display:block}
.brand-name{font-weight:900;font-size:1.12rem;line-height:1.1;color:var(--green-dark)}
.brand-name span{display:block;font-size:.78rem;font-weight:800;letter-spacing:.18em;color:var(--pine);text-transform:uppercase}
.nav-desktop{display:flex;align-items:center;gap:1.6rem;margin-left:auto}
.nav-desktop a.nav-link{
  font-weight:700;color:var(--ink);font-size:.98rem;position:relative;padding:.4rem 0;text-decoration:none;
}
.nav-desktop a.nav-link::after{
  content:"";position:absolute;left:0;bottom:0;height:3px;width:0;
  background:var(--gold);border-radius:2px;transition:width .2s ease;
}
.nav-desktop a.nav-link:hover::after,.nav-desktop a.nav-link.active::after{width:100%}
.nav-desktop a.nav-link.active{color:var(--green-dark)}
.header-cta{display:flex;align-items:center;gap:.8rem;margin-left:1rem}
.header-phone{
  display:inline-flex;align-items:center;gap:.45rem;font-weight:800;color:var(--green-dark);
  text-decoration:none !important;font-size:1rem;
}
.header-phone:hover{color:var(--pine)}
.hamburger{
  display:none;flex-direction:column;justify-content:center;gap:5px;
  width:44px;height:44px;border-radius:10px;border:1px solid var(--border);
  background:#fff;cursor:pointer;padding:10px;
}
.hamburger span{display:block;height:3px;border-radius:2px;background:var(--green-dark)}

/* body-level off-canvas nav (mobile) */
.nav{display:none}
.nav-backdrop{display:none}

/* ---------- hero ---------- */
.hero{position:relative;color:#fff;overflow:hidden;}
.hero-bg img{width:100%;height:100%;object-fit:cover;object-position:center 58%}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(100deg,rgba(9,42,24,.94) 0%,rgba(12,58,31,.84) 42%,rgba(12,58,31,.45) 100%);
}
.hero .container{position:relative;z-index:2;padding-top:5.4rem;padding-bottom:5.4rem}
.hero h1{color:#fff;max-width:640px}
.hero .lead{color:#DCEAE0;max-width:560px;margin:1.1rem 0 1.9rem}
.hero-ctas{display:flex;gap:.9rem;flex-wrap:wrap}
.hero-trust{
  display:flex;gap:1.6rem;flex-wrap:wrap;margin-top:2.1rem;
  font-weight:700;font-size:.95rem;color:#EAF4EC;
}
.hero-trust span{display:inline-flex;align-items:center;gap:.45rem}
.hero-trust svg{color:var(--gold)}

/* ---------- trust strip ---------- */
.trust-strip{background:#fff;border-bottom:1px solid var(--border);padding:1.1rem 0}
.trust-strip .container{display:flex;justify-content:space-between;gap:1.2rem;flex-wrap:wrap}
.trust-strip .ti{display:flex;align-items:center;gap:.6rem;font-weight:700;color:var(--green-dark);font-size:.95rem}
.trust-strip .ti .ic{
  width:38px;height:38px;border-radius:10px;background:var(--gold-soft);
  display:flex;align-items:center;justify-content:center;color:var(--pine);flex:none;
}

/* ---------- cards / grids ---------- */
.grid{display:grid;gap:1.4rem}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-2{grid-template-columns:repeat(2,1fr)}
.card{
  background:var(--card);border:1px solid var(--border);border-radius:var(--radius);
  padding:1.7rem;box-shadow:var(--shadow);transition:transform .18s ease,box-shadow .18s ease;
}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.card .card-ic{
  width:52px;height:52px;border-radius:13px;background:linear-gradient(135deg,var(--pine),var(--green));
  color:#fff;display:flex;align-items:center;justify-content:center;margin-bottom:1rem;
}
.card h3 a{color:var(--green-dark);text-decoration:none}
.card h3 a:hover{color:var(--pine)}
.card p{color:var(--muted);font-size:.97rem;margin-bottom:.9rem}
.card .card-link{font-weight:800;color:var(--red);text-decoration:none}
.card .card-link:hover{text-decoration:underline}
.card img{border-radius:10px;margin-bottom:1.1rem;aspect-ratio:3/2;object-fit:cover;width:100%}

/* ---------- split ---------- */
.split{display:grid;grid-template-columns:1.05fr .95fr;gap:3rem;align-items:center}
.split img{border-radius:var(--radius);box-shadow:var(--shadow-lg);width:100%}
.checklist{list-style:none;margin:1.2rem 0}
.checklist li{display:flex;gap:.7rem;margin-bottom:.75rem;font-weight:600;color:var(--ink)}
.checklist li svg{flex:none;color:var(--pine);margin-top:.2rem}

/* ---------- steps ---------- */
.steps{counter-reset:step}
.step{position:relative;padding-left:4.2rem;margin-bottom:1.6rem}
.step::before{
  counter-increment:step;content:counter(step);
  position:absolute;left:0;top:0;width:52px;height:52px;border-radius:50%;
  background:var(--green);color:#fff;font-weight:900;font-size:1.3rem;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 6px 18px rgba(20,83,45,.35);
}
.step h3{margin-bottom:.3rem}
.step p{color:var(--muted);margin-bottom:0}

/* ---------- quote / forms ---------- */
.quote-section{background:linear-gradient(135deg,var(--green-dark),var(--green));color:#fff}
.quote-wrap{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.quote-section h2{color:#fff}
.quote-section .lead{color:#D8E9DD}
.quote-card{
  background:#fff;border-radius:18px;padding:2rem;color:var(--ink);
  box-shadow:0 30px 70px rgba(0,0,0,.3);
}
.quote-card h3{margin-bottom:1.1rem}
.form-row{margin-bottom:1rem}
.form-row label{display:block;font-weight:700;font-size:.9rem;margin-bottom:.35rem;color:var(--green-dark)}
.form-row input,.form-row select,.form-row textarea{
  width:100%;padding:.8rem .95rem;border:1.5px solid var(--border);border-radius:10px;
  font-size:1rem;font-family:inherit;background:#FAFCFB;transition:border-color .15s ease;
}
.form-row input:focus,.form-row select:focus,.form-row textarea:focus{
  outline:none;border-color:var(--pine);box-shadow:0 0 0 3px rgba(29,106,63,.14);
}
.form-2col{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.hp-field{position:absolute;left:-9999px;top:-9999px;height:1px;width:1px;overflow:hidden}
.form-note{font-size:.82rem;color:var(--muted);margin-top:.7rem;text-align:center}
.quote-benefits{list-style:none;margin-top:1.4rem}
.quote-benefits li{display:flex;gap:.7rem;margin-bottom:.8rem;color:#EAF4EC;font-weight:600}
.quote-benefits svg{flex:none;color:var(--gold);margin-top:.2rem}

/* ---------- CTA band ---------- */
.cta-band{
  background:linear-gradient(120deg,#B91C1C,#DC2626);color:#fff;text-align:center;
}
.cta-band h2{color:#fff}
.cta-band p{color:#FBD5D5;max-width:620px;margin:0 auto 1.6rem}
.cta-band .btn-ghost{border-color:#fff}
.cta-band .btn-green{box-shadow:0 8px 24px rgba(0,0,0,.3)}
.cta-band .cta-btns{display:flex;gap:.9rem;justify-content:center;flex-wrap:wrap}

/* ---------- FAQ ---------- */
.faq-item{border:1px solid var(--border);border-radius:12px;margin-bottom:.8rem;background:#fff;overflow:hidden}
.faq-q{
  width:100%;text-align:left;background:none;border:0;cursor:pointer;
  padding:1.1rem 1.3rem;font-weight:800;font-size:1.02rem;color:var(--green-dark);
  display:flex;justify-content:space-between;align-items:center;gap:1rem;font-family:inherit;
}
.faq-q .faq-icon{flex:none;width:26px;height:26px;border-radius:50%;background:var(--gold-soft);color:var(--pine);
  display:flex;align-items:center;justify-content:center;font-size:1.2rem;font-weight:900;transition:transform .2s ease}
.faq-item.open .faq-icon{transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .3s ease}
.faq-a .faq-a-in{padding:0 1.3rem 1.2rem;color:var(--muted)}
.faq-item.open .faq-a{max-height:400px}

/* ---------- breadcrumbs ---------- */
.crumbs{font-size:.86rem;color:var(--muted);margin-bottom:1rem}
.crumbs a{color:var(--pine);font-weight:600}
.crumbs .sep{margin:0 .45rem;color:#B9C6BE}

/* ---------- page hero (inner pages) ---------- */
.page-hero{position:relative;color:#fff;background:var(--green-dark);overflow:hidden;padding:3.6rem 0}
.page-hero .ph-bg{position:absolute;inset:0}
.page-hero .ph-bg img{width:100%;height:100%;object-fit:cover;opacity:.28}
.page-hero .ph-overlay{position:absolute;inset:0;background:linear-gradient(120deg,rgba(9,42,24,.92),rgba(12,58,31,.72))}
.page-hero .container{position:relative;z-index:2}
.page-hero h1{color:#fff;font-size:clamp(1.9rem,3.6vw,2.7rem)}
.page-hero .lead{color:#D8E9DD;max-width:680px;margin-top:.9rem}
.page-hero .crumbs{color:#B9D2C0}
.page-hero .crumbs a{color:#E9D9A6}

/* ---------- areas ---------- */
.area-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:.9rem}
.area-chip{
  display:flex;align-items:center;gap:.55rem;background:#fff;border:1px solid var(--border);
  border-radius:11px;padding:.85rem 1rem;font-weight:700;color:var(--green-dark);
  text-decoration:none !important;transition:border-color .15s ease,transform .15s ease;font-size:.95rem;
}
.area-chip:hover{border-color:var(--pine);transform:translateY(-2px)}
.area-chip svg{color:var(--gold);flex:none}

/* ---------- testimonials ---------- */
.testi{background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:1.6rem;box-shadow:var(--shadow)}
.testi .stars{color:var(--gold);letter-spacing:.15em;font-size:1.05rem;margin-bottom:.7rem}
.testi p{color:var(--ink);font-style:italic}
.testi .who{margin-top:.9rem;font-weight:800;color:var(--pine);font-style:normal;font-size:.92rem}

/* ---------- blog ---------- */
.post-meta{font-size:.86rem;color:var(--muted);margin-bottom:1rem}
.prose h2{margin-top:2.2rem}
.prose h3{margin-top:1.6rem}
.prose ul,.prose ol{margin:0 0 1.1rem 1.3rem}
.prose li{margin-bottom:.45rem}
.prose img{border-radius:12px;margin:1.4rem 0}
.prose blockquote{
  border-left:4px solid var(--gold);background:var(--gold-soft);
  padding:1rem 1.3rem;border-radius:0 10px 10px 0;margin:1.4rem 0;font-weight:600;color:var(--green-dark);
}
.price-table{width:100%;border-collapse:collapse;margin:1.2rem 0 1.6rem;font-size:.95rem}
.price-table th{background:var(--green);color:#fff;text-align:left;padding:.7rem .9rem}
.price-table td{padding:.65rem .9rem;border-bottom:1px solid var(--border)}
.price-table tr:nth-child(even) td{background:#F3F7F4}

/* ---------- footer ---------- */
.footer{background:var(--green-dark);color:#C6DCCB;padding:3.4rem 0 1.4rem;margin-top:0}
.footer a{color:#E4F0E7;text-decoration:none}
.footer a:hover{color:var(--gold);text-decoration:none}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:2.2rem;margin-bottom:2.4rem}
.footer h4{color:#fff;font-size:1rem;margin-bottom:.9rem;letter-spacing:.04em}
.footer ul{list-style:none}
.footer li{margin-bottom:.5rem;font-size:.93rem}
.footer .f-brand{display:flex;align-items:center;gap:.7rem;margin-bottom:1rem}
.footer .f-brand img{width:46px;height:46px}
.footer .f-brand b{color:#fff;font-size:1.05rem}
.footer .f-phone{
  display:inline-flex;align-items:center;gap:.5rem;font-weight:900;font-size:1.25rem;color:#fff;margin:.4rem 0 .8rem;
}
.footer .f-phone:hover{color:var(--gold)}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.14);padding-top:1.3rem;
  display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap;font-size:.84rem;color:#9FBCA6;
}
.footer-bottom a{color:#9FBCA6}
.footer-bottom a:hover{color:var(--gold)}
.footer .f-disc{font-size:.8rem;color:#8FAF96;margin-top:1.2rem;line-height:1.5}

/* ---------- sticky bubbles ---------- */
.leadpop{position:fixed;right:18px;bottom:18px;z-index:1500;display:flex;flex-direction:column;gap:.7rem}
.leadpop-btn{
  display:inline-flex;align-items:center;gap:.55rem;border-radius:999px;
  padding:.85rem 1.35rem;font-weight:900;font-size:1rem;color:#fff;text-decoration:none !important;
  box-shadow:0 12px 32px rgba(0,0,0,.3);transition:transform .15s ease;
}
.leadpop-btn:hover{transform:translateY(-3px);text-decoration:none}
.leadpop-btn.call{background:linear-gradient(180deg,#EF4444,#DC2626);position:relative}
.leadpop-btn.call::before{
  content:"";position:absolute;inset:-5px;border-radius:999px;
  border:2px solid rgba(220,38,38,.55);animation:pulse 2s infinite;
}
.leadpop-btn.quote{background:linear-gradient(180deg,var(--pine),var(--green))}
@keyframes pulse{
  0%{transform:scale(1);opacity:.9}
  70%{transform:scale(1.12);opacity:0}
  100%{transform:scale(1.12);opacity:0}
}

/* ---------- misc ---------- */
.section-alt{background:#F1F6F2}
.reveal{opacity:0;transform:translateY(22px);transition:opacity .5s ease,transform .5s ease}
.reveal.in{opacity:1;transform:none}
.tag-row{display:flex;gap:.5rem;flex-wrap:wrap;margin:.8rem 0 1.2rem}
.tag{background:var(--gold-soft);border:1px solid #EAD9A6;color:var(--green-dark);border-radius:999px;padding:.2rem .8rem;font-size:.8rem;font-weight:700}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width:980px){
  .hamburger{display:flex}
  .nav-desktop{display:none}
  .header-cta .btn{display:none}
  .header-cta{margin-left:auto}
  .header-phone{background:var(--gold-soft);border-radius:10px;padding:.55rem .7rem}
  .header-phone span{display:none}
  .nav{
    display:flex;
    position:fixed;top:0;right:0;bottom:0;
    width:min(320px,86vw);
    background:#fff;z-index:2001;
    flex-direction:column;align-items:stretch;gap:0;
    padding:92px 26px 30px;
    box-shadow:-14px 0 44px rgba(12,58,31,.22);
    transform:translateX(105%);
    visibility:hidden;
    transition:transform .28s ease,visibility .28s;
    overflow-y:auto;
  }
  .nav.open{transform:translateX(0);visibility:visible}
  .nav a.nav-link{padding:.95rem 0;border-bottom:1px solid var(--border);font-size:1.05rem;font-weight:700;color:var(--ink);text-decoration:none}
  .nav .btn{margin-top:1.2rem;width:100%}
  .nav-close{
    position:absolute;top:20px;right:20px;width:42px;height:42px;border-radius:10px;
    border:1px solid var(--border);background:#fff;font-size:1.3rem;color:var(--green-dark);cursor:pointer;
    display:flex;align-items:center;justify-content:center;font-weight:700;
  }
  body.menu-open{overflow:hidden}
  body.menu-open .header{background:transparent;backdrop-filter:none;-webkit-backdrop-filter:none;box-shadow:none;border-bottom-color:transparent}
  .nav-backdrop{
    display:block;
    position:fixed;inset:0;background:rgba(9,42,24,.55);z-index:2000;
    opacity:0;visibility:hidden;transition:opacity .28s ease,visibility .28s;
  }
  .nav-backdrop.show{opacity:1;visibility:visible}
  .split{grid-template-columns:1fr;gap:2rem}
  .quote-wrap{grid-template-columns:1fr;gap:2.2rem}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .area-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  section{padding:3rem 0}
  .hero .container{padding-top:3.8rem;padding-bottom:3.8rem}
}
@media (max-width:560px){
  .form-2col{grid-template-columns:1fr}
  .area-grid{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr}
  .leadpop-btn{padding:.8rem 1.1rem;font-size:.93rem}
  .trust-strip .container{gap:.7rem}
  .trust-strip .ti{font-size:.86rem}
}
@media (min-width:981px){
  .nav,.nav-backdrop{display:none !important}
}

.site-footer .brand img{width:150px;height:auto;max-height:64px}
footer .brand img{width:150px;height:auto;max-height:64px}

.video-bg{position:absolute;inset:0;overflow:hidden;z-index:0}
.page-hero{overflow:hidden}
.page-hero .container{z-index:2;position:relative}
.hero{position:relative;overflow:hidden}
.hero .container,.hero .wrap,.hero .hero-inner{position:relative;z-index:2}
.hero .video-bg{z-index:0}
.hero::before{z-index:1}

/* === standard-v2 service icons (dfwmoldguys spec) === */
html,body{overflow-x:hidden;max-width:100%}
.icon-tile{display:flex;align-items:center;margin:0 0 1.2rem 0;color:var(--sv2-icon,#1f2a33);transition:color .3s ease,transform .3s ease;line-height:0}
.icon-tile svg{width:30px;height:30px;stroke:currentColor;fill:none;stroke-width:1.4;stroke-linecap:round;stroke-linejoin:round;overflow:visible;display:block}
.scard:hover .icon-tile,.card:hover .icon-tile,.svc-card:hover .icon-tile{color:var(--sv2-accent,#3ed07e);transform:translateY(-2px)}
.scard,.card{max-width:100%;overflow:hidden}

:root{--sv2-accent:#f0a52a;--sv2-icon:#1f2a33}

.hero{position:relative;min-height:100vh;display:flex;flex-direction:column;justify-content:center;overflow:hidden}
.hero .video-bg{position:absolute;inset:0;z-index:0;overflow:hidden;pointer-events:none}
.hero .video-bg video,.hero .video-bg img{position:absolute;inset:0;width:100%;height:100%;max-width:100vw;object-fit:cover;opacity:1}
.hero .hero-shade{position:absolute;inset:0;z-index:1;background:linear-gradient(to bottom,rgba(6,10,16,.55),rgba(6,10,16,.35) 45%,rgba(6,10,16,.68))}
.hero .wrap,.hero .container,.hero .hero-inner,.hero .hero-grid,.hero>div:not(.video-bg):not(.hero-shade){position:relative;z-index:2}
.page-hero.hero-video{position:relative;min-height:100vh;display:flex;flex-direction:column;justify-content:center;overflow:hidden}
.page-hero.hero-video .wrap,.page-hero.hero-video .container,.page-hero.hero-video>div:not(.video-bg):not(.hero-shade){position:relative;z-index:2}
