﻿:root {
  --bg: #0b0b0f;
  --bg-soft: #1a1026;
  --bg-deep: #110b18;
  --surface: rgba(26, 16, 38, 0.72);
  --surface-strong: rgba(15, 10, 23, 0.9);
  --surface-soft: rgba(255, 255, 255, 0.04);
  --stroke: rgba(192, 132, 252, 0.18);
  --stroke-strong: rgba(192, 132, 252, 0.34);
  --text: #f7f3ff;
  --muted: #baaed0;
  --muted-strong: #9185a7;
  --accent: #7c3aed;
  --accent-soft: #a855f7;
  --accent-glow: #c084fc;
  --gradient: linear-gradient(135deg, #7c3aed 0%, #a855f7 55%, #c084fc 100%);
  --shadow: 0 28px 90px rgba(124, 58, 237, 0.2);
  --shadow-soft: 0 20px 70px rgba(5, 4, 10, 0.55);
  --radius: 28px;
  --radius-lg: 36px;
  --nav-height: 88px;
  --container: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-height) + 18px); }
body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 14%, rgba(168, 85, 247, 0.22), transparent 28%),
    radial-gradient(circle at 88% 4%, rgba(124, 58, 237, 0.16), transparent 24%),
    radial-gradient(circle at 50% 82%, rgba(192, 132, 252, 0.1), transparent 22%),
    linear-gradient(180deg, #09090d 0%, #0b0b0f 30%, #110b18 100%);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: default;
}

:where(h1, h2, h3, h4, p, a, button, label, li, span) {
  overflow-wrap: anywhere;
}
body::before,
body::after {
  content: '';
  position: fixed;
  inset: auto;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  filter: blur(110px);
  opacity: 0.18;
  pointer-events: none;
  z-index: -2;
}
body::before { top: -10rem; right: -12rem; background: var(--accent-soft); }
body::after { bottom: -12rem; left: -10rem; background: var(--accent); }
body.loading,
body.modal-open { overflow: hidden; }
::selection { background: rgba(168, 85, 247, 0.34); color: #fff; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.02); }
::-webkit-scrollbar-thumb { background: var(--gradient); border-radius: 999px; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }
button { border: 0; background: none; cursor: pointer; }
textarea { resize: vertical; }
.cursor-outer,
.cursor-dot { display: none !important; }
.hidden { display: none !important; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }

:where(
  .about-grid,
  .about-vm-cards,
  .timeline,
  .events-grid,
  .gallery-masonry,
  .booking-wrapper,
  .contact-wrapper,
  .footer-grid,
  .form-row,
  .hero-stats,
  .modal,
  .lightbox-content
) > * {
  min-width: 0;
}
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.glass-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(32, 20, 49, 0.82), rgba(14, 10, 21, 0.9));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--shadow-soft);
}
.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(192, 132, 252, 0.12), transparent 35%);
  pointer-events: none;
}
.reveal { opacity: 0; transform: translateY(42px); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.section {
  position: relative;
  padding: clamp(88px, 11vw, 140px) 0;
  scroll-margin-top: calc(var(--nav-height) + 20px);
}
.section-header {
  max-width: 820px;
  margin: 0 auto clamp(38px, 5vw, 56px);
  text-align: center;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-glow);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.section-subtitle {
  font-size: clamp(1rem, 1.65vw, 1.16rem);
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
}

#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, rgba(168, 85, 247, 0.18), transparent 35%), #07070a;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; padding: 32px; }
.loader-logo {
  width: 126px;
  height: 126px;
  margin: 0 auto 22px;
  padding: 4px;
  border-radius: 999px;
  background: var(--gradient);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.02), 0 18px 70px rgba(124, 58, 237, 0.28);
}
.loader-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 999px; }
.loader-brand-text {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
}
.loader-tagline {
  margin: 10px 0 18px;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.76rem;
}
.loader-bar-wrap {
  width: min(280px, 80vw);
  height: 3px;
  margin: 0 auto 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}
