
:root{
  --black:#050505;
  --gold:#d4af37;
  --gold2:#f1d27a;
  --cream:#f7f3ea;
  --text:#d8d8d8;
  --border:rgba(212,175,55,.35);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:Montserrat,Arial,sans-serif;background:#050505;color:#fff;line-height:1.6}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

.container{width:min(1180px,92%);margin:auto}
.gold,.label{color:var(--gold)}
.label{text-transform:uppercase;letter-spacing:.2em;font-size:.8rem;font-weight:700}
.title{font-family:Cinzel,serif;font-size:clamp(2rem,4vw,3.4rem);line-height:1.12;margin:.5rem 0 1rem}

.btn{
  display:inline-flex;
  gap:.6rem;
  align-items:center;
  justify-content:center;
  padding:.9rem 1.25rem;
  border:1px solid var(--border);
  font-weight:700;
  transition:.25s;
  white-space:nowrap;
}

.btn.goldbtn{
  background:linear-gradient(135deg,var(--gold2),var(--gold));
  color:#111;
  border:0;
}

.btn:hover{transform:translateY(-2px)}

.small-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.45rem;
  border:1px solid var(--gold);
  color:#111;
  padding:.65rem .9rem;
  font-size:.78rem;
  font-weight:700;
}

.small-btn:hover{background:var(--gold)}

.header{
  position:fixed;
  top:0;
  width:100%;
  z-index:10;
  background:rgba(0,0,0,.92);
  border-bottom:1px solid var(--border);
  backdrop-filter:blur(10px);
}

.nav{
  height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.5rem;
}

.brand{
  display:flex;
  align-items:center;
  gap:.8rem;
  min-width:220px;
}

.brand img{
  width:62px;
  height:62px;
  object-fit:contain;
}

.brand strong{
  font-family:Cinzel,serif;
  color:var(--gold2);
  letter-spacing:.08em;
  display:block;
  line-height:1;
}

.brand span{
  display:block;
  color:var(--gold);
  font-size:.68rem;
  letter-spacing:.25em;
  text-transform:uppercase;
}

.links{
  display:flex;
  align-items:center;
  gap:1.5rem;
}

.links a.active,.links a:hover{color:var(--gold)}

.menu{
  display:none;
  background:none;
  color:#fff;
  border:1px solid var(--border);
  padding:.6rem;
  font-size:1.1rem;
}

.hero,.pagehero{
  padding-top:86px;
  min-height:720px;
  display:flex;
  align-items:center;
  background:
    linear-gradient(90deg,rgba(0,0,0,.96),rgba(0,0,0,.78),rgba(0,0,0,.25)),
    url('../images/hero-bathroom.jpg') center/cover no-repeat;
}

.pagehero{
  min-height:410px;
  background:
    linear-gradient(90deg,rgba(0,0,0,.96),rgba(0,0,0,.58)),
    url('../images/page-hero.jpg') center/cover no-repeat;
}

.hero h1,.pagehero h1{
  font-family:Cinzel,serif;
  font-size:clamp(2.6rem,5vw,5rem);
  line-height:1.06;
  max-width:780px;
}

.hero p,.pagehero p{
  color:var(--text);
  max-width:620px;
  margin:1rem 0 1.5rem;
}

.line{
  width:82px;
  height:3px;
  background:var(--gold);
  margin:1rem 0;
}

.actions,.trust{
  display:flex;
  flex-wrap:wrap;
  gap:.9rem;
  margin-top:1rem;
}

