:root{
  --black:#020506;
  --black2:#05090b;
  --panel:#071012;
  --gold:#d6a232;
  --gold2:#f1c967;
  --white:#ffffff;
  --muted:#cfcfcb;
  --line:rgba(255,255,255,.16);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--black);
  color:var(--white);
  font-family:Inter, Arial, sans-serif;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(1220px,90%);margin:0 auto}
.header{
  height:90px;
  background:#030506;
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 5.5%;
  position:sticky;
  top:0;
  z-index:100;
}
.brand{display:flex;align-items:center;gap:20px}
.brand-mark{
  font-family:Cinzel,serif;
  font-size:60px;
  color:var(--gold2);
  letter-spacing:-10px;
  line-height:.85;
  min-width:56px;
}
.brand-mark span{font-size:.48em}
.brand-text{
  font-size:19px;
  font-weight:900;
  letter-spacing:.25em;
  white-space:nowrap;
}
.brand-text span{color:var(--gold)}
.nav{
  display:flex;
  align-items:center;
  gap:34px;
  text-transform:uppercase;
  font-size:13px;
  font-weight:900;
}
.nav a:hover{color:var(--gold2)}
.nav-button{
  color:var(--gold2);
  border:2px solid var(--gold);
  padding:17px 30px;
}
.menu-button{display:none}
.hero{
  position:relative;
  min-height:610px;
  overflow:hidden;
  border-bottom:1px solid var(--line);
}
.hero-bg{
  position:absolute;
  inset:0;
  background:url("assets/hero-bg.jpg") center center/cover no-repeat;
}
.hero-shade{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,#020506 0%,rgba(2,5,6,.96) 28%,rgba(2,5,6,.60) 54%,rgba(2,5,6,.12) 100%);
}
.hero-inner{
  min-height:610px;
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  padding-top:20px;
}
.gold-line{
  width:76px;
  height:4px;
  background:var(--gold);
  margin-bottom:38px;
}
.hero h1{
  margin:0;
  text-transform:uppercase;
  font-size:clamp(62px,9vw,106px);
  line-height:.98;
  font-weight:900;
  letter-spacing:.055em;
}
.hero h1 span{color:var(--gold2)}
.hero p{
  margin:38px 0 34px;
  font-size:21px;
  line-height:1.48;
  font-weight:500;
}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:.09em;
  min-height:58px;
  padding:0 34px;
  border:2px solid transparent;
}
.gold-button{
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#050607;
}
.outline-button{
  border-color:var(--gold);
  color:var(--gold2);
}
.black-button{
  background:#040607;
  color:#fff;
}
.features{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:linear-gradient(180deg,#05090b,#071012);
  border-bottom:1px solid var(--line);
  padding:38px 5%;
}
.feature{
  text-align:center;
  padding:28px 38px;
  border-right:1px solid var(--line);
}
.feature:last-child{border-right:0}
svg{
  width:54px;
  height:54px;
  stroke:var(--gold);
  fill:none;
  stroke-width:3;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.feature h3,.card h3{
  text-transform:uppercase;
  font-size:18px;
  line-height:1.28;
  letter-spacing:.055em;
  margin:22px 0 18px;
}
.feature p,.card p,.about-copy p,.footer p{
  color:var(--muted);
  line-height:1.65;
}
.about{
  background:linear-gradient(90deg,#040708 0%,#05090b 45%,#090f10 100%);
  border-bottom:1px solid var(--line);
}
.about-grid{
  display:grid;
  grid-template-columns:42% 58%;
  min-height:520px;
}
.about-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:72px 0;
  max-width:470px;
}
.eyebrow{
  color:var(--gold);
  text-transform:uppercase;
  font-size:13px;
  font-weight:900;
  letter-spacing:.07em;
  margin:0 0 20px;
}
h2{
  margin:0 0 30px;
  text-transform:uppercase;
  font-size:clamp(35px,4vw,50px);
  line-height:1.14;
  font-weight:500;
  letter-spacing:.03em;
}
h2 span{color:var(--gold)}
.about-copy .button{width:max-content;margin-top:22px}
.about-image{
  min-height:520px;
  overflow:hidden;
}
.about-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.services{
  padding:68px 0 78px;
  background:radial-gradient(circle at 50% 15%,#091116 0%,#030607 68%);
  border-bottom:1px solid var(--line);
  text-align:center;
}
.center{text-align:center}
.cards{
  margin:38px 0 32px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.card{
  min-height:276px;
  padding:43px 24px 36px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.018);
}
.card p{margin-bottom:0}
.card:after{
  content:"";
  display:block;
  width:46px;
  height:3px;
  background:var(--gold);
  margin:22px auto 0;
}
.service-button{margin:auto}
.testimonial{
  background:#030607;
  border-bottom:1px solid var(--line);
  padding:52px 0 42px;
}
.testimonial-grid{
  display:grid;
  grid-template-columns:112px 1fr;
  align-items:start;
  gap:28px;
}
.quote{
  color:var(--gold2);
  font-family:Georgia,serif;
  font-size:135px;
  line-height:.75;
}
blockquote{
  margin:0;
  max-width:950px;
  font-size:24px;
  line-height:1.55;
  color:#fff;
}
.testimonial p{
  color:var(--gold);
  font-weight:700;
  margin:18px 0;
}
.dots{display:flex;gap:13px;justify-content:center}
.dots span{
  width:11px;height:11px;border-radius:50%;
  background:rgba(255,255,255,.38);
}
.dots span:first-child{background:var(--gold)}
.cta{
  background:linear-gradient(135deg,var(--gold),var(--gold2),var(--gold));
  color:#050607;
}
.cta-grid{
  min-height:116px;
  display:grid;
  grid-template-columns:1.15fr 1.35fr auto;
  gap:34px;
  align-items:center;
}
.cta-title{
  display:flex;
  align-items:center;
  gap:20px;
  border-right:1px solid rgba(0,0,0,.35);
}
.cta-title svg{
  width:72px;
  height:72px;
  stroke:#050607;
  flex:0 0 auto;
}
.cta-title h2{
  font-weight:900;
  font-size:27px;
  line-height:1.16;
  margin:0;
}
.cta p{
  margin:0;
  font-size:17px;
  line-height:1.5;
  font-weight:600;
}
.footer{
  background:#030607;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.55fr 1fr 1fr;
  gap:58px;
  padding:46px 0 38px;
}
.footer-grid>div:not(:last-child){
  border-right:1px solid var(--line);
}
.footer .brand-mark{font-size:48px;min-width:48px}
.footer .brand-text{font-size:16px}
.footer h3{
  color:var(--gold);
  text-transform:uppercase;
  font-size:14px;
  margin:0 0 16px;
}
.footer a{display:block;margin:8px 0;color:#f2f2ee}
.footer p{margin:0 0 8px}
.footer p span{
  color:var(--gold);
  display:inline-block;
  width:26px;
}
.footer p a{display:inline;margin:0}
.socials{display:flex;gap:18px;margin-top:18px}
.socials a{color:var(--gold);font-weight:900;font-size:22px}
.footer-bottom{
  border-top:1px solid var(--line);
  color:#bdbdb8;
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:16px 5.5%;
  font-size:13px;
}
.footer-bottom p{margin:0}
.footer-bottom a{margin-left:40px;color:#d8d8d2}
@media (max-width:1000px){
  .header{height:auto;min-height:84px;align-items:flex-start;padding:20px 5%;gap:20px}
  .menu-button{
    display:flex;
    flex-direction:column;
    gap:5px;
    background:transparent;
    border:1px solid var(--gold);
    padding:12px;
    margin-top:4px;
  }
  .menu-button span{display:block;width:24px;height:2px;background:var(--gold)}
  .nav{
    display:none;
    position:absolute;
    left:0;right:0;top:84px;
    background:#030506;
    padding:20px 5%;
    border-top:1px solid var(--line);
    flex-wrap:wrap;
  }
  .menu-open .nav{display:flex}
  .hero,.hero-inner{min-height:570px}
  .features,.cards,.about-grid,.cta-grid,.footer-grid{grid-template-columns:1fr}
  .feature{border-right:0;border-bottom:1px solid var(--line)}
  .feature:last-child{border-bottom:0}
  .about-copy{max-width:none}
  .about-image{min-height:auto}
  .testimonial-grid{grid-template-columns:1fr}
  .quote{font-size:110px}
  blockquote{font-size:21px}
  .cta-grid{padding:28px 0}
  .cta-title{border-right:0;border-bottom:1px solid rgba(0,0,0,.25);padding-bottom:20px}
  .footer-grid>div:not(:last-child){border-right:0;border-bottom:1px solid var(--line);padding-bottom:28px}
}
@media (max-width:560px){
  .brand{gap:13px}
  .brand-mark{font-size:44px;min-width:44px}
  .brand-text{font-size:14px;letter-spacing:.16em}
  .hero,.hero-inner{min-height:540px}
  .hero-shade{background:linear-gradient(90deg,#020506 0%,rgba(2,5,6,.88) 72%,rgba(2,5,6,.42) 100%)}
  .hero h1{font-size:56px}
  .hero p{font-size:17px}
  .features{padding:20px 5%}
  .feature{padding:28px 10px}
  .cards{gap:16px}
  .footer-bottom{flex-direction:column}
  .footer-bottom a{margin-left:0;margin-right:24px}
}
