:root{
  --bg:#f4f4f4;
  --card:#ffffff;
  --text:#171717;
  --text-soft:#7b7b7b;
  --title:#111111;
  --line:#e7e7e7;
  --line-strong:#d9d9d9;
  --shadow:0 12px 32px rgba(0,0,0,.05);
  --shadow-lg:0 18px 40px rgba(0,0,0,.06);
  --radius:24px;
  --container:1240px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

body{
  margin:0;
  min-height:100vh;
  width:100%;
  max-width:100%;
  background:var(--bg);
  color:var(--text);
  font-family:"Inter", Arial, sans-serif;
  line-height:1.5;
  overflow-x:hidden;
  padding-left:env(safe-area-inset-left);
  padding-right:env(safe-area-inset-right);
}

img,
video,
iframe{
  display:block;
  max-width:100%;
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:min(100% - 32px, var(--container));
  margin:0 auto;
}

.swiper{
  max-width:100%;
  overflow:hidden;
}

.swiper-wrapper{
  max-width:100%;
}

/* =========================
   HEADER
========================= */
.topbar{
  position:absolute;
  top:0;
  left:0;
  right:0;
  width:100%;
  z-index:1000;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  background:rgb(56 7 7 / 58%);
  transition:background .25s ease;
}

/* .topbar.topbar-hidden{
  transform:translateY(-100%);
  opacity:0;
  pointer-events:none;
} */

.topbar-inner{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  position:relative;
}

.logo{
  display:inline-flex;
  align-items:center;
  gap:14px;
  font-family:"Inter", Arial, sans-serif;
  font-size:18px;
  font-weight:800;
  color:#ffffff;
  white-space:nowrap;
}

.logo-mark{
  width:56px;
  height:60px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 200px;
  overflow:hidden;
}

.logo-mark img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.nav a{
  font-size:14px;
  font-weight:600;
  color:#f0e7e7;
  transition:.2s ease;
  font-family:"Inter", Arial, sans-serif;
}

.nav a:hover{
  color:#ffffff;
}

.nav-menu-link{
  padding:10px 14px;
  border-radius:14px;
  background:#ffffff;
  border:1px solid var(--line);
  color:var(--title) !important;
}

.menu-toggle{
  display:none;
  width:48px;
  height:48px;
  border:none;
  border-radius:14px;
  background:transparent;
  border:1px solid #a1c95a;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  padding:0;
  box-shadow:var(--shadow);
}

.menu-toggle span{
  display:block;
  width:20px;
  height:2px;
  background:#a1c95a;
  border-radius:999px;
  transition:.25s ease;
}

.menu-toggle.is-open span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2){
  opacity:0;
}

.menu-toggle.is-open span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

/* =========================
   HERO BANNER
========================= */
.hero-banner{
  margin-top:-80px;
  padding-top:80px;
}
.hero-banner{
  position:relative;
  min-height:100vh;
  min-height:100svh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  isolation:isolate;
  background:#111111;
}

.hero-banner-bg{
  position:absolute;
  inset:0;
  background:url("../images/bellavita-fon-gorizont.webp") center center / cover no-repeat;
  transform:scale(1.02);
}

.hero-banner-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.20) 0%, rgba(0,0,0,.34) 32%, rgba(0,0,0,.58) 100%);
  z-index:1;
}

.hero-banner-content{
  position:relative;
  z-index:2;
  width:100%;
  padding-top:140px;
  padding-bottom:48px;
}

.hero-banner-box{
  max-width:720px;
  padding:28px;
  border-radius:28px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(1px);
  -webkit-backdrop-filter:blur(1px);
  box-shadow:0 18px 50px rgba(0,0,0,.18);
}

.hero-banner-eyebrow{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  color:#ffffff;
  font-size:13px;
  font-weight:600;
  margin-bottom:16px;
}

.hero-banner-box h2{
  margin:0 0 14px;
  color:#ffffff;
  font-size:48px;
  line-height:1.04;
  font-weight:800;
  letter-spacing:-0.03em;
}

.hero-banner-box p{
  margin:0 0 22px;
  max-width:640px;
  color:rgba(255,255,255,.88);
  font-size:17px;
  line-height:1.7;
  font-weight:500;
}

