:root{
  --title: "Cormorant SC", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --script:"Great Vibes", cursive;

  --white: rgba(255,255,255,.96);
  --white2: rgba(255,255,255,.86);
  --white3: rgba(255,255,255,.72);

  --gold:#d8b26a;
  --ease:cubic-bezier(.2,.8,.2,1);

  --shadow:0 28px 70px rgba(2,6,23,.44);
  --r:18px;

  --max:1180px;
  --topH:74px;
  --menuDur:220ms;
}

*{ box-sizing:border-box; }
html,body{ height:100%; margin:0; }
html{ scroll-behavior:smooth; }

body{
  font:16px/1.55 var(--sans);
  color:var(--white);
  background:#050607;
  min-height:100svh;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-2;
  background:center/cover no-repeat fixed;
  transform:scale(1.04);
  filter:contrast(1.06) saturate(1.04) brightness(.96);
}

body::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:
    radial-gradient(1200px 680px at 50% 18%, rgba(0,0,0,.12), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.46) 55%, rgba(0,0,0,.82) 100%);
}

/* language */
.langBar{
  position:fixed;
  top:16px;
  right:16px;
  z-index:4000;
  user-select:none;
  opacity:.92;
  transform:translateY(0);
  transition:opacity .35s var(--ease), transform .35s var(--ease);
}
.langBar.is-hidden{
  opacity:0;
  transform:translateY(-6px);
  pointer-events:none;
}
.langPill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(10,12,14,.22);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:
    0 18px 60px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter:blur(18px) saturate(155%);
  -webkit-backdrop-filter:blur(18px) saturate(155%);
}
.langLink{
  width:34px;
  height:28px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border:1px solid transparent;
  background:transparent;
  transition:transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
}
.langLink:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.06);
}
.langLink.isActive{
  border-color:rgba(216,178,106,.45);
  background:rgba(216,178,106,.08);
  box-shadow:0 8px 22px rgba(0,0,0,.25);
}
.flagSvg{
  width:18px;
  height:18px;
  display:block;
  filter:saturate(.98) contrast(1.03);
}

.top-glow{
  height:2px;
  background:linear-gradient(90deg,
    transparent 0%,
    rgba(216,178,106,.18) 18%,
    rgba(216,178,106,.52) 50%,
    rgba(216,178,106,.18) 82%,
    transparent 100%
  );
  opacity:.9;
}

/* topbar */
.topbar{
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter:blur(12px) saturate(135%);
  -webkit-backdrop-filter:blur(12px) saturate(135%);
  background:linear-gradient(180deg, rgba(5,6,7,.68), rgba(5,6,7,.22));
  border-bottom:1px solid rgba(255,255,255,.10);
}
.topbar::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:1px;
  background:linear-gradient(90deg,
    transparent 0%,
    rgba(216,178,106,.18) 18%,
    rgba(216,178,106,.55) 50%,
    rgba(216,178,106,.18) 82%,
    transparent 100%
  );
  pointer-events:none;
  opacity:.95;
}
.topinner{
  height:var(--topH);
  max-width:var(--max);
  margin:0 auto;
  padding:0 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  position:relative;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--white);
  min-width:200px;
}
.brandMark{
  width:34px;
  height:34px;
  border-radius:12px;
  background:radial-gradient(circle at 30% 30%, rgba(243,217,154,.95), rgba(202,162,74,.86));
  box-shadow:0 18px 44px rgba(0,0,0,.38);
  display:grid;
  place-items:center;
  font-family:var(--title);
  color:rgba(18,18,18,.92);
  font-weight:600;
  letter-spacing:.06em;
}
.brandText{ display:flex; flex-direction:column; line-height:1.05; }
.brandTop{
  font-size:12px;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:rgba(255,255,255,.92);
  text-shadow:0 18px 60px rgba(0,0,0,.40);
}
.brandSub{
  font-size:11px;
  letter-spacing:.30em;
  text-transform:uppercase;
  color:rgba(255,255,255,.70);
  margin-top:4px;
}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav a{
  color:rgba(255,255,255,.92);
  text-decoration:none;
  font-weight:800;
  font-size:13px;
  letter-spacing:.02em;
  opacity:.92;
  transition:opacity .16s var(--ease), transform .16s var(--ease);
  text-shadow:0 18px 60px rgba(0,0,0,.40);
}
.nav a:hover{
  opacity:1;
  transform:translateY(-1px);
}
.nav .pill{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(216,178,106,.34);
  background:linear-gradient(135deg, rgba(92,24,33,.96), rgba(216,178,106,.78));
  color:#fff;
  box-shadow:0 18px 44px rgba(0,0,0,.22);
}

