: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,.42);

  --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;
}

/* Background */
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.05) brightness(.98);
}

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,.10), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.42) 55%, rgba(0,0,0,.78) 100%);
}

/* Language switcher */
.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);
}

/* Modal open state */
body.modal-open .heroCenter{
  filter:blur(10px) saturate(.95);
  opacity:.22;
  transform:scale(.992);
  transition:filter .22s ease, opacity .22s ease, transform .22s ease;
  pointer-events:none;
  user-select:none;
}

body.modal-open .topbar{
  filter:blur(6px);
  opacity:.55;
  transition:filter .22s ease, opacity .22s ease;
}

/* Top glow */
.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(10px) saturate(130%);
  -webkit-backdrop-filter:blur(10px) saturate(130%);
  background:linear-gradient(180deg, rgba(5,6,7,.62), 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,.22) 18%,
    rgba(216,178,106,.70) 50%,
    rgba(216,178,106,.22) 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:210px;
}

.logo{
  width:38px;
  height:38px;
  border-radius:12px;
  overflow:hidden;
  background:rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 14px 30px rgba(0,0,0,.35);
  display:grid;
  place-items:center;
  flex:0 0 auto;
}

.logo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.brandText{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}

.brandTop{
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:rgba(255,255,255,.92);
  text-shadow:0 14px 40px rgba(0,0,0,.35);
}

.brandSub{
  font-size:11px;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:rgba(255,255,255,.72);
  margin-top:4px;
}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}

.nav a{
  color:rgba(255,255,255,.92);
  text-decoration:none;
  font-weight:700;
  font-size:13px;
  letter-spacing:.02em;
  opacity:.92;
  transition:opacity .16s var(--ease), transform .16s var(--ease);
  text-shadow:0 14px 40px rgba(0,0,0,.35);
}

.nav a:hover{
  opacity:1;
  transform:translateY(-1px);
}

.nav .pill{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(216,178,106,.32);
  background:linear-gradient(135deg, rgba(122,31,43,.92), rgba(216,178,106,.82));
  color:#fff;
}

/* Burger */
.burger{
  display:none;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.18);
  color:#fff;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  box-shadow:0 14px 35px rgba(0,0,0,.25);
  transition:transform .16s var(--ease), background .16s var(--ease);
}

.burger:hover{
  transform:translateY(-1px);
  background:rgba(0,0,0,.26);
}

.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 menu */
.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:800;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.18);
}

.mobileMenu a:hover{
  background:rgba(0,0,0,.26);
}

.mobileMenu a.pill{
  border-color:rgba(216,178,106,.30);
  background:linear-gradient(135deg, rgba(122,31,43,.92), rgba(216,178,106,.82));
}

body.menu-open .mobileMenu{
  max-height:380px;
  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:26px 14px 40px;
  transition:filter .22s ease, opacity .22s ease, transform .22s ease;
}

.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,.28), rgba(0,0,0,0) 70%);
  margin-bottom:16px;
}

.kicker span{
  font-size:12px;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:#fff;
  text-shadow:0 14px 40px rgba(0,0,0,.35);
}

.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,.18), 0 6px 18px rgba(0,0,0,.45);
  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 18px 60px rgba(0,0,0,.38);
}

.hairline{
  width:560px;
  max-width:86vw;
  height:1px;
  margin:16px auto 14px;
  background:linear-gradient(90deg, transparent, rgba(216,178,106,.70), transparent);
}

.subline{
  color:rgba(255,255,255,.86);
  font-size:15px;
  line-height:1.65;
  max-width:72ch;
  margin:0 auto;
}

.subline--top{
  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 22px 70px rgba(0,0,0,.40);
}

.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:3000;
}

.modal.open{
  display:block;
}