.hero-banner-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.hero-banner .btn-secondary{
  background:rgba(255,255,255,.92);
  border-color:rgba(255,255,255,.92);
}

.hero-banner .btn-secondary:hover{
  background:#ffffff;
}

/* =========================
   TYPOGRAPHY / BUTTONS
========================= */
h1,h2,h3{
  margin:0;
  color:var(--title);
  font-family:"Inter", Arial, sans-serif;
  letter-spacing:-0.03em;
}

h1{
  font-size:48px;
  line-height:1.05;
  font-weight:800;
  margin-bottom:16px;
  max-width:760px;
}

h2{
  font-size:24px;
  line-height:1.15;
  font-weight:800;
}

h3{
  font-size:18px;
  line-height:1.2;
  font-weight:800;
  margin-bottom:8px;
}

.btn{
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 18px;
  border-radius:14px;
  font-size:14px;
  font-weight:700;
  font-family:"Inter", Arial, sans-serif;
  letter-spacing:-0.01em;
  transition:.2s ease;
  border:1px solid transparent;
  cursor:pointer;
}

.btn-primary{
  background:#471a1a;
  color:#ffffff;
  border-color:#471a1a;
}

.btn-primary:hover{
  opacity:.92;
}

.btn-secondary{
  background:#ffffff;
  color:var(--title);
  border-color:var(--line-strong);
}

.btn-secondary:hover{
  background:#fafafa;
}

/* =========================
   HERO
========================= */
.hero{
  padding:32px 0 24px;
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.05fr) minmax(0, .95fr);
  gap:24px;
  align-items:stretch;
}

.contacts-title{
  margin-bottom:12px;
}

.hero-text{
  max-width:720px;
  margin:0 0 22px;
  font-size:17px;
  color:var(--text-soft);
  font-weight:500;
  line-height:1.65;
}

.hero-actions,
.contacts-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.hero-actions{
  margin-bottom:20px;
}

/* =========================
   HERO SLIDERS
========================= */
.hero-points{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top:4px;
}

.hero-slider-block{
  padding:2px;
  min-width:0;
}

.hero-slider-title{
  font-size:16px;
  font-weight:800;
  margin-bottom:10px;
  color:var(--title);
  line-height:1.2;
}

.hero-slider-block .swiper{
  width:100%;
  height:190px;
  border-radius:16px;
  overflow:hidden;
  position:relative;
  background:#ececec;
}

.hero-slider-block .swiper-slide{
  width:100%;
  height:100%;
}

.hero-slider-block .swiper-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-slider-block .swiper-pagination{
  bottom:8px !important;
}

.hero-slider-block .swiper-pagination-bullet{
  width:8px;
  height:8px;
  background:rgba(255,255,255,.85);
  opacity:1;
  transition:.2s ease;
}

.hero-slider-block .swiper-pagination-bullet-active{
  background:#a1c95a;
}

/* =========================
   HERO VISUAL / VIDEO
========================= */
.hero-visual{
  position:relative;
  min-width:0;
}

.hero-card{
  position:relative;
  min-height:615px;
  border-radius:28px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow-lg);
  background:#000;
}

.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:1;
}

.hero-video-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.32) 45%, rgba(0,0,0,.48) 100%);
  z-index:2;
}

.floating-card{
  position:absolute;
  z-index:3;
  max-width:320px;
  padding:20px;
  border-radius:22px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(2px);
  -webkit-backdrop-filter:blur(2px);
  box-shadow:0 18px 50px rgba(0,0,0,.25);
  color:#ffffff;
}

.floating-card.top{
  top:16px;
  left:16px;
}

.floating-card.bottom{
  right:16px;
  bottom:16px;
}

.floating-card .mini-title{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  color:#ffffff;
  font-size:12px;
  font-weight:600;
  margin-bottom:10px;
  letter-spacing:.04em;
  text-transform:none;
}

.floating-card strong{
  display:block;
  margin-bottom:6px;
  font-size:18px;
  line-height:1.3;
  font-weight:800;
  color:#ffffff;
}

.floating-card span{
  display:block;
  font-size:14px;
  line-height:1.55;
  color:rgba(255,255,255,.88);
  font-weight:500;
}