/* burger */
.burger{
  display:none;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.16);
  color:#fff;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  box-shadow:0 18px 44px rgba(0,0,0,.22);
  transition:transform .16s var(--ease), background .16s var(--ease);
}
.burger:hover{
  transform:translateY(-1px);
  background:rgba(0,0,0,.24);
}
.burger:focus-visible{
  outline:3px solid rgba(216,178,106,.35);
  outline-offset:2px;
}
.burgerLines{ width:18px; height:12px; position:relative; }
.burgerLines span{
  position:absolute;
  left:0;
  right:0;
  height:2px;
  border-radius:2px;
  background:rgba(255,255,255,.92);
  transition:transform .18s var(--ease), top .18s var(--ease), opacity .18s var(--ease);
}
.burgerLines span:nth-child(1){ top:0; }
.burgerLines span:nth-child(2){ top:5px; opacity:.92; }
.burgerLines span:nth-child(3){ top:10px; }

/* mobile */
.mobileMenu{
  display:block;
  border-top:1px solid rgba(255,255,255,.10);
  background:rgba(5,6,7,.34);
  backdrop-filter:blur(12px) saturate(140%);
  -webkit-backdrop-filter:blur(12px) saturate(140%);
  overflow:hidden;
  max-height:0;
  opacity:0;
  transform:translateY(-10px);
  filter:blur(8px);
  pointer-events:none;
  transition:
    max-height var(--menuDur) var(--ease),
    opacity var(--menuDur) var(--ease),
    transform var(--menuDur) var(--ease),
    filter var(--menuDur) var(--ease);
}
.mobileMenu .inner{
  max-width:var(--max);
  margin:0 auto;
  padding:10px 14px 14px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.mobileMenu a{
  text-decoration:none;
  color:rgba(255,255,255,.92);
  font-weight:900;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.16);
}
.mobileMenu a:hover{ background:rgba(0,0,0,.24); }
.mobileMenu a.pill{
  border-color:rgba(216,178,106,.30);
  background:linear-gradient(135deg, rgba(92,24,33,.96), rgba(216,178,106,.78));
}
body.menu-open .mobileMenu{
  max-height:320px;
  opacity:1;
  transform:translateY(0);
  filter:blur(0);
  pointer-events:auto;
}
body.menu-open .burgerLines span:nth-child(1){ top:5px; transform:rotate(45deg); }
body.menu-open .burgerLines span:nth-child(2){ opacity:0; }
body.menu-open .burgerLines span:nth-child(3){ top:5px; transform:rotate(-45deg); }

/* hero */
.heroCenter{
  min-height:calc(100svh - var(--topH) - 2px);
  display:grid;
  place-items:center;
  padding:28px 14px 44px;
}
.heroCard{
  width:min(980px, 92vw);
  text-align:center;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 14px;
  border-radius:999px;
  background:radial-gradient(ellipse at center, rgba(0,0,0,.26), rgba(0,0,0,0) 72%);
  margin-bottom:16px;
}
.kicker span{
  font-size:12px;
  letter-spacing:.34em;
  text-transform:uppercase;
  color:#fff;
  text-shadow:0 18px 60px rgba(0,0,0,.40);
}
.kicker i{
  width:7px;
  height:7px;
  border-radius:50%;
  background:radial-gradient(circle at 30% 30%, #f3d99a, #caa24a);
  box-shadow:0 0 0 4px rgba(216,178,106,.16), 0 10px 24px rgba(0,0,0,.48);
  display:inline-block;
}
.bigTitle{
  font-family:var(--title);
  font-weight:500;
  font-size:clamp(40px, 6.2vw, 78px);
  letter-spacing:.10em;
  text-transform:uppercase;
  margin:0;
  color:var(--white);
  text-shadow:0 20px 70px rgba(0,0,0,.42);
}
.hairline{
  width:560px;
  max-width:86vw;
  height:1px;
  margin:16px auto 14px;
  background:linear-gradient(90deg, transparent, rgba(216,178,106,.72), transparent);
}
.subline{
  color:rgba(255,255,255,.86);
  font-size:15px;
  line-height:1.65;
  max-width:74ch;
  margin:0 auto;
}
.sublineTop{ margin-top:14px; }
.script{
  margin-top:14px;
  font-family:var(--script);
  font-size:clamp(28px, 4vw, 48px);
  color:rgba(255,255,255,.92);
  text-shadow:0 24px 80px rgba(0,0,0,.44);
}

.factBox{
  width:min(760px, 92vw);
  margin:18px auto 0;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.18);
  -webkit-backdrop-filter:blur(12px) saturate(140%);
  backdrop-filter:blur(12px) saturate(140%);
  box-shadow:0 22px 70px rgba(0,0,0,.30);
}
.factTitle{
  font-family:var(--title);
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12px;
  color:rgba(255,255,255,.88);
  margin:0 0 6px 0;
}
.factText{
  margin:0;
  color:rgba(255,255,255,.86);
  font-weight:600;
  line-height:1.7;
  font-size:14px;
}