.trust span{color:#eee}
.trust i,.card i,.feature i{color:var(--gold)}

section{padding:5rem 0}
.light{background:var(--cream);color:#111}
.center{text-align:center}

.grid5{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:1rem;
  margin-top:1.5rem;
}

.card{
  background:#fff;
  border:1px solid rgba(0,0,0,.1);
  padding:1.7rem;
  text-align:center;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:245px;
}

.card h3{
  font-family:Cinzel,serif;
  margin:.8rem 0;
}

.card p{
  color:#555;
  font-size:.9rem;
}

.dark{
  background:
    linear-gradient(90deg,rgba(0,0,0,.95),rgba(0,0,0,.86)),
    url('../images/dark-marble.jpg') center/cover;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.projectsHome{
  display:grid;
  grid-template-columns:.9fr 1.5fr 1fr;
  gap:2rem;
  align-items:center;
}

.thumbs{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:.8rem;
}

.thumbs img{
  height:165px;
  width:100%;
  object-fit:cover;
}

.why{display:grid;gap:1rem}

.why div{
  display:grid;
  grid-template-columns:42px 1fr;
  gap:.8rem;
}

.why i{
  width:42px;
  height:42px;
  border:1px solid var(--gold);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold);
}

.why p,.dark p{color:#aaa;font-size:.88rem}

.details{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:1rem;
  margin-top:1.5rem;
}

.detail{
  border:1px solid var(--border);
  padding:1.4rem;
  min-height:260px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.detail i{color:var(--gold);font-size:2rem;margin-bottom:.8rem}
.detail h3{font-family:Cinzel,serif;margin-bottom:.6rem}
.detail ul{list-style:none;margin:1rem 0}
.detail li{color:var(--text);font-size:.88rem;margin:.35rem 0}
.detail li:before{content:'✓';color:var(--gold);margin-right:.5rem}

.process{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.2rem;
  margin-top:1.5rem;
}

.step{
  border-top:1px solid var(--border);
  padding-top:1rem;
}

.filters{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:.7rem;
  margin:2rem 0;
}

.filter{
  padding:.75rem 1rem;
  border:1px solid #ddd;
  background:#fff;
  font-weight:700;
  cursor:pointer;
}

.filter.active,.filter:hover{background:#111;color:#fff}

.projectgrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
}

.project{
  background:#080808;
  color:#fff;
  overflow:hidden;
}

.project img{
  height:240px;
  width:100%;
  object-fit:cover;
}

.project div{padding:1.2rem}

.project small{
  color:var(--gold);
  text-transform:uppercase;
  font-weight:700;
  letter-spacing:.12em;
}

.project p{color:#ccc;margin:.5rem 0 1rem}

.text-link{color:var(--gold);font-weight:700}

.features{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.2rem;
}

.feature{text-align:center}

.feature i{
  font-size:2rem;
  margin-bottom:.7rem;
}

.feature p{color:#555}

.map{
  margin:3rem 0;
  min-height:360px;
  background:
    linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),
    url('../images/reading-map.png') center/cover;
  border:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}

.circle{
  width:290px;
  height:290px;
  border:1px dashed var(--gold);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.areas{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.2rem;
  margin-top:1.5rem;
}

.area{
  background:#fff;
  padding:1.3rem;
  border:1px solid #ddd;
}

.area p{color:#555}

.contactgrid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:2rem;
  margin-top:1.5rem;
}

.box{
  border:1px solid var(--border);
  padding:2rem;
  background:rgba(255,255,255,.03);
}

.contactline{
  padding:1rem 0;
  border-bottom:1px solid rgba(255,255,255,.1);
}

input,select,textarea{
  width:100%;
  padding:1rem;
  margin-bottom:1rem;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  font-family:inherit;
}

select option{color:#111}
textarea{min-height:140px}
.formrow{display:grid;grid-template-columns:1fr 1fr;gap:1rem}

.cta{padding:3rem 0}
.ctain{display:flex;justify-content:space-between;gap:2rem;align-items:center}

.footer{
  background:#030303;
  border-top:1px solid var(--border);
  padding:3rem 0 1rem;
}

.footgrid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:2rem;
}

.footgrid img{width:88px}
.footer h4{color:var(--gold);letter-spacing:.12em;text-transform:uppercase;font-size:.8rem}
.footer ul{list-style:none}
.footer a,.footer p,.footer li{color:#aaa;font-size:.88rem}
.footer a:hover{color:var(--gold)}

.copy{
  text-align:center;
  color:#777;
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:1.5rem;
  padding-top:1rem;
}

.wa{
  position:fixed;
  right:18px;
  bottom:18px;
  width:58px;
  height:58px;
  border-radius:50%;
  background:#25d366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.7rem;
  z-index:20;
}

@media(max-width:1000px){
  .grid5,.details{grid-template-columns:repeat(2,1fr)}
  .projectsHome,.projectgrid,.areas,.contactgrid{grid-template-columns:1fr 1fr}
  .features,.process,.footgrid{grid-template-columns:1fr 1fr}
  .links{
    position:fixed;
    right:-100%;
    top:86px;
    background:#050505;
    width:80%;
    height:calc(100vh - 86px);
    flex-direction:column;
    align-items:flex-start;
    padding:2rem;
    transition:.3s;
    border-left:1px solid var(--border);
  }
  .links.open{right:0}
  .menu{display:block}
}

@media(max-width:640px){
  .brand img{width:50px;height:50px}
  .grid5,.details,.projectsHome,.projectgrid,.areas,.features,.process,.contactgrid,.footgrid,.formrow{grid-template-columns:1fr}
  .hero{min-height:auto;padding:130px 0 70px}
  .actions,.ctain{flex-direction:column;align-items:stretch}
  .btn{width:100%}
  .thumbs{grid-template-columns:1fr}
}


/* Contact page without form */
.contactgrid-noform{
  grid-template-columns:1fr 1fr;
  max-width:1000px;
  margin-left:auto;
  margin-right:auto;
}

.contactgrid-noform .box{
  min-height:360px;
}

@media(max-width:900px){
  .contactgrid-noform{
    grid-template-columns:1fr;
  }
}


/* Simple Projects Gallery Layout - V5 */
.project-category{
  padding:3rem 0;
  border-top:1px solid rgba(0,0,0,.12);
}

.project-category:first-of-type{
  border-top:0;
}

.project-category-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:1.5rem;
  margin-bottom:1.5rem;
}

.project-category-head h2{
  font-family:Cinzel,serif;
  font-size:clamp(1.7rem,3vw,2.6rem);
  color:#111;
}

.simple-gallery{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1rem;
}

.simple-gallery img{
  width:100%;
  height:250px;
  object-fit:cover;
  border:1px solid rgba(0,0,0,.1);
  background:#eee;
  transition:.25s;
}

.simple-gallery img:hover{
  transform:scale(1.015);
  box-shadow:0 14px 30px rgba(0,0,0,.14);
}

@media(max-width:1000px){
  .simple-gallery{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:640px){
  .project-category-head{
    align-items:flex-start;
    flex-direction:column;
  }

  .simple-gallery{
    grid-template-columns:1fr;
  }

  .simple-gallery img{
    height:260px;
  }
}


/* V6 Projects page: one featured image + thumbnails */
.project-viewer{
  max-width:900px;
  margin:0 auto;
}

.featured-project{
  position:relative;
  display:block;
  overflow:hidden;
  background:#111;
  border:1px solid rgba(0,0,0,.14);
  box-shadow:0 20px 45px rgba(0,0,0,.16);
}

.featured-project img{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
  transition:.25s ease;
}

.featured-project:hover img{
  transform:scale(1.015);
}

.featured-overlay{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:1rem 1.2rem;
  color:#fff;
  background:linear-gradient(transparent,rgba(0,0,0,.82));
}

.featured-overlay span{
  display:block;
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.78rem;
  font-weight:700;
  margin-bottom:.2rem;
}

.featured-overlay strong{
  font-family:Cinzel,serif;
  font-size:clamp(1.3rem,2.2vw,2rem);
}

.project-thumbnails{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:.75rem;
  margin-top:1rem;
}

.thumb{
  border:2px solid transparent;
  padding:0;
  background:#111;
  cursor:pointer;
  height:85px;
  overflow:hidden;
  transition:.2s ease;
}

.thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.78;
  transition:.2s ease;
}

.thumb:hover img,
.thumb.active img{
  opacity:1;
}

.thumb.active{
  border-color:var(--gold);
}

.gallery-cta{
  margin-top:1.5rem;
  padding:2rem;
  background:#111;
  color:#fff;
  display:flex;
  justify-content:space-between;
  gap:2rem;
  align-items:center;
  border:1px solid rgba(212,175,55,.28);
}

.gallery-cta h2{
  font-family:Cinzel,serif;
  line-height:1.2;
  max-width:720px;
}

@media(max-width:1000px){
  .featured-project img{
    height:360px;
  }

  .project-thumbnails{
    grid-template-columns:repeat(4,1fr);
  }
}

@media(max-width:640px){
  .featured-project img{
    height:260px;
  }

  .project-thumbnails{
    grid-template-columns:repeat(2,1fr);
  }

  .thumb{
    height:85px;
  }

  .gallery-cta{
    flex-direction:column;
    align-items:flex-start;
  }
}


/* V7 smaller projects gallery override */
.project-viewer{
  max-width:900px;
}

.featured-project img{
  height:420px;
}

.project-thumbnails{
  grid-template-columns:repeat(7,1fr);
  gap:.55rem;
}

.thumb{
  height:85px;
}

.featured-overlay{
  padding:1rem 1.2rem;
}

.gallery-cta{
  margin-top:1.5rem;
  padding:1.5rem;
}

@media(max-width:1000px){
  .featured-project img{
    height:340px;
  }

  .project-thumbnails{
    grid-template-columns:repeat(4,1fr);
  }

  .thumb{
    height:85px;
  }
}

@media(max-width:640px){
  .featured-project img{
    height:240px;
  }

  .project-thumbnails{
    grid-template-columns:repeat(3,1fr);
  }

  .thumb{
    height:75px;
  }
}


/* V8 Microsoft Photos style project grid + lightbox */
.photo-gallery-section{
  background:#f7f3ea;
  padding-top:3rem;
}

.photo-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  grid-auto-rows:135px;
  gap:.65rem;
}

.photo-item{
  border:0;
  padding:0;
  margin:0;
  cursor:pointer;
  overflow:hidden;
  background:#111;
  display:block;
  grid-column:span 2;
  position:relative;
}

.photo-item.wide{
  grid-column:span 3;
}

.photo-item.tall{
  grid-row:span 2;
}

.photo-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:.25s ease;
}

.photo-item:hover img{
  transform:scale(1.04);
  opacity:.9;
}

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.92);
  z-index:9999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:2rem;
}

.lightbox.open{
  display:flex;
}

.lightbox img{
  max-width:92vw;
  max-height:86vh;
  object-fit:contain;
  box-shadow:0 25px 70px rgba(0,0,0,.45);
}

.lightbox-close{
  position:absolute;
  top:1.5rem;
  right:1.5rem;
  width:48px;
  height:48px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(0,0,0,.35);
  color:#fff;
  font-size:1.5rem;
  cursor:pointer;
}

.lightbox-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:52px;
  height:52px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(0,0,0,.35);
  color:#fff;
  font-size:1.35rem;
  cursor:pointer;
}

.lightbox-prev{
  left:1.5rem;
}

.lightbox-next{
  right:1.5rem;
}

.lightbox-close:hover,
.lightbox-nav:hover{
  background:var(--gold);
  color:#111;
}

@media(max-width:1000px){
  .photo-grid{
    grid-template-columns:repeat(4,1fr);
    grid-auto-rows:130px;
  }

  .photo-item,
  .photo-item.wide{
    grid-column:span 2;
  }
}

@media(max-width:640px){
  .photo-grid{
    grid-template-columns:repeat(2,1fr);
    grid-auto-rows:115px;
    gap:.45rem;
  }

  .photo-item,
  .photo-item.wide{
    grid-column:span 1;
  }

  .photo-item.tall{
    grid-row:span 1;
  }

  .lightbox{
    padding:1rem;
  }

  .lightbox-nav{
    width:42px;
    height:42px;
  }

  .lightbox-prev{
    left:.5rem;
  }

  .lightbox-next{
    right:.5rem;
  }

  .lightbox-close{
    top:.75rem;
    right:.75rem;
  }
}