/* =========================
   COMMON SECTIONS
========================= */
.section{
  padding:20px 0;
}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.section-sub{
  max-width:720px;
  font-size:15px;
  line-height:1.65;
  color:var(--text-soft);
  font-weight:500;
}

/* =========================
   FEATURES
========================= */
.features{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
}

.feature{
  padding:22px;
  border-radius:24px;
  background:#ffffff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  min-width:0;
}

.feature-icon{
  width:50px;
  height:50px;
  border-radius:16px;
  display:grid;
  place-items:center;
  margin-bottom:14px;
  font-size:20px;
  background:#f8f8f8;
  border:1px solid var(--line);
  color:var(--title);
  font-weight:800;
}

.feature p{
  margin:0;
  color:var(--text-soft);
  font-size:15px;
  line-height:1.65;
  font-weight:500;
}

/* =========================
   ABOUT
========================= */
.about-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
}

.about-card{
  padding:24px;
  border-radius:24px;
  background:#ffffff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  min-width:0;
}

.about-card p{
  margin:0;
  color:var(--text-soft);
  font-size:15px;
  line-height:1.75;
  font-weight:500;
}

/* =========================
   GALLERY
========================= */
.gallery{
  display:grid;
  grid-template-columns:minmax(0, 1.25fr) minmax(0, .75fr) minmax(0, .75fr);
  gap:16px;
}

.gallery-item{
  position:relative;
  min-height:250px;
  border-radius:24px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  background:#ffffff;
}

.gallery-item.large{
  min-height:390px;
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .4s ease;
}

.gallery-item:hover img{
  transform:scale(1.03);
}

.gallery-item::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.10));
  pointer-events:none;
}

.gallery-label{
  position:absolute;
  left:14px;
  bottom:14px;
  z-index:2;
  padding:12px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  box-shadow:0 18px 50px rgba(0,0,0,.25);
  color:#ffffff;
  font-size:14px;
  font-weight:700;
  line-height:1.2;
}

/* =========================
   CONTACTS
========================= */
.info-grid{
  display:grid;
  grid-template-columns:minmax(0, .92fr) minmax(0, 1.08fr);
  gap:16px;
  align-items:stretch;
}

.info-card,
.map-card{
  border-radius:24px;
  overflow:hidden;
  background:#ffffff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  min-width:0;
}

.info-card-inner{
  padding:26px;
}

.info-card p{
  margin:0;
  color:var(--text-soft);
  line-height:1.7;
  font-size:15px;
  font-weight:500;
}

.info-list{
  display:grid;
  gap:14px;
  margin:20px 0 22px;
}

.info-row{
  display:flex;
  align-items:flex-start;
  gap:12px;
  font-size:15px;
  color:var(--text-soft);
  font-weight:500;
}

.info-row strong{
  min-width:92px;
  color:var(--text-soft);
  font-weight:500;
}

.map-frame{
  display:block;
  width:100%;
  height:100%;
  min-height:460px;
  border:0;
  filter:grayscale(.05) saturate(.9);
}

/* =========================
   SOCIAL
========================= */
.social-section{
  padding-top:8px;
}

.social-head{
  margin-bottom:20px;
}

.social-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.2fr) minmax(0, .9fr) minmax(0, .9fr);
  gap:16px;
  align-items:stretch;
}

.social-card{
  position:relative;
  border-radius:24px;
  background:#ffffff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  overflow:hidden;
  min-width:0;
}

