@import 'assets/fonts.css';

/* VOICE Karaoke — stylesheet (Lora display + Montserrat UI) */

:root {
  --ink:        #070606;   /* near-pure black */
  --ink-2:      #0e0c0b;   /* surface */
  --ink-3:      #16130f;   /* raised */
  --cream:      #f4efe4;   /* warm white text */
  --cream-dim:  rgba(244,239,228,.82);
  --gold:       #c9a15f;
  --gold-soft:  #e3c68d;
  --gold-grad:  linear-gradient(110deg, #ffbb00, #e1ad4d 38%, #dbbb09 68%, #ffbb00);
  --line:       rgba(244,239,228,.13);

  --serif: 'Lora', Georgia, 'Times New Roman', serif;
  --sans: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body { margin: 0; background: var(--ink); color: var(--cream);
  font-family: var(--sans); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; text-wrap: balance; margin: 0; }

.container { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.btn { display: inline-block; font-family: var(--sans); font-weight: 600; font-size: 13px;
  letter-spacing: .1em; text-transform: uppercase; text-decoration: none; padding: 16px 34px;
  border: none; border-radius: 0; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease; }
.btn--gold { background: var(--gold-grad); color: #1a1204; }
.btn--gold:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(255,187,0,.28); }
/* animated amber fill — buttons only */
.btn--gold, .nav__book { background-size: 230% 100%; animation: amberFlow 7s ease-in-out infinite; }
@keyframes amberFlow { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@media (prefers-reduced-motion: reduce) { .btn--gold, .nav__book { animation: none; } }
.btn--ghost { background: transparent; color: var(--cream); padding: 0; font-weight: 500; }
.btn--ghost:hover { color: var(--cream); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------- NAV ---------- */
.nav { position: sticky; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(10,9,8,.85); backdrop-filter: blur(12px) saturate(1.1); }
.nav__row { display: flex; align-items: center; gap: 20px; padding: 14px 0; }
.nav__logo { display: inline-flex; flex-shrink: 0; }
.nav__logo img { height: 40px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 28px; margin-left: 44px; }
.nav__links a { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--cream-dim);
  text-decoration: none; white-space: nowrap; transition: color .18s ease; }
.nav__links a:hover { color: var(--cream); }
.nav__info { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.nav__info a, .nav__info span { font-size: 14px; font-weight: 600; color: var(--cream); text-decoration: none; white-space: nowrap; letter-spacing: .01em; }
.nav__info a:hover { color: var(--cream); }
.nav__info .addr { color: var(--cream); }
.nav__book { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: #1a1204; background: var(--gold-grad); padding: 11px 22px; border-radius: 0; text-decoration: none; white-space: nowrap; }
.nav__info .nav__book, .nav__info .nav__book:hover { color: #1a1204; }
/* language switcher (RU | EN) */
.nav__lang { display: inline-flex; align-items: center; gap: 6px; font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .04em; white-space: nowrap; }
.nav__lang a { color: var(--cream-dim); text-decoration: none; transition: color .18s ease; }
.nav__lang a:hover { color: var(--cream); }
.nav__lang a.is-active { color: var(--gold); }
.nav__lang .sep { color: var(--line); }
/* burger (animates to X) + full-screen mobile menu */
.nav__burger { display: none; width: 40px; height: 26px; position: relative; padding: 0; background: none; border: 0; cursor: pointer; }
.nav__burger span { position: absolute; left: 2px; right: 2px; height: 2.5px; background: var(--cream); border-radius: 2px; transition: transform .3s ease, opacity .3s ease, top .3s ease; }
.nav__burger span:nth-child(1) { top: 4px; }
.nav__burger span:nth-child(2) { top: 12px; }
.nav__burger span:nth-child(3) { top: 20px; }
body.menu-open .nav__burger span:nth-child(1) { top: 12px; transform: rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { top: 12px; transform: rotate(-45deg); }
.nav__mobile { display: none; }
body.menu-open { overflow: hidden; }
@media (max-width: 1200px) { .nav__info .addr { display: none; } }
@media (max-width: 1000px) {
  .nav__links { display: none; }
  .nav__info .nav__book { display: none; }
  .nav__info { gap: 16px; margin-left: auto; margin-right: 14px; }
  .nav__info a { font-size: 17px; }
  .nav__burger { display: block; }
  .nav__mobile {
    display: flex; position: fixed; inset: 0; z-index: 40;
    flex-direction: column; align-items: center; justify-content: center; gap: 2px;
    background: rgba(8,7,6,.98); backdrop-filter: blur(8px);
    padding: 96px 24px 48px; text-align: center;
    opacity: 0; visibility: hidden; transform: scale(1.05);
    transition: opacity .32s ease, transform .32s ease, visibility .32s ease;
  }
  body.menu-open .nav__mobile { opacity: 1; visibility: visible; transform: scale(1); }
  .nav__mobile a { padding: 13px; font-size: 18px; text-transform: uppercase; letter-spacing: .1em; color: var(--cream-dim); text-decoration: none; transition: color .18s ease; }
  .nav__mobile a:hover { color: var(--cream); }
  .nav__mobile .nav__book { color: #1a1204; margin-top: 22px; padding: 15px 44px; }
  .nav__info .nav__lang { display: none; }
  .nav__mobile .nav__lang { margin-top: 24px; font-size: 16px; gap: 10px; }
  .nav__mobile .nav__lang a { padding: 6px; font-size: 16px; }
}
@media (prefers-reduced-motion: reduce) { .nav__mobile, .nav__burger span { transition: none; } }

/* ---------- HERO ---------- */
.hero { position: relative; width: calc(100% - 2*var(--gutter)); max-width: var(--maxw);
  margin: 24px auto 56px; height: clamp(380px, 52vh, 560px);
  border-radius: 0; overflow: hidden; display: flex; align-items: center; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; transform: translateX(4%) scale(1.08); }
.hero__bg::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,6,6,.92) 0%, rgba(7,6,6,.72) 34%, rgba(7,6,6,.05) 62%, transparent 100%); }
.hero__content { position: relative; padding: 0 clamp(28px, 4vw, 56px); max-width: 52%; }
.hero__slogan { font-size: clamp(26px, 3.4vw, 46px); font-weight: 500; letter-spacing: -.01em; margin: 0 0 22px; }
.hero__slogan em { font-style: normal; font-weight: 600; color: #fff; }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; }
@media (max-width: 720px) {
  .hero { height: 46vh; min-height: 340px; margin: 14px auto 0; align-items: flex-end; }
  .hero__content { max-width: 100%; padding: 0 clamp(20px, 6vw, 28px) 34px; }
  .hero__bg::after { background: linear-gradient(0deg, rgba(7,6,6,.94) 6%, rgba(7,6,6,.45) 55%, transparent 100%); }
  .hero__bg img { transform: translateX(7%) scale(1.14); } /* mobile keeps the tighter framing */
  .about { padding-top: clamp(34px, 7vh, 60px); }
}

/* ---------- ABOUT ---------- */
.about { background: var(--ink); padding-block: clamp(84px, 14vh, 170px) clamp(44px, 6.5vw, 84px); }
.about__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.about__lead { display: flex; flex-direction: column; }
.about h2 { font-size: clamp(28px, 4vw, 46px); margin-bottom: 20px; }
.about__text { color: var(--cream-dim); font-size: clamp(15px, 1.5vw, 17px); max-width: 46ch; margin: 0; }
/* collage — wider, rectangular photos */
.about__gallery { display: grid; gap: 10px; }
.about__gallery-main { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.about__gallery-main a { display: block; aspect-ratio: 3/2; overflow: hidden; }
.about__gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.about__gallery-thumbs a { display: block; aspect-ratio: 4/3; overflow: hidden; }
.about__gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.about__gallery-main img { object-position: center 28%; } /* portrait people-shots: keep faces, not torsos */
.about__gallery a:hover img { transform: scale(1.05); }
.about__gallery-more { align-self: flex-start; margin-top: 6px; }
.about__info { display: grid; gap: 18px; margin-top: 36px; }
.about__info-row { display: grid; gap: 3px; }
.about__info .lbl { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #fff; }
.about__info .val { font-size: 14px; color: var(--cream-dim); }
.about__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.about__tag { font-family: var(--sans); font-size: 12px; letter-spacing: .03em; color: var(--cream); background: var(--ink-3); padding: 9px 15px; }
@media (max-width: 780px) {
  /* flatten lead + gallery so we can reorder: heading → text → images → info → tags */
  .about__grid { display: flex; flex-direction: column; gap: 0; align-items: stretch; }
  .about__lead, .about__gallery { display: contents; }
  .about h2 { order: 1; text-align: center; }
  .about__text { order: 2; text-align: center; max-width: none; margin-bottom: 26px; }
  .about__gallery-main { order: 3; }
  .about__gallery-thumbs { order: 4; margin-top: 10px; }
  .about__gallery-more { order: 5; align-self: center; margin-top: 18px; }
  .about__info { order: 6; margin-top: 32px; }
  .about__info-row { text-align: center; }
  .about__tags { order: 7; justify-content: center; margin-top: 20px; }
}

/* ---------- generic sections (base skin) ---------- */
section:not(.hero):not(.about):not(.subhero):not(.gallery-page) { padding-block: clamp(44px, 6.5vw, 84px); }
section:not(.hero):not(.about) h2 { font-family: var(--serif); font-size: clamp(26px, 4vw, 44px); margin-bottom: 16px; }
section h3 { font-family: var(--sans); font-weight: 600; font-size: 17px; margin-bottom: 6px; color: var(--cream); }
section p, section li { color: var(--cream-dim); }
section a { color: var(--cream); text-decoration: none; }
section a:hover { color: #fff; }
/* ---------- section header (title + one-line desc) ---------- */
.section-head { margin-bottom: 34px; max-width: 64ch; }
/* centered section heads */
#rooms .section-head, #events .section-head, #menu .section-head, #team .section-head,
#reviews .section-head, #location .section-head, #contact .section-head {
  text-align: center; max-width: 64ch; margin-inline: auto;
}
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--cream); font-size: 15px; line-height: 1.55; margin: 0; text-wrap: balance; }

/* ---------- Залы ---------- */
.rooms__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.room-card { background: var(--ink-2); border-radius: 0; overflow: hidden; display: flex; flex-direction: column; }
.room-card__img { aspect-ratio: 16/10; overflow: hidden; flex: 0 0 auto; }
.room-card__img img { width: 100%; height: 100%; object-fit: cover; }
.rooms__grid .room-card:first-child .room-card__img img { object-position: center 30%; }
.room-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center; }
.room-card__body h3 { font-family: var(--serif); font-weight: 500; font-size: 24px; color: var(--cream); margin: 0; }
.room-card__specs { color: var(--cream-dim); font-size: 14px; margin: 0; text-wrap: balance; }
.room-card__specs .nw { white-space: nowrap; }
.room-card .btn { margin-top: 12px; }

/* ---------- Аренда залов (full-width bands) ---------- */
#events .section-head { margin-bottom: 40px; }
@media (min-width: 680px) { #events .section-head h2 { white-space: nowrap; } }
.events__bands { display: flex; flex-direction: column; }
.event-band { position: relative; min-height: clamp(168px, 24vh, 280px); display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center; text-decoration: none; isolation: isolate; }
.event-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s ease; }
.event-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(7,6,6,.6); transition: background .35s ease; }
.event-band, .event-band:hover { text-decoration: none; }
.event-band:hover > img { transform: scale(1.05); }
.event-band:hover::after { background: rgba(7,6,6,.42); }
.event-band__inner { display: flex; flex-direction: column; align-items: center; gap: 15px; }
.event-band__title { font-family: var(--sans); font-weight: 600; text-transform: uppercase; letter-spacing: .16em; font-size: clamp(15px, 2vw, 26px); color: #fff; }
.event-band__line { width: 200px; max-width: 44vw; height: 1px; background: rgba(255,255,255,.45); }
.event-band__more { position: absolute; left: 0; right: 0; bottom: 22px; text-align: center;
  font-family: var(--sans); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.85);
  opacity: 0; transform: translateY(6px); transition: opacity .3s ease, transform .3s ease; }
.event-band:hover .event-band__more { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .event-band > img, .event-band__more { transition: none; } }

/* ---------- Меню ---------- */
.menu__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.menu-cat { position: relative; aspect-ratio: 3/4; border-radius: 0; overflow: hidden; display: flex; align-items: flex-end; justify-content: center; isolation: isolate; text-decoration: none; }
.menu-cat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .45s ease; }
.menu-cat::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(7,6,6,.9), rgba(7,6,6,.2) 70%); }
.menu-cat:hover img { transform: scale(1.06); }
.menu-cat span { font-family: var(--serif); font-size: 23px; color: var(--cream); padding-bottom: 22px; }

/* ---------- Команда ---------- */
.team__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.team-card { text-align: center; cursor: pointer; }
.team-card__ph { width: 100%; aspect-ratio: 1/1; border-radius: 50%; overflow: hidden; margin: 0 auto 14px; }
.team-card__ph img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transition: transform .45s ease; }
.team-card[data-member="lusya"] .team-card__ph img { object-position: center 42%; }
.team-card[data-member="dmitry"] .team-card__ph img { object-position: center 8%; }
.team-card[data-member="valeria"] .team-card__ph img { object-position: center 30%; transform: scale(2.2); }
.team-card[data-member="valeria"]:hover .team-card__ph img, .team-card[data-member="valeria"]:focus-visible .team-card__ph img { transform: scale(2.3); }
.team-card:hover .team-card__ph img, .team-card:focus-visible .team-card__ph img { transform: scale(1.06); }
.team-card h3 { font-family: var(--serif); font-weight: 500; font-size: 17px; color: var(--cream); margin: 0 0 3px; transition: color .2s ease; }
.team-card:hover h3 { color: #fff; }
.team-card p { font-size: 13px; margin: 0; color: var(--cream-dim); letter-spacing: .04em; }

/* member popup — compact centered card */
.team-modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 24px;
  background: rgba(5,4,4,.9); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
.team-modal.open { opacity: 1; visibility: visible; }
.team-modal__panel { position: relative; width: min(440px, 100%); max-height: 88vh; overflow-y: auto;
  background: var(--ink-2); padding: 0 0 26px; text-align: center; }
.team-modal__photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin-bottom: 20px; }
.team-modal__photos img { width: 100%; height: 100%; aspect-ratio: 3/4; object-fit: cover; }
.team-modal__name { font-family: var(--serif); font-weight: 500; font-size: 24px; color: #fff; margin: 0 0 4px; padding: 0 26px; }
.team-modal__role { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin: 0; padding: 0 26px; }
.team-modal__panel[data-count="1"] { width: min(340px, 100%); }
.team-modal__panel[data-count="1"] .team-modal__photos { grid-template-columns: 1fr; }
.team-modal__panel[data-count="1"] .team-modal__photos img { aspect-ratio: 2/3; }
.team-modal__close { position: absolute; top: 10px; right: 10px; z-index: 2; width: 40px; height: 40px; display: grid; place-items: center;
  background: rgba(7,6,6,.55); border: 0; color: var(--cream); cursor: pointer; transition: color .2s ease, background .2s ease; }
.team-modal__close:hover { color: #fff; background: rgba(7,6,6,.8); }
.team-modal__close svg { width: 22px; height: 22px; }
@media (prefers-reduced-motion: reduce) { .team-modal { transition: none; } .team-card__ph img { transition: none; } }

/* ---------- Отзывы ---------- */
.reviews__bar { display: flex; align-items: center; gap: 14px 24px; flex-wrap: wrap; background: var(--ink-2); padding: 20px 26px; margin-bottom: 26px; }
.reviews__score { display: inline-flex; align-items: baseline; gap: 8px; }
.reviews__score b { font-family: var(--serif); font-size: 30px; color: #fff; line-height: 1; }
.reviews__star { color: #f5b301; font-size: 22px; }
.reviews__count { color: var(--cream-dim); font-size: 14px; padding-left: 14px; border-left: 1px solid var(--line); }
.reviews__platform { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 600; font-size: 14px; margin-left: auto; }
.reviews__platform svg { width: 18px; height: 18px; display: block; }

.reviews__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.review-card { background: var(--ink-2); padding: 22px; display: flex; flex-direction: column; gap: 12px; text-align: left; }
.review-card__head { display: flex; align-items: center; gap: 12px; }
.review-avatar { position: relative; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 600; font-size: 17px; background: var(--c, #6b7280); flex: 0 0 auto; }
.review-avatar svg { position: absolute; right: -3px; bottom: -3px; width: 16px; height: 16px; background: var(--ink-2); border-radius: 50%; padding: 1px; }
.review-card__meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.review-card__name { color: #fff; font-weight: 600; font-size: 14px; }
.review-card__sub { color: var(--cream-dim); font-size: 12px; }
.review-stars { color: #f5b301; letter-spacing: 3px; font-size: 14px; }
.review-card__text { color: var(--cream-dim); font-size: 14px; line-height: 1.55; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
.review-card__more { color: #fff; font-size: 13px; text-decoration: none; margin-top: auto; }
.review-card__more:hover { color: var(--gold); }
.reviews__cta { margin: 28px auto 0; display: block; width: max-content; }
@media (max-width: 1000px) { .reviews__grid { grid-template-columns: repeat(2, 1fr); } }
/* mobile: one clean centered summary line (no floating Google / hanging divider) */
@media (max-width: 600px) {
  .reviews__bar { justify-content: center; gap: 0; padding: 16px; margin-bottom: 20px; }
  .reviews__count { border-left: 0; padding-left: 0; }
  .reviews__platform { margin-left: 0; }
  .reviews__count::before, .reviews__platform::before { content: "·"; margin: 0 12px; color: var(--cream-dim); }
}
/* mobile: two rows, one full-width slide at a time (no peek) + progress hint */
.reviews__progress { display: none; }
@media (max-width: 700px) {
  .reviews__grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    grid-template-rows: repeat(2, 1fr);
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
    scrollbar-width: none;
  }
  .reviews__grid::-webkit-scrollbar { display: none; }
  .review-card { scroll-snap-align: start; padding: 22px 20px; text-align: center; align-items: center; }
  .review-card__head { justify-content: center; }
  .review-card__meta { align-items: center; }
  .reviews__progress { display: block; position: relative; width: 96px; height: 3px; margin: 16px auto 0; background: rgba(244,239,228,.16); }
  .reviews__progress span { position: absolute; top: 0; bottom: 0; left: 0; width: 25%; background: var(--cream); transition: left .12s ease, width .12s ease; }
}

/* ---------- Локация ---------- */
.location__wrap { position: relative; }
.location__map { height: clamp(360px, 52vh, 560px); overflow: hidden; }
.location__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) brightness(.78) contrast(1.05); }
.location__card { position: absolute; left: clamp(16px, 4%, 40px); bottom: clamp(16px, 8%, 44px); max-width: 400px;
  background: rgba(10,9,8,.92); backdrop-filter: blur(12px); padding: 28px 32px; text-align: left;
  display: flex; flex-direction: column; gap: 10px; }
.location__addr { font-family: var(--serif); font-size: clamp(20px, 2.4vw, 26px); color: #fff; margin: 0 0 4px; }
.location__line { color: var(--cream-dim); font-size: 14px; line-height: 1.5; margin: 0; }
.location__line b { color: #fff; font-weight: 600; }
.location__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; margin-top: 12px; }
@media (max-width: 640px) {
  .location__map { height: 220px; }
  .location__card { position: static; max-width: none; margin-top: 12px; padding: 24px; text-align: center; align-items: center; }
  .location__actions { justify-content: center; }
}

/* ---------- Контакты ---------- */
#contact { position: relative; isolation: isolate; }
#contact::before { content: ""; position: absolute; inset: 0; z-index: -2; background: url('assets/img/events-day.webp') center/cover no-repeat; }
#contact::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(rgba(7,6,6,.9), rgba(7,6,6,.83)); }
.contact__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 60px); align-items: start; max-width: 900px; margin-inline: auto; }
.contact__form { display: flex; flex-direction: column; gap: 14px; }
.contact__form input, .contact__form textarea { width: 100%; max-width: none; background: var(--ink-2); color: var(--cream); border: 0; padding: 15px 18px; font: inherit; font-size: 15px; }
.contact__form textarea { resize: vertical; min-height: 120px; }
.contact__form input::placeholder, .contact__form textarea::placeholder { color: var(--cream-dim); }
.contact__form input:focus, .contact__form textarea:focus { outline: none; box-shadow: inset 0 -2px 0 var(--gold); }
.contact__form .btn { align-self: flex-start; margin-top: 4px; }
.contact__form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-status { margin: 6px 0 0; font-size: 14px; min-height: 1.2em; }
.form-status.is-ok { color: var(--gold); }
.form-status.is-err { color: #e6836f; }
.contact__phone { display: inline-block; font-family: var(--serif); font-size: clamp(24px, 2.8vw, 32px); color: #fff; text-decoration: none; margin-bottom: 20px; }
.contact__phone:hover { color: var(--gold); }
.contact__socials { display: flex; gap: 12px; }
.social-btn { width: 50px; height: 50px; display: grid; place-items: center; background: var(--ink-2); color: var(--cream); transition: background .2s ease, color .2s ease; }
.social-btn:hover { background: var(--ink-3); color: #fff; }
.social-btn svg { width: 22px; height: 22px; }
.contact__hours { color: var(--cream-dim); font-size: 13px; margin: 18px 0 0; }
.contact__hours b { color: #fff; font-weight: 600; }

/* ---------- footer + sticky CTA ---------- */
.site-footer { padding-block: 44px; border-top: 1px solid rgba(244,239,228,.1); }
.footer__top { display: flex; align-items: center; justify-content: space-between; gap: 24px 40px; flex-wrap: wrap; }
.footer__logo { display: inline-flex; }
.footer__logo img { height: 46px; width: auto; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.footer__nav a { font-size: 12.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--cream-dim); text-decoration: none; transition: color .18s ease; }
.footer__nav a:hover { color: var(--cream); }
.footer__socials { display: flex; gap: 10px; }
.footer__socials .social-btn { width: 42px; height: 42px; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px 28px; margin-top: 30px; padding-top: 22px;
  border-top: 1px solid rgba(244,239,228,.08); color: var(--cream-dim); font-size: 13px; }
.footer__bottom a { color: var(--cream-dim); text-decoration: none; }
.footer__bottom a:hover { color: var(--cream); }
@media (max-width: 900px) {
  .contact__form .btn { align-self: center; }
  .contact__direct { text-align: center; }
  .contact__socials { justify-content: center; }
}
@media (max-width: 640px) {
  .footer__top { flex-direction: column; align-items: center; text-align: center; }
  .footer__nav { justify-content: center; }
  .footer__bottom { justify-content: center; text-align: center; }
}
/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .rooms__grid, .contact__grid { grid-template-columns: 1fr; }
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
  /* flex-wrap + center so the odd last avatar centers instead of sitting left */
  .team__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
  .team-card { width: calc((100% - 40px) / 3); }
}
@media (max-width: 520px) { .team-card { width: calc((100% - 20px) / 2); } }
@media (max-width: 700px) {
  .room-card__body { padding: 22px 14px 26px; }
}

/* ============ SUBPAGE: hero band (gallery / menu / events) ============ */
.subhero { position: relative; padding-block: clamp(56px, 12vh, 120px) clamp(20px, 3.5vw, 40px); text-align: center; }
.subhero h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(32px, 6vw, 60px); margin: 0 0 14px; }
.subhero p { color: var(--cream-dim); font-size: clamp(15px, 1.6vw, 17px); max-width: 56ch; margin: 0 auto; text-wrap: balance; }
.subpage-back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px; font-family: var(--sans);
  font-size: 12px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--cream-dim); text-decoration: none; }
.subpage-back:hover { color: var(--cream); }

/* ---------- gallery page (natural-aspect masonry + lightbox, supports video) ---------- */
.gallery-page { padding-top: clamp(8px, 1.5vw, 18px); padding-bottom: clamp(56px, 9vw, 110px); }
.gal-grid { columns: 3; column-gap: 14px; }
.gal-grid a { position: relative; display: block; margin: 0 0 14px; overflow: hidden; break-inside: avoid; cursor: zoom-in; }
.gal-grid img { width: 100%; height: auto; display: block; transition: transform .5s ease, opacity .5s ease; }
.gal-grid a:hover img { transform: scale(1.04); }
@media (max-width: 1000px) { .gal-grid { columns: 2; } }
@media (max-width: 560px)  { .gal-grid { column-gap: 8px; } .gal-grid a { margin-bottom: 8px; } }
/* video tiles: poster + play badge */
.gal-item--video { cursor: pointer; }
.gal-play { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; }
.gal-play span { width: 62px; height: 62px; border-radius: 50%; background: rgba(7,6,6,.5); display: grid; place-items: center; transition: background .2s ease; }
.gal-item--video:hover .gal-play span { background: rgba(7,6,6,.72); }
.gal-play svg { width: 24px; height: 24px; color: #fff; margin-left: 3px; }

.lb { position: fixed; inset: 0; z-index: 100; background: rgba(5,4,4,.96); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
.lb.open { opacity: 1; visibility: visible; }
.lb__img, .lb__vid { max-width: 92vw; max-height: 86vh; box-shadow: 0 24px 80px rgba(0,0,0,.6); }
.lb__vid { display: none; }
.lb.is-video .lb__img { display: none; }
.lb.is-video .lb__vid { display: block; }
.lb__btn { position: absolute; background: none; border: 0; color: var(--cream); cursor: pointer; padding: 10px;
  display: grid; place-items: center; transition: color .2s ease; }
.lb__btn:hover { color: #fff; }
.lb__btn svg { width: 30px; height: 30px; }
.lb__close { top: 18px; right: 18px; }
.lb__prev { left: 10px; top: 50%; transform: translateY(-50%); }
.lb__next { right: 10px; top: 50%; transform: translateY(-50%); }
.lb__count { position: absolute; bottom: 18px; left: 0; right: 0; text-align: center; color: var(--cream-dim); font-size: 13px; letter-spacing: .1em; }
@media (max-width: 700px) { .lb__btn svg { width: 24px; height: 24px; } .lb__prev { left: 2px; } .lb__next { right: 2px; } }

/* ---------- menu page (tabs + typographic list) ---------- */
.menu-page { padding-bottom: clamp(56px, 9vw, 110px); }
.menu-tabs { position: sticky; top: 65px; z-index: 30; display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 6px;
  background: rgba(7,6,6,.92); backdrop-filter: blur(10px); padding: 12px 0; margin-bottom: clamp(28px, 4vw, 48px); }
.menu-tab { font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--cream-dim); background: none; border: 0; padding: 10px 18px; cursor: pointer; transition: color .2s ease; }
.menu-tab:hover { color: var(--cream); }
.menu-tab.active { color: #fff; box-shadow: inset 0 -2px 0 #fff; }

.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-by { text-align: center; color: var(--cream-dim); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 clamp(28px, 4vw, 44px); }
.menu-by b { color: #fff; font-weight: 600; }
.menu-cols { columns: 2; column-gap: clamp(36px, 5vw, 64px); }
@media (max-width: 800px) { .menu-cols { columns: 1; } }
.menu-group { break-inside: avoid; margin: 0 0 30px; }
.menu-group h3 { display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  font-family: var(--serif); font-weight: 500; font-size: clamp(20px, 2.4vw, 26px); color: #fff; margin: 0 0 4px;
  padding-bottom: 10px; border-bottom: 1px solid var(--line); letter-spacing: .02em; }
.menu-group__price { font-family: var(--sans); font-weight: 600; font-size: 14px; color: var(--cream); white-space: nowrap; }
.menu-group__note { color: var(--cream-dim); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; margin: 12px 0 14px; }
.menu-group > .menu-item:first-of-type { margin-top: 14px; }
.menu-subhead { font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin: 16px 0 8px; }
.menu-item__row--nop .menu-item__dots { display: none; }
.menu-item { margin: 0 0 16px; }
.menu-item__row { display: flex; align-items: baseline; gap: 10px; }
.menu-item__name { font-family: var(--sans); font-weight: 600; font-size: 14.5px; letter-spacing: .02em; text-transform: uppercase; color: #fff; }
.menu-item__dots { flex: 1 1 auto; border-bottom: 1px dotted rgba(244,239,228,.26); transform: translateY(-3px); min-width: 16px; }
.menu-item__price { font-family: var(--sans); font-weight: 600; font-size: 14.5px; color: var(--cream); white-space: nowrap; }
.menu-item__desc { color: var(--cream-dim); font-size: 13px; line-height: 1.5; margin: 4px 0 0; max-width: 52ch; }
.menu-note { text-align: center; color: rgba(244,239,228,.45); font-size: 13px; font-style: italic; margin-top: 40px; }

/* ---------- events page ---------- */
.events-page { padding-bottom: clamp(40px, 6vw, 72px); }
.event-pkg { display: grid; grid-template-columns: 1.05fr 1fr; background: var(--ink-2); overflow: hidden; margin-bottom: clamp(18px, 3vw, 28px); scroll-margin-top: 90px; }
.event-pkg:nth-child(even) .event-pkg__media { order: 2; }
.event-pkg__media { position: relative; min-height: 320px; }
.event-pkg__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
#buyout .event-pkg__media img { object-position: center 30%; }
.event-pkg__body { padding: clamp(26px, 3.5vw, 48px); display: flex; flex-direction: column; }
.event-pkg__body h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(24px, 3vw, 34px); color: #fff; margin: 0 0 8px; }
.event-pkg__cap { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--cream-dim); margin: 0 0 22px; }
.event-rate { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.event-rate:first-of-type { border-top: 1px solid var(--line); }
.event-rate .days { display: block; font-family: var(--sans); font-weight: 600; font-size: 13.5px; letter-spacing: .04em; text-transform: uppercase; color: #fff; }
.event-rate .brk { display: block; font-size: 12.5px; color: var(--cream-dim); margin-top: 4px; }
.event-rate .tot { font-family: var(--serif); font-size: clamp(20px, 2.4vw, 26px); color: var(--cream); white-space: nowrap; }
.event-request { font-family: var(--serif); font-size: clamp(18px, 2.2vw, 22px); color: var(--cream); margin: 6px 0 0; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.event-note { color: var(--cream-dim); font-size: 13px; line-height: 1.55; margin: 16px 0 0; }
.event-note b { color: #fff; font-weight: 600; }
.event-incl { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 9px; }
.event-incl li { position: relative; padding-left: 20px; color: var(--cream-dim); font-size: 13.5px; line-height: 1.5; }
.event-incl li::before { content: "—"; position: absolute; left: 0; color: #fff; }
.event-incl b { color: #fff; font-weight: 600; }
.event-pkg__body .btn { align-self: flex-start; margin-top: 24px; }

.event-terms { margin-top: clamp(36px, 5vw, 64px); }
section.events-page .event-terms h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(24px, 2.8vw, 32px); color: #fff; text-align: center; margin: 0 0 clamp(30px, 4.5vw, 56px); }
.event-terms__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 3vw, 36px); }
.term h3 { font-family: var(--sans); font-weight: 600; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin: 0 0 8px; }
.term p { color: var(--cream-dim); font-size: 13.5px; line-height: 1.6; margin: 0; }
.events-cta { text-align: center; margin-top: clamp(40px, 6vw, 72px); display: flex; flex-wrap: wrap; gap: 16px 22px; justify-content: center; align-items: center; }
@media (max-width: 820px) {
  .event-pkg { grid-template-columns: 1fr; }
  .event-pkg:nth-child(even) .event-pkg__media { order: 0; }
  .event-pkg__media { min-height: 220px; }
  .event-terms__grid { grid-template-columns: 1fr; }
}
/* mobile: center everything */
@media (max-width: 680px) {
  .event-pkg__body { text-align: center; align-items: center; }
  .event-pkg__body h2 { text-wrap: balance; }
  .event-rate { flex-direction: column; align-items: center; text-align: center; gap: 5px; }
  .event-rate .tot { font-size: 26px; }
  .event-note, .event-request { text-align: center; }
  .event-incl { justify-items: center; }
  .event-incl li { padding-left: 0; text-align: center; }
  .event-incl li::before { content: none; }
  .event-pkg__body .btn { align-self: center; width: 100%; max-width: 300px; text-align: center; }
  .term { text-align: center; }
  .events-cta { flex-direction: column; }
  .events-cta .btn--gold { width: 100%; max-width: 300px; }
}
