/* =====================================================
   assets/styles.css (FULL)
===================================================== */

:root{
  --gold:#d6c08a;
  --ivory:#e8e0d2;
}

*{ box-sizing:border-box; }

html, body{
  height:100%;
  margin:0;
  padding:0;
}

body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:#000;
}

/* Hero */
.hero{
  position:relative; /* IMPORTANT: anchor absolute children like .lang */
  min-height:100vh;
  overflow:hidden;
}

.hero__media img{
  width:100%;
  height:100vh;
  object-fit:cover;
  display:block;
}

.hero__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.35),
    rgba(0,0,0,.25) 40%,
    rgba(0,0,0,.45)
  );
}

.hero__content{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: clamp(16px, 5vw, 72px);
}

.hero h1{
  margin:0;
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-weight:600;
  letter-spacing:-0.02em;
  color: var(--gold);
  font-size: clamp(48px, 6vw, 92px);
  line-height: 1.0;
}

.tagline{
  margin: 10px 0 0 0;
  color: var(--ivory);
  font-size: clamp(18px, 2.2vw, 30px);
  line-height: 1.15;
}

.coming{
  position:absolute;
  bottom: 26px;
  color: rgba(232,224,210,.75);
  font-size: 14px;
  letter-spacing: .08em;
}

.meta{
  position:absolute;
  bottom: 52px;
  display:flex;
  gap:10px;
  align-items:center;
  color: rgba(232,224,210,.65);
  font-size: 13px;
}

.meta a{
  color: inherit;
  text-decoration:none;
}
.meta a:hover{ text-decoration:underline; }

/* Language selector */
.lang{
  position:absolute;
  top: 18px;
  right: 18px;
  z-index: 20;
}

.lang__btn{
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(232,224,210,.25);
  color: rgba(232,224,210,.85);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.lang__list{
  list-style:none;
  margin: 8px 0 0 0;
  padding: 8px;
  border-radius: 14px;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(232,224,210,.18);
  display:none;
  min-width: 140px;
}

.lang__list.is-open{ display:block; }

.lang__list button{
  width:100%;
  text-align:left;
  background:transparent;
  border:0;
  color: rgba(232,224,210,.9);
  padding: 8px 10px;
  border-radius: 10px;
  cursor:pointer;
  font-size: 13px;
}

.lang__list button:hover{
  background: rgba(232,224,210,.08);
}

/* Mobile */
@media (max-width: 900px){
  .hero__content{ justify-content:flex-start; padding-top: 12vh; }
  .coming{ bottom: 22px; }
  .meta{ bottom: 48px; }

  /* Mobile language selector repositioning */
  .lang{
    top: auto;
    bottom: 18px;
    right: 18px;
  }
}

/* Legal pages */
.legal{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 40px 18px;
  background:#050505;
  color: rgba(232,224,210,.9);
}

.legal__lang{
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 30;
}

.legal__card{
  width: min(860px, 100%);
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(232,224,210,.12);
  border-radius: 22px;
  padding: clamp(18px, 3.5vw, 34px);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.legal__card h1{
  margin:0 0 14px 0;
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-weight:600;
  letter-spacing:-0.02em;
  color: var(--gold);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.0;
}

.legal__card p{
  margin: 10px 0;
  line-height: 1.5;
  font-size: 16px;
  color: rgba(232,224,210,.86);
}

.legal__links{
  margin-top: 22px;
  display:flex;
  gap:10px;
  align-items:center;
  font-size: 13px;
  color: rgba(232,224,210,.65);
}

.legal__links a{
  color: inherit;
  text-decoration:none;
}
.legal__links a:hover{ text-decoration:underline; }