.loader-bar { width: 0; height: 100%; background: var(--gradient); border-radius: 999px; }
.loader-percent { color: var(--muted-strong); font-size: 0.85rem; letter-spacing: 0.16em; }

.navbar {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav-height);
  z-index: 1000;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.navbar.scrolled {
  background: rgba(7, 7, 12, 0.76);
  border-bottom: 1px solid rgba(192, 132, 252, 0.12);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 18px 38px rgba(5, 4, 10, 0.28);
}
.nav-container {
  width: min(var(--container), calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo { display: flex; align-items: center; gap: 14px; min-width: 0; }
.nav-logo img {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(192, 132, 252, 0.34);
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.28);
}
.nav-brand-main {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.15em;
}
.nav-brand-sub {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-link,
.nav-cta-btn,
.btn-primary,
.btn-secondary,
.event-btn,
.carousel-btn,
.gallery-zoom-btn,
.modal-close,
.lightbox-close,
.lightbox-nav,
.founder-social,
.social-link,
.footer-socials a,
.admin-link {
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), background 0.28s var(--ease), border-color 0.28s var(--ease), color 0.28s var(--ease), opacity 0.28s var(--ease);
}
.nav-link {
  position: relative;
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.95rem;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease);
}
.nav-link:hover,
.nav-link.active { color: var(--text); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-cta-btn,
.btn-primary,
.btn-secondary,
.event-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.nav-cta-btn,
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 16px 42px rgba(124, 58, 237, 0.32);
}
.btn-secondary {
  border: 1px solid var(--stroke-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}
.nav-cta-btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.event-btn:hover { transform: translateY(-2px); }
.hamburger { display: none; width: 48px; height: 48px; align-items: center; justify-content: center; flex-direction: column; gap: 7px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 999px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.hamburger.active span:first-child { transform: translateY(4.5px) rotate(45deg); }
.hamburger.active span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 48px) 20px 88px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 11, 0.88), rgba(7, 7, 11, 0.48) 46%, rgba(7, 7, 11, 0.78) 100%),
    url('https://images.unsplash.com/photo-1606800052052-a08af7148866?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  transform: scale(1.06);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 20%, rgba(192, 132, 252, 0.22), transparent 24%);
}
#heroCanvas,
.hero-orbs,
.hero-grid-overlay,
.hero-content,
.scroll-indicator { position: relative; z-index: 2; }
#heroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.38; }
.hero-orbs { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute;
  width: clamp(180px, 20vw, 320px);
  aspect-ratio: 1;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.2;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.9), rgba(168, 85, 247, 0));
}
.orb-1 { top: 18%; left: 8%; }
.orb-2 { top: 12%; right: 12%; background: radial-gradient(circle, rgba(124, 58, 237, 0.88), rgba(124, 58, 237, 0)); }
.orb-3 { bottom: 8%; right: 22%; }
.orb-4 { bottom: 10%; left: 18%; background: radial-gradient(circle, rgba(192, 132, 252, 0.75), rgba(192, 132, 252, 0)); }
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,.55), transparent);
}
.hero-content { width: min(100%, 980px); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  margin-bottom: 28px;
  border: 1px solid rgba(192, 132, 252, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-glow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
}
.badge-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--accent-glow); box-shadow: 0 0 18px var(--accent-glow); }
.hero-title {
  max-width: 780px;
  margin-bottom: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.hero-line { display: block; }
.hero-title em { font-style: normal; }
.hero-subtitle {
  max-width: 700px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: var(--muted);
  margin-bottom: 34px;
}
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 760px;
}
.hero-stat {
  padding: 24px;
  text-align: center;
  background: rgba(18, 12, 28, 0.68);
}
.hero-stat-divider { display: none; }
.stat-number,
.stat-plus,
.hero-stat span:first-child { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
.stat-plus { color: var(--accent-glow); }
.hero-stat p,
.hero-stat span:last-of-type,
.hero-stat .stat-label { display: block; color: var(--muted); margin-top: 8px; }
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted-strong);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.scroll-mouse { width: 26px; height: 44px; border: 1px solid rgba(192, 132, 252, 0.42); border-radius: 999px; display: grid; place-items: center; }
.scroll-wheel { width: 4px; height: 10px; border-radius: 999px; background: var(--accent-glow); animation: scrollPulse 1.8s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { transform: translateY(-4px); opacity: .55; } 50% { transform: translateY(5px); opacity: 1; } }