.backdrop{
  position:absolute;
  inset:0;
  background:rgba(2,6,23,.55);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  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(640px, 94vw);
  background:
    radial-gradient(1200px 500px at 20% 0%, rgba(255,255,255,.12), transparent 52%),
    linear-gradient(180deg, rgba(10,12,14,.62), rgba(10,12,14,.44));
  border:1px solid rgba(255,255,255,.16);
  border-radius:22px;
  box-shadow:var(--shadow);
  -webkit-backdrop-filter:blur(16px) saturate(135%);
  backdrop-filter:blur(16px) saturate(135%);
  overflow:hidden;
  opacity:0;
  transform:translateY(14px) scale(.985);
  transition:transform .24s cubic-bezier(.2,.9,.2,1), opacity .22s ease;
}

.modal.open .panel{
  opacity:1;
  transform:translateY(0) scale(1);
}

.panel-top{
  height:7px;
  background:linear-gradient(
    90deg,
    rgba(216,178,106,.20),
    rgba(216,178,106,.78),
    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:12px;
  margin:8px 0 10px;
}

.modalTitle{
  margin:0;
  font-family:var(--title);
  font-weight:500;
  font-size:20px;
  letter-spacing:.10em;
  text-transform:uppercase;
  line-height:1.15;
}

.modalSub{
  margin:6px 0 0;
  color:rgba(255,255,255,.78);
  font-weight:600;
  font-size:12px;
  letter-spacing:.02em;
}

.close-x{
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.18);
  color:#fff;
  width:40px;
  height:40px;
  border-radius:14px;
  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);
  box-shadow:0 14px 30px rgba(0,0,0,.25);
  background:rgba(0,0,0,.26);
}

.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;
}

.msg.ok{
  background:rgba(236,253,245,.92);
  border:1px solid rgba(187,247,208,.92);
  color:#065f46;
}

form{
  display:grid;
  gap:12px;
  margin-top:10px;
}

label{
  font-weight:800;
  font-size:12px;
  color:rgba(255,255,255,.92);
  letter-spacing:.03em;
  text-transform:uppercase;
}

input{
  width:100%;
  padding:12px 12px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:14px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:15px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
}

input::placeholder{
  color:rgba(255,255,255,.55);
}

input:focus{
  outline:none;
  box-shadow:
    0 0 0 3px rgba(216,178,106,.16),
    inset 0 1px 0 rgba(255,255,255,.06);
  border-color:rgba(216,178,106,.44);
  background:rgba(255,255,255,.10);
}

.grid2{
  display:grid;
  gap:12px;
  grid-template-columns:1fr;
}

.hint{
  color:rgba(255,255,255,.74);
  font-size:12px;
  margin-top:-4px;
}

.btnRow{
  display:flex;
  gap:10px;
  align-items:center;
  margin-top:10px;
  flex-wrap:wrap;
}

.btn2{
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.22);
  color:#fff;
  padding:12px 16px;
  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:150px;
}

.btn2:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 30px rgba(0,0,0,.22);
  background:rgba(0,0,0,.30);
}

.btn2Primary{
  background:linear-gradient(135deg, rgba(122,31,43,.95), rgba(216,178,106,.85));
  border-color:rgba(216,178,106,.35);
}

.links{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top:12px;
  flex-wrap:wrap;
}

.link-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 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(255,255,255,.08);
}

.link-btn:hover{
  background:rgba(255,255,255,.12);
}

@media (min-width:620px){
  .grid2{
    grid-template-columns:1fr 1fr;
  }

  .grid2 .full{
    grid-column:1 / -1;
  }
}

@media (max-width:820px){
  .nav{ display:none; }
  .burger{ display:flex; }
}

@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;
  }
}

@media (prefers-reduced-motion: reduce){
  .mobileMenu{
    transition:none;
    transform:none;
    filter:none;
  }

  body.modal-open .heroCenter,
  body.modal-open .topbar{
    transition:none;
  }

  .panel{
    transition:none;
    transform:none;
    opacity:1;
  }

  .langBar{
    transition:none;
  }
}