.social-main-card{
  padding:28px;
  background:
    radial-gradient(circle at top right, rgba(0,0,0,.035), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.social-badge{
  display:inline-flex;
  align-items:center;
  padding:9px 14px;
  border-radius:999px;
  background:#f7f7f7;
  border:1px solid var(--line);
  color:var(--text-soft);
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:14px;
}

.social-main-card h3{
  font-size:26px;
  line-height:1.15;
  margin-bottom:12px;
  max-width:520px;
}

.social-main-card p{
  max-width:620px;
  margin:0 0 22px;
  color:var(--text-soft);
  font-size:15px;
  line-height:1.75;
  font-weight:500;
}

.social-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.social-btn{
  min-height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:0 20px;
  border-radius:16px;
  border:1px solid var(--line-strong);
  background:#ffffff;
  color:var(--title);
  font-size:15px;
  font-weight:700;
  transition:.2s ease;
}

.social-btn:hover{
  transform:translateY(-1px);
  box-shadow:var(--shadow);
}

.social-btn-icon{
  width:22px;
  height:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 22px;
}

.social-btn-icon svg{
  width:100%;
  height:100%;
  display:block;
}

.instagram-btn{
  background:#471a1a;
  color:#ffffff;
  border-color:#471a1a;
}

.instagram-btn:hover{
  opacity:.95;
}

.facebook-btn{
  background:#ffffff;
  color:var(--title);
}

.social-preview-card{
  padding:24px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:100%;
  background:linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
}

.social-preview-top{
  margin-bottom:16px;
}

.social-mini-label{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:#f7f7f7;
  border:1px solid var(--line);
  color:var(--text-soft);
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:14px;
}

.social-preview-card strong{
  display:block;
  color:var(--title);
  font-size:22px;
  line-height:1.2;
  font-weight:800;
}

.social-preview-card p{
  margin:0;
  color:var(--text-soft);
  font-size:15px;
  line-height:1.75;
  font-weight:500;
}

/* =========================
   FOOTER
========================= */
.footer {
    position: relative;
    padding: 28px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    background: rgba(10,10,10,.92);
    overflow: hidden;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-copy {
    font-size: .92rem;
    line-height: 1.5;
    color: rgba(255,255,255,.72);
    letter-spacing: .02em;
}

.admin-link {
    width: 48px;
    height: 48px;
    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    text-decoration: none;

    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 10px 30px rgba(0,0,0,.22),
        inset 0 1px 0 rgba(255,255,255,.04);

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.admin-link svg {
    width: 20px;
    height: 20px;
}

.admin-link:hover {
    transform: translateY(-2px);

    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.2);

    box-shadow:
        0 14px 34px rgba(0,0,0,.28),
        inset 0 1px 0 rgba(255,255,255,.06);
}

.admin-link:active {
    transform: scale(.96);
}

@media (max-width: 768px) {

    .footer {
        padding: 24px 0;
    }

    .footer-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .footer-copy {
        font-size: .84rem;
    }

}

/* =========================
   BOOKING SECTION
========================= */
.booking-section{
  padding:24px 0 20px;
}

.booking-wrap{
  display:grid;
  grid-template-columns:minmax(0, 1.05fr) minmax(0, .95fr);
  gap:18px;
  align-items:stretch;
}

.booking-content{
  position:relative;
  padding:32px;
  border-radius:28px;
  overflow:hidden;
  background:
    linear-gradient(135deg, rgba(71,26,26,.92) 0%, rgba(34,10,10,.94) 100%);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 18px 40px rgba(0,0,0,.10);
  color:#ffffff;
}

.booking-content::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.12), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255,255,255,.08), transparent 30%);
  pointer-events:none;
}

.booking-content > *{
  position:relative;
  z-index:1;
}

.booking-badge{
  display:inline-flex;
  align-items:center;
  padding:9px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  color:#ffffff;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:16px;
}

.booking-content h2{
  margin:0 0 12px;
  color:#ffffff;
  font-size:34px;
  line-height:1.08;
  font-weight:800;
}

.booking-text{
  margin:0 0 24px;
  max-width:620px;
  color:rgba(255,255,255,.86);
  font-size:15px;
  line-height:1.75;
  font-weight:500;
}

.booking-form{
  display:grid;
  gap:16px;
}

.booking-field{
  display:grid;
  gap:8px;
}

.booking-field label{
  color:#ffffff;
  font-size:14px;
  font-weight:600;
}

.booking-field input{
  width:100%;
  min-height:56px;
  padding:0 18px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  color:#ffffff;
  font-size:16px;
  font-weight:500;
  outline:none;
  transition:border-color .2s ease, background .2s ease, box-shadow .2s ease;
  box-shadow:0 12px 30px rgba(0,0,0,.10);
  appearance:none;
  -webkit-appearance:none;
}

.booking-field select,
.booking-field textarea{
  width:100%;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  color:#fff;
  font-size:16px;
  outline:none;
  resize:none;
}

