*{margin:0;padding:0;box-sizing:border-box}
:root{
  --teal:#3B9182;
  --teal-dark:#2a6b60;
  --teal-deep:#1d4f47;
  --flame:#F04D27;
  --black:#000000;
  --white:#ffffff;
  --off:#f7f7f5;
  --mid:#555;
  --muted:#999;
  --border:#e5e5e5;
  --border-dark:#1a1a1a;
}
html{scroll-behavior:smooth}
body{font-family:'Montserrat',sans-serif;background:var(--white);color:var(--black);line-height:1.6;font-size:15px;-webkit-font-smoothing:antialiased}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}

/* ── NAV ── */
nav{position:fixed;top:0;left:0;right:0;z-index:200;background:rgba(0,0,0,0.92);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-bottom:1px solid rgba(255,255,255,0.06);padding:0 3.5rem;height:64px;display:flex;align-items:center;justify-content:space-between}
.nav-logo{display:flex;align-items:center;gap:10px}
.nav-logo-img{width:36px;height:36px;max-width:36px;max-height:36px;object-fit:contain;flex-shrink:0}
.nav-logo-text{font-size:0.78rem;font-weight:600;letter-spacing:3px;text-transform:uppercase;color:var(--white)}
.nav-logo-text span{color:var(--teal)}
.nav-links{display:flex;gap:2.5rem}
.nav-links a{font-size:0.68rem;letter-spacing:2px;text-transform:uppercase;color:rgba(255,255,255,0.45);font-weight:500;transition:color .25s}
.nav-links a:hover,.nav-links a.active{color:var(--white)}
.nav-cta{font-size:0.68rem;letter-spacing:2px;text-transform:uppercase;font-weight:600;color:var(--teal);border:1px solid rgba(59,145,130,0.4);padding:0.55rem 1.25rem;transition:all .25s;white-space:nowrap}
.nav-cta:hover{background:var(--teal);color:var(--white);border-color:var(--teal)}
.nav-burger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:0.5rem;flex-shrink:0}
.nav-burger span{display:block;width:22px;height:2px;background:var(--white);transition:all .25s}
nav.nav-open .nav-burger span:nth-child(1){transform:translateY(7px) rotate(45deg)}
nav.nav-open .nav-burger span:nth-child(2){opacity:0}
nav.nav-open .nav-burger span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ── HERO ── */
.hero{min-height:100vh;background:var(--black);display:flex;flex-direction:column;justify-content:flex-end;padding:0 3.5rem 5rem;padding-top:64px;position:relative;overflow:hidden}
.hero-bg-line{position:absolute;top:0;right:0;width:1px;height:100%;background:linear-gradient(to bottom,transparent,rgba(59,145,130,0.3),transparent)}
.hero-teal-bar{position:absolute;top:0;left:0;width:3px;height:100%;background:var(--teal);opacity:0.6}
.hero-inner{max-width:1080px;margin:0 auto;width:100%;display:grid;grid-template-columns:1fr 380px;gap:4rem;align-items:flex-end}
.hero-eyebrow{font-size:0.65rem;letter-spacing:4px;text-transform:uppercase;color:var(--teal);font-weight:500;margin-bottom:2rem;display:flex;align-items:center;gap:0.75rem}
.hero-eyebrow::before{content:'';display:block;width:32px;height:1px;background:var(--teal)}
.hero h1{font-size:clamp(3rem,6vw,5.5rem);font-weight:300;line-height:1.0;color:var(--white);letter-spacing:-2px;margin-bottom:2rem}
.hero h1 strong{font-weight:600;color:var(--white)}
.hero h1 em{font-style:normal;color:var(--teal)}
.hero-sub{font-size:0.85rem;color:rgba(255,255,255,0.4);font-weight:300;line-height:1.9;margin-bottom:2.5rem;max-width:460px;letter-spacing:0.3px}
.hero-btns{display:flex;gap:1rem;align-items:center;flex-wrap:wrap}
.btn-primary{background:var(--teal);color:var(--white);padding:1rem 2.25rem;font-family:'Montserrat',sans-serif;font-size:0.68rem;font-weight:600;letter-spacing:2px;text-transform:uppercase;border:none;cursor:pointer;transition:background .25s;display:inline-block}
.btn-primary:hover{background:var(--teal-dark)}
.btn-line{border:1px solid rgba(255,255,255,0.2);color:rgba(255,255,255,0.7);padding:1rem 2rem;font-family:'Montserrat',sans-serif;font-size:0.68rem;font-weight:500;letter-spacing:2px;text-transform:uppercase;transition:all .25s;display:inline-block}
.btn-line:hover{border-color:var(--white);color:var(--white)}
.hero-aside{display:flex;flex-direction:column;gap:0;border-left:1px solid rgba(255,255,255,0.08)}
.stat-row{padding:1.5rem 0 1.5rem 2rem;border-bottom:1px solid rgba(255,255,255,0.06)}
.stat-row:last-child{border-bottom:none}
.stat-n{font-size:2.2rem;font-weight:300;color:var(--white);letter-spacing:-1px;line-height:1}
.stat-l{font-size:0.6rem;letter-spacing:2.5px;text-transform:uppercase;color:rgba(255,255,255,0.3);font-weight:500;margin-top:0.35rem}
.hero-scroll{position:absolute;bottom:2rem;left:50%;transform:translateX(-50%);display:flex;flex-direction:column;align-items:center;gap:0.5rem}
.hero-scroll span{font-size:0.58rem;letter-spacing:3px;text-transform:uppercase;color:rgba(255,255,255,0.2);font-weight:500}
.scroll-line{width:1px;height:40px;background:linear-gradient(to bottom,rgba(59,145,130,0.6),transparent)}

