:root{
  --charcoal:#2f2f31;
  --black:#171717;
  --grey:#676767;
  --soft:#f8f6f1;
  --soft2:#f1eee7;
  --line:#dfd8cc;
  --gold:#c8a24a;
  --gold2:#b8872e;
  --white:#fff;
  --shadow:0 20px 60px rgba(0,0,0,.10);
  --serif:"Cormorant Garamond", Georgia, serif;
  --sans:"Inter", Arial, sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--sans);
  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(1180px,92vw);margin:0 auto}
.eyebrow{
  margin:0 0 12px;
  color:var(--gold2);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.75rem;
  font-weight:700;
}
h1,h2,h3,p{margin-top:0}
h1,h2{
  font-family:var(--serif);
  color:var(--black);
  letter-spacing:.03em;
}
h1{font-size:clamp(4rem,9vw,8rem);line-height:.88;margin-bottom:12px}
h2{font-size:clamp(2rem,4vw,3.5rem);line-height:1.03;margin-bottom:18px}
h3{font-size:1rem;line-height:1.25;margin-bottom:8px;text-transform:uppercase;letter-spacing:.04em}
p{color:#333}
.section{padding:88px 0}
.section-title{
  max-width:760px;
  margin:0 auto 38px;
  text-align:center;
}
.section-title h2{position:relative;display:inline-block}
.section-title h2:after,
.section-copy h2:after{
  content:"";
  display:block;
  width:54px;
  height:2px;
  background:var(--gold);
  margin:14px auto 0;
}
.section-copy h2:after{margin-left:0}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 24px;
  border:1px solid transparent;
  font-size:.84rem;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  transition:.25s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-dark{background:var(--black);color:var(--white)}
.btn-light{background:rgba(255,255,255,.88);border-color:var(--line);color:var(--charcoal)}
.btn-gold{background:var(--gold);color:#fff}
.btn-outline{border-color:var(--gold);color:#fff;background:transparent}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  height:70px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 min(5vw,64px);
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(0,0,0,.08);
}
.brand img{height:42px;width:auto}
.nav{
  display:flex;
  align-items:center;
  gap:34px;
  font-size:.78rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.nav a{position:relative}
.nav a:not(.nav-cta):after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:-12px;
  height:2px;
  transform:scaleX(0);
  background:var(--gold);
  transition:.25s ease;
}
.nav a:hover:after{transform:scaleX(1)}
.nav-cta{
  background:var(--gold);
  color:white;
  padding:13px 22px;
}
.nav-toggle{
  display:none;
  border:0;
  background:transparent;
  font-size:1.8rem;
  color:var(--charcoal);
}

.hero{
  position:relative;
  min-height:680px;
  overflow:hidden;
  display:flex;
  align-items:center;
}
.hero-bg{
  position:absolute;
  inset:0;
  background:url("assets/hero-interior.jpg") center right/cover no-repeat;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.82) 32%, rgba(255,255,255,.15) 68%, rgba(255,255,255,.03) 100%);
}
.hero-inner{position:relative;z-index:2}
.hero-copy{max-width:610px}
.hero-copy h2{
  color:var(--gold2);
  font-size:clamp(2.1rem,4vw,3.8rem);
  margin-bottom:26px;
}
.hero-text{
  max-width:520px;
  font-size:1.04rem;
  margin-bottom:32px;
}
.hero-actions{display:flex;gap:16px;flex-wrap:wrap}

.quick-services{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:var(--white);
}
.quick-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:0;
}
.quick-item{
  min-height:100px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  border-left:1px solid var(--line);
  text-align:center;
}
.quick-item:last-child{border-right:1px solid var(--line)}
.quick-item span{
  color:var(--gold2);
  font-size:1.8rem;
  line-height:1;
  margin-bottom:8px;
}
.quick-item strong{
  text-transform:uppercase;
  font-size:.82rem;
  letter-spacing:.06em;
}
.quick-item small{color:var(--grey);font-size:.75rem}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}
.section-copy p{max-width:650px}
.values{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:36px;
}
.values article{
  padding:22px 10px 0 0;
  border-top:1px solid var(--line);
}
.values span,
.why-item span,
.process-step span{
  color:var(--gold2);
  font-family:var(--serif);
  font-size:1.6rem;
  font-weight:700;
}
.values h3{margin-top:10px}
.about-image img{box-shadow:var(--shadow)}

