/* ==========================================================
   Лофт «Комната» — прототип сайта
   Тёмная премиум-тема с золотым акцентом
   ========================================================== */

:root {
  --bg:           #0b0b0c;
  --bg-elev:     #131316;
  --bg-card:     #18181c;
  --bg-soft:     #202026;
  --line:         #2a2a31;
  --line-soft:   #1f1f25;
  --text:         #efeae0;
  --text-dim:    #a39d92;
  --text-muted: #6b665e;
  --gold:         #c9a96e;
  --gold-bright: #e6c98a;
  --gold-dark:   #8a7340;
  --accent-glow: rgba(201, 169, 110, 0.18);
  --danger:       #d96b6b;
  --radius:       14px;
  --radius-sm:    8px;
  --shadow-card: 0 1px 0 rgba(255,255,255,0.04) inset, 0 30px 60px -30px rgba(0,0,0,0.6);
  --shadow-gold: 0 10px 30px -10px rgba(201, 169, 110, 0.35);
  --container: 1180px;
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.gold {
  color: var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
}

/* ============== Header ============== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 12, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text);
}

.logo__dot {
  color: var(--gold);
}

.nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--text-dim);
}

.nav a:hover {
  color: var(--gold);
}

.header__phone {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: var(--text);
  border: 1px solid var(--line);
  padding: 10px 18px;
  border-radius: 999px;
  transition: all .2s ease;
}

.header__phone:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============== Buttons ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 16px 32px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 60%, var(--gold-dark) 100%);
  color: #1a1408;
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px -10px rgba(201, 169, 110, 0.5);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--block {
  width: 100%;
}

/* ============== Hero ============== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 120px;
  background:
    radial-gradient(circle at 80% 20%, rgba(201, 169, 110, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(201, 169, 110, 0.05) 0%, transparent 50%),
    var(--bg);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 18px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 999px;
  margin-bottom: 32px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -1px;
  margin: 0 0 24px;
}

.hero__sub {
  font-size: clamp(16px, 1.5vw, 20px);
  max-width: 600px;
  margin: 0 auto 48px;
  color: var(--text-dim);
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 700px;
  margin: 0 auto;
  gap: 24px;
  padding-top: 48px;
  border-top: 1px solid var(--line-soft);
}

.hero__meta > div {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.hero__meta strong {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero__meta span {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
}

/* ============== Section ============== */
.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--bg-elev);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.section__eyebrow {
  display: block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  text-align: center;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  text-align: center;
  letter-spacing: -0.5px;
  margin: 0 0 20px;
  line-height: 1.1;
}

.section__sub {
  font-size: 17px;
  text-align: center;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 64px;
}

/* ============== Events ============== */
.events {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.event-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .3s ease;
}

.event-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 110, 0.4);
  background: var(--bg-soft);
}

.event-card:hover::before {
  opacity: 1;
}

.event-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 110, 0.1);
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 24px;
}

.event-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 12px;
}

.event-card__text {
  font-size: 14px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.6;
}

/* ============== About / Gallery ============== */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text h3 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  margin: 0 0 24px;
  letter-spacing: -0.5px;
}

.about-text p {
  font-size: 16px;
  color: var(--text-dim);
  margin: 0 0 20px;
  line-height: 1.7;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.about-stat {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  padding: 20px;
  border-radius: var(--radius-sm);
}

.about-stat__num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
}

.about-stat__label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 0.5px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 130px;
  gap: 10px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  cursor: zoom-in;
  transition: transform .35s ease;
}

.gallery__item:hover {
  transform: translateY(-2px);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease, filter .35s ease;
  filter: brightness(0.85) saturate(1.05);
}

.gallery__item:hover img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1.1);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

.gallery__label {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
}

.gallery__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1a1408;
  background: var(--gold);
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Masonry-раскладка */
.gallery__item--hero {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery__item--wide {
  grid-column: span 2;
}
.gallery__item--tall {
  grid-row: span 2;
}

/* ============== Video tour ============== */
.tour {
  margin-top: 96px;
  padding-top: 64px;
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: center;
}

.tour__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: #000;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7),
              0 0 0 1px rgba(201, 169, 110, 0.08);
}

