/* ============================================
   БАРХАТНЫЙ СВЕТ — Главный CSS
   Палитра: Бургунд + Золото (от логотипа BS)
   ============================================ */

/* ---- RESET & ROOT ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-primary:   #1C0414;
  --bg-secondary: #2D0A1F;
  --bg-card:      #250819;
  --gold:         #C9A84C;
  --gold-light:   #DFC07A;
  --gold-dim:     rgba(201,168,76,0.18);
  --gold-border:  rgba(201,168,76,0.3);
  --text:         #F5EEE6;
  --text-subtle:  #D4C5B5;
  --text-muted:   rgba(245,238,230,0.5);
  --glass:        rgba(44,8,30,0.6);
  --radius:       16px;
  --radius-sm:    10px;
  --transition:   0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--bg-primary);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--bg-primary); }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold-border); border-radius: 3px; }

/* ---- CONTAINER ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- SECTION COMMONS ---- */
section { padding: 100px 0; position: relative; }

.section-tag {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}
.section-title em { color: var(--gold); font-style: italic; }

.section-subtitle {
  color: var(--text-subtle);
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 60px;
  max-width: 560px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold), #a8832a);
  color: var(--bg-primary);
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border);
}
.btn--ghost:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn--large { padding: 18px 42px; font-size: 0.95rem; }

/* ============================
   NAVIGATION
   ============================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(28,4,20,0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--gold-border);
}
.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo-bs {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold), #8a6020);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 13px; font-weight: 700;
  color: var(--bg-primary);
  flex-shrink: 0;
}
.nav__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--text);
  white-space: nowrap;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav__link {
  padding: 7px 14px;
  border-radius: 24px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-subtle);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav__link:hover { color: var(--gold); background: var(--gold-dim); }
.nav__link--cta {
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid var(--gold-border);
  margin-left: 6px;
}
.nav__link--cta:hover { background: var(--gold); color: var(--bg-primary); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================
   HERO
   ============================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 24px 80px;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, #3d1030 0%, var(--bg-primary) 70%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.04) 0%, transparent 50%);
}

.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: var(--gold);
  border-radius: 50%;
  animation: float linear infinite;
  opacity: 0;
}

@keyframes float {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.2; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0.8;
}

.hero__logo-wrap {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}
.hero__logo-circle {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(201,168,76,0.2), rgba(201,168,76,0.05));
  border: 2px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  animation: pulse-ring 4s ease-in-out infinite;
}
.hero__logo-circle::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12);
}
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.15); }
  50%       { box-shadow: 0 0 0 20px rgba(201,168,76,0); }
}
.hero__logo-initials {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--text);
}
.hero__title em { color: var(--gold); font-style: italic; display: block; }

.hero__subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-subtle);
  margin-bottom: 48px;
  line-height: 1.6;
}

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

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(44,8,30,0.5);
  border: 1px solid var(--gold-border);
  border-radius: 60px;
  padding: 20px 40px;
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
  gap: 16px;
}
.hero__stat { text-align: center; }
.hero__stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero__stat-divider {
  width: 1px; height: 36px;
  background: var(--gold-border);
  flex-shrink: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold-border), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* ============================
   ABOUT
   ============================ */
.about { background: var(--bg-secondary); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 16px;
}

.about__lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
}
.about__text p { color: var(--text-subtle); margin-bottom: 16px; font-weight: 300; }

.about__values { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.about__value {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about__value-icon { color: var(--gold); font-size: 0.7rem; margin-top: 6px; flex-shrink: 0; }
.about__value span:last-child { color: var(--text-subtle); font-size: 0.9rem; font-weight: 300; }

.about__ornament {
  position: relative;
}
.about__ornament-circle {
  position: absolute;
  top: -30px; right: -30px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  opacity: 0.3;
}
.about__ornament-text {
  background: var(--glass);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 36px;
  backdrop-filter: blur(12px);
  position: relative;
}
.about__quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 28px;
  line-height: 1.5;
}

.about__schedule h4 {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.about__schedule ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.about__schedule li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-subtle);
}
.about__schedule li span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gold);
  width: 22px;
  flex-shrink: 0;
}

/* ============================
   FORMATS
   ============================ */
.formats { background: var(--bg-primary); }

.formats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.format-card {
  background: var(--glass);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
}
.format-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.format-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.format-card:hover {
  border-color: rgba(201,168,76,0.6);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.1);
}
.format-card:hover::before { opacity: 1; }

.format-card__icon { font-size: 2rem; margin-bottom: 20px; }
.format-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.format-card__text {
  font-size: 0.88rem;
  color: var(--text-subtle);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 20px;
}
.format-card__price {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: uppercase;
}

/* ============================
   TEAM
   ============================ */
