/* ============ Welden Bros — Core Styles ============ */
:root{
  --bg-dark:#0F1712;
  --bg-dark-2:#141F19;
  --surface:#F4F7F2;
  --card:#FFFFFF;
  --accent:#3BA55C;
  --accent-dark:#2F8A49;
  --accent-light:#E7F5EC;
  --muted:#6B7D71;
  --muted-dark:#93A89A;
  --border:#1F2B22;
  --border-light:#DFE6E0;
  --text-dark:#12241A;
  --radius-sm:8px;
  --radius:14px;
  --radius-lg:22px;
  --space:8px;
  --maxw:1200px;
  --ff-display:'Fraunces', serif;
  --ff-body:'Inter', sans-serif;
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--ff-body);
  background:var(--surface);
  color:var(--text-dark);
  overflow-x:hidden;
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
ul{list-style:none;}
button{font-family:inherit; cursor:pointer; border:none;}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 40px;}
section{position:relative;}

h1,h2,h3,h4{font-family:var(--ff-display); font-weight:600; line-height:1.1; letter-spacing:-0.01em;}
h2{font-size:clamp(28px,4vw,44px); margin-bottom:16px;}
h3{font-size:22px;}
p{color:var(--muted); line-height:1.65; font-size:16px;}
.eyebrow{
  display:inline-block; font-size:12px; font-weight:700; letter-spacing:0.12em;
  text-transform:uppercase; color:var(--accent-dark); margin-bottom:12px;
}
.section-head{max-width:640px; margin-bottom:48px;}
.section{padding:96px 40px;}
.section-tight{padding:64px 40px;}