.tour__video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  object-fit: cover;
}

.tour__eyebrow {
  display: inline-block !important;
  text-align: left !important;
  margin-bottom: 16px;
}

.tour__text h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.5px;
  margin: 0 0 20px;
  line-height: 1.15;
}

.tour__text p {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0 0 16px;
  max-width: 520px;
}

.tour__note {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 960px) {
  .tour {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 64px;
    padding-top: 48px;
  }
  .tour__media {
    max-width: 320px;
    margin: 0 auto;
  }
  .tour__text { text-align: center; }
  .tour__text p { margin-left: auto; margin-right: auto; }
  .tour__eyebrow { display: inline-block; }
}

/* ============== Lightbox ============== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 10, 0.86);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, visibility 0s linear .35s;
}

.lightbox--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .35s ease;
}

.lightbox__figure {
  position: relative;
  margin: 0;
  max-width: 92vw;
  max-height: 88vh;
  transform: scale(0.94);
  opacity: 0;
  transition: transform .4s cubic-bezier(.2, .8, .2, 1),
              opacity   .3s ease;
}

.lightbox--open .lightbox__figure {
  transform: scale(1);
  opacity: 1;
}

.lightbox__img {
  display: block;
  max-width: 92vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6),
              0 0 0 1px rgba(255, 255, 255, 0.04);
  background: #0a0a0a;
}

.lightbox__caption {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  display: flex;
  justify-content: center;
  gap: 12px;
}

.lightbox__counter { color: var(--gold); font-weight: 500; }
.lightbox__sep    { color: var(--text-muted); }

.lightbox__close,
.lightbox__btn {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.45);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: all .2s ease;
}

.lightbox__close:hover,
.lightbox__btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(0, 0, 0, 0.75);
}

.lightbox__close {
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 26px;
  padding-bottom: 3px;  /* visual centering of × glyph */
}

.lightbox__close::before { content: '×'; }

.lightbox__btn {
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  font-size: 36px;
  padding-bottom: 4px;
}

.lightbox__btn--prev { left: 24px; }
.lightbox__btn--next { right: 24px; }
.lightbox__btn--prev::before { content: '‹'; }
.lightbox__btn--next::before { content: '›'; }

/* Compensate for scrollbar disappearing when body locks */
body.lb-open {
  overflow: hidden;
  padding-right: var(--scrollbar-w, 0);
}

@media (max-width: 720px) {
  .lightbox__btn { width: 44px; height: 44px; font-size: 28px; }
  .lightbox__btn--prev { left: 8px; }
  .lightbox__btn--next { right: 8px; }
  .lightbox__close { top: 12px; right: 12px; width: 40px; height: 40px; font-size: 22px; }
  .lightbox__img { max-height: 75vh; }
  .lightbox__caption { bottom: -32px; font-size: 11px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .lightbox,
  .lightbox__figure { transition: none; }
}

.equipment {
  margin-top: 32px;
}

.equipment__title {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 16px;
}

.equipment__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.equipment__list li {
  font-size: 13px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--text-dim);
}

/* ============== Pricing ============== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 40px 32px;
}

.pricing-card__head {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.pricing-card__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 24px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-top: 1px solid var(--line-soft);
}

.pricing-row:first-of-type {
  border-top: none;
  padding-top: 0;
}

.pricing-row__name {
  font-size: 15px;
  color: var(--text-dim);
}

.pricing-row__price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text);
  font-weight: 500;
}

.pricing-row__price--gold {
  color: var(--gold);
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ============== Booking ============== */
.booking {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.booking-panel {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 40px;
}

.booking-panel__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 32px;
}

.field {
  margin-bottom: 20px;
}

.field__label {
  display: block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.field__input,
.field__select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color .2s ease;
}

.field__input:focus,
.field__select:focus {
  outline: none;
  border-color: var(--gold);
}

.field__input::placeholder {
  color: var(--text-muted);
}

