


:root{
  --bg: #0f0f10;
  --bg2: #111111;
  --text: #f2f2f2;
  --muted: rgba(242,242,242,.68);
  --line: rgba(255,255,255,.10);

  --glass: rgba(255,255,255,.06);
  --glass2: rgba(255,255,255,.04);

  --shadow: 0 20px 60px rgba(0,0,0,.55);
  --radius: 22px;

  --container: 1200px;
  --headerH: 78px;
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior: smooth; }
body{
  background: radial-gradient(circle at 0% 0%, rgba(10,10,10,0.35), transparent 55%),
              radial-gradient(circle at 100% 0%, rgba(255,255,255,0.06), transparent 55%),
              linear-gradient(180deg, #0b0b0c 0%, #111111 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a{
  color: inherit;
  text-decoration: none;
  transition: transform .2s ease, opacity .2s ease, background .2s ease, border-color .2s ease;
}
img, video, iframe{ max-width:100%; display:block; }

.container{
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

section[id]{
  scroll-margin-top: calc(var(--headerH) + 20px);
}

.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--headerH);
  z-index: 2000;
  background: linear-gradient(180deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.42) 100%);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.header-inner{
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}
.brand-logo{
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.55));
}
.brand-text{
  display:flex;
  flex-direction:column;
  line-height: 1.05;
}
.brand-name{
  font-family: Cinzel, serif;
  letter-spacing: .14em;
  font-size: 14px;
  opacity: .95;
}
.brand-sub{
  font-size: 11px;
  letter-spacing: .28em;
  opacity: .65;
  text-transform: uppercase;
}

.main-nav{
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.main-nav a{
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .78;
}
.main-nav a:hover{ opacity: 1; }

.header-actions{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 260px;
}

.sr-only{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.hero-title--logo{
  margin-top: 18px; 
}

.hero-wordmark{
  width: clamp(200px, 22vw, 340px);
  height: auto;
  margin: 0 auto;
  opacity: .92;
  filter: drop-shadow(0 18px 80px rgba(0,0,0,.65));
}

.language-selector{
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-selector .lang-option{
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255,255,255,.75);
  font-size: 12px;
  letter-spacing: .12em;
  cursor: pointer;
}

.language-selector .lang-option.is-active{
  background: rgba(255,255,255,.92);
  color: #111;
  border-color: rgba(255,255,255,.28);
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
}

.language-selector .lang-option:not(.is-active):hover{
  color: rgba(255,255,255,.95);
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}

@media (max-width: 768px){
  .language-selector{
    gap: 10px;
  }
  .language-selector .lang-option{
    height: 28px;
    padding: 0 10px;
    font-size: 11px;
    letter-spacing: .10em;
  }
}

.header-cta{
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  display:flex;
  align-items:center;
  justify-content:center;
}
.header-cta:hover{
  background: rgba(255,255,255,.12);
}

.burger-icon{
  width: 44px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  user-select: none;
}
.burger-icon span{
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,.92);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

.burger-icon.active span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.burger-icon.active span:nth-child(2){ opacity: 0; }
.burger-icon.active span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

.burger-menu{
  position: fixed;
  inset: 0;
  transform: translateX(100%);
  transition: transform .28s ease;
  z-index: 1900;
  background: rgba(10,10,10,.88);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.burger-menu.active{ transform: translateX(0); }
.burger-menu ul{
  list-style: none;
  display:flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.burger-menu a{
  font-family: Cinzel, serif;
  font-size: 22px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .92;
}
.burger-menu a:hover{ opacity: 1; transform: translateY(-1px); }

main{ padding-top: var(--headerH); }

.btn{
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.12);
}
.btn-primary{
  background: rgba(255,255,255,.90);
  color: #111;
  border-color: rgba(255,255,255,.35);
}
.btn-primary:hover{ transform: translateY(-1px); }
.btn-ghost{
  background: rgba(255,255,255,.06);
  color: var(--text);
}
.btn-ghost:hover{
  background: rgba(255,255,255,.12);
  transform: translateY(-1px);
}

.hero{
  position: relative;
  min-height: calc(100svh - 90px); 
  display:flex;
  align-items: center;
  justify-content: center;
  background: url("../img/backimage.webp") center / cover no-repeat;
}
.hero-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(0,0,0,.35), rgba(0,0,0,.72) 62%),
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.78) 100%);
}
.hero-inner{
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
padding: 34px 0 44px;

}
.hero-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  font-size: 11px;
  letter-spacing: .24em;
  opacity: .86;
  text-transform: uppercase;
}
.hero-title{
  margin-top: 22px;
  font-family: Cinzel, serif;
  font-size: clamp(40px, 6vw, 74px);
  letter-spacing: .14em;
  text-transform: uppercase;
  text-shadow: 0 18px 80px rgba(0,0,0,.65);
}
.hero-subtitle{
  margin: 18px auto 28px;
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
}
.hero-buttons{
  display:flex;
  gap: 14px;
  align-items:center;
  justify-content:center;
  flex-wrap: wrap;
}