/* Inner page hero */
.hero-inner-page{min-height:55vh;background:var(--black);display:flex;flex-direction:column;justify-content:flex-end;padding:0 3.5rem 5rem;padding-top:10rem;position:relative;overflow:hidden}
.hero-inner-page .hero-bg-line{position:absolute;top:0;right:0;width:1px;height:100%;background:linear-gradient(to bottom,transparent,rgba(59,145,130,0.3),transparent)}
.hero-inner-page .hero-teal-bar{position:absolute;top:0;left:0;width:3px;height:100%;background:var(--teal);opacity:0.6}
.hero-inner-page .hero-content{max-width:1080px;margin:0 auto;width:100%}
.hero-inner-page .hero-eyebrow{font-size:0.65rem;letter-spacing:4px;text-transform:uppercase;color:var(--teal);font-weight:500;margin-bottom:1.5rem;display:flex;align-items:center;gap:0.75rem}
.hero-inner-page .hero-eyebrow::before{content:'';display:block;width:32px;height:1px;background:var(--teal)}
.hero-inner-page h1{font-size:clamp(2.5rem,5vw,4.5rem);font-weight:300;line-height:1.05;color:var(--white);letter-spacing:-2px;margin-bottom:1.5rem}
.hero-inner-page h1 strong{font-weight:600}
.hero-inner-page h1 em{font-style:normal;color:var(--teal)}
.hero-inner-page .hero-sub{font-size:0.85rem;color:rgba(255,255,255,0.7);font-weight:300;line-height:1.9;margin-bottom:2rem;max-width:520px}

/* Chimney page orange accent */
.hero-chimney .hero-eyebrow{color:var(--flame)}
.hero-chimney .hero-eyebrow::before{background:var(--flame)}
.hero-chimney h1 em{color:var(--flame)}
.hero-chimney .hero-teal-bar{background:var(--flame)}

/* ── STRIP ── */
.strip{background:var(--teal);padding:1.25rem 3.5rem;display:flex;align-items:center;justify-content:center;gap:4rem}
.strip-item{font-size:0.65rem;letter-spacing:2.5px;text-transform:uppercase;font-weight:600;color:rgba(255,255,255,0.85);display:flex;align-items:center;gap:0.6rem}
.strip-dot{width:4px;height:4px;border-radius:50%;background:rgba(255,255,255,0.4)}

/* ── SECTIONS ── */
.sec{padding:7rem 3.5rem}
.sec-inner{max-width:1080px;margin:0 auto}
.sec-black{background:var(--black)}
.sec-off{background:var(--off)}
.eyebrow{font-size:0.62rem;letter-spacing:4px;text-transform:uppercase;color:var(--teal);font-weight:600;margin-bottom:1.25rem;display:flex;align-items:center;gap:0.75rem}
.eyebrow::before{content:'';display:block;width:24px;height:1px;background:var(--teal)}
.eyebrow-flame{color:var(--flame)}
.eyebrow-flame::before{background:var(--flame)}
.sec-title{font-size:clamp(1.8rem,3vw,2.6rem);font-weight:300;letter-spacing:-1px;line-height:1.15;margin-bottom:0.75rem;color:var(--black)}
.sec-title strong{font-weight:600}
.sec-black .sec-title{color:var(--white)}
.sec-black .sec-sub{color:rgba(255,255,255,0.35)}
.sec-sub{font-size:0.82rem;color:var(--muted);font-weight:300;max-width:480px;margin-bottom:4rem;line-height:1.9;letter-spacing:0.2px}

/* ── SERVICES GRID ── */
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid var(--border);border-left:1px solid var(--border)}
.service-item{padding:2.75rem 2rem;border-right:1px solid var(--border);border-bottom:1px solid var(--border);transition:background .25s;cursor:default;position:relative;overflow:hidden}
.service-item::after{content:'';position:absolute;bottom:0;left:0;width:0;height:2px;background:var(--teal);transition:width .35s}
.service-item:hover::after{width:100%}
.service-item:hover{background:var(--off)}
.svc-num{font-size:0.58rem;letter-spacing:3px;color:var(--teal);font-weight:600;margin-bottom:1.5rem;opacity:0.8}
.service-item h3{font-size:0.88rem;font-weight:600;letter-spacing:0.5px;margin-bottom:0.85rem;color:var(--black)}
.service-item p{font-size:0.78rem;color:var(--muted);line-height:1.85;font-weight:300;margin-bottom:1.5rem}
.svc-price{font-size:0.68rem;letter-spacing:1.5px;text-transform:uppercase;font-weight:600;color:var(--black)}