.field__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a96e' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.field__input[type="date"] {
  color-scheme: dark;
}

.field__hint {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
  min-height: 16px;
}

.field__hint--gold {
  color: var(--gold);
}

/* Calc result */
.calc-result {
  margin-top: 24px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.08), rgba(201, 169, 110, 0.02));
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: var(--radius);
}

.calc-result__placeholder {
  color: var(--text-muted);
  font-size: 14px;
  text-align: center;
  padding: 12px 0;
}

.result-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.result-price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
}

.result-sub {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 8px;
}

.result-savings {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  color: #7ed492;
  background: rgba(126, 212, 146, 0.1);
  padding: 4px 12px;
  border-radius: 999px;
}

.result-alt {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  font-size: 13px;
  color: var(--text-muted);
}

/* Form */
.form-note {
  font-size: 12px;
  text-align: center;
  color: var(--text-muted);
  margin: 16px 0 0;
  line-height: 1.5;
}

/* ============== Advantages ============== */
.advantages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.advantage {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: all .2s ease;
}

.advantage:hover {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-2px);
}

.advantage__num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 16px;
}

.advantage__title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: 0.3px;
}

.advantage__text {
  font-size: 13px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.6;
}

/* ============== Reviews ============== */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 32px;
}

.review__stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.review__text {
  font-size: 15px;
  color: var(--text-dim);
  font-style: italic;
  line-height: 1.7;
  margin: 0 0 24px;
}

.review__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}

.review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1408;
  font-weight: 600;
}

.review__name {
  font-size: 14px;
  font-weight: 600;
}

.review__meta {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============== FAQ ============== */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line-soft);
}

.faq-item__btn {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  text-align: left;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  letter-spacing: 0.2px;
}

.faq-item__btn:hover {
  color: var(--gold);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
  transition: transform .3s ease;
}

.faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  padding: 0 0 24px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
  max-width: 700px;
}

/* ============== Contacts ============== */
.contacts {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: stretch;
}

.contacts-info {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 40px;
}

.contacts-info h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 32px;
}

.contact-row {
  padding: 20px 0;
  border-top: 1px solid var(--line-soft);
}

.contact-row:first-of-type {
  border-top: none;
  padding-top: 0;
}

.contact-row__label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-row__value {
  font-size: 17px;
  color: var(--text);
}

.contact-row__value a:hover {
  color: var(--gold);
}

.contacts-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--bg-card);
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 70% 30%, rgba(201, 169, 110, 0.05) 0%, transparent 40%),
    linear-gradient(45deg, transparent 49%, rgba(255,255,255,0.02) 49% 51%, transparent 51%);
  background-size: 100% 100%, 100% 100%, 60px 60px;
}

.contacts-map__placeholder {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contacts-map__placeholder strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: none;
  margin-bottom: 8px;
}

/* ============== Footer ============== */
.footer {
  background: var(--bg-elev);
  border-top: 1px solid var(--line-soft);
  padding: 60px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.footer__title {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 16px;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dim);
}

.footer__list a:hover {
  color: var(--gold);
}

.footer__about p {
  font-size: 14px;
  color: var(--text-dim);
  margin: 16px 0 0;
  max-width: 320px;
  line-height: 1.6;
}

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* ============== Responsive ============== */
@media (max-width: 960px) {
  .nav { display: none; }
  .events,
  .pricing-grid,
  .reviews,
  .booking,
  .contacts,
  .about-grid { grid-template-columns: 1fr; }
  .advantages { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 0; }
  .hero { padding: 64px 0 80px; }
  .hero__meta { gap: 12px; }
  .booking-panel { padding: 28px; }
}

@media (max-width: 560px) {
  .header__phone { display: none; }
  .advantages { grid-template-columns: 1fr; }
  .hero__meta { grid-template-columns: 1fr; }
  .footer__grid,
  .footer__bottom { grid-template-columns: 1fr; flex-direction: column; gap: 12px; text-align: center; }
  .gallery__item--tall { grid-row: auto; aspect-ratio: 1; }
}