.team {
  background: var(--bg-secondary);
  overflow: hidden;
}
.team__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 20px;
}
.team-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  background: var(--glass);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 48px;
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
}
.team-card:hover {
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.team-card--reverse {
  grid-template-columns: 1fr auto;
}
.team-card--reverse .team-card__avatar { order: 2; }
.team-card--reverse .team-card__body { order: 1; }

.team-card__avatar {
  flex-shrink: 0;
}
.team-card__avatar-placeholder {
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 3px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  flex-shrink: 0;
}
.team-card__avatar-placeholder::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.1);
}
.team-card__avatar-placeholder--kate {
  background: radial-gradient(circle, #3a1040 0%, #1f0820 100%);
}
.team-card__avatar-placeholder--oksana {
  background: radial-gradient(circle, #2a1535 0%, #150820 100%);
}
.team-card__avatar-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--gold-border);
  display: block;
  flex-shrink: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.team-card:hover .team-card__avatar-img {
  transform: scale(1.03);
  box-shadow: 0 0 40px rgba(201,168,76,0.25);
}

.team-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.team-card__tags span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 4px 12px;
  border-radius: 20px;
}
.team-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.team-card__quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-light);
  line-height: 1.7;
  margin-bottom: 16px;
  border-left: 2px solid var(--gold-border);
  padding-left: 18px;
}
.team-card__bio {
  font-size: 0.88rem;
  color: var(--text-subtle);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 20px;
}
.team-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  transition: color var(--transition);
}
.team-card__link:hover { color: var(--gold-light); }

/* ============================
   AMBASSADORS
   ============================ */
.ambassadors {
  background: var(--bg-primary);
  overflow: hidden;
}
.ambassadors .container { margin-bottom: 40px; }

.ambassadors__slider-wrap {
  position: relative;
  padding: 0 60px;
}
.ambassadors__slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 20px 24px;
}
.ambassadors__slider::-webkit-scrollbar { display: none; }

.amb-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--glass);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}
.amb-card:hover {
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-4px);
}
.amb-card__avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,0.25), rgba(201,168,76,0.08));
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}
.amb-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.amb-card__role {
  font-size: 0.74rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.amb-card__text {
  font-size: 0.83rem;
  color: var(--text-subtle);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 18px;
}
.amb-card__tg {
  font-size: 0.78rem;
  color: var(--gold-border);
  font-weight: 500;
  transition: color var(--transition);
}
.amb-card__tg:hover { color: var(--gold); }

.amb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  z-index: 10;
  backdrop-filter: blur(10px);
}
.amb-btn:hover { background: var(--gold-dim); border-color: var(--gold); }
.amb-btn--prev { left: 8px; }
.amb-btn--next { right: 8px; }

/* ============================
   EVENTS ARCHIVE
   ============================ */
.events { background: var(--bg-secondary); }

.events__filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.events__filter {
  padding: 8px 22px;
  border-radius: 30px;
  border: 1px solid var(--gold-border);
  background: transparent;
  color: var(--text-subtle);
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.events__filter:hover { color: var(--gold); border-color: var(--gold); }
.events__filter.active {
  background: var(--gold-dim);
  color: var(--gold);
  border-color: var(--gold);
}

.events__timeline {
  position: relative;
  padding-left: 32px;
}
.events__timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold-border), transparent);
}

.events__season-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 24px 0 16px;
  position: relative;
}
.events__season-label::before {
  content: '';
  position: absolute;
  left: -28px; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(201,168,76,0.5);
}

.event-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  position: relative;
  transition: all var(--transition);
}
.event-item[data-hidden="true"] { display: none; }

.event-item::before {
  content: '';
  position: absolute;
  left: -28px; top: 30px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-border);
  border: 1px solid var(--gold);
  transition: all var(--transition);
}
.event-item:hover::before {
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201,168,76,0.4);
}

.event-item__date {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  padding-top: 4px;
  line-height: 1.5;
}

.event-item__body { flex: 1; }

.event-item__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
}
.event-item__badge--done { background: rgba(201,168,76,0.1); color: var(--gold); border: 1px solid var(--gold-border); }
.event-item__badge--cancelled { background: rgba(255,100,100,0.1); color: #e88; border: 1px solid rgba(255,100,100,0.2); }
.event-item__badge--upcoming { background: rgba(100,200,150,0.1); color: #8eb; border: 1px solid rgba(100,200,150,0.2); }

.event-item__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.event-item__text {
  font-size: 0.85rem;
  color: var(--text-subtle);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 12px;
}
.event-item__meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.76rem;
  color: var(--text-muted);
}
.event-item__price {
  color: var(--gold);
  font-weight: 600;
}
.event-item__price.free { color: #8eb; }

/* ============================
   GALLERY
   ============================ */
.gallery { background: var(--bg-primary); }
.gallery .section-tag, .gallery .section-title, .gallery .section-subtitle {
  padding: 0 24px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.gallery .section-subtitle { padding-bottom: 40px; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 8px;
  padding: 0;
}
.gallery__item { overflow: hidden; border-radius: 8px; position: relative; cursor: pointer; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }

.gallery__placeholder {
  width: 100%; height: 100%;
  background: var(--c, #2a0e25);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  transition: transform 0.5s ease;
  position: relative;
  overflow: hidden;
}
.gallery__placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,4,20,0.8) 0%, transparent 50%);
}
.gallery__placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery__item:hover .gallery__placeholder { transform: scale(1.05); }
.gallery__item:hover .gallery__placeholder::after { opacity: 1; }
.gallery__placeholder span {
  position: relative;
  z-index: 1;
  font-size: 0.75rem;
  color: var(--text-subtle);
  font-weight: 500;
}

/* ============================
   SOCIAL
   ============================ */
.social { background: var(--bg-secondary); }

.social__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.social-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--glass);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 40px;
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  cursor: pointer;
}
.social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.social-card--tg:hover { border-color: rgba(39,174,213,0.4); }
.social-card--vk:hover { border-color: rgba(70,130,200,0.4); }

