/* ===== Bramuse Contractors — Industrial theme ===== */
*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }

:root{
  --bg:#17181A; --bg-alt:#1F2124; --panel:#101112;
  --text:#EDEAE4; --text-muted:#9B9C9E;
  --accent:#F2B705; --accent-2:#D9531E;
  --border:#35373A;
  --font-display:'Oswald', sans-serif;
  --font-body:'Work Sans', sans-serif;
  --radius-sm:0px; --radius-md:0px; --radius-lg:0px;
  --container:1160px;
  --header-h:76px;
  --bottomnav-h:64px;
}

body{
  background:var(--bg); color:var(--text);
  font-family:var(--font-body);
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3{ font-family:var(--font-display); line-height:1.1; font-weight:600; }
a{ color:inherit; text-decoration:none; }
img,svg{ display:block; max-width:100%; }
ul{ list-style:none; }

.container{ max-width:var(--container); margin:0 auto; padding:0 1.5rem; }
.section{ padding:5.5rem 0; }
.section-tight{ padding:3.5rem 0; }
.muted{ color:var(--text-muted); }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  padding:.9rem 1.8rem; font-weight:600; font-size:.95rem;
  cursor:pointer; border:2px solid transparent;
  transition:transform .15s ease, background .2s ease, border-color .2s ease;
  font-family:var(--font-body);
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{ background:var(--accent); color:#17181A; }
.btn-outline{ background:transparent; border-color:var(--border); color:var(--text); }
.btn-sm{ padding:.55rem 1.1rem; font-size:.85rem; }

/* ===== HEADER — always sticky, never hides ===== */
header.site-header{
  position:sticky; top:0; left:0; right:0; z-index:100;
  background:var(--bg); border-bottom:1px solid var(--border);
  height:var(--header-h);
}
.nav{ height:100%; display:flex; align-items:center; justify-content:space-between; }
.brand{
  font-family:var(--font-display); font-size:1.2rem; font-weight:700;
  text-transform:uppercase; letter-spacing:1px;
}
.brand span{ color:var(--accent); }
.navlinks{ display:flex; gap:2.2rem; font-size:.92rem; font-weight:500; align-items:center; }
.navlinks a{ padding:.3rem 0; border-bottom:2px solid transparent; transition:border-color .15s ease, color .15s ease; }
.navlinks a:hover, .navlinks a.active{ color:var(--accent); border-color:var(--accent); }
.nav-actions{ display:flex; align-items:center; gap:1rem; }
.nav-phone{ font-size:.85rem; font-weight:600; display:flex; align-items:center; gap:.4rem; }
.nav-phone svg{ width:16px; height:16px; color:var(--accent); }

@media (max-width:900px){
  .navlinks{ display:none; }
  .nav-phone span{ display:none; }
}

/* ===== MOBILE BOTTOM NAV — always visible, no drawer ===== */
.bottom-nav{
  display:none;
  position:fixed; bottom:0; left:0; right:0; z-index:200;
  background:var(--panel); border-top:1px solid var(--border);
  height:var(--bottomnav-h);
}
.bottom-nav ul{ height:100%; display:flex; }
.bottom-nav li{ flex:1; }
.bottom-nav a{
  height:100%; display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:.2rem; font-size:.68rem; font-weight:600; color:var(--text-muted);
}
.bottom-nav a svg{ width:20px; height:20px; }
.bottom-nav a.active{ color:var(--accent); }
.bottom-nav a.quote{ color:var(--accent); }

@media (max-width:900px){
  .bottom-nav{ display:block; }
  body{ padding-bottom:var(--bottomnav-h); }
}

/* ===== PAGE HERO (interior pages) ===== */
.page-hero{
  padding:3.2rem 0; border-bottom:1px solid var(--border);
  background:repeating-linear-gradient(135deg, #1B1C1E 0 40px, #17181A 40px 80px);
}
.page-hero .crumb{ font-size:.85rem; color:var(--text-muted); margin-bottom:.6rem; }
.page-hero .crumb a:hover{ color:var(--accent); }
.page-hero h1{ font-size:clamp(1.9rem,3.5vw,2.6rem); }

/* ===== HOME HERO ===== */
.hero{ padding:5rem 0; }
.hero-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:3rem; align-items:center; }
.hero h1{ font-size:clamp(2.3rem, 4.5vw, 3.6rem); margin-bottom:1.2rem; }
.hero p.lead{ font-size:1.15rem; max-width:44ch; margin-bottom:2rem; }
.hero-ctas{ display:flex; gap:1rem; flex-wrap:wrap; margin-bottom:2rem; }
.hero-visual{
  aspect-ratio:4/3; position:relative; overflow:hidden;
  display:flex; align-items:flex-end; padding:1.5rem;
  background:repeating-linear-gradient(135deg, #26282B 0 40px, #1D1E20 40px 80px);
  border-left:6px solid var(--accent);
}
.hero-visual .tag{ background:rgba(0,0,0,.55); color:#fff; padding:.5rem 1rem; font-size:.85rem; }
.dots{ display:flex; gap:.4rem; margin-top:1.5rem; }
.dots span{ width:8px; height:8px; border-radius:50%; background:var(--border); }
.dots span.on{ background:var(--accent); }
@media (max-width:900px){ .hero-grid{ grid-template-columns:1fr; } }

/* ===== SECTION HEAD ===== */
.section-head{ margin-bottom:3rem; }
.section-head h2{ font-size:clamp(1.8rem,3vw,2.4rem); margin-bottom:.6rem; }
.section-head.center{ text-align:center; }

/* ===== SERVICES ===== */
.services-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }
@media (max-width:900px){ .services-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){ .services-grid{ grid-template-columns:1fr; } }
.service-card{ padding:1.8rem 1.5rem; background:var(--bg-alt); border:1px solid var(--border); transition:border-color .15s ease; }
.service-card:hover{ border-color:var(--accent); }
.service-card .icon{ width:32px; height:32px; margin-bottom:1.1rem; color:var(--accent); }
.service-card h3{ font-size:1.05rem; margin-bottom:.5rem; }
.service-card p{ font-size:.9rem; color:var(--text-muted); line-height:1.5; }
.service-card a.more{ display:inline-block; margin-top:.9rem; font-size:.82rem; font-weight:600; color:var(--accent); }

.service-detail{
  display:grid; grid-template-columns:auto 1fr; gap:1.4rem;
  padding:2rem 0; border-top:1px solid var(--border);
}
.service-detail:last-child{ border-bottom:1px solid var(--border); }
.service-detail .icon-box{
  width:56px; height:56px; background:var(--bg-alt); display:flex; align-items:center; justify-content:center;
  color:var(--accent); flex:none;
}
.service-detail .icon-box svg{ width:28px; height:28px; }
.service-detail h3{ font-size:1.2rem; margin-bottom:.4rem; }
.service-detail ul{ margin-top:.8rem; display:grid; gap:.4rem; }
.service-detail ul li{ font-size:.88rem; color:var(--text-muted); padding-left:1rem; position:relative; }
.service-detail ul li::before{ content:"—"; position:absolute; left:0; color:var(--accent); }

.view-all{ text-align:center; margin-top:2.5rem; }

/* ===== ABOUT ===== */
.about-grid{ display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center; }
@media (max-width:820px){ .about-grid{ grid-template-columns:1fr; } }
.about-media{
  aspect-ratio:5/4; background:linear-gradient(160deg,#2B2B2B,#151617);
  clip-path:polygon(0 0,100% 0,100% 92%,88% 100%,0 100%);
}
.about-copy h2{ font-size:clamp(1.8rem,3vw,2.3rem); margin-bottom:1.1rem; }
.about-copy p{ margin-bottom:1.6rem; max-width:48ch; }
.values-list{ display:grid; gap:.8rem; }
.value-item{ display:flex; align-items:center; gap:.7rem; font-weight:500; font-size:.95rem; }
.value-item .chk{ width:20px; height:20px; flex:none; color:var(--accent); }

.stats-row{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; margin-top:3.5rem; }
@media (max-width:700px){ .stats-row{ grid-template-columns:1fr 1fr; } }
.stat{ padding:1.6rem; border:1px solid var(--border); text-align:center; }
.stat .num{ font-family:var(--font-display); font-size:2.1rem; color:var(--accent); }
.stat .label{ font-size:.85rem; color:var(--text-muted); margin-top:.3rem; }

/* ===== PROJECTS ===== */
.projects-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.8rem; }
@media (max-width:820px){ .projects-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .projects-grid{ grid-template-columns:1fr; } }
.project-card{ }
.project-media{ aspect-ratio:4/3; position:relative; background:linear-gradient(135deg,#2B2B2B,#1A1B1C); border-left:4px solid var(--accent-2); }
.project-card .body{ padding:1.2rem 0 0; }
.project-card h3{ font-size:1.02rem; margin-bottom:.3rem; }
.project-card p{ font-size:.86rem; color:var(--text-muted); }
.project-tag{ position:absolute; top:.8rem; left:0; background:var(--accent-2); color:#fff; font-size:.72rem; font-weight:700; padding:.25rem .7rem; text-transform:uppercase; letter-spacing:.5px; }

/* ===== WHY CHOOSE US ===== */
.why-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.6rem; }
@media (max-width:820px){ .why-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .why-grid{ grid-template-columns:1fr; } }
.why-item{ display:flex; gap:.9rem; align-items:flex-start; padding:1.2rem 0; border-top:1px solid var(--border); }
.why-item .icn{ width:22px; height:22px; color:var(--accent); flex:none; margin-top:2px; }
.why-item h4{ font-family:var(--font-body); font-weight:700; font-size:.98rem; margin-bottom:.2rem; }
.why-item p{ font-size:.85rem; color:var(--text-muted); }

/* ===== TESTIMONIALS ===== */
.testi-grid{ display:grid; grid-template-columns:1fr 1fr; gap:2rem; }
@media (max-width:820px){ .testi-grid{ grid-template-columns:1fr; } }
.testi-card{ padding:2rem; background:var(--panel); border-left:4px solid var(--accent); }
.testi-card p.quote{ font-size:1.1rem; margin-bottom:1.2rem; line-height:1.55; font-family:var(--font-display); font-weight:500; }
.testi-card .who{ font-size:.88rem; color:var(--text-muted); font-weight:600; }

/* ===== CTA BANNER ===== */
.cta-banner{ background:var(--panel); padding:4rem 2rem; text-align:center; }
.cta-banner h2{ font-size:clamp(1.8rem,3.5vw,2.6rem); margin-bottom:.8rem; }
.cta-banner p{ margin-bottom:1.8rem; color:var(--text-muted); }

/* ===== CONTACT PAGE ===== */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:3rem; }
@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-info-item{ display:flex; gap:1rem; padding:1.2rem 0; border-top:1px solid var(--border); }
.contact-info-item:last-child{ border-bottom:1px solid var(--border); }
.contact-info-item .icn{ width:22px; height:22px; color:var(--accent); flex:none; margin-top:2px; }
.contact-info-item h4{ font-size:.95rem; margin-bottom:.2rem; }
.contact-info-item p{ font-size:.88rem; color:var(--text-muted); }
.map-box{ aspect-ratio:16/9; background:repeating-linear-gradient(135deg, #26282B 0 40px, #1D1E20 40px 80px); margin-top:2rem; display:flex; align-items:center; justify-content:center; color:var(--text-muted); font-size:.85rem; }

/* ===== FORMS ===== */
.field{ margin-bottom:1.1rem; }
.field label{ display:block; font-size:.82rem; margin-bottom:.4rem; color:var(--text-muted); font-weight:600; }
.field input, .field select, .field textarea{
  width:100%; padding:.8rem .9rem; border:1px solid var(--border);
  background:var(--bg-alt); color:var(--text); font-family:inherit; font-size:.9rem;
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--accent); }
.field textarea{ resize:vertical; min-height:120px; }
.form-card{ background:var(--bg-alt); border:1px solid var(--border); padding:2rem; }

/* ===== FOOTER ===== */
footer{ padding:3.5rem 0 2rem; border-top:1px solid var(--border); font-size:.9rem; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:2rem; margin-bottom:2.5rem; }
@media (max-width:700px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
.footer-grid h4{ font-size:.85rem; margin-bottom:.9rem; color:var(--text-muted); font-weight:600; text-transform:uppercase; letter-spacing:.5px; }
.footer-grid ul{ display:grid; gap:.55rem; font-size:.88rem; }
.footer-grid ul li a:hover{ color:var(--accent); }
.footer-bottom{ padding-top:1.5rem; border-top:1px solid var(--border); font-size:.8rem; color:var(--text-muted); display:flex; justify-content:space-between; flex-wrap:wrap; gap:.5rem; }

/* ===== CHAT WIDGET ===== */
.chat-widget{ position:fixed; bottom:1.5rem; right:1.5rem; z-index:150; font-family:var(--font-body); }
@media (max-width:900px){ .chat-widget{ bottom:calc(var(--bottomnav-h) + 1rem); } }
.chat-toggle{
  width:56px; height:56px; border:none; cursor:pointer;
  background:var(--accent); color:#17181A; display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 24px rgba(0,0,0,.35); transition:transform .15s ease;
}
.chat-toggle:hover{ transform:scale(1.06); }
.chat-toggle svg{ width:24px; height:24px; }
.chat-menu{
  position:absolute; bottom:68px; right:0; width:250px;
  background:var(--bg); border:1px solid var(--border);
  box-shadow:0 16px 40px rgba(0,0,0,.35); overflow:hidden; display:none;
}
.chat-menu.open{ display:block; }
.chat-menu .head{ padding:1rem 1.1rem; font-weight:600; border-bottom:1px solid var(--border); font-size:.92rem; }
.chat-option{
  display:flex; align-items:center; gap:.7rem; padding:.9rem 1.1rem; cursor:pointer; font-size:.88rem;
  border-bottom:1px solid var(--border); transition:background .15s ease;
}
.chat-option:last-child{ border-bottom:none; }
.chat-option:hover{ background:var(--bg-alt); }
.chat-option .dot{ width:34px; height:34px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex:none; }
.chat-option .dot.wa{ background:#25D366; color:#fff; }
.chat-option .dot.inq{ background:var(--accent); color:#17181A; }

.modal-overlay{
  position:fixed; inset:0; background:rgba(0,0,0,.6); z-index:250;
  display:none; align-items:center; justify-content:center; padding:1.5rem;
}
.modal-overlay.open{ display:flex; }
.modal-box{ background:var(--bg); border:1px solid var(--border); color:var(--text); width:100%; max-width:400px; padding:1.8rem; position:relative; }
.modal-box h3{ font-size:1.2rem; margin-bottom:1.2rem; }
.modal-close{ position:absolute; top:1rem; right:1rem; background:none; border:none; cursor:pointer; color:var(--text-muted); }
.modal-box .btn{ width:100%; margin-top:.4rem; }
