:root{
  --black:#0a0a09;
  --black-2:#11110f;
  --gold:#bd9960;
  --gold-dark:#9e7f4e;
  --cream:#f3efe7;
  --white:#ffffff;
  --ink:#181714;
  --gray:#6e6b66;
  --line:#ded8ce;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:"DM Sans",Arial,sans-serif;
  color:var(--ink);
  background:var(--white);
}

img{width:100%;display:block}

a{text-decoration:none;color:inherit}

svg{
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}

button,input,select,textarea{font:inherit}

.container{
  width:min(1180px,calc(100% - 44px));
  margin:auto;
}

.site-header{
  height:78px;
  background:rgba(7,7,6,.98);
  color:var(--white);
  position:sticky;
  top:0;
  z-index:50;
  border-bottom:1px solid rgba(255,255,255,.06);
}

.header-inner{
  height:100%;
  display:flex;
  align-items:center;
  gap:28px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  margin-right:auto;
  min-width:max-content;
}

.brand-mark{
  font-family:"Playfair Display",serif;
  font-size:40px;
  color:var(--gold);
  letter-spacing:-5px;
  line-height:1;
  width:54px;
}

.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1;
}

.brand-text strong{
  font-family:"Playfair Display",serif;
  font-size:18px;
  letter-spacing:.7px;
}

.brand-text span{
  font-size:7px;
  letter-spacing:4px;
  margin-top:7px;
  color:var(--gold);
}

.desktop-nav{
  display:flex;
  align-items:center;
  gap:28px;
}

.desktop-nav a{
  font-size:10px;
  font-weight:700;
  letter-spacing:.3px;
  position:relative;
}

.desktop-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:0;
  height:1px;
  background:var(--gold);
  transition:.25s;
}

.desktop-nav a:hover::after{width:100%}

.header-cta{
  background:var(--gold);
  color:var(--white);
  font-size:10px;
  font-weight:700;
  padding:14px 18px;
  transition:.25s;
}

.header-cta:hover{background:var(--gold-dark)}

.menu-button{
  display:none;
  background:transparent;
  border:0;
  padding:8px;
}

.menu-button span{
  display:block;
  width:25px;
  height:2px;
  background:var(--white);
  margin:5px 0;
}

.mobile-nav{
  display:none;
  background:var(--black);
  padding:18px 22px 24px;
  border-top:1px solid rgba(255,255,255,.08);
}

.mobile-nav a{
  display:block;
  padding:12px 0;
  font-size:11px;
  font-weight:700;
  color:var(--white);
}

.hero{
  position:relative;
  min-height:680px;
  color:var(--white);
  background:
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=2000&q=92")
    center/cover no-repeat;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(5,5,5,.94) 0%,rgba(5,5,5,.75) 38%,rgba(5,5,5,.18) 72%,rgba(5,5,5,.10) 100%),
    linear-gradient(0deg,rgba(5,5,5,.36),transparent 35%);
}

.hero-content{
  position:relative;
  z-index:2;
  padding-top:108px;
}

.hero-copy{max-width:650px}

.eyebrow{
  margin:0 0 17px;
  font-size:10px;
  letter-spacing:2.4px;
  font-weight:700;
}

.gold{color:var(--gold)}

h1,h2,h3{margin-top:0}

h1,h2{
  font-family:"Playfair Display",serif;
  font-weight:600;
}

h1{
  font-size:64px;
  line-height:1.02;
  margin-bottom:22px;
}

h1 em,
h2 em{
  color:var(--gold);
  font-weight:600;
}

.hero-description{
  max-width:560px;
  font-size:16px;
  line-height:1.7;
  color:#e4e0d9;
}

.hero-actions{
  display:flex;
  gap:13px;
  margin-top:30px;
  flex-wrap:wrap;
}

.btn{
  border:0;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 20px;
  min-height:46px;
  font-size:10px;
  font-weight:700;
  letter-spacing:.4px;
  transition:.25s;
}

.btn svg{width:16px;height:16px}

.btn-gold{
  background:var(--gold);
  color:var(--white);
}

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

