﻿*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --accent: #c4b5a0;
  --bg: #0f0e0c;
  --text: #ece8e4;
  --dim: #7a756f;
}
html {
  scroll-behavior: smooth;
  max-width: 100vw;
  width: 100%;
  overflow-x: hidden;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  line-height: 1.05;
}
a {
  color: inherit;
  text-decoration: none;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
}
.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--text);
}
.nav__right {
  display: flex;
  gap: 32px;
}
.nav__link {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dim);
  transition: color 0.3s;
}
.nav__link:hover {
  color: var(--text);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 201;
}
.burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: all .35s cubic-bezier(.4,0,.2,1);
  transform-origin: center;
}
.burger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(15,14,12,0.98);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.mobile-menu__link {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 300;
  color: var(--dim);
  text-decoration: none;
  transition: color .3s;
  opacity: 0;
  transform: translateY(20px);
  transition: color .3s, opacity .4s, transform .4s;
}
.mobile-menu.active .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu__link:hover {
  color: var(--text);
}
.mobile-menu.active .mobile-menu__link:nth-child(1) { transition-delay: .08s }
.mobile-menu.active .mobile-menu__link:nth-child(2) { transition-delay: .14s }
.mobile-menu.active .mobile-menu__link:nth-child(3) { transition-delay: .20s }
.mobile-menu.active .mobile-menu__link:nth-child(4) { transition-delay: .26s }
.mobile-menu.active .mobile-menu__link:nth-child(5) { transition-delay: .32s }

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  position: relative;
}
.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(40px, 6vw, 100px);
}
.hero__left h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: -1.5px;
  margin-bottom: 12px;
  white-space: nowrap;
}
.hero__left p {
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 48px;
}
.hero__menu {
  max-width: 340px;
}
.hero__menu-title {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero__menu-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}
.hero__menu-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  white-space: nowrap;
}
.hero__menu-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(122, 117, 111, 0.3);
  min-width: 20px;
  margin-bottom: 4px;
}
.hero__menu-price {
  font-size: 0.82rem;
  color: var(--dim);
  white-space: nowrap;
}
.hero__menu-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--accent);
  border-bottom: 1px solid rgba(196, 181, 160, 0.3);
  padding-bottom: 2px;
  width: fit-content;
  transition: border-color 0.3s;
}
.hero__menu-link:hover {
  border-color: var(--accent);
}
.hero__right {
  overflow: hidden;
}
.hero__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.hero__side {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 32px;
  z-index: 2;
}
.hero__side-link {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
  transition: color 0.3s;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}
.hero__side-link:hover {
  color: var(--text);
}

.works {
  padding: 100px 40px;
}
.works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.works__item {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.works__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.works__item:hover .works__bg {
  transform: scale(1.04);
}
.works__img {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
}
.works__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,14,12,0.7) 0%, transparent 50%);
}
.works__label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  z-index: 2;
}

.about {
  padding: 50px 40px;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__img {
  width: 100%;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
}
.about__label {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}
.about__text h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 24px;
}
.about__text p {
  color: var(--dim);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 400px;
}
.about__link {
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--accent);
  border-bottom: 1px solid rgba(196, 181, 160, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.about__link:hover {
  border-color: var(--accent);
}
.about__link svg {
  transition: transform .3s;
}
.about__link:hover svg {
  transform: translateX(3px);
}

.reviews {
  padding: 50px 40px;
}
.reviews__head {
  margin-bottom: 60px;
}
.reviews__head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
.reviews__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.review {
  padding: 0;
}
.review__stars {
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}
.review__text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 24px;
}
.review__author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.review__name {
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--accent);
}
.review__date {
  font-size: 0.68rem;
  color: var(--dim);
}

.booking {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.booking__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.05em;
  animation: watermarkDrift 20s ease-in-out infinite alternate;
}
@keyframes watermarkDrift {
  0% {
    transform: translate(-50%, -50%) translateX(-20px);
  }
  100% {
    transform: translate(-50%, -50%) translateX(20px);
  }
}
.booking__inner {
  position: relative;
  text-align: center;
  z-index: 1;
  padding: 60px 40px;
}
.booking__inner h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 20px;
}
.booking__inner p {
  color: var(--dim);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 40px;
}
.booking__btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  padding: 18px 52px;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s;
}
.booking__btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

.hall-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  z-index: 1000;
  display: none;
  flex-direction: column;
}
.hall-modal.active {
  display: flex;
}
.hall-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.hall-modal__header h2 {
  font-size: 1.4rem;
  font-weight: 300;
}
.hall-modal__close {
  background: none;
  border: none;
  color: var(--dim);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s;
}
.hall-modal__close:hover {
  color: var(--text);
}
.hall-modal__body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 280px;
  overflow: hidden;
}

.hall {
  flex: 1;
  overflow: auto;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hall__floor {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 660px;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  padding: 20px;
}

.hall__zone {
  border: 1px dashed rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 16px;
  position: relative;
}
.hall__zone-label {
  position: absolute;
  top: -8px;
  left: 12px;
  font-size: 0.55rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dim);
  background: var(--bg);
  padding: 0 6px;
}
.hall__zone--window {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: center;
  justify-items: center;
}
.hall__zone--center {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: center;
  justify-items: center;
}
.hall__zone--vip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: center;
  justify-items: center;
}

