/* ---------- 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:#0F2B28;background:#fff}
img{max-width:100%;height:auto;display:block}
a{color:#1E6E64;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:#0F2B28;color:#fff;padding:8px 16px;z-index:999}
.skip-link:focus{left:8px;top:8px}

/* ---------- buttons ---------- */
.btn{display:inline-block;padding:12px 24px;border-radius:6px;font-weight:600;border:0;cursor:pointer;text-align:center}
.btn-primary{background:#1E6E64;color:#fff}
.btn-primary:hover{background:#155048;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:#C98A2B;color:#0F2B28;padding:10px 18px}
.btn-call:hover{background:#A87422;text-decoration:none}

/* ---------- header ---------- */
.site-header{background:#0F2B28;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:#E8DCC0;font-weight:500;padding:6px 2px;border-bottom:2px solid transparent}
.nav-desktop a:hover,.nav-desktop a.active{color:#fff;border-bottom-color:#C98A2B;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:#0F2B28;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:#E8DCC0;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(10,31,29,.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(10,31,29,.82),rgba(18,59,54,.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:#E8DCC0}

/* ---------- trust bar ---------- */
.trust-bar{background:#1A403B;color:#E8DCC0;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:#C98A2B}
.trust-grid span{font-size:.9rem}

/* ---------- sections ---------- */
.section{padding:72px 0}
.section.alt{background:#F5F1E8}
.section-sub{max-width:720px;margin:8px 0 32px;color:#3F5A55}
.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(15,43,40,.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:#1E6E64;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(15,43,40,.1);transition:transform .2s,box-shadow .2s}
.svc-card:hover{transform:translateY(-4px);box-shadow:0 10px 28px rgba(15,43,40,.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:#0F2B28;margin-bottom:8px}
.svc-body p{color:#3F5A55;font-size:.95rem}
.svc-link{display:inline-block;margin-top:12px;color:#1E6E64;font-weight:600}

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

/* ---------- callout ---------- */
.callout{background:#F5F1E8;border-left:4px solid #1E6E64;padding:24px;border-radius:0 8px 8px 0;margin-top:24px}
.callout h3{color:#0F2B28}

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

/* ---------- quote form ---------- */
.quote-section{padding:72px 0;background:#F5F1E8}
.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(15,43,40,.12)}
.quote-form label{display:block;font-weight:600;margin-bottom:14px;color:#0F2B28}
.quote-form input,.quote-form select,.quote-form textarea{width:100%;padding:11px 12px;border:1px solid #C9D6C5;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 #1E6E64;border-color:#1E6E64}
.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:#5F7168;margin-top:12px;text-align:center}

/* ---------- faq ---------- */
.faq-section{padding:72px 0}
.faq-section details{border-bottom:1px solid #DEE5D6;padding:16px 0}
.faq-section summary{font-weight:600;cursor:pointer;color:#0F2B28;font-size:1.05rem}
.faq-section details p{margin-top:10px;color:#3F5A55}

/* ---------- breadcrumbs ---------- */
.breadcrumbs{background:#F5F1E8;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:#1E6E64}
.breadcrumbs a{color:#3F5A55}

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

/* ---------- footer ---------- */
.site-footer{background:#0A1F1D;color:#E8DCC0;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:#C98A2B;margin-bottom:14px;font-size:1rem}
.site-footer ul{list-style:none}
.site-footer li{margin-bottom:8px}
.site-footer a{color:#E8DCC0}
.site-footer a:hover{color:#fff}
.footer-phone{font-size:1.25rem;font-weight:700;color:#C98A2B}
.footer-bottom{border-top:1px solid #1A403B;margin-top:40px;padding:20px 0;text-align:center;font-size:.9rem;color:#8FA08E}

/* ---------- leadpop ---------- */
.leadpop{position:fixed;right:14px;bottom:14px;display:flex;flex-direction:column;gap:10px;z-index:120}
.leadpop-btn{width:56px;height:56px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.5rem;box-shadow:0 4px 14px rgba(0,0,0,.3)}
.leadpop-btn.call{background:#1E6E64;color:#fff}
.leadpop-btn.quote{background:#C98A2B;color:#0F2B28}
.leadpop-btn:hover{transform:scale(1.06);text-decoration:none}

/* ---------- misc ---------- */
@media (max-width:640px){
  .page-hero{padding:70px 0}
  .trust-grid{grid-template-columns:repeat(2,1fr)}
  .cta-actions .btn{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}

:root{--sv2-accent:#34d399;--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}


/* ---------- v2: Subspace premium rebuild ---------- */
/* fonts loaded in <head>; fallbacks preserved */
body{font-family:'Source Sans 3',system-ui,-apple-system,Segoe UI,Roboto,sans-serif}
h1,h2,h3,.btn,.brand,.hero-eyebrow{font-family:'Fraunces','Source Sans 3',Georgia,serif}

/* --- brand lockup --- */
.brand{gap:12px}
.brand .lockup{display:flex;flex-direction:column;line-height:1.05}
.brand .lockup b{font-family:'Fraunces',serif;font-size:1.22rem;font-weight:700;letter-spacing:.01em;color:#fff}
.brand .lockup i{font-style:normal;font-family:'Source Sans 3',sans-serif;font-size:.6rem;font-weight:600;letter-spacing:.24em;text-transform:uppercase;color:#C98A2B}
.brand img{border-radius:0;width:46px;height:46px}

/* --- hero: fix broken video positioning (page-hero.hero-video) --- */
.page-hero.hero-video .video-bg{position:absolute;inset:0;z-index:0;overflow:hidden;pointer-events:none}
.page-hero.hero-video .video-bg video,.page-hero.hero-video .video-bg img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.page-hero.hero-video .hero-shade{position:absolute;inset:0;z-index:1}
.page-hero.hero-video{position:relative;min-height:88vh;display:flex;flex-direction:column;justify-content:center;overflow:hidden;padding:96px 0}
.page-hero.hero-video .container{position:relative;z-index:2}

/* --- hero composition (no box, premium typography) --- */
.page-hero.hero-video .hero-shade{background:linear-gradient(100deg,rgba(10,26,24,.90) 0%,rgba(10,26,24,.72) 42%,rgba(10,26,24,.42) 68%,rgba(10,26,24,.18) 100%)}
.hero-eyebrow{display:inline-block;font-size:.78rem;font-weight:600;letter-spacing:.26em;text-transform:uppercase;color:#E9C989;border-left:3px solid #C98A2B;padding-left:14px;margin-bottom:22px;text-shadow:0 2px 12px rgba(0,0,0,.5)}
.page-hero.hero-video h1{font-weight:800;letter-spacing:-0.01em;font-size:clamp(2.5rem,5.4vw,4.3rem);line-height:1.08;max-width:15ch;text-shadow:0 3px 28px rgba(0,0,0,.55),0 1px 3px rgba(0,0,0,.6)}
.page-hero.hero-video h1 .accent{color:#E9C989;font-style:italic;font-weight:600}
.page-hero.hero-video .hero-lede{font-size:1.2rem;font-weight:400;max-width:54ch;margin-top:20px;color:#F2EEE2;text-shadow:0 2px 16px rgba(0,0,0,.55)}
.hero-ctas{display:flex;gap:14px;flex-wrap:wrap;margin-top:32px}
.btn-light{background:#C98A2B;color:#0F2B28;font-family:'Source Sans 3',sans-serif;font-weight:700;font-size:1.06rem;padding:15px 30px;border-radius:9px;box-shadow:0 8px 26px rgba(0,0,0,.4);display:inline-flex;align-items:center;gap:10px}
.btn-light:hover{background:#E0A43F;text-decoration:none}
.btn-light svg{width:18px;height:18px;fill:currentColor}
.hero-micro{margin-top:22px;font-size:.92rem;color:#E8DCC0;text-shadow:0 2px 12px rgba(0,0,0,.5);letter-spacing:.02em}
@media (max-width:860px){
  .page-hero.hero-video{min-height:92vh;padding:72px 0}
  .page-hero.hero-video .hero-shade{background:linear-gradient(to bottom,rgba(10,26,24,.86),rgba(10,26,24,.68) 55%,rgba(10,26,24,.84))}
  .hero-ctas .btn-light{width:100%;justify-content:center}
}

/* --- inner page heroes --- */
.page-hero:not(.hero-video){padding:96px 0}
.page-hero:not(.hero-video) h1{font-weight:800;font-size:clamp(2rem,4.4vw,3.2rem);text-shadow:0 2px 20px rgba(0,0,0,.5)}
.page-hero:not(.hero-video) .accent{color:#E9C989;font-style:italic;font-weight:600}
.page-hero:not(.hero-video) p{color:#EDE7D6}

/* --- trust bar: honest stats --- */
.trust-grid strong{font-family:'Fraunces',serif;font-weight:700}

/* --- section imagery --- */
.split .photo-frame img{border-radius:12px;box-shadow:0 14px 40px rgba(15,43,40,.22)}

/* --- SVG phone icon in header + ctas --- */
.btn-call svg,.cta-actions svg,.quote-call-side svg{width:16px;height:16px;fill:currentColor;vertical-align:-2px;margin-right:7px}

/* --- mobile callbar --- */
.callbar{display:none}
@media (max-width:960px){
  .callbar{display:block;position:fixed;left:0;right:0;bottom:0;z-index:150;background:#C98A2B;padding:12px 16px calc(12px + env(safe-area-inset-bottom));box-shadow:0 -4px 18px rgba(0,0,0,.3)}
  .callbar a{display:flex;align-items:center;justify-content:center;gap:10px;color:#0F2B28;font-weight:800;font-size:1.08rem;text-decoration:none;font-family:'Source Sans 3',sans-serif}
  .callbar a svg{width:20px;height:20px;fill:currentColor}
  body{padding-bottom:70px}
  .leadpop{display:none !important}
}

/* --- v2.1 lockup polish --- */
.brand .lockup b{font-size:1.32rem;letter-spacing:.015em;text-shadow:0 1px 6px rgba(0,0,0,.35)}
.brand .lockup i{display:block;margin-top:3px;font-size:.58rem;letter-spacing:.34em;color:#E9C989}
.brand img{width:44px;height:44px}