.marquee-strip {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(192, 132, 252, 0.12);
  border-bottom: 1px solid rgba(192, 132, 252, 0.12);
  background: rgba(255, 255, 255, 0.02);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  padding: 16px 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  animation: marqueeMove 26s linear infinite;
}
.marquee-dot { width: 7px; height: 7px; border-radius: 999px; background: var(--accent-soft); box-shadow: 0 0 15px rgba(168, 85, 247, 0.68); }
@keyframes marqueeMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.about-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(26px, 4vw, 42px);
  align-items: start;
}
.about-story,
.founder-card { padding: clamp(28px, 4vw, 42px); }
.about-text { color: var(--muted); font-size: 1.03rem; }
.about-text + .about-text { margin-top: 16px; }
.about-vm-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 28px; }
.vm-card { min-height: 220px; padding: 24px; }
.vm-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 18px;
  background: rgba(124, 58, 237, 0.18);
  color: var(--accent-glow);
  font-size: 1.1rem;
}
.vm-card h3 { margin-bottom: 10px; font-size: 1.3rem; }
.vm-card p { color: var(--muted); }
.founder-card {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 22px;
  min-height: 100%;
}
.founder-img-container {
  position: relative;
  width: min(100%, 380px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.founder-glow-ring {
  position: absolute;
  inset: 8%;
  border-radius: 999px;
  background: var(--gradient);
  filter: blur(26px);
  opacity: 0.34;
}
.founder-img-container img,
.founder-img-container > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 70px rgba(124, 58, 237, 0.22);
}
.founder-badge {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-glow);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
}
.founder-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.3rem); line-height: 1; }
.founder-bio { color: var(--muted); max-width: 32rem; }
.founder-socials { display: flex; gap: 12px; }
.founder-social {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}
.founder-social:hover { color: #fff; border-color: var(--stroke-strong); box-shadow: 0 12px 30px rgba(124, 58, 237, 0.22); }
.timeline-section { margin-top: clamp(48px, 7vw, 88px); }
.timeline-heading {
  margin-bottom: 28px;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}
.timeline { position: relative; display: grid; gap: 28px; }
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(192, 132, 252, 0.45), transparent);
}
.timeline-item {
  position: relative;
  width: calc(50% - 28px);
  padding-right: 34px;
}
.timeline-item.right { margin-left: auto; padding-left: 34px; padding-right: 0; }
.timeline-year {
  margin-bottom: 10px;
  color: var(--accent-glow);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.timeline-dot {
  position: absolute;
  top: 12px;
  right: -8px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--gradient);
  box-shadow: 0 0 0 8px rgba(124, 58, 237, 0.12);
}
.timeline-item.right .timeline-dot { right: auto; left: -8px; }
.timeline-content { padding: 24px; }
.timeline-content h4 { margin-bottom: 10px; font-size: 1.28rem; }
.timeline-content p { color: var(--muted); }

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 24px);
}
.event-card {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(15, 11, 22, 0.74);
  box-shadow: var(--shadow-soft);
}
.event-img-wrap { position: absolute; inset: 0; overflow: hidden; }
.event-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.01);
  transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
}
.event-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 6, 12, 0.08), rgba(8, 6, 12, 0.34) 38%, rgba(8, 6, 12, 0.92) 100%);
}
.event-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  min-height: 440px;
  padding: 24px;
}
.event-label {
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f3eaff;
}
.event-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.45rem);
  line-height: 0.96;
}
.event-overlay p { color: rgba(245, 239, 255, 0.82); }
.event-btn {
  width: fit-content;
  margin-top: 4px;
  padding-inline: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow), var(--shadow-soft); }