.social-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.social-card--tg .social-card__icon {
  background: rgba(39,174,213,0.15);
  color: #29abe2;
}
.social-card--vk .social-card__icon {
  background: rgba(70,130,200,0.15);
  color: #4a76a8;
}
.social-card__icon svg { width: 28px; height: 28px; }

.social-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.social-card__desc {
  font-size: 0.85rem;
  color: var(--text-subtle);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 16px;
}

.social-card__schedule {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 16px;
  margin-bottom: 20px;
}
.social-card__schedule div {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.social-card__schedule strong { color: var(--gold); margin-right: 6px; }

.social-card__stats {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}
.social-card__stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
}
.social-card__stat span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-card__cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
}

/* ============================
   JOIN
   ============================ */
.join {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.join__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, #3d1030 0%, var(--bg-primary) 70%);
}
.join__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
}
.join__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.join__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.join__title em { color: var(--gold); font-style: italic; display: block; }
.join__subtitle {
  font-size: 1rem;
  color: var(--text-subtle);
  font-weight: 300;
  margin-bottom: 48px;
}

.join__contacts {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.join__contact {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--glass);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  padding: 14px 24px;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}
.join__contact:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.join__contact-icon {
  width: 36px; height: 36px;
  background: var(--gold-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
}
.join__contact-label { font-size: 0.8rem; color: var(--text-subtle); }
.join__contact-handle { font-size: 0.9rem; font-weight: 600; color: var(--gold); }

.join__or {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.join__cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.join__note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted);
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: #120210;
  border-top: 1px solid var(--gold-border);
  padding: 48px 0 24px;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
}
.footer__logo-bs {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), #8a6020);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  color: var(--bg-primary);
}
.footer__tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 1px;
}
.footer__links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.footer__links a {
  padding: 6px 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-radius: 20px;
  transition: all var(--transition);
}
.footer__links a:hover { color: var(--gold); background: var(--gold-dim); }
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  transition: all var(--transition);
  letter-spacing: 0.5px;
}
.footer__social a:hover { background: var(--gold-dim); border-color: var(--gold); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(201,168,76,0.08);
  font-size: 0.74rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .formats__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .social__cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav__links { display: none; flex-direction: column; position: fixed;
    top: 70px; left: 0; right: 0; background: rgba(28,4,20,0.98);
    backdrop-filter: blur(20px); border-bottom: 1px solid var(--gold-border);
    padding: 20px 24px; gap: 4px; }
  .nav__links.open { display: flex; }
  .nav__burger { display: flex; }

  .hero__stats { padding: 16px 24px; gap: 12px; }
  .hero__stat-divider { display: none; }
  .hero__cta { flex-direction: column; align-items: center; }

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

  .team-card, .team-card--reverse {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
  }
  .team-card--reverse .team-card__avatar { order: unset; }
  .team-card--reverse .team-card__body { order: unset; }
  .team-card__avatar-placeholder { margin: 0 auto; }
  .team-card__tags { justify-content: center; }
  .team-card__quote { border-left: none; padding-left: 0; border-top: 2px solid var(--gold-border); padding-top: 16px; }

  .event-item { grid-template-columns: 1fr; gap: 4px; }
  .event-item__date { font-size: 0.72rem; }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }

  .social-card { flex-direction: column; padding: 28px; }
  .join__contacts { flex-direction: column; }
  .join__or { display: none; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }
  .footer__social { justify-content: center; }
  .footer__bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.7rem; }
  .hero__title { font-size: 2rem; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: span 1; }
  .events__timeline { padding-left: 16px; }
  .events__timeline::before { display: none; }
  .events__season-label::before { display: none; }
  .event-item::before { display: none; }
  .ambassadors__slider-wrap { padding: 0 16px; }
  .amb-btn { display: none; }
}

/* ============================
   ANIMATIONS & UTILITIES
   ============================ */
.footer__legal {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 24px 0 16px;
  margin-bottom: 8px;
}
.footer__legal-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer__legal-block {
  font-size: 0.72rem;
  color: rgba(245,238,230,0.4);
  line-height: 1.8;
}
.footer__legal-block strong {
  color: rgba(201,168,76,0.6);
  display: block;
  margin-bottom: 4px;
  font-size: 0.68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer__legal-block a {
  color: rgba(201,168,76,0.5);
  transition: color var(--transition);
}
.footer__legal-block a:hover { color: var(--gold); }
.footer__legal-link { text-decoration: underline; }

@media (max-width: 768px) {
  .footer__legal-row { grid-template-columns: 1fr; gap: 16px; }
}