.services{background:var(--soft)}
.cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.service-card{
  background:white;
  border:1px solid var(--line);
  box-shadow:0 12px 30px rgba(0,0,0,.05);
  transition:.25s ease;
}
.service-card:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.service-card img{
  width:100%;
  height:160px;
  object-fit:cover;
}
.service-card div{padding:22px}
.service-card h3{font-size:.95rem}

.why{background:linear-gradient(90deg,#fff,var(--soft),#fff)}
.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
}
.why-item{
  padding:18px 26px;
  border-left:1px solid var(--line);
}
.why-item:last-child{border-right:1px solid var(--line)}

.process{background:white}
.process-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:16px;
}
.process-step{
  position:relative;
  padding:20px 16px;
  background:var(--soft);
  border:1px solid var(--line);
  min-height:210px;
}
.process-step span{
  display:block;
  margin-bottom:14px;
}
.process-step h3{font-size:.86rem}

.projects{background:var(--soft)}
.gallery{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:14px;
}
.gallery figure{
  margin:0;
  background:white;
  border:1px solid var(--line);
}
.gallery img{
  height:130px;
  width:100%;
  object-fit:cover;
}
.gallery figcaption{
  padding:10px 8px 12px;
  text-align:center;
  color:#444;
  font-size:.76rem;
}

.profile-cta{
  padding:58px 0;
  color:white;
  background:
    linear-gradient(90deg,rgba(20,20,20,.92),rgba(20,20,20,.86)),
    url("assets/dark-marble-bg.jpg") center/cover no-repeat;
}
.profile-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:36px;
}
.profile-inner h2,
.profile-inner p{color:white}
.profile-inner h2{font-size:clamp(1.8rem,3vw,3rem)}
.profile-inner p{max-width:640px;opacity:.9}
.profile-actions{display:flex;gap:14px;flex-wrap:wrap;justify-content:flex-end}

.footer{
  background:white;
  border-top:1px solid var(--line);
  padding-top:42px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.25fr 1.2fr 1.4fr 1fr 1fr;
  gap:30px;
}
.footer-brand img{height:50px;margin-bottom:12px}
.footer h3{
  font-size:.8rem;
  color:var(--charcoal);
  margin-bottom:10px;
}
.footer p,
.footer li{
  color:#555;
  font-size:.88rem;
  margin:0 0 8px;
}
.footer ul{margin:0;padding-left:18px}
.copyright{
  margin-top:32px;
  padding:18px 0;
  text-align:center;
  border-top:1px solid var(--line);
  color:#777;
  font-size:.82rem;
}

.reveal{
  opacity:0;
  transform:translateY(20px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.show{
  opacity:1;
  transform:none;
}

@media (max-width: 1040px){
  .nav{gap:18px}
  .quick-grid{grid-template-columns:repeat(3,1fr)}
  .cards{grid-template-columns:repeat(2,1fr)}
  .why-grid{grid-template-columns:repeat(2,1fr)}
  .process-grid{grid-template-columns:repeat(3,1fr)}
  .gallery{grid-template-columns:repeat(3,1fr)}
  .footer-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 760px){
  .site-header{height:64px;padding:0 20px}
  .brand img{height:36px}
  .nav-toggle{display:block}
  .nav{
    position:absolute;
    top:64px;
    left:0;
    right:0;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    background:white;
    border-bottom:1px solid var(--line);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
  }
  .nav.open{display:flex}
  .nav a{width:100%;padding:16px 24px;border-top:1px solid var(--line)}
  .nav-cta{background:var(--gold);color:white}
  .hero{min-height:720px;align-items:flex-start;padding-top:86px}
  .hero-overlay{
    background:linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.92) 55%, rgba(255,255,255,.35) 100%);
  }
  h1{font-size:4.2rem}
  .hero-copy h2{font-size:2.25rem}
  .hero-actions .btn{width:100%}
  .section{padding:64px 0}
  .split{grid-template-columns:1fr;gap:34px}
  .values{grid-template-columns:1fr}
  .quick-grid{grid-template-columns:repeat(2,1fr)}
  .cards{grid-template-columns:1fr}
  .why-grid{grid-template-columns:1fr}
  .why-item{border-right:1px solid var(--line);border-bottom:1px solid var(--line)}
  .process-grid{grid-template-columns:1fr}
  .gallery{grid-template-columns:repeat(2,1fr)}
  .profile-inner{flex-direction:column;align-items:flex-start}
  .profile-actions{justify-content:flex-start}
  .profile-actions .btn{width:100%}
  .footer-grid{grid-template-columns:1fr}
}