.hero-phone{
  margin-top: 30px;
  display:flex;
  justify-content:center;
}
.hero-phone a{
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color: rgba(255,255,255,.92);
  letter-spacing: .08em;
}
.hero-phone a:hover{
  background: rgba(255,255,255,.12);
  transform: translateY(-1px);
}

.locations-section,
.about-section,
.products-section,
.gallery-section,
.video-section{
  padding: 96px 0;
}

.section-title{
  text-align:center;
  font-family: Cinzel, serif;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-underline{
  width: 62px;
  height: 3px;
  margin: 18px auto 40px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 0 18px rgba(255,255,255,.22);
}

.section-title.left{ text-align: left; }
.section-underline.left{
  margin: 18px 0 34px;
}

.panel{
  background: linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.03) 100%);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  padding: 34px;
}
.panel-lg{ padding: 42px; }

.locations-container{
  display:flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}
.location-card{
  flex: 1;
  min-width: 280px;
  display:flex;
  flex-direction: column;
  gap: 12px;
}
.logo-wrapper{
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.40);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
}
.logo-image{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .6s ease, opacity .6s ease;
  z-index: 2;
}
.bg-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 1;
  transition: opacity .6s ease;
  pointer-events:none;
}
.video-overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  transition: opacity .6s ease;
  z-index: 2;
  pointer-events:none;
}
.reserve-button{
  position:absolute;
  left: 50%;
  bottom: 16px;
  transform: translate(-50%, 18px);
  opacity: 0;
  z-index: 3;
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.92);
  color: #111;
  letter-spacing: .14em;
  font-size: 11px;
  text-transform: uppercase;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition: transform .35s ease, opacity .35s ease;
}
.logo-wrapper:hover .logo-image{ transform: translateY(-12%); opacity: 0; }
.logo-wrapper:hover .bg-video{ opacity: 1; }
.logo-wrapper:hover .video-overlay{ opacity: 1; }
.logo-wrapper:hover .reserve-button{ opacity: 1; transform: translate(-50%, 0); }

.location-info{
  padding: 12px 2px 0;
  color: rgba(255,255,255,.88);
  font-size: 13px;
  letter-spacing: .02em;
}
.floor{
  color: rgba(255,255,255,.92);
  font-weight: 600;
}

.about-container{
  display:flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about-text{
  flex: 1;
  min-width: 320px;
}
.about-text p{
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
}
.about-image{
  flex: 1;
  min-width: 320px;
}
.about-image img{
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 22px 70px rgba(0,0,0,.55);
}

.about-icons{
  margin-top: 26px;
  display:flex;
  flex-direction: column;
  gap: 16px;
}
.icon-row{
  display:flex;
  gap: 18px;
  flex-wrap: wrap;
}
.icon-item{
  width: 92px;
  text-align:center;
  padding: 10px 8px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
}
.icon-item img{
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin: 0 auto 8px;
  opacity: .92;
}
.icon-item p{
  font-size: 12px;
  color: rgba(255,255,255,.86);
}

.products-grid{
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}
.product-card{
  width: 320px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  padding: 18px;
  transition: transform .25s ease, background .25s ease;
}
.product-card:hover{
  transform: translateY(-4px);
  background: rgba(255,255,255,.06);
}
.product-img{
  height: 320px;
  border-radius: 14px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  margin-bottom: 12px;
}
.product-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card h3{
  font-size: 15px;
  letter-spacing: .04em;
  margin-top: 8px;
}
.product-card p{
  font-size: 13px;
  color: rgba(255,255,255,.62);
  margin: 6px 0 10px;
}
.product-card span{
  font-weight: 600;
  letter-spacing: .06em;
}

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}
.gallery-item img{
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img{ transform: scale(1.05); }

.video-container{
  display:flex;
  gap: 18px;
  flex-wrap: wrap;
}
.video-column{
  width: calc(50% - 9px);
  display:flex;
  flex-direction: column;
  gap: 18px;
}
.video-wrapper iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.35);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

