/* FirstLight Home Pros — Shared Styles */
*{margin:0;padding:0;box-sizing:border-box}

:root{
  --bg:#FDFBF6;
  --text:#372400;
  --heading:#5A4300;
  --hero-text:#B8943A;
  --hero-sub:rgba(220,175,90,0.90);
  --btn:#9B712B;
  --btn-hover:#7D5820;
  --overlay:rgba(28,18,5,0.48);
  --card-bg:#F2EBD9;
  --border:#DDD4BB;
  --input-bg:#F8F4EC;
  --accent:#9B712B;
}

html{scroll-behavior:smooth}
body{font-family:'Open Sans',sans-serif;background:var(--bg);color:var(--text);line-height:1.65}
h1,h2,h3,h4{font-family:'Montserrat',sans-serif;color:var(--heading);line-height:1.12}
a{text-decoration:none}
img{display:block;max-width:100%}

/* ── HEADER ── */
.header{
  position:sticky;top:0;z-index:100;
  background:var(--bg);
  border-bottom:1px solid var(--border);
  padding:0 2.5rem;
  display:flex;align-items:center;justify-content:space-between;
  height:88px;
}
.logo{display:flex;align-items:center}
.logo img{height:78px;width:auto}
.nav{display:flex;gap:2rem;list-style:none}
.nav a{color:var(--text);font-size:0.9rem;font-weight:500;transition:color .2s}
.nav a:hover,.nav a.active{color:var(--btn)}
.btn-cta{
  background:var(--btn);color:#fff;
  padding:.7rem 1.4rem;
  font-family:'Montserrat',sans-serif;font-weight:700;font-size:.85rem;
  letter-spacing:.02em;transition:background .2s;white-space:nowrap;
}
.btn-cta:hover{background:var(--btn-hover)}
.hamburger{display:none;background:none;border:none;cursor:pointer;font-size:1.6rem;color:var(--text)}

/* ── BUTTONS ── */
.btn-primary{
  display:inline-block;background:var(--btn);color:#fff;
  padding:.8rem 1.6rem;
  font-family:'Montserrat',sans-serif;font-weight:700;font-size:.88rem;
  letter-spacing:.02em;transition:background .2s;
}
.btn-primary:hover{background:var(--btn-hover)}
.btn-outline{
  display:inline-block;background:transparent;color:var(--heading);
  padding:.75rem 1.55rem;
  border:1.5px solid var(--border);
  font-family:'Montserrat',sans-serif;font-weight:700;font-size:.88rem;
  letter-spacing:.02em;transition:all .2s;
}
.btn-outline:hover{background:var(--btn);color:#fff;border-color:var(--btn)}
.btn-ghost{
  display:inline-block;background:transparent;color:var(--hero-text);
  padding:.75rem 1.55rem;
  border:1.5px solid rgba(205,179,118,.55);
  font-family:'Montserrat',sans-serif;font-weight:700;font-size:.88rem;
  letter-spacing:.02em;transition:all .2s;
}
.btn-ghost:hover{background:rgba(205,179,118,.15)}

/* ── HERO ── */
.hero{
  position:relative;min-height:540px;
  display:flex;align-items:flex-end;
  padding:5rem 4rem 5.5rem;
  overflow:hidden;
  background:#2a1a06;
}
.hero-bg{
  position:absolute;inset:0;
  background-size:cover;background-position:center;
}
.hero-overlay{position:absolute;inset:0;background:var(--overlay)}
.hero-content{position:relative;z-index:2;max-width:640px}
.hero-label{
  display:flex;align-items:center;gap:.75rem;
  font-size:.78rem;font-weight:600;color:var(--hero-text);
  text-transform:uppercase;letter-spacing:.1em;margin-bottom:1.1rem;
}
.hero-label::before{content:'';width:2rem;height:1.5px;background:var(--hero-text)}
.hero h1{
  font-size:clamp(2.4rem,4.8vw,4.2rem);font-weight:900;
  color:var(--hero-text);margin-bottom:1.4rem;
}
.hero p{font-size:1.05rem;color:var(--hero-sub);max-width:500px;margin-bottom:2rem}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap}