/* ── WHY GRID ── */
.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0;border-top:1px solid rgba(255,255,255,0.06);border-left:1px solid rgba(255,255,255,0.06)}
.why-item{padding:2.5rem 2rem;border-right:1px solid rgba(255,255,255,0.06);border-bottom:1px solid rgba(255,255,255,0.06)}
.why-n{font-size:3rem;font-weight:200;color:var(--white);letter-spacing:-2px;line-height:1;margin-bottom:0.75rem}
.why-item h4{font-size:0.65rem;letter-spacing:2px;text-transform:uppercase;font-weight:600;color:rgba(255,255,255,0.4);margin-bottom:0.6rem}
.why-item p{font-size:0.78rem;color:rgba(255,255,255,0.25);font-weight:300;line-height:1.8}

/* ── PRICING ── */
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid var(--border);border-left:1px solid var(--border)}
.price-card{padding:3rem 2.25rem;border-right:1px solid var(--border);border-bottom:1px solid var(--border);position:relative;background:var(--white);transition:background .25s,border-color .25s}
.price-card.featured{background:var(--black)}
.price-card:hover,.price-card.featured:hover{background:var(--teal);border-color:var(--teal-dark)}
.price-card:hover .price-tag-label,.price-card.featured:hover .price-tag-label{color:rgba(255,255,255,0.6)}
.price-card:hover .price-amount,.price-card.featured:hover .price-amount{color:var(--white)}
.price-card:hover .price-note,.price-card.featured:hover .price-note{color:rgba(255,255,255,0.6);border-color:rgba(255,255,255,0.2)}
.price-card:hover .price-list li,.price-card.featured:hover .price-list li{color:rgba(255,255,255,0.75);border-color:rgba(255,255,255,0.15)}
.price-card:hover .price-list li::before,.price-card.featured:hover .price-list li::before{background:var(--white)}
.price-card:hover .price-link,.price-card.featured:hover .price-link{color:var(--white)}
.price-card:hover .featured-badge,.price-card.featured:hover .featured-badge{color:var(--white);border-color:rgba(255,255,255,0.4)}
.price-tag-label{font-size:0.58rem;letter-spacing:3px;text-transform:uppercase;font-weight:600;color:var(--muted);margin-bottom:2rem}
.price-card.featured .price-tag-label{color:rgba(255,255,255,0.3)}
.price-amount{font-size:3.5rem;font-weight:200;letter-spacing:-3px;color:var(--black);line-height:1;margin-bottom:0.5rem}
.price-card.featured .price-amount{color:var(--white)}
.price-note{font-size:0.65rem;letter-spacing:1.5px;text-transform:uppercase;color:var(--muted);font-weight:500;margin-bottom:2.5rem;padding-bottom:2rem;border-bottom:1px solid var(--border)}
.price-card.featured .price-note{color:rgba(255,255,255,0.25);border-color:rgba(255,255,255,0.08)}
.price-list{list-style:none;margin-bottom:3rem}
.price-list li{font-size:0.78rem;color:var(--muted);font-weight:300;padding:0.6rem 0;border-bottom:1px solid var(--border);display:flex;gap:0.75rem;align-items:center;letter-spacing:0.2px}
.price-card.featured .price-list li{color:rgba(255,255,255,0.4);border-color:rgba(255,255,255,0.06)}
.price-list li::before{content:'';width:4px;height:4px;border-radius:50%;background:var(--teal);flex-shrink:0}
.price-link{font-size:0.65rem;letter-spacing:2px;text-transform:uppercase;font-weight:600;color:var(--teal);display:inline-flex;align-items:center;gap:0.5rem;transition:gap .25s}
.price-link::after{content:'→'}
.price-link:hover{gap:0.85rem}
.price-card.featured .price-link{color:rgba(255,255,255,0.6)}
.featured-badge{position:absolute;top:2rem;right:2rem;font-size:0.55rem;letter-spacing:2px;text-transform:uppercase;font-weight:600;color:var(--teal);border:1px solid rgba(59,145,130,0.3);padding:0.3rem 0.6rem}

