:root{
  --bg-dark:#15171A;
  --bg-dark-2:#1B1E22;
  --orange:#F0632B;
  --orange-dark:#D6501E;
  --cream:#F7F6F3;
  --text-dark:#1A1B1E;
  --text-gray:#5B5F66;
  --text-gray-light:#9A9DA4;
  --border-light:#E7E5E1;
  --border-dark:#2B2E33;
  --radius:14px;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter', sans-serif;
  color:var(--text-dark);
  background:var(--cream);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{font-family:'Manrope','Inter',sans-serif; line-height:1.15; letter-spacing:-0.01em;}
a{text-decoration:none; color:inherit;}
img{max-width:100%; display:block;}
ul{list-style:none;}
button{font-family:inherit; cursor:pointer;}
.wrap{max-width:1180px; margin:0 auto; padding:0 24px;}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 24px; border-radius:10px; font-weight:700; font-size:15px;
  border:2px solid transparent; transition:transform .15s ease, opacity .15s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-1px);}
.btn-orange{background:var(--orange); color:#fff;}
.btn-orange:hover{background:var(--orange-dark);}
.btn-outline-dark{background:transparent; border-color:#fff; color:#fff;}
.btn-outline-dark:hover{background:rgba(255,255,255,.08);}
.btn-outline-light{background:transparent; border-color:var(--text-dark); color:var(--text-dark);}
.btn-block{width:100%;}
.btn-big{padding:18px 28px; font-size:17px; flex:1; min-width:150px;}

/* Top bar */
.topbar{background:var(--bg-dark); color:#B8BABE; font-size:13px; padding:9px 0;}
.topbar .wrap{display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:6px;}
.topbar-tagline{opacity:.85;}
.topbar-contact{display:flex; gap:22px; align-items:center;}
.topbar-contact a{color:#E7E5E1; display:flex; align-items:center; gap:6px;}
.topbar-contact a:hover{color:#fff;}

/* Header */
header.site-header{background:#fff; border-bottom:1px solid var(--border-light); position:sticky; top:0; z-index:100;}
.site-header .wrap{display:flex; align-items:center; justify-content:space-between; padding-top:16px; padding-bottom:16px;}
.logo{display:flex; align-items:center; gap:12px;}
.logo-mark{width:44px; height:44px; border-radius:10px; background:var(--orange); color:#fff; font-weight:800; font-size:16px; display:flex; align-items:center; justify-content:center; font-family:'Manrope',sans-serif;}
.logo-mark-img{width:44px; height:44px; object-fit:contain; display:block;}
.logo-text-main{font-weight:800; font-size:18px; line-height:1.1;}
.logo-text-sub{font-size:11px; letter-spacing:.08em; color:var(--orange); font-weight:600; text-transform:uppercase;}
nav.main-nav{display:flex; gap:32px; align-items:center;}
nav.main-nav a{font-weight:600; font-size:15px; color:var(--text-dark);}
nav.main-nav a.active{color:var(--orange);}
nav.main-nav a:hover{color:var(--orange);}
.header-actions{display:flex; gap:12px; align-items:center;}
.menu-toggle{display:none; background:none; border:none; font-size:26px;}

/* Hero (home) */
.hero{background:linear-gradient(rgba(10,12,14,.6), rgba(10,12,14,.75)), url('images/hero-bg.jpg') center/cover no-repeat, var(--bg-dark); background-size:cover; background-position:center; color:#fff; padding:64px 0 80px; position:relative;}
.hero-grid{display:grid; grid-template-columns:1.15fr 0.85fr; gap:56px; align-items:start;}
.hero h1{font-size:52px; font-weight:800; margin-bottom:22px;}
.hero h1 .accent{color:var(--orange);}
.hero p.lead{font-size:17px; color:#D8D8D5; max-width:560px; margin-bottom:30px;}
.hero-cta-row{display:flex; gap:14px; flex-wrap:wrap; margin-bottom:14px;}
.hero-call-row{display:flex; gap:14px; flex-wrap:wrap; margin-bottom:14px;}
.hero-note{font-size:14px; color:#B8BABE;}

/* Real photo containers (replace text placeholders with actual images) */
.ph-photo{overflow:hidden; display:block;}
.ph-photo img{width:100%; height:100%; object-fit:cover; display:block;}
.why-image .ph-photo{aspect-ratio:4/3; border-radius:16px;}
.service-card .ph-photo{aspect-ratio:4/3;}
.hv-image .ph-photo{aspect-ratio:4/3; border-radius:14px;}

/* Page hero (interior pages) */
.page-hero{background:var(--bg-dark); color:#fff; padding:56px 0;}
.page-hero .eyebrow{color:var(--orange);}
.page-hero h1{font-size:40px; font-weight:800; margin-bottom:14px;}
.page-hero p{color:#C7C8CC; font-size:16px; max-width:600px;}
.breadcrumb{font-size:13px; color:#9A9DA4; margin-bottom:16px;}
.breadcrumb a{color:#C7C8CC;}
.breadcrumb a:hover{color:#fff;}

.estimate-card{background:#fff; color:var(--text-dark); border-radius:16px; padding:32px; box-shadow:0 30px 60px -20px rgba(0,0,0,.5);}
.estimate-card h3{font-size:22px; margin-bottom:4px;}
.estimate-card .sub{font-size:14px; color:var(--text-gray); margin-bottom:20px;}
.estimate-quickrow{display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-bottom:20px;}
.field-label{font-size:13px; font-weight:600; margin-bottom:6px; display:block;}
.field{margin-bottom:16px;}
.field input, .field textarea, .field select{width:100%; padding:12px 14px; border:1px solid var(--border-light); border-radius:8px; font-family:inherit; font-size:14px; background:#fcfcfb;}
.field textarea{resize:vertical; min-height:90px;}
.estimate-fineprint{text-align:center; font-size:12px; color:var(--text-gray-light); margin-top:12px;}

/* Section generic */
section{padding:88px 0;}
.eyebrow{color:var(--orange); font-weight:700; font-size:13px; letter-spacing:.08em; text-transform:uppercase; margin-bottom:12px;}
.section-head{max-width:640px; margin-bottom:48px;}
.section-head h2{font-size:36px; font-weight:800;}
.section-head p{color:var(--text-gray); font-size:16px; margin-top:14px;}

/* Why choose us */
.why-grid{display:grid; grid-template-columns:0.9fr 1.1fr; gap:64px; align-items:center;}
.why-image{position:relative; border-radius:16px; overflow:hidden;}
.why-image .ph{aspect-ratio:4/3; background:linear-gradient(135deg,#2b2e33,#15171a); display:flex; align-items:center; justify-content:center; color:#6c6f75; font-size:13px; text-align:center; padding:20px;}
.why-badge{position:absolute; bottom:20px; right:20px; background:var(--orange); color:#fff; border-radius:12px; padding:18px 20px; max-width:190px;}
.why-badge strong{display:block; font-size:26px; font-family:'Manrope',sans-serif; font-weight:800;}
.why-badge span{font-size:13px; line-height:1.35; display:block; margin-top:2px;}
.why-list{display:flex; flex-direction:column; gap:26px;}
.why-item{display:flex; gap:16px;}
.why-icon{width:44px; height:44px; border-radius:10px; background:#FBE3D5; color:var(--orange); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:20px;}
.why-item h4{font-size:16px; margin-bottom:4px;}
.why-item p{font-size:14.5px; color:var(--text-gray);}

/* Services */
.services-grid{display:grid; grid-template-columns:repeat(4, 1fr); gap:22px;}
.service-card{background:#fff; border:1px solid var(--border-light); border-radius:14px; overflow:hidden;}
.service-card .ph{aspect-ratio:4/3; background:#e9e6e0; display:flex; align-items:center; justify-content:center; color:#9b9890; font-size:12px; text-align:center; padding:14px;}
.service-card .body{padding:18px;}
.service-card h4{font-size:16px; margin-bottom:8px;}
.service-card p{font-size:13.5px; color:var(--text-gray); margin-bottom:14px; min-height:57px;}
.service-card .learn{color:var(--orange); font-weight:700; font-size:14px; display:inline-flex; align-items:center; gap:4px;}

/* Service detail block (services page) */
.service-detail{display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; padding:56px 0; border-bottom:1px solid var(--border-light);}
.service-detail:last-child{border-bottom:none;}
.service-detail.reverse{direction:rtl;}
.service-detail.reverse > *{direction:ltr;}
.service-detail .ph{aspect-ratio:4/3; border-radius:14px; background:#e9e6e0; display:flex; align-items:center; justify-content:center; color:#9b9890; font-size:13px; text-align:center; padding:20px;}
.service-detail .ph-photo{aspect-ratio:4/3; border-radius:14px; overflow:hidden;}
.service-detail h3{font-size:26px; margin-bottom:14px;}
.service-detail p{color:var(--text-gray); font-size:15.5px; margin-bottom:16px;}
.service-detail ul{margin-bottom:20px;}
.service-detail li{position:relative; padding-left:22px; margin-bottom:8px; color:var(--text-gray); font-size:14.5px;}
.service-detail li::before{content:"\2713"; color:var(--orange); position:absolute; left:0; font-weight:700;}

/* Process */
.process-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:0;}
.process-step{padding:0 24px 0 0; border-left:1px solid var(--border-light); padding-left:24px;}
.process-step:first-child{border-left:none; padding-left:0;}
.process-num{font-family:'Manrope',sans-serif; font-weight:800; font-size:32px; color:#F3C6AC; margin-bottom:14px;}
.process-step h4{font-size:17px; margin-bottom:10px;}
.process-step p{font-size:14.5px; color:var(--text-gray);}

/* Home value (dark) */
.home-value{background:var(--bg-dark); color:#fff;}
.hv-grid{display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;}
.hv-grid .eyebrow{color:var(--orange);}
.hv-grid h2{font-size:32px; font-weight:800; margin-bottom:18px;}
.hv-grid p{color:#C7C8CC; font-size:15.5px; margin-bottom:20px;}
.hv-list li{position:relative; padding-left:22px; margin-bottom:12px; color:#D8D8D5; font-size:15px;}
.hv-list li::before{content:"\2022"; color:var(--orange); position:absolute; left:0; font-size:20px; line-height:1;}
.hv-image .ph{aspect-ratio:4/3; border-radius:14px; background:linear-gradient(135deg,#2b2e33,#0e0f11); display:flex; align-items:center; justify-content:center; color:#6c6f75; font-size:13px; text-align:center; padding:20px;}

/* Testimonials */
.testimonial-grid{display:grid; grid-template-columns:1fr 1fr; gap:22px;}
.testimonial-card{background:#fff; border:1px solid var(--border-light); border-radius:14px; padding:28px;}
.stars{color:var(--orange); font-size:15px; letter-spacing:2px; margin-bottom:16px;}
.testimonial-card p{font-size:15px; color:#2b2d30; margin-bottom:18px; line-height:1.6;}
.testimonial-name{font-weight:700; font-size:14.5px;}
.testimonial-loc{color:var(--text-gray-light); font-size:13.5px; margin-left:4px;}

/* Service area ticker */
.ticker-wrap{background:#fff; border-top:1px solid var(--border-light); border-bottom:1px solid var(--border-light); padding:22px 0; overflow:hidden;}
.ticker-track{display:flex; gap:36px; white-space:nowrap; animation:scroll-left 28s linear infinite; width:max-content;}
.ticker-track span{font-weight:700; letter-spacing:.06em; color:var(--text-gray); font-size:14px;}
.ticker-track span::after{content:"\2022"; margin-left:36px; color:var(--orange);}
@keyframes scroll-left{from{transform:translateX(0);} to{transform:translateX(-50%);}}
@media (prefers-reduced-motion: reduce){ .ticker-track{animation:none;} }

/* FAQ */
.faq-grid{display:grid; grid-template-columns:0.85fr 1.15fr; gap:64px;}
.faq-item{border-bottom:1px solid var(--border-light); padding:22px 0;}
.faq-q{display:flex; justify-content:space-between; align-items:center; font-weight:700; font-size:16px; cursor:pointer;}
.faq-toggle{font-size:20px; color:var(--orange); flex-shrink:0; margin-left:16px;}
.faq-a{max-height:0; overflow:hidden; transition:max-height .25s ease;}
.faq-a p{font-size:14.5px; color:var(--text-gray); padding-top:14px; max-width:600px;}
.faq-item.open .faq-a{max-height:240px;}

/* Final CTA */
.final-cta{background:var(--bg-dark); color:#fff;}
.cta-grid{display:grid; grid-template-columns:1fr 0.85fr; gap:56px; align-items:start;}
.cta-grid h2{font-size:34px; font-weight:800; margin-bottom:18px;}
.cta-grid p{color:#C7C8CC; font-size:15.5px; margin-bottom:22px; max-width:460px;}
.cta-meta{display:flex; gap:26px; margin-bottom:26px; flex-wrap:wrap;}
.cta-meta span{display:flex; align-items:center; gap:8px; font-size:14px; color:#C7C8CC;}
.cta-form{background:#fff; color:var(--text-dark); border-radius:16px; padding:30px;}

/* Gallery */
.gallery-filters{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:36px;}
.gallery-filter{padding:9px 18px; border-radius:999px; border:1px solid var(--border-light); font-size:13.5px; font-weight:600; background:#fff; color:var(--text-gray);}
.gallery-filter.active{background:var(--text-dark); color:#fff; border-color:var(--text-dark);}
.gallery-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px;}
.gallery-item{aspect-ratio:4/3; border-radius:12px; background:#e9e6e0; display:flex; align-items:center; justify-content:center; color:#9b9890; font-size:12px; text-align:center; padding:14px; overflow:hidden;}
.gallery-item img{width:100%; height:100%; object-fit:cover; display:block;}
.gallery-item.tall{aspect-ratio:4/5;}

/* Blog */
.blog-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:26px;}
.blog-card{background:#fff; border:1px solid var(--border-light); border-radius:14px; overflow:hidden;}
.blog-card .ph{aspect-ratio:16/10; background:#e9e6e0; display:flex; align-items:center; justify-content:center; color:#9b9890; font-size:12px; text-align:center; padding:14px;}
.blog-card .ph-photo{aspect-ratio:16/10; overflow:hidden;}
.blog-card .body{padding:20px;}
.blog-tag{color:var(--orange); font-weight:700; font-size:12px; text-transform:uppercase; letter-spacing:.05em; margin-bottom:8px; display:block;}
.blog-card h4{font-size:17px; margin-bottom:10px; line-height:1.3;}
.blog-card p{font-size:14px; color:var(--text-gray); margin-bottom:14px;}
.blog-meta{font-size:12.5px; color:var(--text-gray-light);}

/* Contact page */
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:56px;}
.contact-info-item{display:flex; gap:16px; margin-bottom:26px;}
.contact-info-item h4{font-size:15.5px; margin-bottom:4px;}
.contact-info-item p, .contact-info-item a{font-size:14.5px; color:var(--text-gray);}
.map-embed{border-radius:14px; overflow:hidden; margin-top:8px; aspect-ratio:16/9; background:#e9e6e0; display:flex; align-items:center; justify-content:center; color:#9b9890; font-size:13px;}

/* Footer */
footer{background:#0F1113; color:#B8BABE; padding:60px 0 30px;}
.footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; margin-bottom:40px;}
.footer-brand h4{color:#fff; font-size:18px; margin-bottom:12px;}
.footer-brand p{font-size:14px; line-height:1.6; max-width:280px;}
.footer-col h5{color:#fff; font-size:14px; margin-bottom:16px;}
.footer-col li{margin-bottom:10px; font-size:14px;}
.footer-col a:hover{color:#fff;}
.footer-bottom{border-top:1px solid var(--border-dark); padding-top:22px; font-size:13px; color:#6c6f75; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;}

/* Responsive */
@media (max-width:960px){
  .hero-grid, .why-grid, .hv-grid, .cta-grid, .faq-grid, .contact-grid, .service-detail{grid-template-columns:1fr;}
  .service-detail.reverse{direction:ltr;}
  .services-grid, .gallery-grid, .blog-grid{grid-template-columns:repeat(2,1fr);}
  .process-grid{grid-template-columns:repeat(2,1fr); row-gap:36px;}
  .process-step{border-left:none; padding-left:0;}
  .testimonial-grid{grid-template-columns:1fr;}
  nav.main-nav{display:none;}
  .menu-toggle{display:block;}
  .header-actions{display:none;}
  .hero h1{font-size:38px;}
  .page-hero h1{font-size:30px;}
  .topbar .wrap{flex-direction:column; align-items:flex-start;}
}
@media (max-width:600px){
  .services-grid, .gallery-grid, .blog-grid{grid-template-columns:1fr;}
  .process-grid{grid-template-columns:1fr;}
  .estimate-quickrow{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .hero-call-row{flex-direction:column;}
  .hero-call-row .btn-big{width:100%;}
}

:focus-visible{outline:2px solid var(--orange); outline-offset:2px;}