/* ── LAYOUT HELPERS ── */
.wrap{max-width:1200px;margin:0 auto;padding:0 4rem}
.section{padding:5.5rem 4rem;max-width:1200px;margin:0 auto}
.section-tinted{background:#F5EFE3}
.section-label{
  display:flex;align-items:center;gap:.7rem;
  font-size:.75rem;font-weight:700;color:var(--heading);
  text-transform:uppercase;letter-spacing:.1em;margin-bottom:1rem;
}
.section-label::before{content:'';width:1.5rem;height:1.5px;background:var(--heading)}
.section h2{font-size:clamp(1.85rem,3.2vw,2.9rem);font-weight:800;margin-bottom:.85rem}
.section-intro{font-size:1rem;color:var(--text);max-width:580px;margin-bottom:2rem;line-height:1.75}
.section-actions{display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:3rem}

/* ── FEATURES GRID ── */
.features-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:3rem 5rem;margin-top:3rem}
.feature img{width:100%;aspect-ratio:4/3;object-fit:cover;background:var(--card-bg)}
.feature h3{font-size:1.1rem;font-weight:700;margin:1rem 0 .4rem}
.feature p{font-size:.9rem;color:var(--text);line-height:1.65}

/* ── TESTIMONIALS ── */
.testi-section{padding:5.5rem 4rem;background:#F5EFE3}
.testi-inner{max-width:1200px;margin:0 auto}
.testi-head{display:flex;justify-content:space-between;align-items:flex-end;flex-wrap:wrap;gap:1rem;margin-bottom:2.5rem}
.testi-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.25rem}
.testi-card{background:var(--bg);padding:2rem}
.testi-q{font-family:Georgia,serif;font-size:2.8rem;color:var(--heading);line-height:1;margin-bottom:.75rem}
.testi-text{font-size:.92rem;line-height:1.75;color:var(--text);margin-bottom:1.5rem}
.testi-author{display:flex;align-items:center;gap:.75rem}
.testi-author img{width:46px;height:46px;border-radius:50%;object-fit:cover;background:var(--card-bg)}
.testi-name{font-weight:700;font-size:.88rem;color:var(--heading)}
.testi-loc{font-size:.78rem;color:#8a6d3b}

/* ── STATS ── */
.stats-band{padding:4.5rem 4rem;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.stats-inner{max-width:1200px;margin:0 auto}
.stats-head{margin-bottom:3rem}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);border-left:1px solid var(--border)}
.stat{padding:1.5rem 2rem;border-right:1px solid var(--border)}
.stat-num{font-family:'Montserrat',sans-serif;font-size:2.8rem;font-weight:900;color:var(--heading);line-height:1;margin-bottom:.5rem}
.stat-title{font-size:.78rem;font-weight:700;color:var(--accent);text-transform:uppercase;letter-spacing:.06em;margin-bottom:.4rem}
.stat-desc{font-size:.82rem;line-height:1.55;color:var(--text)}

/* ── CTA BAND ── */
.cta-band{padding:5.5rem 4rem;text-align:center}
.cta-band h2{font-size:clamp(1.7rem,2.8vw,2.4rem);font-weight:800;margin-bottom:.9rem}
.cta-band p{font-size:1rem;max-width:480px;margin:0 auto 2rem;line-height:1.7}
.cta-actions{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}

/* ── GALLERY ── */
.gallery-section{padding:5.5rem 4rem;max-width:1200px;margin:0 auto}
.gallery-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:.75rem;margin-top:2rem}
.gallery-grid img{width:100%;aspect-ratio:4/3;object-fit:cover;background:var(--card-bg)}

/* ── MINI ABOUT STRIP ── */
.about-strip{padding:5rem 4rem;background:#F5EFE3}
.about-strip-inner{max-width:900px;margin:0 auto}
.about-strip h2{font-size:clamp(1.8rem,3vw,2.6rem);font-weight:800;margin-bottom:1rem}
.about-strip p{font-size:1rem;line-height:1.75;margin-bottom:2rem;max-width:640px}

/* ── SERVICES GRID ── */
.services-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.25rem;margin-top:2.5rem}
.svc-card{background:var(--card-bg);overflow:hidden}
.svc-card img{width:100%;aspect-ratio:16/9;object-fit:cover;background:#d9cdb5}
.svc-body{padding:1.5rem}
.svc-body h3{font-size:1.05rem;font-weight:700;margin-bottom:.45rem}
.svc-body p{font-size:.88rem;color:var(--text);line-height:1.65}

/* ── TEAM ── */
.team-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:3rem;margin-top:2.5rem}
.team-card img{width:100%;aspect-ratio:3/4;object-fit:cover;object-position:top;background:var(--card-bg);margin-bottom:.9rem}
.team-role{font-size:.75rem;font-weight:700;color:var(--accent);text-transform:uppercase;letter-spacing:.07em;margin-bottom:.3rem}
.team-card h3{font-size:1.15rem;font-weight:700;margin-bottom:.45rem}
.team-card p{font-size:.88rem;color:var(--text);line-height:1.65}