.btn-outline{
  border:1px solid rgba(255,255,255,.58);
  color:var(--white);
  background:rgba(0,0,0,.18);
}

.btn-outline:hover{
  background:rgba(255,255,255,.08);
  border-color:var(--white);
}

.trust-strip{
  margin-top:84px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  max-width:850px;
}

.trust-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding-right:18px;
  border-right:1px solid rgba(255,255,255,.16);
}

.trust-item:last-child{border-right:0}

.trust-item svg{
  width:34px;
  height:34px;
  color:var(--gold);
  flex:0 0 auto;
}

.trust-item span{
  font-size:10px;
  color:#cfcac3;
  line-height:1.35;
}

.trust-item strong{color:var(--white)}

.section{padding:88px 0}
.section-dark{padding:88px 0;background:var(--black);color:var(--white)}
.section-soft{padding:70px 0;background:var(--cream)}

.intro-grid{
  display:grid;
  grid-template-columns:.9fr 1.15fr;
  gap:72px;
  align-items:center;
}

.intro-copy h2,
.section-heading h2,
.areas h2,
.contact h2{
  font-size:44px;
  line-height:1.08;
  margin-bottom:18px;
}

.intro-copy>p:last-of-type{
  color:var(--gray);
  font-size:14px;
  line-height:1.78;
  max-width:560px;
}

.feature-list{
  display:flex;
  gap:28px;
  margin-top:30px;
  flex-wrap:wrap;
}

.feature{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:11px;
  font-weight:600;
}

.feature svg{
  width:30px;
  height:30px;
  color:var(--gold);
}

.intro-media{
  position:relative;
}

.intro-media img{
  height:430px;
  object-fit:cover;
}

.floating-card{
  position:absolute;
  left:-28px;
  bottom:28px;
  background:var(--black);
  color:var(--white);
  padding:17px 22px;
  border-left:3px solid var(--gold);
  box-shadow:0 16px 38px rgba(0,0,0,.18);
}

.floating-card span{
  display:block;
  color:var(--gold);
  font-size:8px;
  letter-spacing:1.3px;
  font-weight:700;
  margin-bottom:5px;
}

.floating-card strong{
  font-family:"Playfair Display",serif;
  font-size:17px;
}

.section-heading.centered{text-align:center}

.section-heading.centered>p:last-child{
  color:#aaa69f;
  font-size:13px;
  margin-top:-8px;
}

.section-heading.split{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:30px;
  margin-bottom:30px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:12px;
  margin-top:38px;
}

.service-card{
  border:1px solid #2d2b27;
  background:var(--black-2);
  overflow:hidden;
  transition:.28s;
}

.service-card:hover{
  transform:translateY(-6px);
  border-color:#4a4338;
}

.service-card>img{
  height:150px;
  object-fit:cover;
  filter:saturate(.78) contrast(1.02);
}

.service-content{padding:17px 16px 20px}

.service-heading{
  display:flex;
  align-items:center;
  gap:11px;
  min-height:42px;
}

.service-heading svg{
  width:30px;
  height:30px;
  color:var(--gold);
  flex:0 0 auto;
}

.service-heading h3{
  margin:0;
  font-size:13px;
  line-height:1.25;
}

.service-content p{
  min-height:62px;
  color:#9f9b94;
  font-size:10px;
  line-height:1.55;
}

.service-content a{
  color:var(--gold);
  font-size:9px;
  font-weight:700;
}

.service-content a span{margin-left:4px}

.text-link{
  font-size:10px;
  font-weight:700;
}

.text-link span{color:var(--gold)}

.projects-grid{
  display:grid;
  grid-template-columns:1.42fr 1fr;
  gap:20px;
}

.project-image-wrap{
  position:relative;
  overflow:hidden;
}

.project-card img{
  height:340px;
  object-fit:cover;
  transition:.4s;
}

.project-card:hover img{transform:scale(1.025)}

.project-badge{
  position:absolute;
  left:14px;
  bottom:14px;
  background:rgba(9,9,8,.88);
  color:var(--gold);
  font-size:8px;
  letter-spacing:1px;
  padding:8px 10px;
  font-weight:700;
}