/* ── TESTIMONIALS ── */
.testi-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:3rem;flex-wrap:wrap;gap:1rem}
.testi-google-badge{display:flex;align-items:center;gap:0.65rem;background:var(--white);padding:0.6rem 1.1rem;border:1px solid var(--border)}
.testi-google-badge .g-stars{display:flex;gap:2px}
.testi-google-badge .g-star{width:10px;height:10px;background:#FBBC04;clip-path:polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%)}
.testi-google-badge span{font-size:0.62rem;letter-spacing:1.5px;text-transform:uppercase;font-weight:600;color:var(--black)}
.testi-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.testi-card{background:var(--white);padding:2rem 2rem 1.75rem;border:1px solid var(--border);border-left:3px solid var(--teal);display:flex;flex-direction:column;transition:box-shadow .25s,transform .25s}
.testi-card:hover{box-shadow:0 8px 32px rgba(0,0,0,0.08);transform:translateY(-2px)}
.testi-quote-mark{font-size:3.5rem;line-height:1;color:var(--teal);font-family:Georgia,serif;font-weight:700;margin-bottom:0.5rem;opacity:0.35}
.testi-body{font-size:0.85rem;font-weight:400;color:var(--black);line-height:1.85;margin-bottom:1.5rem;flex:1}
.testi-stars{display:flex;gap:3px;margin-bottom:1.5rem}
.star{width:11px;height:11px;background:#FBBC04;clip-path:polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%)}
.testi-footer{display:flex;align-items:center;gap:0.85rem;padding-top:1.25rem;border-top:1px solid var(--border);margin-top:auto}
.testi-avatar{width:36px;height:36px;border-radius:50%;background:var(--teal);display:flex;align-items:center;justify-content:center;font-size:0.65rem;font-weight:600;color:var(--white);letter-spacing:0.5px;flex-shrink:0}
.testi-name{font-size:0.65rem;letter-spacing:1.5px;text-transform:uppercase;font-weight:600;color:var(--black)}
.testi-loc{font-size:0.7rem;color:var(--muted);font-weight:300;margin-top:0.15rem}
.testi-g-icon{width:18px;height:18px;margin-left:auto;flex-shrink:0}

/* ── STOVE CARDS ── */
.stove-grid{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid var(--border);border-left:1px solid var(--border)}
.stove-card{padding:2.75rem 2rem;border-right:1px solid var(--border);border-bottom:1px solid var(--border);position:relative;overflow:hidden;transition:background .25s}
.stove-card::after{content:'';position:absolute;bottom:0;left:0;width:0;height:2px;background:var(--flame);transition:width .35s}
.stove-card:hover::after{width:100%}
.stove-card:hover{background:var(--off)}
.stove-num{font-size:0.58rem;letter-spacing:3px;color:var(--flame);font-weight:600;margin-bottom:1.5rem;opacity:0.8}
.stove-card h3{font-size:0.88rem;font-weight:600;letter-spacing:0.5px;margin-bottom:0.5rem;color:var(--black)}
.stove-from{font-size:0.68rem;letter-spacing:1.5px;text-transform:uppercase;font-weight:600;color:var(--teal);margin-bottom:0.85rem}
.stove-card p{font-size:0.78rem;color:var(--muted);line-height:1.85;font-weight:300;margin-bottom:1.5rem}
.stove-link{font-size:0.65rem;letter-spacing:2px;text-transform:uppercase;font-weight:600;color:var(--teal);display:inline-flex;align-items:center;gap:0.5rem;transition:gap .25s}
.stove-link::after{content:'→'}
.stove-link:hover{gap:0.85rem}

/* ── PACKAGE CARDS ── */
.pkg-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.pkg-card{background:#0d0d0d;border:1px solid rgba(255,255,255,0.07);display:flex;flex-direction:column;overflow:hidden;position:relative}
.pkg-card-featured{border-color:rgba(59,145,130,0.4);background:#0a1513}
.pkg-img{background:#fff;width:100%;aspect-ratio:1/1;display:flex;align-items:center;justify-content:center;overflow:hidden}
.pkg-img img{width:85%;height:85%;object-fit:contain;display:block;transition:transform .4s}
.pkg-card:hover .pkg-img img{transform:scale(1.04)}
.pkg-body{padding:1.75rem 1.75rem 0}
.pkg-popular{position:absolute;top:0;right:0;font-size:0.55rem;letter-spacing:2px;text-transform:uppercase;font-weight:600;color:var(--white);background:var(--teal);padding:0.3rem 0.75rem;z-index:1}
.pkg-model{font-size:0.58rem;letter-spacing:3px;text-transform:uppercase;font-weight:600;color:var(--teal);opacity:0.7;margin-bottom:0.4rem}
.pkg-name{font-size:1.5rem;font-weight:300;color:var(--white);letter-spacing:-0.5px;margin-bottom:1.25rem}
.pkg-price{font-size:3rem;font-weight:200;color:var(--white);letter-spacing:-2px;line-height:1}
.pkg-price-note{font-size:0.6rem;letter-spacing:2px;text-transform:uppercase;color:rgba(255,255,255,0.2);font-weight:500;margin-top:0.4rem;margin-bottom:1.25rem}
.pkg-btn{display:block;background:var(--teal);color:var(--white);padding:0.85rem 1.5rem;font-size:0.65rem;font-weight:600;letter-spacing:2px;text-transform:uppercase;transition:background .25s;text-align:center}
.pkg-btn:hover{background:var(--teal-dark)}
.pkg-toggle{display:flex;align-items:center;justify-content:space-between;width:100%;background:none;border:none;border-top:1px solid rgba(255,255,255,0.06);padding:0.9rem 1.75rem;font-family:'Montserrat',sans-serif;font-size:0.58rem;letter-spacing:2px;text-transform:uppercase;font-weight:600;color:rgba(255,255,255,0.3);cursor:pointer;transition:color .2s;margin-top:1.25rem;position:relative;z-index:3}
.pkg-toggle:hover{color:var(--teal)}
.pkg-toggle::after{content:'↓';transition:transform .25s}
.pkg-card.pkg-open .pkg-toggle::after{transform:rotate(180deg)}
.pkg-card.pkg-open .pkg-toggle{color:var(--teal);border-color:rgba(59,145,130,0.3)}
.pkg-details{position:absolute;top:0;left:0;right:0;bottom:0;background:#0d0d0d;padding:1.25rem 1.5rem 56px;opacity:0;visibility:hidden;transform:translateY(12px);transition:opacity .3s ease,visibility .3s ease,transform .3s ease;z-index:2}
.pkg-card-featured .pkg-details{background:#0a1513}
.pkg-card.pkg-open .pkg-details{opacity:1;visibility:visible;transform:translateY(0)}
.pkg-desc{font-size:0.72rem;color:rgba(255,255,255,0.3);line-height:1.7;font-weight:300;margin-bottom:1rem}
.pkg-specs{display:grid;grid-template-columns:1fr 1fr;border-top:1px solid rgba(255,255,255,0.06);border-left:1px solid rgba(255,255,255,0.06);margin-bottom:1rem}
.pkg-spec{padding:0.45rem 0.65rem;border-right:1px solid rgba(255,255,255,0.06);border-bottom:1px solid rgba(255,255,255,0.06)}
.pkg-spec span{display:block;font-size:0.52rem;letter-spacing:2px;text-transform:uppercase;color:rgba(255,255,255,0.2);font-weight:500;margin-bottom:0.15rem}
.pkg-spec strong{font-size:0.72rem;font-weight:500;color:rgba(255,255,255,0.6)}
.pkg-includes{margin-bottom:0}
.pkg-includes-label{font-size:0.55rem;letter-spacing:2.5px;text-transform:uppercase;color:rgba(255,255,255,0.2);font-weight:600;margin-bottom:0.5rem}
.pkg-includes ul{list-style:none}
.pkg-includes ul li{font-size:0.7rem;color:rgba(255,255,255,0.35);font-weight:300;padding:0.3rem 0;border-bottom:1px solid rgba(255,255,255,0.04);display:flex;align-items:center;gap:0.5rem}
.pkg-includes ul li::before{content:'';width:3px;height:3px;border-radius:50%;background:var(--teal);flex-shrink:0}

/* ── JOBS MARQUEE ── */
@keyframes jobs-scroll{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}
@keyframes wave-dash{to{stroke-dashoffset:-640}}
.jobs-marquee-wrap{overflow:hidden;margin-top:2.5rem;cursor:grab}
.jobs-marquee-wrap:active{cursor:grabbing}
.jobs-marquee{display:flex;gap:1.25rem;width:max-content;position:relative}
.job-card{background:var(--white);border:1px solid var(--border);overflow:hidden;flex:0 0 300px;position:relative}
.jobs-marquee .job-card:nth-child(odd){z-index:2}
.jobs-marquee .job-card:nth-child(even){z-index:0}
.job-img-placeholder{width:100%;height:220px;background:#e5e5e0;display:flex;align-items:center;justify-content:center;font-size:0.6rem;letter-spacing:2px;text-transform:uppercase;color:#bbb;font-weight:600}
.job-img-placeholder::after{content:'Photo coming soon'}
.job-card img{width:100%;height:220px;object-fit:cover;display:block;transition:transform .4s}
.job-card:hover img{transform:scale(1.03)}
.jobs-wave-svg{position:absolute;top:0;left:0;width:100%;height:220px;pointer-events:none;z-index:1;overflow:visible}
.jobs-wave-path{fill:none;stroke:var(--teal);stroke-width:3;stroke-dasharray:20 10;stroke-linecap:round;animation:wave-dash 3s linear infinite;filter:drop-shadow(0 0 4px var(--teal))}

/* ── PRODUCT GRID ── */
.product-category{margin-top:0}
.product-category-label{font-size:0.6rem;letter-spacing:3px;text-transform:uppercase;font-weight:600;color:var(--black);padding:1rem 1.25rem;cursor:pointer;display:flex;align-items:center;justify-content:space-between;margin-bottom:0.75rem;border:1px solid var(--border);background:var(--off);user-select:none;transition:background .2s,border-color .2s,color .2s}
.product-category-label:hover{background:var(--teal);border-color:var(--teal);color:var(--white)}
.product-category-label::after{content:'View range ↓';font-size:0.58rem;font-weight:500;letter-spacing:1.5px;color:var(--teal);transition:color .2s}
.product-category.open .product-category-label{background:var(--black);border-color:var(--black);color:var(--white)}
.product-category.open .product-category-label::after{content:'Close ↑';color:rgba(255,255,255,0.5)}
.product-category-label:hover::after{color:rgba(255,255,255,0.8)}
.product-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(120px,1fr));gap:1rem;overflow:hidden;max-height:0;opacity:0;transition:max-height .35s ease,opacity .25s ease,padding .25s ease;padding-bottom:0;margin-bottom:0}
.product-category.open .product-grid{max-height:2000px;opacity:1;padding-bottom:2rem;margin-bottom:0.75rem}
.product-card{background:var(--white);cursor:default;transition:transform .25s}
.product-card:hover{transform:translateY(-3px)}
.product-img-placeholder{width:100%;aspect-ratio:1/1;background:#ffffff;display:flex;align-items:center;justify-content:center;font-size:0.58rem;letter-spacing:2px;text-transform:uppercase;color:#bbb;font-weight:600;position:relative;overflow:hidden}
.product-img-placeholder img{width:100%;height:100%;object-fit:cover;display:block}
.product-img-placeholder::after{content:'Image coming soon';position:absolute}
.product-img-placeholder.has-image::after{display:none}
.sec-off .product-card{background:var(--white)}
.product-info{padding:0.6rem 0 0}
.product-name{font-size:0.63rem;font-weight:600;letter-spacing:0.5px;color:var(--black);margin-bottom:0.15rem}
.product-size{font-size:0.58rem;color:var(--muted);font-weight:300;letter-spacing:0.5px}

/* ── CHIMNEY GALLERY ── */
.chimney-gallery{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;margin-top:0}
.chimney-gallery-main{overflow:hidden}
.chimney-gallery-main img{width:100%;height:100%;object-fit:cover;display:block;filter:brightness(0.85);transition:filter .3s;min-height:300px}
.chimney-gallery-main img:hover{filter:brightness(1)}
.chimney-gallery-side{display:grid;grid-template-rows:1fr 1fr;gap:1.5rem}
.chimney-gallery-item{overflow:hidden}
.chimney-gallery-item img{width:100%;height:100%;object-fit:cover;display:block;filter:brightness(0.85);transition:filter .3s;min-height:140px}
.chimney-gallery-item img:hover{filter:brightness(1)}

/* ── PRICING 2-UP ── */
.pricing-grid-2{grid-template-columns:repeat(2,1fr);max-width:740px;margin-left:auto;margin-right:auto}

/* ── AREAS GRID ── */
.areas-grid{display:flex;flex-wrap:wrap;gap:0.6rem;margin-bottom:2rem}
.area-pill{font-size:0.65rem;letter-spacing:1.5px;text-transform:uppercase;font-weight:600;color:var(--white);background:var(--black);padding:0.5rem 1rem;transition:background .2s}
.area-pill:hover{background:var(--teal)}

/* ── FAQ ── */
.faq-list{display:flex;flex-direction:column;gap:0;border-top:1px solid var(--border)}
.faq-item{padding:2rem 0;border-bottom:1px solid var(--border)}
.faq-item h3{font-size:0.85rem;font-weight:600;color:var(--black);margin-bottom:0.75rem;letter-spacing:0.2px}
.faq-item p{font-size:0.8rem;color:var(--muted);line-height:1.9;font-weight:300}
.sec-black .faq-list{border-color:rgba(255,255,255,0.06)}
.sec-black .faq-item{border-color:rgba(255,255,255,0.06)}
.sec-black .faq-item h3{color:var(--white)}
.sec-black .faq-item p{color:rgba(255,255,255,0.3)}

/* ── INCLUDED ── */
.included-grid{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid rgba(255,255,255,0.06);border-left:1px solid rgba(255,255,255,0.06)}
.included-item{padding:2.25rem 2rem;border-right:1px solid rgba(255,255,255,0.06);border-bottom:1px solid rgba(255,255,255,0.06)}
.included-icon{font-size:1.5rem;margin-bottom:0.75rem}
.included-item h3{font-size:0.75rem;letter-spacing:1.5px;text-transform:uppercase;font-weight:600;color:rgba(255,255,255,0.6);margin-bottom:0.5rem}
.included-item p{font-size:0.76rem;color:rgba(255,255,255,0.25);font-weight:300;line-height:1.8}

/* ── CONTACT FORM ── */
.contact-layout{display:grid;grid-template-columns:1fr 1fr;gap:6rem;max-width:1080px;margin:0 auto}
.contact-form h2{font-size:clamp(1.6rem,2.5vw,2.2rem);font-weight:300;letter-spacing:-1px;margin-bottom:0.5rem}
.contact-form h2 strong{font-weight:600}
.contact-form .lead{font-size:0.82rem;color:var(--muted);font-weight:300;line-height:1.9;margin-bottom:2.5rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.form-group{margin-bottom:1.25rem}
.form-group label{display:block;font-size:0.6rem;letter-spacing:2px;text-transform:uppercase;font-weight:600;color:var(--black);margin-bottom:0.5rem}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:0.85rem 1rem;border:1px solid var(--border);background:var(--off);font-family:'Montserrat',sans-serif;font-size:0.82rem;color:var(--black);font-weight:300;transition:border-color .2s;outline:none;appearance:none;-webkit-appearance:none}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--teal)}
.form-group textarea{resize:vertical;min-height:140px}
.contact-details h2{font-size:clamp(1.6rem,2.5vw,2.2rem);font-weight:300;letter-spacing:-1px;margin-bottom:0.5rem}
.contact-details h2 strong{font-weight:600}
.contact-details .lead{font-size:0.82rem;color:var(--muted);font-weight:300;line-height:1.9;margin-bottom:2.5rem}
.detail-row{padding:1.5rem 0;border-bottom:1px solid var(--border);display:flex;gap:1.25rem;align-items:flex-start}
.detail-label{font-size:0.58rem;letter-spacing:2.5px;text-transform:uppercase;font-weight:600;color:var(--muted);margin-bottom:0.3rem}
.detail-value{font-size:0.88rem;font-weight:500;color:var(--black)}
.detail-value a{color:var(--teal);transition:color .2s}
.detail-value a:hover{color:var(--black)}

/* ── VIDEO ── */
.video-wrap{max-width:900px;margin:0 auto;border:1px solid rgba(255,255,255,0.08);position:relative;overflow:hidden}
.site-video{width:100%;display:block;aspect-ratio:16/9;object-fit:cover;background:#000}
.site-video:focus{outline:none}

/* ── CTA BAND ── */
.cta-band{background:var(--teal);padding:5rem 3.5rem;text-align:center}
.cta-band h2{font-size:clamp(1.8rem,3vw,2.8rem);font-weight:300;color:var(--white);letter-spacing:-1px;margin-bottom:0.75rem}
.cta-band h2 strong{font-weight:600}
.cta-band p{font-size:0.82rem;color:rgba(255,255,255,0.65);font-weight:300;margin-bottom:2.5rem;max-width:420px;margin-left:auto;margin-right:auto;line-height:1.9}
.cta-btns{display:flex;justify-content:center;gap:1rem;flex-wrap:wrap}
.btn-white{background:var(--white);color:var(--teal);padding:1rem 2.25rem;font-family:'Montserrat',sans-serif;font-size:0.68rem;font-weight:600;letter-spacing:2px;text-transform:uppercase;transition:all .25s;display:inline-block;border:none;cursor:pointer}
.btn-white:hover{background:var(--black);color:var(--white)}
.btn-outline-white{border:1px solid rgba(255,255,255,0.4);color:var(--white);padding:1rem 2rem;font-family:'Montserrat',sans-serif;font-size:0.68rem;font-weight:500;letter-spacing:2px;text-transform:uppercase;transition:all .25s;display:inline-block}
.btn-outline-white:hover{border-color:var(--white);background:rgba(255,255,255,0.08)}

/* ── FOOTER ── */
footer{background:var(--black);padding:5rem 3.5rem 2.5rem}
.footer-inner{max-width:1080px;margin:0 auto}
.footer-top{display:grid;grid-template-columns:2.5fr 1fr 1fr;gap:5rem;margin-bottom:5rem}
.f-logo{font-size:0.75rem;font-weight:600;letter-spacing:3px;text-transform:uppercase;color:var(--white);margin-bottom:1rem}
.f-logo span{color:var(--teal)}
.f-desc{font-size:0.78rem;font-weight:300;line-height:1.9;color:rgba(255,255,255,0.25);max-width:320px}
.f-hetas-logo{display:block;margin-top:1.5rem;width:80px;height:auto;opacity:0.8}
.f-hetas{display:inline-block;margin-top:0.75rem;font-size:0.58rem;letter-spacing:2px;text-transform:uppercase;font-weight:600;color:rgba(255,255,255,0.3);border:1px solid rgba(255,255,255,0.1);padding:0.35rem 0.75rem}
.f-heading{font-size:0.58rem;letter-spacing:3px;text-transform:uppercase;font-weight:600;color:rgba(255,255,255,0.2);margin-bottom:1.5rem}
footer ul{list-style:none}
footer ul li{margin-bottom:0.75rem}
footer ul li a{font-size:0.78rem;font-weight:300;color:rgba(255,255,255,0.35);transition:color .2s;letter-spacing:0.2px}
footer ul li a:hover{color:var(--white)}
footer ul li.info{font-size:0.75rem;font-weight:300;color:rgba(255,255,255,0.18);margin-top:0.25rem}
.footer-divider{border:none;border-top:1px solid rgba(255,255,255,0.06);margin-bottom:2rem}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:0.5rem}
.footer-bottom p{font-size:0.65rem;color:rgba(255,255,255,0.15);letter-spacing:0.5px}

/* ── RESPONSIVE ── */
/* ── PHOTO SECTIONS ── */
.photo-section{background:var(--black);padding:0 3.5rem 3rem}
.photo-section-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.photo-section-inner img{width:100%;height:280px;object-fit:cover;display:block;filter:brightness(0.85);transition:filter .3s}
.photo-section-inner img:hover{filter:brightness(1)}
.photo-full-section{background:var(--black);padding:0 3.5rem 3rem}
.photo-full-section img{max-width:1200px;margin:0 auto;display:block;width:100%;height:520px;object-fit:cover;filter:brightness(0.82)}

@media(max-width:1024px){
  nav{padding:0 2rem}
  .hero-inner-page{padding-top:8rem}
  .hero,.hero-inner-page,.sec,.cta-band,footer{padding-left:2rem;padding-right:2rem}
  .strip{padding:1.25rem 2rem;gap:2rem}
  .hero-inner{grid-template-columns:1fr}
  .hero-aside{display:none}
  .services-grid,.stove-grid,.pricing-grid,.testi-grid,.why-grid,.included-grid,.pkg-grid,.jobs-grid{grid-template-columns:repeat(2,1fr)}
  .pkg-img{aspect-ratio:3/2}
  .chimney-gallery{grid-template-columns:1fr}
  .chimney-gallery-side{grid-template-rows:unset;grid-template-columns:1fr 1fr}
  .footer-top{grid-template-columns:1fr 1fr;gap:3rem}
  .contact-layout{grid-template-columns:1fr;gap:3rem}
  .photo-section{padding:0 2rem 2rem}
  .photo-full-section{padding:0 2rem 2rem}
  .photo-section-inner img{height:220px}
  .photo-full-section img{height:380px}
  .testi-header{flex-wrap:wrap;gap:1rem;margin-bottom:2rem}
  .testi-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:640px){
  /* ── NAV ── */
  nav{padding:0 1.5rem}
  .nav-links{display:none}
  .nav-cta{display:none}
  .nav-burger{display:flex}
  .nav-mobile-call{display:flex !important;align-items:center;gap:0.5rem;font-size:0.88rem;font-weight:600;color:var(--teal);letter-spacing:1px;padding-top:1.5rem;border-top:1px solid rgba(255,255,255,0.08);margin-top:0.5rem}
  nav.nav-open .nav-links{display:flex;flex-direction:column;position:absolute;top:64px;left:0;right:0;background:rgba(0,0,0,0.97);padding:2rem 1.5rem;gap:1.5rem;border-bottom:1px solid rgba(255,255,255,0.08)}
  nav.nav-open .nav-links a{font-size:0.88rem;letter-spacing:1.5px}

  /* ── SPACING ── */
  .hero,.hero-inner-page,.sec,.cta-band,footer{padding-left:1.25rem;padding-right:1.25rem}
  .sec{padding-top:4rem;padding-bottom:4rem}
  .cta-band{padding-top:3.5rem;padding-bottom:3.5rem}
  footer{padding-top:3.5rem;padding-bottom:2rem}
  .footer-top{margin-bottom:3rem}

  /* ── HERO ── */
  .hero{padding-bottom:3.5rem}
  .hero-inner-page{padding-top:6rem;padding-bottom:3.5rem}
  .hero h1{letter-spacing:-0.5px}
  .hero-inner-page h1{letter-spacing:-0.5px}
  .hero-scroll{display:none}
  .hero-btns{flex-direction:column;align-items:stretch}
  .btn-primary,.btn-line{text-align:center;width:100%;box-sizing:border-box}

  /* ── TYPOGRAPHY ── */
  .eyebrow{letter-spacing:2px}
  .hero-eyebrow{letter-spacing:2px}
  .hero-inner-page .hero-eyebrow{letter-spacing:2px}
  .sec-title{letter-spacing:-0.5px}
  .sec-sub{margin-bottom:2.5rem}

  /* ── STRIP ── */
  .strip{flex-direction:column;gap:0.75rem;padding:1.5rem 1.25rem}
  .strip-dot{display:none}

  /* ── GRIDS ── */
  .services-grid,.stove-grid,.pricing-grid,.testi-grid,.why-grid,.included-grid,.pkg-grid,.jobs-grid{grid-template-columns:1fr}
  .chimney-gallery,.chimney-gallery-side{grid-template-columns:1fr;grid-template-rows:unset}
  .pricing-grid-2{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr;gap:2rem}
  .footer-bottom{flex-direction:column;align-items:flex-start;gap:0.4rem}
  .form-row{grid-template-columns:1fr}

  /* ── CARDS ── */
  .service-item{padding:2rem 1.5rem}
  .stove-card{padding:2rem 1.5rem}
  .price-card{padding:2rem 1.5rem}
  .pkg-img{aspect-ratio:4/3}
  .pkg-body{padding:1.1rem 1.25rem 0}
  .pkg-toggle{padding:0.85rem 1.25rem}
  .pkg-details{padding:1.1rem 1.25rem 52px}
  .testi-card{padding:1.75rem 1.5rem}

  /* ── NUMBERS ── */
  .price-amount{font-size:2.5rem;letter-spacing:-1px}
  .why-n{font-size:2rem;letter-spacing:-1px}
  .pkg-price{font-size:2.25rem;letter-spacing:-1px}

  /* ── FORMS ── */
  .form-group input,.form-group select,.form-group textarea{font-size:1rem}

  /* ── PHOTOS ── */
  .photo-section{padding:0 1.25rem 1.25rem}
  .photo-full-section{padding:0 1.25rem 1.25rem}
  .photo-section-inner{grid-template-columns:1fr}
  .photo-section-inner img{height:200px}
  .photo-full-section img{height:240px}
  .chimney-gallery-main img{min-height:220px}
  .chimney-gallery-item img{min-height:160px}
  .job-img-placeholder{height:160px}
  .job-card img{height:160px}
  .job-card{flex:0 0 220px}
  .jobs-marquee-wrap{margin-top:1.5rem}
  .jobs-marquee{gap:0.75rem}

  /* ── PRODUCT GRID ── */
  .product-grid{grid-template-columns:repeat(auto-fill,minmax(100px,1fr))}

  /* ── REVIEWS ── */
  .testi-header{flex-direction:column;align-items:flex-start;margin-bottom:1.75rem}
  .testi-grid{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;gap:1rem;padding:0.25rem 1.5rem 1rem;margin:0 -1.5rem;scrollbar-width:none}
  .testi-grid::-webkit-scrollbar{display:none}
  .testi-card{flex:0 0 82vw;scroll-snap-align:start;padding:1.5rem 1.25rem}

  /* ── STOVE OVERLAY ── */
  .pkg-details{padding:1rem 1.25rem 52px;overflow-y:auto}
  .pkg-spec span,.pkg-spec strong{font-size:0.72rem}
  .pkg-includes-label{font-size:0.55rem}
  .pkg-include{font-size:0.72rem}
  .pkg-desc{font-size:0.75rem;line-height:1.7}

  /* ── PRODUCT ACCORDION ── */
  .product-category-label{font-size:0.55rem;letter-spacing:2px;padding:0.9rem 1rem}
  .product-category-label::after{font-size:0.55rem;letter-spacing:1px}

  /* ── CONTACT IFRAME ── */
  .contact-form iframe{min-height:600px}
}
