:root{
  --black:#050505;
  --dark:#090909;
  --gold:#d6a64c;
  --gold-soft:#e1b65c;
  --white:#ffffff;
  --muted:rgba(255,255,255,.78);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--black);
  color:var(--white);
  font-family:Inter, Arial, Helvetica, sans-serif;
}

.site-header{
  position:absolute;
  top:0;
  left:0;
  right:0;
  z-index:10;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  padding:30px clamp(22px,5vw,76px);
}

.brand{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:2px;
  text-decoration:none;
  color:var(--gold);
}
.brand img{
  width:170px;
  height:auto;
  display:block;
}
.brand span{
  margin-left:4px;
  font-size:10px;
  letter-spacing:2.2px;
  text-transform:uppercase;
  color:var(--gold);
  opacity:.92;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:42px;
  margin-left:auto;
}
.nav-links a,
.header-cta{
  color:var(--white);
  text-decoration:none;
  text-transform:uppercase;
  font-size:11px;
  font-weight:700;
  letter-spacing:.9px;
}
.nav-links a{opacity:.92}
.header-cta{
  border:1px solid rgba(214,166,76,.78);
  padding:14px 22px;
  border-radius:2px;
  color:var(--gold-soft);
}

.hero{
  position:relative;
  min-height:82vh;
  display:flex;
  align-items:center;
  padding:112px clamp(24px,5vw,76px) 64px;
  overflow:hidden;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.74) 34%, rgba(0,0,0,.32) 66%, rgba(0,0,0,.06) 100%),
    url("assets/hero.jpg");
  background-size:cover;
  background-position:center center;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.38) 0%, rgba(0,0,0,.08) 45%, rgba(0,0,0,.50) 100%);
  pointer-events:none;
}
.hero-content{
  position:relative;
  z-index:2;
  max-width:460px;
}
.eyebrow{
  margin:0 0 20px;
  color:var(--gold);
  text-transform:uppercase;
  font-size:10px;
  font-weight:700;
  letter-spacing:3.2px;
}
.hero h1{
  margin:0 0 22px;
  font-family:Georgia, 'Times New Roman', serif;
  font-size:clamp(28px,3.3vw,42px);
  line-height:1.02;
  font-weight:700;
  letter-spacing:-.6px;
}
.hero h1 span{color:var(--gold)}
.hero-subtitle{
  margin:0 0 22px;
  font-size:clamp(16px,1.45vw,19px);
  line-height:1.35;
  font-weight:400;
}
.hero-subtitle::after{
  content:"";
  display:block;
  width:72px;
  height:1px;
  background:var(--gold);
  margin-top:18px;
}
.hero-copy{
  max-width:420px;
  margin:0 0 30px;
  color:var(--muted);
  font-size:14px;
  line-height:1.65;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.btn{
  min-height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 20px;
  border-radius:2px;
  text-decoration:none;
  text-transform:uppercase;
  font-size:11px;
  font-weight:800;
  letter-spacing:.45px;
}
.btn-primary{
  background:linear-gradient(135deg, #e3b65c, #c99232);
  color:#050505;
}
.btn-outline{
  color:#fff;
  border:1px solid rgba(214,166,76,.75);
  background:rgba(0,0,0,.18);
}
.placeholder-section{
  min-height:42vh;
  padding:80px 24px;
  text-align:center;
  background:#f4efe7;
  color:#101010;
}
.placeholder-section h2{
  margin:8px 0 12px;
  font-family:Georgia, 'Times New Roman', serif;
  font-size:clamp(32px,4vw,48px);
  font-weight:400;
}
.section-kicker{
  margin:0;
  color:#b8862b;
  text-transform:uppercase;
  font-size:11px;
  font-weight:800;
  letter-spacing:2px;
}

@media (max-width: 900px){
  .site-header{
    position:absolute;
    padding:22px 22px;
  }
  .brand img{width:140px}
  .nav-links{display:none}
  .header-cta{display:none}
  .hero{
    min-height:86vh;
    padding:104px 24px 52px;
    background-image:
      linear-gradient(180deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.62) 42%, rgba(0,0,0,.46) 100%),
      url("assets/hero.jpg");
    background-position:center center;
  }
  .eyebrow{
    font-size:10px;
    letter-spacing:3px;
    margin-bottom:20px;
  }
  .hero h1{
    font-size:clamp(30px,9vw,42px);
    letter-spacing:-.8px;
  }
  .hero-copy{font-size:14px;line-height:1.65}
  .hero-actions{flex-direction:column;align-items:flex-start}
  .btn{width:100%;max-width:310px}
}

@media (max-width: 480px){
  .hero{min-height:84vh}
  .brand img{width:128px}
  .hero h1{font-size:38px}
}