.social-links{
  display:flex;
  justify-content:center;
  gap: 18px;
  margin: 28px auto 10px;
}
.social-links a{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  display:flex;
  align-items:center;
  justify-content:center;
}
.social-links img{
  width: 22px;
  height: 22px;
  opacity: .92;
}
.social-links a:hover{ transform: translateY(-2px); background: rgba(255,255,255,.06); }

.site-footer{
  text-align:center;
  padding: 22px 0 6px;
  color: rgba(255,255,255,.74);
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.site-footer strong{ color: rgba(255,255,255,.92); }
.site-footer a{ opacity: .9; text-decoration: underline; }
.site-footer a:hover{ opacity: 1; }

@media (max-width: 980px){
  .main-nav{ display:none; }
  .burger-icon{ display:flex; }
  .header-actions{ min-width: auto; }

  .header-cta{ display:none; }

  .header-actions{ gap: 8px; }
  .language-selector{ gap: 8px; }
  .language-selector .lang-option{
    padding: 0 10px; 
  }
}

@media (max-width: 768px){
  .header-inner{ width: calc(100% - 24px); }
  .container{ width: calc(100% - 24px); }

  .brand{ min-width: auto; }
  .brand-text{ display:none; } 
  

  .panel{ padding: 22px; }
  .panel-lg{ padding: 22px; }

  .gallery-grid{
    grid-template-columns: 1fr;
  }
  .gallery-item img{ height: auto; }

  .video-column{
    width: 100%;
  }

  .icon-item{ width: 90px; }
}

.location-card.coming-soon .logo-image{
  object-fit: cover;
  opacity: 1;
  transform: none;
}

.location-card.coming-soon .logo-wrapper:hover .logo-image{
  transform: none;
  opacity: 1;
}

.location-card.coming-soon .bg-video,
.location-card.coming-soon .video-overlay,
.location-card.coming-soon .reserve-button{
  display:none !important;
}

.location-card.coming-soon .location-info{
  padding-top: 14px;
  text-align: center;
}

.location-card.coming-soon .coming-soon-text{
  font-family: Cinzel, serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .92;
  font-size: 13px;
}

.video-wrapper{
  position: relative;
}

.yt-lite{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #000 center / cover no-repeat;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
}

.yt-lite::after{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 50% 40%, rgba(0,0,0,.10), rgba(0,0,0,.68) 70%),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.50));
  pointer-events:none;
}

.yt-lite .yt-play{
  position:absolute;
  left:50%; top:50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  display:grid;
  place-items:center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.yt-lite:hover .yt-play{
  transform: translate(-50%, -50%) scale(1.04);
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.32);
}

.yt-lite .yt-play svg{
  width: 22px; height: 22px;
  fill: rgba(255,255,255,.92);
  margin-left: 2px;
}

.yt-lite.is-loaded{
  cursor: default;
}

.yt-lite iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  z-index: 3;
}

.video-wrapper{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 16 / 9;
}

.yt-lite{
  position:absolute;
  inset:0;
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  cursor:pointer;
}

.yt-lite::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 50% 50%, rgba(0,0,0,.10), rgba(0,0,0,.55));
}

.yt-play{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  width:64px;
  height:64px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
}

.yt-play svg{
  width:24px;
  height:24px;
  fill: rgba(255,255,255,.92);
  transform: translateX(1px);
}

.yt-lite iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
.burger-menu .burger-cta-item{
  margin-bottom: 10px;
}

.burger-menu .burger-cta{
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.92);
  color: #111;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 55px rgba(0,0,0,.45);
}

.burger-menu .burger-cta:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.96);
}


@media (max-width: 768px){
  .brand-logo{
    width: 44px;
    height: 44px;
    transform: scale(1.35);
    transform-origin: left center;
  }
  .site-header,
  .header-inner{ overflow: visible; }
}


@media (max-width: 768px){
  .brand img{
    height: 50px;
    width: auto;
    transform: scale(1.35);
    transform-origin: left center;
    display: block;
  }

  .site-header,
  .header-inner{ overflow: visible; }
}

.locations-section,
.about-section,
.products-section,
.gallery-section,
.video-section{
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