.event-card:hover .event-img-wrap img { transform: scale(1.08); filter: saturate(1.16) contrast(1.08); }
.modal-overlay,
.lightbox,
.success-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(4, 3, 7, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  z-index: 1200;
}
.modal-overlay.active,
.lightbox.active,
.success-overlay.active { opacity: 1; pointer-events: auto; }
.modal {
  position: relative;
  width: min(1040px, 100%);
  max-height: min(92vh, 880px);
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(180deg, rgba(28, 18, 43, 0.96), rgba(11, 10, 17, 0.98));
}
.modal::-webkit-scrollbar { width: 6px; }
.modal::-webkit-scrollbar-thumb { background: var(--gradient); border-radius: 999px; }
.modal-close,
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 7, 13, 0.72);
  color: #fff;
  z-index: 3;
}
.modal-close:hover,
.lightbox-close:hover { background: rgba(168, 85, 247, 0.16); border-color: var(--stroke-strong); }
.modal-hero-img,
.modal-hero {
  position: relative;
  min-height: 100%;
}
.modal-hero-img img,
.modal-hero img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.modal-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9, 8, 14, 0.1), rgba(9, 8, 14, 0.55)); }
.modal-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(30px, 4vw, 44px);
}
.modal-tag {
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-glow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
}
.modal-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 0.96;
}
.modal-body p { color: var(--muted); }
.modal-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.modal-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
}
.modal-feature i { margin-top: 2px; color: var(--accent-glow); }

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}
.filter-btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-weight: 700;
}
.filter-btn:hover,
.filter-btn.active { color: #fff; border-color: var(--stroke-strong); background: rgba(168, 85, 247, 0.14); box-shadow: 0 16px 34px rgba(124, 58, 237, 0.18); }
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(260px, auto);
  gap: 18px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 26px;
  border: 1px solid var(--stroke);
  background: rgba(15, 11, 22, 0.78);
  transition: transform 0.35s var(--ease), opacity 0.3s var(--ease), scale 0.3s var(--ease);
}
.gallery-item.tall { grid-row: span 2; min-height: 578px; }
.gallery-item.hidden-item { opacity: 0; pointer-events: none; transform: scale(0.96); display: none; }
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
}
.gallery-overlay {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(8, 7, 13, 0) 0%, rgba(8, 7, 13, 0.88) 76%);
}
.gallery-category {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent-glow);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.gallery-overlay h4 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.7rem, 3vw, 2.35rem); line-height: 0.96; }
.gallery-zoom-btn {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.gallery-item:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.gallery-item:hover img { transform: scale(1.08); filter: saturate(1.12) contrast(1.08); }
.gallery-item:hover .gallery-zoom-btn { background: rgba(168, 85, 247, 0.2); }

.lightbox-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 0;
  width: min(1160px, 100%);
  overflow: hidden;
}
.lightbox-content img,
.lightbox-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.lightbox-img-wrap { min-height: 70vh; }
.lightbox-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(26px, 4vw, 38px);
  background: linear-gradient(180deg, rgba(25, 16, 38, 0.94), rgba(10, 9, 15, 0.96));
}
.lightbox-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.96;
}
.lightbox-info p { color: var(--muted); }