.hall__table {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition:
    transform 0.2s,
    opacity 0.3s;
}
.hall__table:hover {
  transform: scale(1.12);
}
.hall__table.selected .hall__table-shape {
  background: var(--accent);
  border-color: var(--accent);
}
.hall__table.selected .hall__table-num {
  color: var(--bg);
}
.hall__table--vip .hall__table-shape {
  border-color: rgba(196, 181, 160, 0.3);
}
.hall__table-num {
  font-size: 0.65rem;
  color: var(--dim);
  margin-top: 4px;
}
.hall__table-shape {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.2s;
}
.hall__table-shape--round {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.hall__table-shape--rect {
  width: 60px;
  height: 38px;
  border-radius: 4px;
}
.hall__table-shape--lg {
  width: 76px;
  height: 42px;
}
.hall__table-shape--xl {
  width: 100px;
  height: 46px;
}

.hall__bar {
  width: 100%;
  height: 6px;
  background: rgba(196, 181, 160, 0.15);
  border-radius: 3px;
  text-align: center;
  font-size: 0.55rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dim);
  padding-top: 10px;
}
.hall__entry {
  text-align: center;
  font-size: 0.55rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dim);
  padding-top: 4px;
}

.hall-panel {
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  overflow-y: auto;
}
.hall-panel__label {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}
.hall-panel__input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px;
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  outline: none;
  width: 100%;
  transition: border-color 0.3s;
}
.hall-panel__input:focus {
  border-color: var(--accent);
}
.hall-panel__times {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.hall-panel__time {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 0;
  color: var(--dim);
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.2s;
}
.hall-panel__time:hover {
  border-color: var(--accent);
  color: var(--text);
}
.hall-panel__time.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}
.hall-panel__guests {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hall-panel__guest-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  transition: border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hall-panel__guest-btn:hover {
  border-color: var(--accent);
}
.hall-panel__guest-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 300;
  min-width: 30px;
  text-align: center;
}
.hall-panel__selected-text {
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.6;
}
.hall-panel__confirm {
  margin-top: auto;
  background: var(--accent);
  color: var(--bg);
  border: none;
  padding: 14px;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.hall-panel__confirm:hover:not(:disabled) {
  background: var(--text);
}
.hall-panel__confirm:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.contact {
  padding: 100px 40px;
  text-align: center;
}
.contact__top {
  margin-bottom: 60px;
}
.contact__label {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}
.contact__top h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
}
.contact__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.contact__card {
  padding: 40px 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  transition: background .3s;
}
.contact__card:first-child {
  border-left: none;
}
.contact__card:hover {
  background: rgba(255, 255, 255, 0.02);
}
.contact__card-label {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}
.contact__card p {
  color: var(--dim);
  font-size: 0.88rem;
  line-height: 1.8;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  font-size: 0.78rem;
  color: var(--dim);
}
.footer a {
  color: var(--accent);
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer a svg {
  transition: transform .3s;
}
.footer a:hover svg {
  transform: translateX(3px);
}
.footer a:hover {
  color: var(--text);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.overlay.active {
  opacity: 1;
  pointer-events: all;
}
.overlay__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s;
}
.overlay__close:hover {
  color: #fff;
}
.overlay__inner {
  max-width: 80vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.overlay__inner img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
}
.overlay__inner h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.7);
}

.anim {
  opacity: 0;
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim--up {
  transform: translateY(32px);
}
.anim--left {
  transform: translateX(-32px);
}
.anim--right {
  transform: translateX(32px);
}
.anim--fade {
  transform: translateX(100px) translateY(-50%);
}
.anim.visible {
  opacity: 1;
  transform: translatex(0);
}
.anim--fade.visible {
  transform: translateY(-50%);
}

@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__img {
    max-height: 50vh;
  }
  .contact__cards {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact__card {
    border-left: none;
    padding: 28px 20px;
  }
  .contact__card:first-child {
    border-top: none;
  }
  .reviews__list {
    grid-template-columns: 1fr;
  }
  .hall-modal__body {
    grid-template-columns: 1fr;
    overflow: auto;
  }
  .hall {
    padding: 20px;
    align-items: flex-start;
  }
  .hall-panel {
    border-left: none;
    padding: 24px 20px;
  }
}
@media (max-width: 768px) {
  .burger {
    display: flex;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__left {
    padding: 120px 20px 60px;
  }
  .hero__right {
    height: 50vh;
  }
  .hero__side {
    display: none;
  }
  .works__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .works,
  .about,
  .contact,
  .reviews {
    padding: 60px 20px;
  }
  .booking {
    min-height: 360px;
  }
  .nav {
    padding: 16px 20px;
  }
  .footer {
    padding: 20px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .hall__floor {
    width: 100%;
  }
  .hall__zone--window,
  .hall__zone--center {
    grid-template-columns: repeat(2, 1fr);
  }
  .hall-modal__header {
    padding: 16px 20px;
  }
  .hall-modal__header h2 {
    font-size: 1.1rem;
  }
}