/* modal */
.modal{ position:fixed; inset:0; display:none; z-index:2000; }
.modal.open{ display:block; }

.backdrop{
  position:absolute;
  inset:0;
  background:rgba(2,6,23,.46);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  opacity:0;
  transition:opacity .22s ease;
}
.modal.open .backdrop{ opacity:1; }

.panel-wrap{
  position:relative;
  height:100%;
  display:grid;
  place-items:center;
  padding:24px 12px;
}
.panel{
  width:min(440px, 92vw);
  background:rgba(255,255,255,.13);
  border:1px solid rgba(255,255,255,.18);
  border-radius:var(--r);
  box-shadow:var(--shadow);
  -webkit-backdrop-filter:blur(16px) saturate(140%);
  backdrop-filter:blur(16px) saturate(140%);
  overflow:visible;
  position:relative;
}
.panel-top{
  height:7px;
  border-radius:var(--r) var(--r) 0 0;
  background:linear-gradient(90deg,
    rgba(216,178,106,.20),
    rgba(216,178,106,.75),
    rgba(216,178,106,.20)
  );
  opacity:.95;
}
.panel-inner{
  padding:18px 18px 16px;
  color:rgba(255,255,255,.92);
}

.head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  margin:6px 0 10px;
}
.modalTitle{
  margin:0;
  font-family:var(--title);
  font-weight:500;
  font-size:18px;
  letter-spacing:.10em;
  text-transform:uppercase;
  line-height:1.2;
}
.modalSub{
  margin:6px 0 0;
  color:rgba(255,255,255,.76);
  font-weight:650;
  font-size:12px;
  letter-spacing:.02em;
}

.close-x{
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.16);
  color:#fff;
  width:38px;
  height:38px;
  border-radius:12px;
  cursor:pointer;
  font-weight:900;
  display:grid;
  place-items:center;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.close-x:hover{
  transform:translateY(-1px);
  background:rgba(0,0,0,.24);
  box-shadow:0 16px 40px rgba(0,0,0,.24);
}
.close-x:focus-visible{
  outline:3px solid rgba(216,178,106,.35);
  outline-offset:2px;
}

.msg{
  padding:10px 12px;
  border-radius:14px;
  margin:10px 0 8px;
  font-weight:800;
  font-size:14px;
}
.msg.err{
  background:rgba(254,226,226,.92);
  border:1px solid rgba(254,202,202,.92);
  color:#7f1d1d;
}

form{ display:grid; gap:12px; margin-top:10px; }
label{
  font-weight:850;
  font-size:12px;
  color:rgba(255,255,255,.90);
  letter-spacing:.02em;
}

input{
  width:100%;
  padding:12px 12px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:14px;
  background:rgba(0,0,0,.20);
  color:#fff;
  font-size:15px;
}
input::placeholder{ color:rgba(255,255,255,.55); }
input:focus{
  outline:none;
  box-shadow:0 0 0 3px rgba(216,178,106,.18);
  border-color:rgba(216,178,106,.44);
}

.hint{
  color:rgba(255,255,255,.76);
  font-size:12px;
  line-height:1.45;
  margin-top:8px;
  padding-left:2px;
}

.btnRow{
  display:flex;
  gap:10px;
  align-items:center;
  margin-top:14px;
  flex-wrap:wrap;
}
.btn2{
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.18);
  color:#fff;
  padding:11px 14px;
  border-radius:14px;
  cursor:pointer;
  font-weight:900;
  font-size:14px;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:110px;
}
.btn2:hover{
  transform:translateY(-1px);
  box-shadow:0 16px 40px rgba(0,0,0,.22);
  background:rgba(0,0,0,.26);
}
.btn2Primary{
  background:linear-gradient(135deg, rgba(92,24,33,.96), rgba(216,178,106,.78));
  border-color:rgba(216,178,106,.32);
}

.links{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top:10px;
  flex-wrap:wrap;
}
.link-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border-radius:14px;
  font-weight:900;
  text-decoration:none;
  font-size:13px;
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
  background:rgba(0,0,0,.16);
}
.link-btn:hover{ background:rgba(0,0,0,.24); }

@media (max-width:820px){
  .nav{ display:none; }
  .burger{ display:flex; }
}

@media (prefers-reduced-motion: reduce){
  .mobileMenu{ transition:none; transform:none; filter:none; }
  .langBar{ transition:none; }
}

@media (max-width:700px){
  .langBar{ top:12px; right:12px; }
  .langPill{ padding:7px 9px; gap:7px; }
  .langLink{ width:32px; height:26px; }
  .flagSvg{ width:17px; height:17px; }
}