
:root{
  --bg:#070707;
  --gold:#d3ad6a;
  --gold2:#f0cf95;
  --white:#f3f0eb;
  --muted:#8d867e;
  --line:rgba(211,173,106,.52);
}
*{box-sizing:border-box}
html,body{margin:0;width:100%;min-height:100%;background:var(--bg);color:var(--white);font-family:Arial,Helvetica,sans-serif}
body{overflow:hidden}
button{font:inherit}

.page{
  position:relative;
  width:100vw;
  height:100vh;
  min-height:720px;
  overflow:hidden;
  background:
    radial-gradient(circle at 72% 45%,rgba(211,173,106,.08),transparent 30%),
    linear-gradient(90deg,#050505 0%,#070707 50%,#0d0c0a 100%);
}

.topbar{
  position:absolute;
  left:5.0vw;
  right:3.4vw;
  top:5.0vh;
  z-index:8;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
}
.logo{
  width:min(470px,31vw);
  height:auto;
  display:block;
}
.language{
  display:flex;
  align-items:center;
  gap:9px;
  font-size:13px;
  letter-spacing:.14em;
  color:#8a837a;
}
.lang{
  border:0;
  background:transparent;
  color:#8a837a;
  cursor:pointer;
  padding:2px;
}
.lang.active{color:var(--gold2)}

.copy{
  position:absolute;
  left:5.35vw;
  top:30.5vh;
  z-index:6;
  width:min(620px,40vw);
}
.eyebrow{
  color:var(--gold);
  font-size:12px;
  letter-spacing:.27em;
  margin-bottom:20px;
}
h1{
  margin:0 0 24px;
  color:#f7f4ef;
  font-weight:300;
  font-size:clamp(60px,5.9vw,94px);
  line-height:.98;
  letter-spacing:.12em;
}
.intro{
  margin:0;
  max-width:590px;
  color:#ded8d0;
  font-size:clamp(18px,1.35vw,22px);
  line-height:1.5;
}
.tagline{
  margin-top:34px;
  color:#dad3cb;
  font-size:12px;
  letter-spacing:.30em;
  white-space:nowrap;
}
.tagline span{color:var(--gold)}

.visual{
  position:absolute;
  right:0;
  top:2.5vh;
  width:53vw;
  height:79vh;
  z-index:2;
  overflow:hidden;
}
.visual:after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,#070707 0%,rgba(7,7,7,.72) 10%,rgba(7,7,7,.06) 36%,rgba(7,7,7,0) 80%),
    linear-gradient(180deg,#070707 0%,transparent 10%,transparent 88%,#070707 100%);
  pointer-events:none;
}
.visual img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center bottom;
  display:block;
  filter:brightness(.95) saturate(.95);
}

footer{
  position:absolute;
  left:3.5vw;
  right:3.5vw;
  bottom:2.7vh;
  z-index:7;
}
.footer-line{
  height:1px;
  width:100%;
  background:var(--line);
}
.footer-row{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  padding-top:15px;
}
.copyright{
  color:#8d867e;
  font-size:11px;
}
.claim{
  color:var(--gold);
  font-size:9px;
  letter-spacing:.28em;
  white-space:nowrap;
  text-align:right;
  padding-top:1px;
}

@media(max-width:900px){
  body{overflow:auto}
  .page{
    min-height:100svh;
    height:auto;
    padding-bottom:92px;
  }
  .topbar{
    position:relative;
    top:auto;left:auto;right:auto;
    padding:22px 22px 0;
  }
  .logo{
    width:min(330px,72vw);
  }
  .copy{
    position:relative;
    left:auto;top:auto;
    width:auto;
    padding:70px 22px 0;
  }
  h1{font-size:clamp(52px,15vw,78px)}
  .intro{font-size:18px;max-width:92vw}
  .tagline{font-size:10px;letter-spacing:.23em;white-space:normal}
  .visual{
    position:relative;
    top:auto;right:auto;
    width:100%;
    height:48vh;
    margin-top:20px;
  }
  .visual:after{
    background:linear-gradient(180deg,#070707 0%,rgba(7,7,7,.12) 12%,rgba(7,7,7,.1) 82%,#070707 100%);
  }
  footer{
    position:relative;
    left:auto;right:auto;bottom:auto;
    margin:0 22px;
  }
  .footer-row{gap:18px}
  .claim{font-size:8px;white-space:normal;max-width:190px}
}