/* ---------- Nav ---------- */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 40px;
  background:rgba(15,23,18,0.55);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,0.08);
  transition:background .3s ease;
}
.nav-logo{display:flex; align-items:center; gap:10px; font-family:var(--ff-display); font-weight:600; font-size:19px; color:#F4F7F2;}
.nav-logo img{width:34px; height:34px; border-radius:50%;}
.nav-links{display:flex; align-items:center; gap:36px;}
.nav-links a{color:#DCE6DF; font-size:14.5px; font-weight:500; transition:color .2s ease; position:relative;}
.nav-links a:hover{color:#fff;}
.nav-cta{
  background:var(--accent); color:#fff; padding:11px 22px; border-radius:99px;
  font-size:14px; font-weight:600; transition:background .2s ease, transform .2s ease;
}
.nav-cta:hover{background:var(--accent-dark); transform:translateY(-1px);}
.ham{display:none; flex-direction:column; gap:5px; width:26px; z-index:1100;}
.ham span{display:block; height:2px; width:100%; background:#F4F7F2; transition:all .3s ease;}
.ham.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.ham.open span:nth-child(2){opacity:0;}
.ham.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

.mobile-menu{
  position:fixed; inset:0; background:var(--bg-dark); z-index:1050;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:32px;
  transform:translateY(-100%); transition:transform .45s cubic-bezier(.77,0,.18,1);
}
.mobile-menu.open{transform:translateY(0);}
.mobile-menu a{font-family:var(--ff-display); font-size:32px; color:#F4F7F2;}
.mobile-menu .nav-cta{margin-top:12px;}
body.menu-open{overflow:hidden;}

/* ---------- Hero ---------- */
.hero{
  position:relative; background:var(--bg-dark); color:#F4F7F2;
  padding:170px 40px 110px; overflow:hidden;
  display:grid; grid-template-columns:1fr; gap:40px;
}
#hero-canvas{position:absolute; inset:0; z-index:0; opacity:0.65;}
.hero-inner{position:relative; z-index:2; max-width:var(--maxw); margin:0 auto; text-align:center;}
.hero-eyebrow{
  display:inline-flex; align-items:center; gap:8px; font-size:13px; font-weight:600;
  color:#BFE7CC; background:rgba(59,165,92,0.15); border:1px solid rgba(59,165,92,0.35);
  padding:8px 16px; border-radius:99px; margin-bottom:28px;
}
.hero-eyebrow .dot{width:7px; height:7px; border-radius:50%; background:var(--accent); display:inline-block;}
.hero h1{font-size:clamp(40px,7vw,84px); color:#fff; overflow:hidden;}
.hero h1 .line{display:block; overflow:hidden;}
.hero h1 .line span{display:block; transform:translateY(100%);}
.hero-sub{font-size:19px; color:#AFC2B6; max-width:560px; margin:26px auto 0;}
.hero-btns{display:flex; gap:16px; justify-content:center; margin-top:40px; flex-wrap:wrap;}
.btn-primary, .btn-secondary{
  padding:16px 30px; border-radius:99px; font-weight:600; font-size:15px;
  display:inline-flex; align-items:center; gap:8px; transition:all .25s ease;
}
.btn-primary{background:var(--accent); color:#fff;}
.btn-primary:hover{background:var(--accent-dark); transform:translateY(-2px);}
.btn-secondary{background:transparent; color:#F4F7F2; border:1.5px solid rgba(244,247,242,0.3);}
.btn-secondary:hover{border-color:#fff; background:rgba(255,255,255,0.06);}

.hero-strip{
  position:relative; z-index:2; margin-top:64px; display:grid; grid-template-columns:repeat(3,1fr);
  gap:0; max-width:720px; margin-left:auto; margin-right:auto; border-top:1px solid rgba(255,255,255,0.12);
  padding-top:28px;
}
.hero-strip div{text-align:center; border-right:1px solid rgba(255,255,255,0.1);}
.hero-strip div:last-child{border-right:none;}
.hero-strip strong{display:block; font-family:var(--ff-display); font-size:26px; color:#fff;}
.hero-strip span{font-size:12.5px; color:#93A89A; text-transform:uppercase; letter-spacing:0.06em;}

/* ---------- Marquee ---------- */
.marquee{
  background:var(--accent); color:#fff; overflow:hidden; white-space:nowrap;
  padding:14px 0; border-bottom:1px solid rgba(0,0,0,0.08);
}
.marquee-track{display:inline-flex; animation:scroll-left 26s linear infinite;}
.marquee-track span{
  font-size:14px; font-weight:700; letter-spacing:0.05em; text-transform:uppercase;
  padding:0 28px; display:inline-flex; align-items:center; gap:10px;
}
@keyframes scroll-left{ from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ---------- Section reveal ---------- */
.g-up{opacity:0; transform:translateY(28px);}

/* ---------- Services grid ---------- */
.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:28px;}
.card{
  background:var(--card); border:1px solid var(--border-light); border-radius:var(--radius);
  padding:34px 28px; transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover{transform:translateY(-6px); box-shadow:0 20px 40px -20px rgba(18,36,26,0.18); border-color:var(--accent);}
.card-icon{
  width:52px; height:52px; border-radius:14px; background:var(--accent-light); color:var(--accent-dark);
  display:flex; align-items:center; justify-content:center; margin-bottom:20px;
}
.card h3{margin-bottom:10px;}

.how-row{display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:56px;}
.how-step{text-align:center; padding:0 12px;}
.how-num{
  width:44px; height:44px; border-radius:50%; background:var(--bg-dark); color:var(--accent);
  display:flex; align-items:center; justify-content:center; font-family:var(--ff-display); font-weight:600;
  margin:0 auto 16px;
}

/* ---------- Pricing ---------- */
.pricing-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:28px;}
.price-card{
  background:var(--card); border:1px solid var(--border-light); border-radius:var(--radius-lg);
  padding:40px 32px; text-align:center; position:relative; transition:transform .3s ease, box-shadow .3s ease;
}
.price-card:hover{transform:translateY(-6px); box-shadow:0 24px 48px -24px rgba(18,36,26,0.2);}
.price-card.popular{border-color:var(--accent); box-shadow:0 24px 48px -24px rgba(59,165,92,0.35);}
.price-badge{
  position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  background:var(--accent); color:#fff; font-size:11.5px; font-weight:700; letter-spacing:0.05em;
  text-transform:uppercase; padding:6px 16px; border-radius:99px;
}
.price-cans{font-size:14px; color:var(--muted); text-transform:uppercase; letter-spacing:0.06em; font-weight:600;}
.price-amt{font-family:var(--ff-display); font-size:52px; margin:14px 0 6px; color:var(--text-dark);}
.price-amt span{font-size:16px; color:var(--muted); font-family:var(--ff-body); font-weight:500;}
.price-card p{font-size:14.5px; margin-bottom:24px;}
.price-card .btn-primary{width:100%; justify-content:center; background:var(--bg-dark);}
.price-card.popular .btn-primary{background:var(--accent);}
.price-card .btn-primary:hover{background:var(--accent-dark);}

/* ---------- Testimonials ---------- */
.testi-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:28px;}
.testi-card{
  background:var(--card); border:1px solid var(--border-light); border-radius:var(--radius);
  padding:30px 26px;
}
.stars{color:var(--accent); font-size:15px; margin-bottom:14px; letter-spacing:2px;}
.testi-card p{color:var(--text-dark); font-size:15.5px; margin-bottom:20px;}
.testi-author{display:flex; align-items:center; gap:12px;}
.testi-avatar{
  width:40px; height:40px; border-radius:50%; background:var(--accent-light); color:var(--accent-dark);
  display:flex; align-items:center; justify-content:center; font-weight:700; font-family:var(--ff-display);
}
.testi-name{font-weight:600; font-size:14.5px; color:var(--text-dark);}
.testi-loc{font-size:12.5px; color:var(--muted);}

/* ---------- CTA ---------- */
.cta{
  background:var(--bg-dark); color:#fff; text-align:center; padding:90px 40px; border-radius:0;
}
.cta h2{color:#fff;}
.cta p{color:#AFC2B6; max-width:520px; margin:0 auto 32px;}

/* ---------- Footer ---------- */
footer{background:var(--bg-dark-2); color:#DCE6DF; padding:64px 40px 28px;}
.footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; max-width:var(--maxw); margin:0 auto;}
.footer-brand{display:flex; align-items:center; gap:10px; font-family:var(--ff-display); font-size:19px; color:#fff; margin-bottom:14px;}
.footer-brand img{width:30px; height:30px; border-radius:50%;}
.footer-col h4{font-size:13px; text-transform:uppercase; letter-spacing:0.08em; color:#93A89A; margin-bottom:16px;}
.footer-col a, .footer-col p{display:block; font-size:14px; color:#B9C7BE; margin-bottom:10px;}
.footer-col a:hover{color:#fff;}
.footer-bottom{
  max-width:var(--maxw); margin:48px auto 0; padding-top:24px; border-top:1px solid rgba(255,255,255,0.08);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:13px; color:#7C8F82;
}

/* ---------- Page header (interior pages) ---------- */
.page-header{
  background:var(--bg-dark); color:#fff; padding:170px 40px 70px; text-align:center;
}
.page-header .eyebrow{color:#BFE7CC;}
.page-header h1{color:#fff; font-size:clamp(34px,5vw,56px);}
.page-header p{color:#AFC2B6; max-width:520px; margin:16px auto 0;}

/* ---------- Contact page ---------- */
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start;}
.contact-info-card{background:var(--card); border:1px solid var(--border-light); border-radius:var(--radius); padding:32px; margin-bottom:20px;}
.contact-info-card h3{margin-bottom:16px;}
.info-row{display:flex; gap:14px; align-items:flex-start; margin-bottom:16px;}
.info-row:last-child{margin-bottom:0;}
.info-icon{
  width:38px; height:38px; border-radius:10px; background:var(--accent-light); color:var(--accent-dark);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.info-row strong{display:block; font-size:14.5px; color:var(--text-dark);}
.info-row span{font-size:13.5px; color:var(--muted);}

.form-card{background:var(--card); border:1px solid var(--border-light); border-radius:var(--radius-lg); padding:36px;}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
.field{margin-bottom:18px;}
.field label{display:block; font-size:13.5px; font-weight:600; margin-bottom:8px; color:var(--text-dark);}
.field input, .field select, .field textarea{
  width:100%; padding:13px 15px; border:1.5px solid var(--border-light); border-radius:var(--radius-sm);
  font-family:var(--ff-body); font-size:14.5px; background:#fff; color:var(--text-dark); transition:border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{outline:none; border-color:var(--accent);}
.field textarea{resize:vertical; min-height:110px;}
.hp-field{position:absolute; left:-9999px; opacity:0;}
.form-status{margin-top:14px; font-size:14px; display:none;}
.form-status.success{color:var(--accent-dark); display:block;}
.form-status.error{color:#C0392B; display:block;}
.submit-btn{width:100%; justify-content:center; margin-top:6px;}
.submit-btn:disabled{opacity:0.6; cursor:not-allowed;}

/* ---------- Value props / about ---------- */
.value-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:28px;}
.team-photo{
  aspect-ratio:4/3; border-radius:var(--radius); background:linear-gradient(135deg,var(--bg-dark),#1c2b21);
  display:flex; align-items:center; justify-content:center; color:#93A89A; font-size:14px; text-align:center;
  border:1px dashed rgba(255,255,255,0.2);
}

/* ---------- Privacy page ---------- */
.legal p{margin-bottom:16px;}
.legal h3{margin:32px 0 12px;}
.legal ul{margin:12px 0 16px 20px; list-style:disc;}
.legal li{color:var(--muted); margin-bottom:8px; font-size:15px;}

/* ---------- Responsive ---------- */
@media(max-width:900px){
  .grid-3, .pricing-grid, .testi-grid, .how-row, .value-grid, .footer-grid{grid-template-columns:1fr 1fr;}
  .contact-grid{grid-template-columns:1fr;}
}
@media(max-width:768px){
  nav.nav{padding:0 20px; height:70px;}
  .nav-links{display:none;}
  .ham{display:flex;}
  [class*="grid"]{grid-template-columns:1fr !important;}
  .hero-content{grid-template-columns:1fr; padding:100px 20px 60px;}
  .hero-right, .hero-visual{display:none;}
  .hero-btns{flex-direction:column;}
  .btn-primary, .btn-secondary{width:100%; min-height:48px; justify-content:center;}
  .section, .section-wrap{padding:56px 20px;}
  .page-header{padding:110px 20px 52px;}
  .footer-grid{grid-template-columns:1fr; gap:28px;}
  .footer-bottom{flex-direction:column; text-align:center;}
  .form-row{grid-template-columns:1fr;}
  .hero-strip{grid-template-columns:1fr; gap:20px;}
  .hero-strip div{border-right:none; border-bottom:1px solid rgba(255,255,255,0.1); padding-bottom:16px;}
  .hero-strip div:last-child{border-bottom:none; padding-bottom:0;}
}
@media(max-width:480px){
  .stats-grid, .proof-grid{grid-template-columns:1fr;}
  .hero h1{font-size:38px;}
}
