
:root{
  --black:#050505;
  --dark:#0e0e0e;
  --cream:#f5f0e8;
  --gold:#bd8b3b;
  --text:#1b1b1b;
  --muted:#666;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Libre Baskerville', Georgia, serif;
  background:var(--black);
  color:white;
}

.nav{
  min-height:78px;
  padding:18px 6%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.94);
  border-bottom:1px solid rgba(189,139,59,.35);
  position:sticky;
  top:0;
  z-index:10;
}

.brand-main{
  display:block;
  letter-spacing:7px;
  font-size:24px;
}
.brand-sub{
  display:block;
  color:var(--gold);
  letter-spacing:4px;
  font-size:11px;
  margin-top:6px;
}

nav a{
  color:white;
  text-decoration:none;
  margin-left:24px;
  font-size:13px;
}
nav a:hover{color:var(--gold)}

.hero{
  min-height:520px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.72) 42%, rgba(0,0,0,.2) 100%),
    url('work-1.jpeg') center right / cover no-repeat;
  display:flex;
  align-items:center;
  padding:55px 6%;
}

.hero-content{max-width:540px}

.eyebrow{
  color:var(--gold);
  letter-spacing:3px;
  text-transform:uppercase;
  font-size:11px;
  margin-bottom:14px;
}
.center{text-align:center}

h1{
  font-size:46px;
  line-height:1.1;
  margin:0 0 18px;
}
h2{
  font-size:32px;
  line-height:1.2;
  text-align:center;
  margin:0 0 12px;
}
h3{margin:14px 0 8px}

.hero-text{
  font-size:16px;
  line-height:1.7;
  color:#eee;
  max-width:480px;
}

.btn{
  display:inline-block;
  padding:13px 21px;
  border-radius:4px;
  text-decoration:none;
  margin:8px 10px 0 0;
  font-size:13px;
}
.primary{
  background:linear-gradient(135deg,#d4a24c,#9a6a24);
  color:white;
}
.secondary{
  color:white;
  border:1px solid rgba(255,255,255,.45);
}

.section{padding:35px 6%}
.light{
  background:var(--cream);
  color:var(--text);
}
.dark{
  background:#080808;
  color:white;
}
.section-text{
  text-align:center;
  color:var(--muted);
  margin-bottom:26px;
}

/* SMALL BEFORE & AFTER SECTION */
.before-grid{
  display:flex;
  justify-content:center;
  align-items:center;
  max-width:100%;
  margin:0 auto;
}
.ba-card{
  background:white;
  padding:12px;
  border-radius:12px;
  box-shadow:0 10px 28px rgba(0,0,0,.13);
}
.pair{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
}
.pair div{position:relative}
.pair span{
  position:absolute;
  top:8px;
  left:8px;
  background:#050505;
  color:white;
  padding:5px 8px;
  font-size:10px;
  letter-spacing:1px;
  z-index:2;
}
.pair img{
  width:100%;
  height:220px;
  max-height:220px;
  object-fit:cover;
  border-radius:7px;
  display:block;
}
.ba-card h3{
  text-align:center;
  color:#111;
  font-size:15px;
  margin:12px 0 3px;
}

/* SERVICES */
.service-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
  max-width:1080px;
  margin:28px auto 0;
}
.service-grid div{
  border:1px solid rgba(189,139,59,.35);
  padding:21px;
  border-radius:12px;
  background:rgba(255,255,255,.03);
}
.service-grid p{
  color:#d7d7d7;
  line-height:1.55;
  font-size:13px;
}

/* SMALL GALLERY */
.gallery{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  max-width:900px;
  margin:28px auto 0;
}
.gallery img{
  width:100%;
  height:145px;
  max-height:145px;
  object-fit:cover;
  border-radius:10px;
  box-shadow:0 8px 22px rgba(0,0,0,.16);
  display:block;
}

.quote{
  padding:55px 6%;
  text-align:center;
  background:linear-gradient(135deg,#090909,#17120c);
}
.quote p{color:#ddd}

footer{
  padding:30px 6%;
  text-align:center;
  background:#020202;
  border-top:1px solid rgba(189,139,59,.35);
  color:#aaa;
}
footer .brand{margin-bottom:15px}

@media(max-width:850px){
  .nav{flex-direction:column; gap:16px}
  nav a{margin:0 8px; font-size:12px}
  h1{font-size:34px}
  h2{font-size:27px}
  .hero{min-height:500px; background-position:center}
  .before-grid,.service-grid,.gallery{grid-template-columns:1fr}
  .pair img{height:125px; max-height:125px}
  .gallery img{height:150px; max-height:150px}
}
