/* ---------- reset & base ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
body{font-family:system-ui,-apple-system,Segoe UI,Roboto,sans-serif;line-height:1.6;color:#173B2C;background:#fff}
img{max-width:100%;height:auto;display:block}
a{color:#2E6148;text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:1180px;margin:0 auto;padding:0 20px}
.skip-link{position:absolute;left:-999px;top:0;background:#173B2C;color:#fff;padding:8px 16px;z-index:999}
.skip-link:focus{left:8px;top:8px}

/* ---------- buttons ---------- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;padding:14px 26px;border-radius:8px;font-weight:700;border:0;cursor:pointer;text-align:center;text-decoration:none}
.btn-primary{background:#E8A33D;color:#173B2C;box-shadow:0 4px 14px rgba(232,163,61,.35)}
.btn-primary:hover{background:#C98A2A;text-decoration:none}
.btn-outline{border:2px solid #fff;color:#fff}
.btn-outline:hover{background:rgba(255,255,255,.15);text-decoration:none}
.btn-call{background:#E8A33D;color:#173B2C;padding:10px 18px}
.btn-call:hover{background:#C98A2A;text-decoration:none}

/* ---------- header ---------- */
.site-header{background:#173B2C;color:#fff;position:sticky;top:0;z-index:100;box-shadow:0 2px 12px rgba(0,0,0,.25)}
.header-inner{display:flex;align-items:center;gap:20px;padding:10px 0}
.brand{display:flex;align-items:center;gap:10px;color:#fff;font-size:1.25rem;font-weight:700}
.brand:hover{text-decoration:none}
.brand img{border-radius:8px}
.nav-desktop{display:flex;gap:22px;margin-left:auto}
.nav-desktop a{color:#EEF6F0;font-weight:500;padding:6px 2px;border-bottom:2px solid transparent}
.nav-desktop a:hover,.nav-desktop a.active{color:#fff;border-bottom-color:#E8A33D;text-decoration:none}
.hamburger{display:none;background:none;border:0;flex-direction:column;gap:5px;cursor:pointer;padding:6px}
.hamburger span{display:block;width:26px;height:3px;background:#fff;border-radius:2px}
.nav{position:fixed;top:0;right:0;width:300px;height:100%;background:#173B2C;transform:translateX(100%);visibility:hidden;transition:transform .28s ease,visibility .28s;display:flex;flex-direction:column;gap:18px;padding:70px 28px 28px;z-index:200}
.nav.open{transform:translateX(0);visibility:visible}
.nav a{color:#EEF6F0;font-size:1.1rem;font-weight:500}
.nav a:hover{color:#fff}
.nav-close{position:absolute;top:16px;right:18px;background:none;border:0;color:#fff;font-size:2rem;cursor:pointer;line-height:1}
.nav-backdrop{position:fixed;inset:0;background:rgba(15,42,31,.55);opacity:0;visibility:hidden;transition:opacity .28s,visibility .28s;z-index:150}
body.menu-open{overflow:hidden}
body.menu-open .nav-backdrop{opacity:1;visibility:visible}
@media (min-width:981px){.nav,.nav-backdrop,.nav-close{display:none !important}}
@media (max-width:980px){
  .nav-desktop{display:none}
  .hamburger{display:flex;margin-left:auto}
  .header-inner .btn-call{display:none}
}

/* ---------- hero ---------- */
.page-hero{background-size:cover;background-position:center;color:#fff;padding:110px 0;position:relative}
.page-hero::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(15,42,31,.82),rgba(10,33,24,.72))}
.page-hero .container{position:relative}
.page-hero h1{font-size:clamp(2rem,5vw,3.4rem);line-height:1.15;max-width:800px}
.page-hero p{font-size:1.25rem;margin-top:14px;max-width:640px;color:#EEF6F0}

/* ---------- trust bar ---------- */
.trust-bar{background:#24513D;color:#EEF6F0;padding:22px 0}
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;text-align:center}
.trust-grid strong{display:block;font-size:1.6rem;color:#E8A33D}
.trust-grid span{font-size:.9rem}

/* ---------- sections ---------- */
.section{padding:72px 0}
.section.alt{background:#FBFDFB}
.section-sub{max-width:720px;margin:8px 0 32px;color:#5A7266}
.split{display:grid;grid-template-columns:1fr 1fr;gap:44px;align-items:center}
@media (max-width:860px){.split{grid-template-columns:1fr}}
.split img{border-radius:10px;box-shadow:0 8px 24px rgba(23,59,44,.15)}
.check-list{list-style:none;margin:20px 0}
.check-list li{padding-left:30px;position:relative;margin-bottom:10px}
.check-list li::before{content:'✓';position:absolute;left:0;color:#2E6148;font-weight:700}

/* ---------- service cards ---------- */
.svc-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:26px;margin-top:28px}
.svc-card{background:#fff;border-radius:10px;overflow:hidden;box-shadow:0 4px 18px rgba(23,59,44,.1);transition:transform .2s,box-shadow .2s}
.svc-card:hover{transform:translateY(-4px);box-shadow:0 10px 28px rgba(23,59,44,.16)}
.svc-card a{color:inherit;display:block}
.svc-card img{aspect-ratio:16/10;object-fit:cover;width:100%}
.svc-body{padding:20px}
.svc-body h3{color:#173B2C;margin-bottom:8px}
.svc-body p{color:#5A7266;font-size:.95rem}
.svc-link{display:inline-block;margin-top:12px;color:#2E6148;font-weight:600}

/* ---------- chips ---------- */
.chip-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}
.chip{background:#EEF6F0;color:#173B2C;padding:8px 16px;border-radius:999px;font-weight:500;font-size:.92rem}
.chip:hover{background:#D6E8DB;text-decoration:none}

/* ---------- callout ---------- */
.callout{background:#FBFDFB;border-left:4px solid #2E6148;padding:24px;border-radius:0 8px 8px 0;margin-top:24px}
.callout h3{color:#173B2C}

/* ---------- cta band ---------- */
.cta-band{background:linear-gradient(135deg,#2E6148,#0A2118);color:#fff;padding:60px 0;text-align:center}
.cta-band h2{font-size:2rem}
.cta-band p{margin:10px 0 24px;color:#EEF6F0}
.cta-actions{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}

/* ---------- quote form ---------- */
.quote-section{padding:72px 0;background:#FBFDFB}
.quote-grid{display:grid;grid-template-columns:1fr 1fr;gap:44px;align-items:start}
@media (max-width:860px){.quote-grid{grid-template-columns:1fr}}
.quote-form{background:#fff;padding:30px;border-radius:10px;box-shadow:0 6px 24px rgba(23,59,44,.12)}
.quote-form label{display:block;font-weight:600;margin-bottom:14px;color:#173B2C}
.quote-form input,.quote-form select,.quote-form textarea{width:100%;padding:11px 12px;border:1px solid #A9C4B2;border-radius:6px;font:inherit;margin-top:5px;background:#fff}
.quote-form input:focus,.quote-form select:focus,.quote-form textarea:focus{outline:2px solid #2E6148;border-color:#2E6148}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
@media (max-width:560px){.form-row{grid-template-columns:1fr}}
.hp-field{position:absolute;left:-9999px}
.form-note{font-size:.85rem;color:#70857A;margin-top:12px;text-align:center}

/* ---------- faq ---------- */
.faq-section{padding:72px 0}
.faq-section details{border-bottom:1px solid #E0EFE4;padding:16px 0}
.faq-section summary{font-weight:600;cursor:pointer;color:#173B2C;font-size:1.05rem}
.faq-section details p{margin-top:10px;color:#5A7266}

/* ---------- breadcrumbs ---------- */
.breadcrumbs{background:#FBFDFB;padding:12px 0;font-size:.9rem}
.breadcrumbs ol{list-style:none;display:flex;flex-wrap:wrap;gap:6px}
.breadcrumbs li+li::before{content:'›';margin-right:6px;color:#2E6148}
.breadcrumbs a{color:#5A7266}

/* ---------- article ---------- */
.article-body{max-width:780px}
.article-body h3{margin:28px 0 12px;color:#173B2C}
.article-body ul,.article-body ol{margin:12px 0 12px 24px}
.article-body li{margin-bottom:8px}

/* ---------- footer ---------- */
.site-footer{background:#0F2A1F;color:#EEF6F0;padding:60px 0 0}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:36px}
@media (max-width:860px){.footer-grid{grid-template-columns:1fr 1fr}}
@media (max-width:520px){.footer-grid{grid-template-columns:1fr}}
.site-footer h3{color:#E8A33D;margin-bottom:14px;font-size:1rem}
.site-footer ul{list-style:none}
.site-footer li{margin-bottom:8px}
.site-footer a{color:#EEF6F0}
.site-footer a:hover{color:#fff}
.footer-phone{font-size:1.25rem;font-weight:700;color:#E8A33D}
.footer-bottom{border-top:1px solid #24513D;margin-top:40px;padding:20px 0;text-align:center;font-size:.9rem;color:#8CAF96}

/* ---------- leadpop ---------- */
.callfab{position:fixed;bottom:1.5rem;right:1.5rem;z-index:3000;display:flex;flex-direction:column;align-items:flex-end;gap:.7rem}
.callfab-label{background:#fff;color:#173B2C;font-size:.85rem;font-weight:700;padding:.6rem 1rem;border-radius:12px;box-shadow:0 8px 24px rgba(0,0,0,.28);position:relative;max-width:250px}
.callfab-label::after{content:'';position:absolute;right:-6px;top:50%;transform:translateY(-50%);border:7px solid transparent;border-left-color:#fff;border-right:0}
.callfab-btn{position:relative;width:62px;height:62px;border-radius:50%;background:#E8A33D;color:#173B2C;display:flex;align-items:center;justify-content:center;box-shadow:0 10px 28px rgba(0,0,0,.35);transition:transform .25s ease,background .25s ease;text-decoration:none}
.callfab-btn:hover{transform:scale(1.08);background:#C98A2A;text-decoration:none}
.callfab-btn svg{width:26px;height:26px}
.callfab-btn::before{content:'';position:absolute;inset:-5px;border-radius:50%;border:2px solid #E8A33D;opacity:.55;animation:callfab-pulse 2.2s ease-out infinite}
@keyframes callfab-pulse{0%{transform:scale(.9);opacity:.7}70%{transform:scale(1.25);opacity:0}100%{transform:scale(1.25);opacity:0}}
@media (max-width:980px){.callfab{display:none}}
.callbar{display:none}
@media (max-width:980px){
.callbar{position:fixed;left:0;right:0;bottom:0;display:flex;gap:10px;padding:10px 12px;background:rgba(15,42,31,.96);backdrop-filter:blur(6px);z-index:120;box-shadow:0 -4px 18px rgba(0,0,0,.35)}
.callbar-btn{flex:1;display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:13px 10px;border-radius:6px;font-weight:700;font-size:.98rem;text-decoration:none;line-height:1}
.callbar-btn.primary{background:#E8A33D;color:#173B2C}
.callbar-btn.primary:hover{background:#C98A2A;text-decoration:none}
.callbar-btn.ghost{border:2px solid rgba(255,255,255,.5);color:#fff;flex:.45}
.callbar-btn.ghost:hover{background:rgba(255,255,255,.12);text-decoration:none}
body{padding-bottom:64px}
.site-footer{padding-bottom:calc(60px + 64px)}
}

/* ---------- misc ---------- */
@media (max-width:640px){
  .page-hero{padding:70px 0}
  .trust-grid{grid-template-columns:repeat(2,1fr)}
  .cta-actions .btn{width:100%}
}

/* ---------- AC Repair Greensboro additions ---------- */
.hero{}
.hero::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(15,42,31,.85),rgba(10,33,24,.7))}
.hero .container{position:relative}
.hero h1{font-size:clamp(2.1rem,5vw,3.6rem);line-height:1.12;max-width:820px}
.hero p{font-size:1.25rem;margin-top:14px;max-width:660px;color:#EEF6F0}
.btn-light,.btn-ghost{display:inline-block;padding:12px 24px;border-radius:6px;font-weight:600;border:0;cursor:pointer;text-align:center}
.btn-light{background:#E8A33D;color:#0F2A1F}
.btn-light:hover{background:#C98A2A;text-decoration:none}
.btn-ghost{border:2px solid #fff;color:#fff}
.btn-ghost:hover{background:rgba(255,255,255,.15);text-decoration:none}
.cta-btns{display:flex;gap:14px;flex-wrap:wrap;margin-top:24px}
.cta-band .cta-btns{justify-content:center}
.chip-cloud{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}
.chip-cloud .chip{background:#EEF6F0;color:#173B2C;padding:8px 16px;border-radius:999px;font-weight:500;font-size:.92rem}
.chip-cloud .chip:hover{background:#D6E8DB;text-decoration:none}
.crumbs{background:#FBFDFB;padding:12px 0;font-size:.9rem}
.crumbs ol{list-style:none;display:flex;flex-wrap:wrap;gap:6px}
.crumbs li+li::before{content:'›';margin-right:6px;color:#2E6148}
.crumbs a{color:#5A7266}
.eyebrow{display:inline-block;text-transform:uppercase;letter-spacing:.08em;font-size:.8rem;font-weight:700;color:#C98A2A;margin-bottom:8px}
.lead{max-width:720px;margin:8px 0 32px;color:#5A7266;font-size:1.05rem}
.center{text-align:center}
.lead.center{margin-left:auto;margin-right:auto}
.faq details{border-bottom:1px solid #E0EFE4;padding:16px 0}
.faq summary{font-weight:600;cursor:pointer;color:#173B2C;font-size:1.05rem}
.faq details p{margin-top:10px;color:#5A7266}
.footer{background:#0F2A1F;color:#EEF6F0;padding:60px 0 0}
.footer h4{color:#E8A33D;margin-bottom:14px;font-size:1rem}
.footer ul{list-style:none}
.footer li{margin-bottom:8px}
.footer a{color:#EEF6F0}
.footer a:hover{color:#fff}
.f-desc{margin:14px 0;color:#A9C4B2;font-size:.95rem}
.footer-phone{font-size:1.25rem;font-weight:700;color:#E8A33D !important}
.quote-call{font-weight:600}
.article-body h2{margin:28px 0 12px;color:#173B2C}
@media (max-width:640px){.hero{padding:90px 0}.cta-btns .btn-light,.cta-btns .btn-ghost{width:100%}}

/* === 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}

/* === standard-v2 hero video (full-bleed) === */
:root{--sv2-accent:#E8A33D;--sv2-icon:#1f2a33}
.hero,.page-hero.hero-video{position:relative;min-height:100vh;display:flex;flex-direction:column;justify-content:center;overflow:hidden}
.hero .video-bg,.page-hero.hero-video .video-bg{position:absolute;inset:0;z-index:0;overflow:hidden;pointer-events:none}
.hero .video-bg video,.hero .video-bg img,.page-hero.hero-video .video-bg video,.page-hero.hero-video .video-bg img{position:absolute;inset:0;width:100%;height:100%;max-width:100vw;object-fit:cover;opacity:1}
.hero .hero-shade,.page-hero.hero-video .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),.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}
.page-hero.hero-video::before{content:none}
.page-hero.hero-video{padding:0}

/* === standard-v2 brand lockup (wordmark lives in logo image) === */
.brand span{display:none}
.brand img{width:216px;height:auto;max-height:88px;object-fit:contain;border-radius:0}
.site-footer .brand img,footer .brand img{width:150px;max-height:64px}

.callbtn{display:inline-flex;align-items:center;gap:12px;background:#E8A33D;color:#173B2C;padding:16px 30px 16px 44px;border-radius:8px;text-decoration:none;font-weight:800;font-size:1.12rem;letter-spacing:.02em;white-space:nowrap;box-shadow:0 4px 14px rgba(232,163,61,.35)}
.callbtn:hover{background:#C98A2A;text-decoration:none}
.callbtn.big{width:100%;justify-content:center;font-size:1.08rem;padding:14px 20px 14px 26px}
.page-hero .sub{font-size:1.13rem;color:rgba(255,255,255,.92);max-width:600px;margin:14px 0 26px}
.hero-checks{list-style:none;margin:0 0 30px;display:grid;gap:10px;padding:0}
.hero-checks li{display:flex;align-items:center;gap:10px;font-weight:600;color:#fff;font-size:1.02rem}
.hero-checks .tick{width:22px;height:22px;border-radius:50%;background:#E8A33D;color:#173B2C;display:inline-flex;align-items:center;justify-content:center;flex:none}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap}
.quote-card{background:linear-gradient(150deg,#173B2C,#0F2A1F);color:#fff;border-radius:10px;padding:30px;box-shadow:0 10px 30px rgba(23,59,44,.25)}
.quote-card h3{margin-bottom:8px;font-size:1.25rem}
.quote-card p{color:rgba(255,255,255,.88);margin:0 0 18px}
@media (max-width:560px){
.hero-actions .btn{width:100%}
.page-hero.hero-video .container{padding-bottom:40px}
}
