*{box-sizing:border-box}
:root{
  --gold:#d1a45a;
  --gold-soft:#eed6ad;
  --gold-line:rgba(209,164,90,.5);
  --white-soft:rgba(255,248,235,.92);
  --text-muted:rgba(248,232,204,.78);
  --bg-dark:#090706;
}

html,body{
  margin:0;
  min-height:100%;
  background:var(--bg-dark);
}

body{
  color:var(--gold-soft);
  font-family:Georgia,"Times New Roman",serif;
  overflow-x:hidden;
}

.page-fade{
  position:fixed;
  inset:0;
  background:#000;
  pointer-events:none;
  animation:pageFade 1.35s ease forwards;
  z-index:30;
}

.topbar{
  position:fixed;
  inset:0 0 auto 0;
  z-index:20;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 22px;
  letter-spacing:.28em;
  font-size:11px;
  text-transform:uppercase;
}

.topbar a{
  color:rgba(241,213,164,.92);
  text-decoration:none;
}

.hero{
  position:relative;
  min-height:100svh;
  display:grid;
  place-items:center;
  padding:90px 20px 36px;
  background:
    linear-gradient(to bottom, rgba(7,5,4,.38), rgba(7,5,4,.42)),
    url("images/background.png") center center/cover no-repeat;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,.28), rgba(0,0,0,.18) 28%, rgba(0,0,0,.52) 100%);
  z-index:1;
}

.hero-vignette{
  position:absolute;
  inset:0;
  background:radial-gradient(circle at center, rgba(255,220,168,.10) 0%, rgba(0,0,0,.08) 33%, rgba(0,0,0,.72) 100%);
  z-index:2;
}

.hero-content{
  position:relative;
  z-index:3;
  width:min(100%,860px);
  text-align:center;
  animation:contentRise 1.6s ease both;
}

.logo{
  width:min(70vw,430px);
  max-width:430px;
  display:block;
  margin:0 auto 26px;
  filter:drop-shadow(0 10px 30px rgba(0,0,0,.35));
  animation:logoFade 2s ease both;
}

.eyebrow{
  margin-bottom:12px;
  color:rgba(232,202,156,.82);
  letter-spacing:.44em;
  font-size:clamp(10px,1vw,12px);
  text-transform:uppercase;
}

.title{
  margin:0;
  color:var(--gold-soft);
  line-height:.95;
  text-shadow:0 8px 24px rgba(0,0,0,.28);
}

.title span{
  display:block;
  font-size:clamp(34px,7vw,78px);
  letter-spacing:.12em;
  font-weight:400;
}

.title strong{
  display:block;
  margin-top:12px;
  font-size:clamp(30px,5.2vw,56px);
  letter-spacing:.16em;
  font-weight:400;
}

.subtitle{
  width:min(100%,720px);
  margin:26px auto 0;
  color:var(--text-muted);
  font-size:clamp(15px,1.5vw,24px);
  line-height:1.72;
}

.actions{
  margin-top:34px;
  display:flex;
  gap:14px;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
}

.btn{
  min-width:240px;
  padding:15px 26px;
  border:1px solid var(--gold-line);
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:12px;
  transition:all .25s ease;
}

.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 30px rgba(0,0,0,.3);
}

.btn-primary{
  background:var(--gold);
  color:#130d07;
}

.btn-primary:hover{
  background:#e1b86d;
}

.btn-secondary{
  background:rgba(17,11,7,.25);
  color:var(--gold-soft);
  backdrop-filter:blur(2px);
}

.btn-secondary:hover{
  background:rgba(209,164,90,.18);
}

.social{
  margin-top:20px;
  display:inline-flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  color:rgba(233,210,165,.7);
  letter-spacing:3px;
  font-size:10px;
  text-transform:uppercase;
  opacity:0.7;
}

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

.contact-block{
  margin-top:32px;
}

.contact-label{
  margin-bottom:10px;
  color:rgba(232,202,156,.62);
  letter-spacing:.4em;
  font-size:10px;
  text-transform:uppercase;
}

.contact-email{
  color:var(--white-soft);
  text-decoration:none;
  font-size:18px;
  letter-spacing:1px;
  opacity:0.75;
}

@keyframes pageFade{
  from{opacity:1}
  to{opacity:0;visibility:hidden}
}

@keyframes logoFade{
  from{
    opacity:0;
    transform:translateY(16px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes contentRise{
  from{
    opacity:0;
    transform:translateY(22px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@media (max-width:991px){
  .hero{
    background-position:center center;
    padding-top:88px;
  }

  .logo{
    width:min(74vw,360px);
    margin-bottom:22px;
  }

  .subtitle{
    width:min(100%,620px);
  }

  .btn{
    min-width:220px;
  }
}

@media (max-width:767px){
  .topbar{
    padding:14px 14px;
    font-size:9px;
    letter-spacing:.18em;
  }

  .topbar-contact{
    max-width:48vw;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    text-align:right;
  }

  .hero{
    min-height:100svh;
    padding:84px 16px 24px;
    background-position:52% center;
  }

  .hero-content{
    width:100%;
    max-width:430px;
  }

  .logo{
    width:min(82vw,300px);
    margin-bottom:18px;
  }

  .eyebrow{
    margin-bottom:10px;
    letter-spacing:.34em;
    font-size:9px;
  }

  .title span{
    font-size:clamp(24px,11vw,42px);
    letter-spacing:.1em;
  }

  .title strong{
    margin-top:10px;
    font-size:clamp(22px,9vw,34px);
    letter-spacing:.14em;
  }

  .subtitle{
    margin-top:20px;
    font-size:14px;
    line-height:1.65;
    max-width:320px;
  }

  .actions{
    margin-top:24px;
    flex-direction:column;
    gap:10px;
  }

  .btn{
    width:min(100%,290px);
    min-width:0;
    padding:14px 18px;
    font-size:11px;
    letter-spacing:.18em;
  }

  .social{
    margin-top:16px;
    gap:8px;
    letter-spacing:3px;
    font-size:9px;
    opacity:0.7;
  }

  .contact-block{
    margin-top:24px;
  }

  .contact-label{
    font-size:9px;
    letter-spacing:.32em;
  }

  .contact-email{
    font-size:18px;
    word-break:break-word;
  }
}

@media (max-width:420px){
  .topbar{
    font-size:8px;
  }

  .hero{
    background-position:54% center;
    padding-left:14px;
    padding-right:14px;
  }

  .logo{
    width:min(84vw,270px);
  }

  .subtitle{
    max-width:300px;
    font-size:13px;
  }

  .contact-email{
    font-size:17px;
  }
}