/* ── FAQ ── */
.faq-section{padding:5.5rem 4rem}
.faq-inner{max-width:860px;margin:0 auto}
.faq-item{border-top:1px solid var(--border)}
.faq-item:last-child{border-bottom:1px solid var(--border)}
.faq-q{
  width:100%;background:none;border:none;cursor:pointer;text-align:left;
  padding:1.35rem 0;display:flex;justify-content:space-between;align-items:center;
  font-family:'Montserrat',sans-serif;font-weight:700;font-size:.95rem;
  color:var(--heading);gap:1rem;
}
.faq-icon{font-size:1.4rem;font-weight:300;color:var(--accent);flex-shrink:0;transition:transform .25s}
.faq-item.open .faq-icon{transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .3s ease,padding .3s ease}
.faq-item.open .faq-a{max-height:400px}
.faq-a-inner{padding:0 0 1.25rem;font-size:.92rem;line-height:1.75;color:var(--text)}

/* ── CONTACT ── */
.contact-section{padding:5.5rem 4rem;max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1.2fr;gap:6rem}
.contact-info h2{font-size:clamp(1.8rem,2.8vw,2.5rem);font-weight:800;margin-bottom:1rem}
.contact-info .lead{font-size:1rem;line-height:1.75;margin-bottom:2rem}
.contact-detail{display:flex;align-items:center;gap:.75rem;margin-bottom:.75rem;font-size:.92rem}
.contact-detail-icon{color:var(--accent);width:18px;text-align:center}
.contact-form{display:flex;flex-direction:column;gap:1.25rem}
.form-group{display:flex;flex-direction:column;gap:.35rem}
.form-group label{font-size:.82rem;font-weight:700;color:var(--heading);text-transform:uppercase;letter-spacing:.04em}
.form-group input,.form-group textarea{
  background:var(--input-bg);border:1px solid var(--border);
  padding:.85rem 1rem;font-family:'Open Sans',sans-serif;font-size:.92rem;
  color:var(--text);outline:none;width:100%;transition:border-color .2s;
}
.form-group input:focus,.form-group textarea:focus{border-color:var(--btn)}
.form-group textarea{min-height:150px;resize:vertical}

/* ── FOOTER ── */
.footer{border-top:1px solid var(--border);padding:3rem 4rem;background:var(--bg)}
.footer-nav{display:flex;justify-content:center;gap:2rem;list-style:none;margin-bottom:2rem}
.footer-nav a{color:var(--text);font-size:.88rem;transition:color .2s}
.footer-nav a:hover{color:var(--btn)}
.footer-divider{height:1px;background:var(--border);margin:0 0 1.5rem}
.footer-brand{text-align:center;margin-bottom:1.5rem}
.footer-brand img{height:80px;width:auto}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;font-size:.82rem;color:#8a6d3b}
.footer-social{display:flex;gap:1rem}
.footer-social a{color:#8a6d3b;font-size:.82rem;transition:color .2s}
.footer-social a:hover{color:var(--btn)}

/* ── RESPONSIVE ── */
@media(max-width:768px){
  .header{padding:0 1.25rem;height:72px}
  .hamburger{display:block}
  .nav{
    display:none;flex-direction:column;gap:0;
    position:absolute;top:72px;left:0;right:0;
    background:var(--bg);border-bottom:1px solid var(--border);
    padding:1rem 1.25rem;list-style:none;
  }
  .nav.open{display:flex}
  .nav li{padding:.6rem 0;border-bottom:1px solid var(--border)}
  .nav li:last-child{border:none}
  .btn-cta{display:none}
  .logo img{height:70px}

  .hero{padding:3rem 1.25rem 4rem;min-height:420px;align-items:center}
  .hero h1{font-size:2.1rem}
  .section,.gallery-section{padding:3.5rem 1.25rem}
  .wrap{padding:0 1.25rem}
  .features-grid{grid-template-columns:1fr;gap:2.5rem}
  .testi-section{padding:3.5rem 1.25rem}
  .testi-grid{grid-template-columns:1fr}
  .stats-band{padding:3rem 1.25rem}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .cta-band{padding:3.5rem 1.25rem}
  .about-strip{padding:3.5rem 1.25rem}
  .services-grid{grid-template-columns:1fr}
  .team-grid{grid-template-columns:1fr}
  .faq-section{padding:3.5rem 1.25rem}
  .contact-section{grid-template-columns:1fr;padding:3.5rem 1.25rem;gap:2.5rem}
  .footer{padding:2rem 1.25rem}
  .footer-bottom{flex-direction:column;gap:.75rem;text-align:center}
  .gallery-grid{grid-template-columns:1fr}
  .testi-head{flex-direction:column;align-items:flex-start}
}