.booking-field select option{
  color:#000;
}

.booking-field input::placeholder{
  color:rgba(255,255,255,.68);
}

.booking-field input:focus{
  border-color:rgba(255,255,255,.35);
  background:rgba(255,255,255,.16);
  box-shadow:0 0 0 4px rgba(255,255,255,.08);
}

.booking-submit-btn{
  min-height:56px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 22px;
  border:none;
  border-radius:18px;
  cursor:pointer;
  background:#ffffff;
  color:#471a1a;
  font-size:15px;
  font-weight:800;
  letter-spacing:-0.01em;
  transition:transform .2s ease, box-shadow .2s ease, opacity .2s ease;
  box-shadow:0 14px 34px rgba(0,0,0,.18);
}

.booking-submit-btn:hover{
  transform:translateY(-1px);
}

.booking-submit-btn:disabled{
  opacity:.7;
  cursor:not-allowed;
  transform:none;
}

.booking-note{
  color:rgba(255,255,255,.70);
  font-size:13px;
  line-height:1.6;
  font-weight:500;
}

.booking-visual{
  position:relative;
  min-height:100%;
  border-radius:28px;
  overflow:hidden;
  background:
    linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.36)),
    url("../images/interior.webp") center center / cover no-repeat;
  border:1px solid var(--line);
  box-shadow:var(--shadow-lg);
  display:flex;
  align-items:flex-end;
  padding:20px;
}

.booking-glass-card{
  width:100%;
  max-width:420px;
  padding:22px;
  border-radius:24px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  box-shadow:0 18px 50px rgba(0,0,0,.25);
  color:#ffffff;
}

.booking-mini-label{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  color:#ffffff;
  font-size:12px;
  font-weight:600;
  margin-bottom:12px;
}

.booking-glass-card h3{
  margin:0 0 10px;
  color:#ffffff;
  font-size:22px;
  line-height:1.18;
  font-weight:800;
}

.booking-glass-card p{
  margin:0;
  color:rgba(255,255,255,.86);
  font-size:14px;
  line-height:1.65;
  font-weight:500;
}

.booking-toast{
  position:fixed;
  inset:0;
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
  opacity:0;
  transition:opacity .35s ease;
}

.booking-toast.show{
  opacity:1;
  pointer-events:auto;
}

.booking-toast-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
}

.booking-toast-box{
  position:relative;
  padding:26px 30px;
  border-radius:22px;
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,0.18);
  box-shadow:0 25px 80px rgba(0,0,0,.35);
  text-align:center;
  max-width:320px;
  transform:translateY(20px) scale(.95);
  opacity:0;
  transition:all .35s ease;
}

.booking-toast.show .booking-toast-box{
  transform:translateY(0) scale(1);
  opacity:1;
}

