:root{
  --max: 1180px;
  --gold: #eecf80;
  --gold2:#f3d894;

  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.62);
  --line: rgba(255,255,255,.12);

  --shadow: 0 24px 70px rgba(0,0,0,.55);
  --r: 18px;
}

*{ box-sizing:border-box; }
html,body{ min-height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:#0b0b0b;
  overflow-x:hidden;
}

.wrap{
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.bg{
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url("img/BACKGROUND.png") center/cover no-repeat;
}
.bg::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.52), rgba(0,0,0,.90));
}

/* IMPORTANT: не ставим transform на page/content/body! */
.page{ min-height: 100vh; }

/* header */
.header{
  position: sticky;
  top:0;
  z-index: 100;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header__inner{
  height: 76px;
  display:flex;
  align-items:center;
  justify-content: space-between;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
  color: var(--text);
}
.brand__logo{ width:34px;height:34px; object-fit:contain; }
.brand__text{ font-size:15px; letter-spacing:.02em; }
.brand__text em{ font-style:normal; color:var(--gold); font-weight:900; }
.brand__text b{ font-weight:900; }

.nav{
  display:flex;
  align-items:center;
  gap: 26px;
}
.nav a{
  color: var(--muted);
  text-decoration:none;
  font-size:13px;
  transition: color .18s ease;
}
.nav a:hover{ color: var(--text); }

.nav__cta{
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--gold);
  color:#111 !important;
  font-weight:900;
  transition: filter .18s ease, box-shadow .18s ease;
}
.nav__cta:hover{
  filter: brightness(1.03);
  box-shadow: 0 18px 45px rgba(238,207,128,.20);
}

/* burger */
.burger{
  display:none;
  width:44px;height:44px;
  border-radius:14px;
  border:1px solid rgba(238,207,128,.25);
  background: rgba(0,0,0,.35);
  cursor:pointer;
  position: relative;
}
.burger span{
  position:absolute;
  left:50%;
  width:18px;
  height:2px;
  border-radius:999px;
  background: rgba(238,207,128,.95);
  transform: translateX(-50%);
  transition: transform .22s ease, opacity .18s ease;
}
.burger span:nth-child(1){ top: 15px; }
.burger span:nth-child(2){ top: 21px; }
.burger span:nth-child(3){ top: 27px; }

.burger.is-open span:nth-child(1){ transform: translateX(-50%) rotate(45deg); top: 21px; }
.burger.is-open span:nth-child(2){ opacity: 0; }
.burger.is-open span:nth-child(3){ transform: translateX(-50%) rotate(-45deg); top: 21px; }

/* hero */
.hero{
  padding: 46px 0 8px;
  text-align:center;
}
.hero__title{
  margin:0;
  font-size: clamp(42px, 5vw, 68px);
  line-height:1;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing:.02em;
}
.hero__title span{
  display:block;
  color: var(--gold);
}

.content{
  display:grid;
  grid-template-columns: 1.05fr 1.15fr;
  gap: 40px;
  padding: 18px 0 48px;
}

/* left */
.left__title{
  margin: 14px 0 10px;
  font-size:20px;
  font-weight: 950;
  text-transform: uppercase;
}
.left__text{
  margin:0 0 18px;
  color: var(--muted);
  font-size:14px;
  line-height:1.6;
  max-width: 520px;
}

.mapCard{
  border-radius: var(--r);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  height: 260px;
  background: rgba(255,255,255,.05);
}
.mapCard iframe{
  width:100%;
  height:100%;
  border:0;
}