.booking-wrapper {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(24px, 3.5vw, 40px);
}
.booking-info,
.booking-form,
.contact-info-card,
.contact-form,
.testimonial-card,
.success-content { padding: clamp(28px, 4vw, 40px); }
.booking-info h3,
.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 0.96;
  margin-bottom: 22px;
}
.booking-benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.booking-benefit:first-of-type { border-top: 0; }
.benefit-icon,
.contact-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(124, 58, 237, 0.16);
  color: var(--accent-glow);
}
.booking-benefit h4,
.contact-item h4 { margin-bottom: 6px; font-size: 1.08rem; }
.booking-benefit p,
.booking-contact-info p,
.contact-item p { color: var(--muted); }
.booking-contact-info { margin-top: 24px; display: grid; gap: 10px; }
.booking-contact-info i { width: 18px; margin-right: 10px; color: var(--accent-glow); }
.contact-map-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-weight: 700;
}
.contact-map-link:hover {
  transform: translateY(-2px);
  border-color: var(--stroke-strong);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.2);
}
.contact-map-link-block {
  margin-top: 6px;
}
.booking-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-group { display: grid; gap: 10px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.88rem; font-weight: 700; color: var(--muted); }
.required { color: var(--accent-glow); }
.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  padding-left: 52px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}
.input-wrap i {
  position: absolute;
  left: 18px;
  color: var(--accent-glow);
  font-size: 0.95rem;
}
.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  padding: 16px 18px 16px 0;
}
.input-wrap input::placeholder,
.input-wrap textarea::placeholder { color: var(--muted-strong); }
.textarea-wrap { align-items: flex-start; min-height: 160px; }
.textarea-wrap i { top: 19px; }
.select-wrap select { appearance: none; }
.input-wrap:focus-within { border-color: var(--stroke-strong); box-shadow: 0 0 0 5px rgba(168, 85, 247, 0.12); }
input.error,
select.error,
textarea.error { color: #ffd7ea; }
.error-msg { min-height: 1.1em; color: #ff8ab5; font-size: 0.82rem; opacity: 0; transition: opacity 0.2s ease; }
.error-msg.show { opacity: 1; }
.submit-btn { width: 100%; }

.success-content {
  width: min(540px, 100%);
  text-align: center;
}
.success-anim {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
}
.success-ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px solid rgba(192, 132, 252, 0.28);
  box-shadow: 0 0 0 10px rgba(124, 58, 237, 0.08);
}
.success-check {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
  font-size: 1.4rem;
}
.success-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
  margin-bottom: 12px;
}
.success-content p,
.success-ref { color: var(--muted); }
.success-ref { margin: 18px 0 24px; font-weight: 700; }
.testimonials-wrapper { position: relative; }
.testimonials-carousel {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: stretch;
}
.testimonial-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(22px) scale(0.98);
}
.testimonial-card.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}
.testimonial-quote { color: var(--accent-glow); font-size: 1.4rem; }
.testimonial-stars { color: var(--accent-glow); display: flex; gap: 6px; }
.testimonial-text { color: var(--text); font-size: clamp(1.02rem, 1.8vw, 1.18rem); max-width: 56rem; }
.testimonial-author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.author-avatar {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(124, 58, 237, 0.24);
}
.author-info h4 { font-size: 1.08rem; }
.author-info span { color: var(--muted); }
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.carousel-btn,
.lightbox-nav {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}
.carousel-btn:hover,
.lightbox-nav:hover { transform: translateY(-2px); border-color: var(--stroke-strong); background: rgba(168, 85, 247, 0.16); }
.carousel-dots { display: flex; align-items: center; gap: 10px; }
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  transition: transform 0.25s ease, background 0.25s ease;
}
.carousel-dot.active { background: var(--gradient); transform: scale(1.35); }