.project-card h3{
  font-family:"Playfair Display",serif;
  font-size:24px;
  margin:14px 0 5px;
}

.project-card p{
  margin:0;
  color:var(--gray);
  font-size:10px;
}

.areas-grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:60px;
  align-items:center;
}

.areas-grid>div:first-child>p:last-child{
  color:var(--gray);
  font-size:13px;
}

.cities{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

.cities span{
  background:var(--white);
  padding:16px 17px;
  font-size:12px;
  font-weight:600;
  border-left:3px solid var(--gold);
}

.contact-grid{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:72px;
}

.contact-copy>p:last-of-type{
  color:#a7a39c;
  max-width:430px;
  line-height:1.7;
  font-size:13px;
}

.phone-link{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:28px;
  font-family:"Playfair Display",serif;
  color:var(--gold);
  font-size:27px;
}

.phone-link svg{
  width:26px;
  height:26px;
}

.contact-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
}

.form-field{
  display:flex;
  flex-direction:column;
  gap:7px;
}

.form-field label{
  font-size:8px;
  letter-spacing:1px;
  color:#bbb7b0;
}

.form-field input,
.form-field select,
.form-field textarea{
  width:100%;
  border:1px solid #34312c;
  background:#171715;
  color:var(--white);
  padding:13px 14px;
  outline:none;
}

.form-field input::placeholder,
.form-field textarea::placeholder{
  color:#77736d;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
  border-color:var(--gold);
}

.full{grid-column:1/-1}

.form-note{
  margin:0;
  color:#77736d;
  font-size:9px;
  line-height:1.4;
}

.footer{
  background:#060605;
  color:#9f9c96;
  padding:34px 0 20px;
}

.footer-inner{
  display:flex;
  align-items:center;
  gap:42px;
  font-size:9px;
}

.footer-brand{margin-right:auto;color:var(--white)}

.footer-inner>a{
  color:var(--gold);
  font-size:14px;
  font-weight:600;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.07);
  margin-top:26px;
  padding-top:15px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  font-size:8px;
  color:#69665f;
}

@media(max-width:1050px){
  .desktop-nav{display:none}
  .header-cta{margin-left:auto}
  .menu-button{display:block}
  .services-grid{grid-template-columns:repeat(3,1fr)}
}

@media(max-width:820px){
  .header-cta{display:none}
  .hero{min-height:720px;background-position:62% center}
  .hero-content{padding-top:82px}
  h1{font-size:49px}
  .trust-strip{grid-template-columns:repeat(2,1fr);gap:20px}
  .intro-grid,
  .contact-grid,
  .areas-grid{grid-template-columns:1fr}
  .intro-grid,
  .contact-grid{gap:38px}
  .floating-card{left:14px}
  .projects-grid{grid-template-columns:1fr}
  .cities{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:620px){
  .container{width:calc(100% - 28px)}
  .site-header{height:72px}
  .brand-mark{font-size:34px;width:48px}
  .brand-text strong{font-size:16px}
  h1{font-size:41px}
  .hero-description{font-size:14px}
  .hero-actions{display:grid}
  .hero-actions .btn{width:100%}
  .trust-strip{grid-template-columns:1fr;margin-top:48px}
  .trust-item{border-right:0}
  .section,.section-dark{padding:65px 0}
  .intro-copy h2,
  .section-heading h2,
  .areas h2,
  .contact h2{font-size:35px}
  .feature-list{flex-direction:column}
  .services-grid{grid-template-columns:1fr}
  .project-card img{height:290px}
  .section-heading.split{display:block}
  .text-link{display:inline-block;margin-top:8px}
  .cities{grid-template-columns:1fr}
  .contact-form{grid-template-columns:1fr}
  .full{grid-column:auto}
  .footer-inner{
    flex-direction:column;
    align-items:flex-start;
    gap:18px;
  }
  .footer-brand{margin:0}
  .footer-bottom{flex-direction:column}
}