.booking-toast-icon{
  width:56px;
  height:56px;
  margin:0 auto 12px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  font-weight:700;
  color:#fff;
  background:linear-gradient(135deg,#4ade80,#22c55e);
  box-shadow:0 10px 25px rgba(34,197,94,.4);
}

.booking-toast-text{
  color:#fff;
  font-size:15px;
  font-weight:500;
  line-height:1.4;
}

/* =========================
   RESPONSIVE
========================= */

/* 1400+ */
@media (min-width: 1400px){
  .container{
    width:min(100% - 56px, 1320px);
  }

  .hero-banner{
    min-height:100vh;
    min-height:100svh;
  }

  .hero-card{
    min-height:620px;
  }

  .hero-slider-block .swiper{
    height:210px;
  }
}

/* 1120 */
@media (max-width: 1120px){
  .hero-banner{
    min-height:100vh;
    min-height:100svh;
  }

  .hero-banner-box h2{
    font-size:42px;
  }

  .hero-grid,
  .features,
  .gallery,
  .info-grid,
  .social-grid,
  .booking-wrap{
    grid-template-columns:1fr;
  }

  .about-grid{
    grid-template-columns:1fr;
  }

  .hero-card{
    min-height:420px;
  }

  .gallery-item.large{
    min-height:300px;
  }

  .map-frame{
    min-height:380px;
  }

  .hero-visual{
    order:2;
  }

  .booking-visual{
    min-height:320px;
  }
}

/* 992 */
@media (max-width: 992px){
  .hero-points{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  h1{
    font-size:42px;
  }

  .hero-slider-block .swiper{
    height:210px;
  }
}

/* 768 */
@media (max-width: 768px){
  .topbar{
    position:absolute;
    background:rgb(56 7 7 / 58%);
  }

  .topbar-inner{
    min-height:auto;
    padding:14px 0;
    display:grid;
    grid-template-columns:1fr auto;
    align-items:center;
    gap:12px;
  }

  .logo{
    font-size:18px;
  }

  .menu-toggle{
    display:flex;
  }

  .nav{
    display:none;
    position:absolute;
    top:calc(100% + 10px);
    left:0;
    right:0;
    background:#ffffff;
    border:1px solid var(--line);
    border-radius:20px;
    box-shadow:var(--shadow-lg);
    padding:12px;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    z-index:1200;
  }

  .nav.is-open{
    display:flex;
  }

  .nav a{
    display:flex;
    align-items:center;
    min-height:48px;
    padding:0 14px;
    border-radius:14px;
    color:var(--title);
    font-size:15px;
    font-weight:600;
  }

  .nav a:hover{
    background:#f8f8f8;
  }

  .nav-menu-link{
    padding:0 14px !important;
    min-height:48px;
    border-radius:14px;
    background:#471a1a;
    color:#ffffff !important;
    border:1px solid #471a1a;
    box-shadow:none;
  }

  .hero-banner{
    min-height:100vh;
    min-height:100svh;
    align-items:flex-end;
  }

  .hero-banner-bg{
    background-position:center center;
    background-size:cover;
    transform:none;
  }

  .hero-banner-content{
    padding-top:110px;
    padding-bottom:24px;
  }

  .hero-banner-box{
    padding:20px;
    border-radius:24px;
    max-width:100%;
  }

  .hero-banner-box h2{
    font-size:32px;
    line-height:1.08;
  }

  .hero-banner-box p{
    font-size:15px;
    line-height:1.65;
    margin-bottom:0;
  }

  .hero-banner-actions{
    flex-direction:column;
  }

  .hero-banner-actions .btn{
    width:100%;
  }

  .hero{
    padding:24px 0 14px;
  }

  h1{
    font-size:34px;
    line-height:1.08;
  }

  h2{
    font-size:22px;
  }

  h3{
    font-size:18px;
  }

  .hero-text{
    font-size:15px;
  }

  .hero-points{
    grid-template-columns:1fr;
  }

  .hero-slider-block .swiper{
    height:220px;
  }

  .hero-actions,
  .contacts-actions,
  .social-actions{
    flex-direction:column;
  }

  .btn,
  .social-btn{
    width:100%;
  }

  .hero-card{
    min-height:520px;
    border-radius:24px;
  }

  .floating-card{
    left:12px;
    right:12px;
    max-width:none;
    padding:18px;
    border-radius:20px;
  }

  .floating-card.top{
    top:12px;
  }

  .floating-card.bottom{
    bottom:12px;
  }

  .floating-card strong{
    font-size:16px;
  }

  .floating-card span{
    font-size:13px;
  }

  .feature,
  .about-card,
  .info-card-inner,
  .social-main-card,
  .social-preview-card{
    padding:20px;
  }

  .section{
    padding:16px 0;
  }

  .info-row{
    flex-direction:column;
    gap:4px;
  }

  .info-row strong{
    min-width:auto;
  }

  .social-main-card h3{
    font-size:22px;
  }

  .booking-section{
    padding:18px 0 16px;
  }

  .booking-content{
    padding:22px;
    border-radius:24px;
  }

  .booking-content h2{
    font-size:28px;
  }

  .booking-submit-btn{
    width:100%;
  }

  .booking-visual{
    min-height:280px;
    border-radius:24px;
    padding:14px;
  }

  .booking-glass-card{
    padding:18px;
    border-radius:20px;
  }

  .booking-glass-card h3{
    font-size:20px;
  }

  .booking-field input,
  .booking-field textarea,
  .booking-field select{
    font-size:16px !important;
  }
}

/* 576 */
@media (max-width: 576px){
  .container{
    width:min(100% - 24px, var(--container));
  }

  .hero-banner{
    min-height:100vh;
    min-height:100svh;
  }

  .hero-banner-content{
    padding-top:100px;
    padding-bottom:18px;
  }

  .hero-banner-box{
    padding:18px;
    border-radius:20px;
  }

  .hero-banner-box h2{
    font-size:28px;
  }

  h1{
    font-size:30px;
  }

  .hero-actions{
    gap:10px;
  }

  .hero-slider-block{
    padding:2px;
  }

  .hero-slider-block .swiper{
    height:200px;
    border-radius:14px;
  }

  .gallery-item{
    min-height:220px;
  }

  .gallery-item.large{
    min-height:240px;
  }

  .map-frame{
    min-height:320px;
  }
}

/* 480 */
@media (max-width: 480px){
  .container{
    width:min(100% - 20px, var(--container));
  }

  .logo-mark{
    width:44px;
    height:65px;
    flex:0 0 240px;
  }

  .hero-banner{
    min-height:100vh;
    min-height:100svh;
  }

  .hero-banner-box h2{
    font-size:26px;
  }

  .hero-banner-eyebrow{
    font-size:12px;
  }

  .hero-slider-block .swiper{
    height:280px;
  }

  .hero-card{
    min-height:680px;
  }

  .feature,
  .about-card,
  .info-card,
  .map-card,
  .gallery-item,
  .social-card{
    border-radius:20px;
  }

  .social-main-card h3{
    font-size:20px;
  }

  .social-preview-card strong{
    font-size:20px;
  }

  .floating-card{
    padding:16px;
    border-radius:18px;
  }

  .floating-card .mini-title{
    font-size:11px;
    padding:7px 10px;
    margin-bottom:8px;
  }

  .floating-card strong{
    font-size:15px;
  }

  .floating-card span{
    font-size:12.5px;
    line-height:1.5;
  }

  .booking-content{
    padding:18px;
    border-radius:20px;
  }

  .booking-content h2{
    font-size:24px;
  }

  .booking-field input{
    min-height:52px;
    border-radius:16px;
  }

  .booking-submit-btn{
    min-height:52px;
    border-radius:16px;
    font-size:14px;
  }

  .booking-visual{
    min-height:240px;
    border-radius:20px;
  }

  .booking-glass-card{
    padding:16px;
    border-radius:18px;
  }
}

/* 360 */
@media (max-width: 360px){
  .container{
    width:min(100% - 16px, var(--container));
  }

  .topbar-inner{
    gap:8px;
  }

  .logo{
    font-size:16px;
  }

  h1{
    font-size:26px;
  }

  .hero-banner-box h2{
    font-size:24px;
  }

  .btn,
  .social-btn{
    min-height:46px;
    font-size:13px;
    padding:0 14px;
  }

  .hero-slider-title{
    font-size:15px;
  }

  .hero-slider-block .swiper{
    height:170px;
  }

  .hero-card{
    min-height:520px;
  }

  .floating-card{
    padding:14px;
  }

  .feature,
  .about-card,
  .info-card-inner,
  .social-main-card,
  .social-preview-card{
    padding:16px;
  }
}


.vacancy-cta-section {
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* ФОТО */
.vacancy-cta-bg {
    position: absolute;
    inset: 0;
    background: url('/images/vacancy-bg.webp') center/cover no-repeat;
    z-index: 1;
}

/* ЗАТЕМНЕНИЕ */
.vacancy-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.17) 0%,
        rgba(0,0,0,0.75) 100%
    );
    z-index: 2;
}

/* КОНТЕНТ */
.vacancy-cta-wrap {
    position: relative;
    z-index: 3;
    padding: 80px 0;
    max-width: 640px;
}

/* ТЕКСТ */
.vacancy-cta-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #a1c95a;
}

.vacancy-cta-content p {
    font-size: 16px;
    opacity: .9;
    margin-bottom: 24px;
}

/* КНОПКИ */
.vacancy-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* МОБИЛА */
@media (max-width: 768px) {
    .vacancy-cta-wrap {
        padding: 60px 10px;
    }

    .vacancy-cta-content h2 {
        font-size: 24px;
    }
}