.contactRow{
  display:flex;
  justify-content: space-between;
  align-items:flex-end;
  gap: 20px;
  margin-top: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contactRow__label{
  color: rgba(255,255,255,.55);
  letter-spacing:.18em;
  font-size:12px;
}
.contactRow__info{
  text-align:right;
  font-weight:800;
}
.contactRow__info a{
  color: var(--text);
  text-decoration:none;
}
.contactRow__info a:hover{ color: var(--gold); }

/* right */
.tabs{
  display:flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.tab{
  border:0;
  background: transparent;
  padding:0;
  cursor:pointer;
  color: rgba(255,255,255,.55);
  font-size:12px;
  font-weight: 950;
  letter-spacing:.14em;
  text-transform: uppercase;
  transition: color .18s ease;
}
.tab.is-active{ color: var(--gold); }

.form{ padding-top: 6px; }

.row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-bottom: 12px;
}

.field{
  position:relative;
  display:block;
  padding-top: 14px;
}
.field__label{
  position:absolute;
  top:0;
  left:0;
  font-size:12px;
  color: rgba(255,255,255,.55);
}
.field__label i{ color: var(--gold); font-style:normal; }

.field input,
.field textarea{
  width:100%;
  background: transparent;
  border:0;
  outline:none;
  color: var(--text);
  font-size:14px;
  padding: 10px 0 12px;
  resize:none;
}

.field__line{
  position:absolute;
  left:0; right:0; bottom:0;
  height:1px;
  background: rgba(255,255,255,.14);
  transition: background .18s ease, height .18s ease;
}
.field input:focus + .field__line,
.field textarea:focus + .field__line{
  background: rgba(238,207,128,.95);
  height:2px;
}
.field--full{ margin-top: 6px; }

.submit{
  width:100%;
  height:56px;
  margin-top: 18px;
  border:0;
  border-radius: 999px;
  background: var(--gold);
  color:#111;
  font-weight: 950;
  letter-spacing:.06em;
  cursor:pointer;
  box-shadow: 0 18px 40px rgba(238,207,128,.18);
  transition: transform .12s ease, filter .18s ease, box-shadow .18s ease;
}
.submit:hover{ filter: brightness(1.02); }
.submit:active{ transform: translateY(1px); }

.submit.is-loading{
  opacity: .75;
  cursor: wait;
}

.fineprint{
  margin: 12px 0 0;
  color: rgba(255,255,255,.45);
  font-size: 11px;
  line-height: 1.45;
  text-align:center;
}
.fineprint__link{
  color: rgba(255,255,255,.78);
  text-decoration: underline;
  text-decoration-color: rgba(238,207,128,.65);
  text-underline-offset: 3px;
  transition: .2s;
}
.fineprint__link:hover{
  color: var(--gold);
  text-decoration-color: var(--gold);
}

.status{
  margin-top: 12px;
  min-height: 18px;
  text-align:center;
  font-size: 13px;
  color: rgba(255,255,255,.85);
}

/* footer */
.footer{
  margin-top: 40px;
  padding: 34px 0 26px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
}
.footer__inner{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items:start;
}
.footer__brand{
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.footer__brand img{ width:34px;height:34px; }
.footer__name{ font-weight: 950; }
.footer__name em{ font-style:normal; color: var(--gold); font-weight:950; }
.footer__brand p{
  margin:8px 0 0;
  color: rgba(255,255,255,.55);
  font-size:13px;
  line-height:1.5;
  max-width: 420px;
}

.footer__cols{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.footer__title{
  font-size: 11px;
  letter-spacing:.16em;
  font-weight: 950;
  color: rgba(255,255,255,.70);
  margin-bottom: 10px;
}
.footer__col a{
  display:block;
  padding: 6px 0;
  color: rgba(255,255,255,.55);
  text-decoration:none;
  font-size:13px;
}
.footer__col a:hover{ color: var(--text); }

.footer__bottom{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.06);
  display:flex;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255,255,255,.45);
  font-size:12px;
}
.credit{
  color: rgba(255,255,255,.55);
  text-decoration:none;
  border-bottom: 1px solid rgba(255,255,255,.18);
  padding-bottom: 1px;
  transition: .2s;
}
.credit:hover{
  color: var(--gold);
  border-bottom-color: rgba(238,207,128,.7);
}

.captchaSlot{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 14px;
}

/* badge мы переносим в .captchaSlot через JS, и делаем не fixed */
.captchaSlot .grecaptcha-badge{
  position: static !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  top: auto !important;

  transform: none !important;
  margin: 0 auto !important;

  box-shadow: none !important;
  overflow: visible !important;
  z-index: 1 !important;
}

/* чтобы badge не прилипал к краям на мобилке */
@media (max-width: 760px){
  .captchaSlot{ margin-top: 12px; }
}

/* responsive */
@media (max-width: 980px){
  .content{ grid-template-columns: 1fr; gap: 28px; }
  .contactRow{ align-items:flex-start; }
  .contactRow__info{ text-align:left; }
}

@media (max-width: 760px){
  .wrap{ width: min(var(--max), calc(100% - 28px)); }
  .burger{ display:inline-flex; }

  .nav{
    position: fixed;
    top: 76px;
    left: 14px;
    right: 14px;
    display:flex;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(15,15,15,.92);
    border: 1px solid rgba(238,207,128,.22);
    box-shadow: 0 35px 80px rgba(0,0,0,.70);
    backdrop-filter: blur(14px);
    opacity: 0;
    transform: translateY(-10px) scale(.98);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
    z-index: 110;
  }
  .nav.is-open{
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .nav a{
    display:flex;
    align-items:center;
    justify-content: space-between;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.06);
    color: rgba(255,255,255,.92);
    font-size: 15px;
    font-weight: 800;
    text-decoration:none;
  }

  .nav a::after{ content:"→"; opacity: .55; }
  .nav__cta{ justify-content: center; }
  .nav__cta::after{ content:""; }

  .row{ grid-template-columns: 1fr; gap: 16px; }
  .mapCard{ height: 220px; }
  .footer__inner{ grid-template-columns: 1fr; }
  .footer__bottom{ flex-direction: column; }
}



.social{
  margin-top: 12px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.social a{
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .15s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.social a:hover{
  transform: translateY(-1px);
  border-color: rgba(238,207,128,.35);
  background: rgba(238,207,128,.08);
  box-shadow: 0 14px 28px rgba(0,0,0,.35);
}

.social a:active{
  transform: translateY(0);
}

.social a img{
  width: 20px;
  height: 20px;
  object-fit: contain;
  opacity: .92;
  filter: grayscale(100%) brightness(1.15);
  transition: filter .18s ease, opacity .18s ease, transform .18s ease;
}

.social a:hover img{
  opacity: 1;
  filter: none;
  transform: scale(1.05);
}

.social a:focus-visible{
  outline: 2px solid rgba(238,207,128,.9);
  outline-offset: 3px;
}