
:root{
  --black-primary:#0A0A0B;
  --black-deep:#050506;
  --black-soft:#121214;
  --gold-primary:#C6A85A;
  --gold-light:#E5C97A;
  --text-primary:#EAEAEA;
  --text-secondary:#B8B8B8;
  --text-muted:#7A7A7A;
  --divider:rgba(198,168,90,0.2);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  color:var(--text-primary);
  background:
    radial-gradient(circle at top right, rgba(198,168,90,.07), transparent 30%),
    radial-gradient(circle at bottom left, rgba(198,168,90,.04), transparent 25%),
    var(--black-primary);
}
a{color:inherit;text-decoration:none}
.container{width:min(100%,1280px);margin:0 auto;padding:0 clamp(1.5rem,4vw,5rem)}
.nav{
  position:fixed;top:0;left:0;right:0;z-index:50;
  border-bottom:1px solid var(--divider);
  background:rgba(10,10,11,.82);
  backdrop-filter:blur(12px);
}
.nav-inner{height:80px;display:flex;align-items:center;justify-content:space-between}
.brand{font-family:Georgia,"Times New Roman",serif;color:var(--gold-primary);font-size:1.25rem}
.nav-links{display:flex;gap:1.5rem;align-items:center;flex-wrap:wrap}
.nav-links a,.footer-links a{
  color:var(--text-secondary);font-size:.82rem;text-transform:uppercase;letter-spacing:.18em
}
.nav-links a:hover,.footer-links a:hover,.gold-link:hover{color:var(--gold-primary)}
.hero{
  position:relative;min-height:961px;display:flex;align-items:center;
  border-bottom:1px solid var(--divider);overflow:hidden;
}
.hero-media,.hero-media img,.hero-slide{position:absolute;inset:0;width:100%;height:100%}
.hero-media img,.hero-slide img{object-fit:cover;filter:brightness(.72) contrast(1.08) saturate(.88)}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,.78), rgba(0,0,0,.56), rgba(0,0,0,.88));
}
.hero-content{position:relative;z-index:2;padding-top:7rem;max-width:60rem}
.eyebrow{margin:0 0 1rem;color:var(--gold-primary);font-size:.78rem;text-transform:uppercase;letter-spacing:.38em}
h1,h2,h3{font-family:Georgia,"Times New Roman",serif;margin:0}
h1{font-size:clamp(2.6rem,6vw,4.8rem);line-height:1.08}
h2{font-size:clamp(2rem,4vw,3.2rem);line-height:1.12}
h3{font-size:1.6rem;line-height:1.2}
p{line-height:1.9}
.hero-copy{margin-top:1.5rem;max-width:52rem;font-size:1.06rem;color:var(--text-secondary)}
.btns{display:flex;gap:1rem;flex-wrap:wrap;margin-top:2rem}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:.95rem 1.35rem;border-radius:6px;font-size:.83rem;
  text-transform:uppercase;letter-spacing:.18em;transition:.25s ease;
  border:1px solid transparent
}
.btn-primary{background:var(--gold-primary);color:var(--black-primary)}
.btn-primary:hover{background:var(--gold-light);transform:translateY(-2px)}
.btn-secondary{border-color:var(--gold-primary);color:var(--gold-primary)}
.btn-secondary:hover{background:var(--gold-primary);color:var(--black-primary)}
.section{padding:5.5rem 0;border-bottom:1px solid var(--divider)}
.card{
  border:1px solid var(--divider);background:rgba(18,18,20,.8);
  padding:2rem;border-radius:1.25rem;box-shadow:0 18px 50px rgba(0,0,0,.45)
}
.grid{display:grid;gap:1.5rem}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.metric{padding:1.5rem;border:1px solid var(--divider);border-radius:1.25rem;background:rgba(26,26,29,.7)}
.metric-value{font-family:Georgia,"Times New Roman",serif;color:var(--gold-primary);font-size:2rem}
.metric-label{margin-top:.6rem;color:var(--text-secondary);font-size:.78rem;text-transform:uppercase;letter-spacing:.18em}
.footer{border-top:1px solid var(--divider);background:var(--black-deep)}
.footer-inner{padding:4rem 0;display:grid;gap:2rem;grid-template-columns:1.1fr 1fr}
.footer-brand{font-family:Georgia,"Times New Roman",serif;color:var(--gold-primary);font-size:1.8rem}
.footer-links{display:grid;gap:.8rem;grid-template-columns:repeat(2,minmax(0,1fr))}
.text-muted{color:var(--text-muted)}
.text-secondary{color:var(--text-secondary)}
.text-gold{color:var(--gold-primary)}
.gold-link{color:var(--gold-primary)}
.breadcrumbs{margin:.4rem 0 0;font-size:.9rem;color:var(--text-muted)}
.article-list .card h3,.service-card h3{color:var(--gold-primary)}
.hero-dots{display:flex;gap:.45rem;margin-top:1.2rem;flex-wrap:wrap}
.hero-dot{width:2.5rem;height:6px;border-radius:999px;background:rgba(255,255,255,.2);display:inline-block}
.hero-dot.active{background:var(--gold-primary)}
@media (max-width:900px){
  .grid-2,.grid-3,.footer-inner,.footer-links{grid-template-columns:1fr}
  .nav-inner{height:auto;padding:1rem 0;align-items:flex-start;gap:1rem;flex-direction:column}
  .hero{min-height:780px}
}
