
:root{
  --charcoal:#27292b;
  --charcoal-2:#34373a;
  --white:#fff;
  --off:#f5f4f1;
  --line:#dfded9;
  --muted:#6f7377;
  --max:1200px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--charcoal);
  background:var(--white);
  line-height:1.6;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.container{width:min(var(--max),calc(100% - 40px));margin:auto}
.eyebrow{font-size:.78rem;letter-spacing:.18em;text-transform:uppercase;font-weight:700;color:var(--muted)}
h1,h2,h3{margin:0 0 16px;line-height:1.08;letter-spacing:-.035em}
h1{font-size:clamp(3rem,7vw,6.6rem);font-weight:700}
h2{font-size:clamp(2.2rem,4.5vw,4.2rem)}
h3{font-size:1.35rem}
p{margin:0 0 20px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:52px;padding:0 24px;border:1px solid var(--charcoal);
  font-weight:700;font-size:.92rem;transition:.2s ease;cursor:pointer
}
.btn-dark{background:var(--charcoal);color:#fff}
.btn-dark:hover{background:#111}
.btn-light{background:#fff;color:var(--charcoal);border-color:#fff}
.btn-outline{background:transparent;color:#fff;border-color:rgba(255,255,255,.6)}
.header{
  position:absolute;z-index:20;top:0;left:0;width:100%;color:#fff;
}
.nav{height:92px;display:flex;align-items:center;justify-content:space-between;gap:30px}
.brand{font-size:1.3rem;font-weight:800;letter-spacing:.05em}
.brand small{display:block;font-size:.55rem;font-weight:500;letter-spacing:.16em;text-transform:uppercase;margin-top:2px}
.navlinks{display:flex;gap:28px;align-items:center;font-size:.9rem}
.navlinks a:hover{opacity:.7}
.mobile-toggle{display:none;background:none;border:0;color:#fff;font-size:1.7rem}
.hero{
  min-height:800px;display:flex;align-items:flex-end;color:#fff;position:relative;
  background:
    linear-gradient(90deg,rgba(20,20,20,.72) 0%,rgba(20,20,20,.42) 48%,rgba(20,20,20,.18) 100%),
    url('images/luxury-primary-bathroom-remodel-dfw.jpeg') center/cover no-repeat;
}
.hero-content{padding:190px 0 90px;max-width:900px}
.hero p{font-size:clamp(1rem,1.5vw,1.25rem);max-width:650px;color:rgba(255,255,255,.88)}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:32px}
.trustbar{background:var(--charcoal);color:#fff}
.trustgrid{display:grid;grid-template-columns:repeat(4,1fr);gap:0}
.trustitem{padding:28px 24px;border-right:1px solid rgba(255,255,255,.12)}
.trustitem:last-child{border-right:0}
.trustitem strong{display:block;margin-bottom:4px}
.trustitem span{color:rgba(255,255,255,.66);font-size:.9rem}
.section{padding:110px 0}
.section-off{background:var(--off)}
.split{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.copy{max-width:560px}
.copy p{color:var(--muted);font-size:1.05rem}
.image-frame{overflow:hidden;aspect-ratio:4/5;background:#ddd}
.image-frame img{width:100%;height:100%;object-fit:cover}
.services{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:48px}
.service-card{border:1px solid var(--line);padding:34px;min-height:260px;display:flex;flex-direction:column;justify-content:space-between}
.service-card p{color:var(--muted)}
.service-num{font-size:.8rem;color:var(--muted);letter-spacing:.15em}
.gallery-grid{display:grid;grid-template-columns:1.1fr .9fr .9fr;grid-auto-rows:330px;gap:12px;margin-top:45px}
.gallery-grid figure{margin:0;overflow:hidden;background:#eee}
.gallery-grid figure:first-child{grid-row:span 2}
.gallery-grid img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease}
.gallery-grid figure:hover img{transform:scale(1.02)}
.process{display:grid;grid-template-columns:repeat(4,1fr);gap:28px;margin-top:42px}
.step{border-top:1px solid var(--line);padding-top:22px}
.step b{display:block;font-size:.8rem;color:var(--muted);margin-bottom:14px}
.cta{background:var(--charcoal);color:#fff;padding:100px 0}
.cta .split{align-items:end}
.cta p{color:rgba(255,255,255,.72);max-width:560px}
.form{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.form input,.form textarea,.form select{
  width:100%;border:1px solid rgba(255,255,255,.28);background:transparent;color:#fff;
  padding:15px 16px;font:inherit;border-radius:0
}
.form input::placeholder,.form textarea::placeholder{color:rgba(255,255,255,.6)}
.form textarea{grid-column:1/-1;min-height:120px;resize:vertical}
.form .full{grid-column:1/-1}
.form button{grid-column:1/-1;border-color:#fff}
.footer{padding:44px 0;background:#1e2021;color:#fff}
.footer-grid{display:grid;grid-template-columns:1.2fr 1fr 1fr;gap:40px}
.footer p,.footer a{color:rgba(255,255,255,.65);font-size:.9rem}
.footer .brand{margin-bottom:16px}
.subhero{background:var(--charcoal);color:#fff;padding:180px 0 95px}
.content-narrow{max-width:800px}
.project-cards{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
.project-card{border:1px solid var(--line)}
.project-card img{width:100%;height:420px;object-fit:cover}
.project-card .pad{padding:24px}
.note{font-size:.82rem;color:var(--muted)}
@media(max-width:850px){
  .navlinks{display:none;position:absolute;top:82px;left:20px;right:20px;background:var(--charcoal);padding:22px;flex-direction:column;align-items:flex-start}
  .navlinks.open{display:flex}
  .mobile-toggle{display:block}
  .hero{min-height:720px;background-position:60% center}
  .hero-content{padding-bottom:65px}
  .trustgrid{grid-template-columns:1fr 1fr}
  .trustitem:nth-child(2){border-right:0}
  .trustitem:nth-child(-n+2){border-bottom:1px solid rgba(255,255,255,.12)}
  .split{grid-template-columns:1fr;gap:45px}
  .services{grid-template-columns:1fr}
  .gallery-grid{grid-template-columns:1fr 1fr;grid-auto-rows:280px}
  .gallery-grid figure:first-child{grid-row:span 1;grid-column:1/-1}
  .process{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr}
}
@media(max-width:560px){
  .container{width:min(var(--max),calc(100% - 28px))}
  .section{padding:78px 0}
  .hero{min-height:650px}
  .hero-content{padding-top:150px}
  .trustgrid,.process,.gallery-grid,.form,.project-cards{grid-template-columns:1fr}
  .trustitem{border-right:0!important;border-bottom:1px solid rgba(255,255,255,.12)}
  .form textarea,.form .full,.form button{grid-column:auto}
  .gallery-grid figure:first-child{grid-column:auto}
  .project-card img{height:320px}
}

/* V3 homepage — bright luxury direction */
.home-light .header{position:absolute;color:#27292b}
.home-light .header .btn-light{background:#27292b;color:#fff;border-color:#27292b}
.home-light .mobile-toggle{color:#27292b}
.hero-light{min-height:820px;display:grid;grid-template-columns:1fr 1.08fr;background:#f7f6f2;color:#27292b}
.hero-light-copy{display:flex;flex-direction:column;justify-content:center;padding:150px 7vw 80px}
.hero-light-copy p{max-width:620px;color:#6f7377;font-size:1.08rem}
.hero-light-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:28px}
.hero-light-image{background:url('images/luxury-primary-bathroom-remodel-dfw.jpeg') center/cover no-repeat}
.contact-strip{background:#fff;border-bottom:1px solid #dfded9}
.contact-strip .container{min-height:54px;display:flex;justify-content:space-between;align-items:center;gap:20px;font-size:.9rem}
.mobile-contact-bar{display:none}
@media(max-width:900px){
  .hero-light{grid-template-columns:1fr}
  .hero-light-copy{padding:135px 28px 52px}
  .hero-light-image{min-height:500px}
}
@media(max-width:560px){
  body{padding-bottom:64px}
  .contact-strip .container{flex-direction:column;align-items:flex-start;padding:12px 0}
  .mobile-contact-bar{display:grid;grid-template-columns:1fr 1fr;position:fixed;bottom:0;left:0;right:0;z-index:999;background:#fff;border-top:1px solid #dfded9}
  .mobile-contact-bar a{min-height:64px;display:flex;align-items:center;justify-content:center;font-weight:800}
  .mobile-contact-bar a:first-child{background:#27292b;color:#fff}
}

/* V4 — full-photo hero */
.hero-v4{
  min-height:820px;display:flex;align-items:flex-end;color:#fff;position:relative;
  background:linear-gradient(90deg,rgba(18,18,18,.66) 0%,rgba(18,18,18,.36) 48%,rgba(18,18,18,.14) 100%),
  url('images/luxury-primary-bathroom-remodel-dfw.jpeg') center/cover no-repeat;
}
.hero-v4 .hero-content{padding:190px 0 92px;max-width:900px}
.hero-v4 .hero-content p{max-width:680px;color:rgba(255,255,255,.9);font-size:1.1rem}
@media(max-width:850px){.hero-v4{min-height:720px;background-position:58% center}.hero-v4 .hero-content{padding:150px 0 68px}}


/* V5 — homepage first screen fills the viewport */
.hero-v4{
  min-height:100vh;
  min-height:100svh;
  display:flex;
  align-items:flex-end;
  color:#fff;
  position:relative;
  background:
    linear-gradient(90deg,rgba(16,16,16,.70) 0%,rgba(16,16,16,.40) 46%,rgba(16,16,16,.16) 100%),
    url('images/luxury-primary-bathroom-remodel-dfw.jpeg') center/cover no-repeat;
}
.hero-v4 .hero-content{
  padding:190px 0 10vh;
  max-width:920px;
}
.contact-strip{position:relative;z-index:2}
@media(max-width:850px){
  .hero-v4{min-height:100vh;min-height:100svh;background-position:60% center}
  .hero-v4 .hero-content{padding:145px 0 8vh}
}
@media(max-width:560px){
  .hero-v4{min-height:100vh;min-height:100svh;background-position:62% center}
  .hero-v4 .hero-content{padding:130px 0 96px}
  .hero-v4 h1{font-size:clamp(3.1rem,16vw,5rem)}
}