.contact-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 3vw, 36px);
  margin-bottom: 28px;
}
.contact-info-card,
.contact-form { min-height: 100%; }
.contact-info-card { display: grid; gap: 18px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-item:last-of-type { border-bottom: 0; padding-bottom: 0; }
.social-links,
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}
.social-link,
.footer-socials a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}
.social-link:hover,
.footer-socials a:hover { color: #fff; border-color: var(--stroke-strong); box-shadow: 0 12px 30px rgba(124, 58, 237, 0.2); }
.contact-form { display: grid; gap: 18px; }
.map-container,
.map-section {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
}
.map-container iframe,
.map-section iframe { display: block; width: 100%; min-height: 380px; filter: grayscale(0.85) saturate(0.85) hue-rotate(255deg); }

.footer {
  position: relative;
  padding: 46px 0 0;
  border-top: 1px solid rgba(192, 132, 252, 0.12);
  background: linear-gradient(180deg, rgba(20, 12, 30, 0.55), rgba(7, 7, 11, 0.95));
}
.footer-glow-top {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192, 132, 252, 0.55), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 36px);
  padding-bottom: 34px;
}
.footer-logo { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-logo img { width: 58px; height: 58px; border-radius: 999px; object-fit: cover; border: 1px solid var(--stroke-strong); }
.footer-brand-name { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; letter-spacing: 0.15em; }
.footer-brand-tagline { display: block; color: var(--muted); font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; }
.footer-about { color: var(--muted); max-width: 26rem; margin-bottom: 20px; }
.footer-col h4 { margin-bottom: 16px; font-size: 1rem; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a,
.footer-contact-list li,
.admin-link { color: var(--muted); }
.footer-col a:hover,
.footer-bottom-links a:hover,
.admin-link:hover { color: #fff; }
.footer-contact-list { display: grid; gap: 12px; margin-bottom: 14px; }
.footer-contact-list i { width: 18px; margin-right: 10px; color: var(--accent-glow); }
.admin-link { display: inline-flex; align-items: center; gap: 10px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted-strong);
  font-size: 0.9rem;
}
.footer-bottom-links { display: flex; gap: 18px; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.flatpickr-calendar {
  background: #140e1d;
  color: var(--text);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover {
  background: var(--gradient);
  border-color: transparent;
}
.flatpickr-day:hover { background: rgba(168, 85, 247, 0.14); }
.flatpickr-months .flatpickr-month,
span.flatpickr-weekday { color: var(--text); }

@media (max-width: 1180px) {
  .events-grid,
  .gallery-masonry { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-item.tall { grid-row: span 1; min-height: 360px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .hamburger { display: inline-flex; }
  .nav-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border-radius: 26px;
    border: 1px solid var(--stroke);
    background: rgba(10, 9, 15, 0.94);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
  }
  .nav-menu.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-link,
  .nav-cta-btn { width: 100%; justify-content: center; }
  .hero { padding-bottom: 110px; }
  .hero-stats,
  .about-grid,
  .booking-wrapper,
  .contact-wrapper,
  .modal,
  .lightbox-content { grid-template-columns: 1fr; }
  .timeline::before { left: 8px; }
  .timeline-item,
  .timeline-item.right { width: 100%; padding: 0 0 0 34px; }
  .timeline-dot,
  .timeline-item.right .timeline-dot { left: 0; right: auto; }
  .testimonials-carousel { min-height: 410px; }
}

@media (max-width: 720px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  .section { padding: 78px 0; }
  .hero-title { font-size: clamp(3rem, 12vw, 4.8rem); }
  .hero-cta-group,
  .hero-stats,
  .about-vm-cards,
  .events-grid,
  .gallery-masonry,
  .form-row,
  .footer-grid,
  .footer-bottom { grid-template-columns: 1fr; display: grid; }
  .hero-stats { gap: 14px; }
  .gallery-item,
  .gallery-item.tall { min-height: 300px; }
  .gallery-overlay { padding: 18px; }
  .modal-features { grid-template-columns: 1fr; }
  .carousel-controls { flex-wrap: wrap; }
  .footer-bottom { justify-content: start; }
}

@media (max-width: 560px) {
  .hero-badge { width: 100%; justify-content: center; text-align: center; }
  .btn-primary,
  .btn-secondary,
  .event-btn,
  .submit-btn,
  .contact-form .btn-primary,
  .contact-map-link { width: 100%; }
  .hero-cta-group { flex-direction: column; }
  .lightbox,
  .modal-overlay,
  .success-overlay { padding: 14px; }
  .modal,
  .success-content { border-radius: 24px; }
  .modal-body,
  .booking-info,
  .booking-form,
  .contact-info-card,
  .contact-form,
  .testimonial-card,
  .success-content { padding: 24px; }
  .testimonials-carousel { min-height: 470px; }
  .scroll-indicator { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
.lightbox-content {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(25, 16, 38, 0.96), rgba(10, 9, 15, 0.96));
  box-shadow: var(--shadow-soft);
}
.testimonial-card {
  transition: opacity 0.36s var(--ease), transform 0.36s var(--ease);
}
