:root {
  --bg: #08090d;
  --bg-soft: #10131b;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --card: #121722;
  --card-2: #171d2a;
  --text: #f7f8fb;
  --muted: #b6bdcb;
  --line: rgba(255, 255, 255, 0.1);
  --gold: #d8b267;
  --gold-2: #f0cd86;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 20px;
  --container: 1320px;
  --hero-container: 1860px;
  --font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --display: 'Cormorant Garamond', Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background:
    radial-gradient(circle at top, rgba(216, 178, 103, 0.16), transparent 32%),
    linear-gradient(180deg, #090b10 0%, #0c1017 45%, #08090d 100%);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
main { min-height: 100vh; }
a { color: var(--gold); text-decoration: none; transition: 0.25s ease; }
a:hover { color: var(--gold-2); }
img { display: block; max-width: 100%; height: auto; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '';
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section-title,
.page-title,
.hero-title {
  font-family: var(--display);
  line-height: 1.02;
  font-weight: 600;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 16px;
}
.section-subtitle,
.page-subtitle {
  color: var(--muted);
  max-width: 760px;
  font-size: 1.05rem;
}
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111;
  box-shadow: 0 14px 30px rgba(216, 178, 103, 0.28);
}
.btn-primary:hover { color: #111; }
.btn-outline {
  border-color: rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.03);
  color: var(--text);
}

.btn-viber {
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.20), transparent 38%), linear-gradient(135deg, #7c3aed, #5b21b6);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}
.btn-viber:hover {
  border-color: rgba(216,178,103,0.42);
  color: #fff;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-dark {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border-color: rgba(255,255,255,0.1);
  margin-top: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(8, 9, 13, 0.74);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--text);
}
.logo:hover { color: var(--text); }
.logo-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
  flex-shrink: 0;
  background: #fff;
}
.logo-mark img { width: 100%; height: 100%; object-fit: contain; }
.logo-copy { display: flex; flex-direction: column; line-height: 1.05; }
.logo-title {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 600;
}
.logo-sub {
  font-size: 0.73rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}
.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 30px);
}
.nav a {
  color: rgba(255,255,255,0.82);
  font-size: 0.97rem;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.nav a:hover::after,
.nav a.active::after { transform: scaleX(1); }
.nav a.active,
.nav a:hover { color: #fff; }
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.social-follow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-right: 8px;
  margin-right: 4px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.social-follow-label {
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  white-space: nowrap;
}
.social-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.social-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  box-shadow: 0 10px 26px rgba(0,0,0,0.24);
}
.social-link:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: rgba(216,178,103,0.42);
}
.social-link svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}
.social-facebook {
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.16), transparent 34%), linear-gradient(135deg, #1b4fbe, #11357d);
}
.social-instagram {
  background: radial-gradient(circle at 30% 25%, rgba(255,210,132,0.30), transparent 28%), linear-gradient(135deg, #6d2cff, #d63384 58%, #ff8a00);
}
.header-phone {
  color: var(--text);
  font-weight: 700;
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: #fff;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 4px auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.hero-slider,
.hero-page {
  position: relative;
  min-height: calc(100vh - 88px);
}
.slider-track,
.hero-bg-wrap {
  position: absolute;
  inset: 0;
}
.slide,
.hero-bg {
  position: absolute;
  inset: 0;
}
.slide { opacity: 0; visibility: hidden; transition: .6s ease; }
.slide.active { opacity: 1; visibility: visible; }
.slide-bg,
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slide-bg::after,
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,9,13,0.96) 0%, rgba(8,9,13,0.86) 27%, rgba(8,9,13,0.54) 52%, rgba(8,9,13,0.82) 100%),
    linear-gradient(180deg, rgba(8,9,13,0.24) 0%, rgba(8,9,13,0.86) 100%);
}
.hero-overlay {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  width: 100%;
}
.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,7,11,0.64) 0%, rgba(5,7,11,0.42) 24%, rgba(5,7,11,0.08) 50%, rgba(5,7,11,0) 66%);
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(700px, 1.18fr);
  gap: 20px;
  align-items: stretch;
}
.hero-copy {
  max-width: 780px;
  padding: 72px 0 72px 0;
  position: relative;
  z-index: 3;
}
.hero-title {
  font-size: clamp(3rem, 7vw, 6.2rem);
  margin-bottom: 16px;
}
.hero-title .accent { color: var(--gold); }
.hero-subtitle {
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
  color: rgba(255,255,255,0.88);
  max-width: 700px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.hero-highlights {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.hero-stat {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}
.hero-stat strong { display: block; font-size: 1rem; color: #fff; }
.hero-stat span { color: var(--muted); font-size: .92rem; }
.hero-card,
.floating-card {
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(19, 24, 34, 0.88), rgba(12, 16, 23, 0.94));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.hero-card { padding: 38px; align-self: stretch; min-height: 760px; display: flex; flex-direction: column; justify-content: flex-start; width: 100%; max-width: 720px; justify-self: end; }
.slide-panel { display: none; }
.slide-panel.active { display: block; }
.hero-poster {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  margin-bottom: 18px;
}
.hero-poster img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}
.hero-card h3 { font-size: 1.75rem; margin-bottom: 16px; line-height: 1.1; }
.hero-event-visual {
  position: relative;
  display: none;
  align-self: stretch;
  justify-self: end;
  width: 100%;
  min-height: 820px;
  overflow: hidden;
  background: rgba(0,0,0,0.18);
  border-radius: 32px;
  box-shadow: -28px 28px 70px rgba(0,0,0,0.24);
  isolation: isolate;
  transform: none;
}
.hero-event-visual.active { display: block; }
.hero-event-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,9,13,0.26) 0%, rgba(8,9,13,0.08) 10%, rgba(8,9,13,0.01) 24%, rgba(8,9,13,0.10) 100%),
    linear-gradient(180deg, rgba(8,9,13,0.02) 0%, rgba(8,9,13,0.10) 100%);
  z-index: 1;
}
.hero-event-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(8,9,13,0.02) 0%, rgba(8,9,13,0.02) 74%, rgba(8,9,13,0.14) 100%);
  mix-blend-mode: normal;
  z-index: 1;
}
.hero-event-visual img {
  width: 100%;
  height: 100%;
  min-height: 820px;
  object-fit: contain;
  object-position: center center;
  filter: saturate(1.02) contrast(1.02);
  padding: 0;
  background: rgba(4, 6, 10, 0.22);
}
.hero-event-caption {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 32px;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  max-width: 340px;
}
.hero-event-kicker {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.hero-event-caption strong {
  font-size: 1.6rem;
  line-height: 1.12;
  text-shadow: 0 10px 22px rgba(0,0,0,0.45);
}
.hero-card p { color: var(--muted); margin-bottom: 18px; font-size: 1.08rem; line-height: 1.75; }
.hero-card ul { list-style: none; display: grid; gap: 10px; margin: 18px 0 24px; }
.hero-card li { color: rgba(255,255,255,0.9); padding-left: 20px; position: relative; }
.hero-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}
.slider-dots .dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
}
.slider-dots .dot.active { background: var(--gold); }
.slider-arrows {
  position: absolute;
  inset: 50% 0 auto 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 18px;
  pointer-events: none;
  z-index: 4;
}
.arrow {
  pointer-events: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.28);
  color: #fff;
  cursor: pointer;
  font-size: 1.6rem;
}

.hero-slider .container {
  width: 100%;
  max-width: none;
  padding-left: 28px;
  padding-right: 28px;
}

@media (min-width: 1440px) {
  .hero-slider .container {
    width: 100%;
    max-width: none;
    padding-left: 34px;
    padding-right: 34px;
  }
  .hero-copy {
    padding-left: 0;
  }
}

@media (min-width: 1101px) {
  .hero-grid {
    padding-right: 0;
  }
  .slide-panel {
    transform: none;
  }
}

.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0 70px;
}
.page-title { font-size: clamp(2.8rem, 6vw, 4.8rem); margin-bottom: 14px; }
.page-subtitle { max-width: 760px; }
.breadcrumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--gold); }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.card,
.info-panel,
.feature-box,
.timeline-item,
.event-card,
.contact-card,
.gallery-card,
.notice-box {
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(19, 24, 34, 0.9), rgba(13, 17, 24, 0.96));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}
.card,
.feature-box,
.contact-card,
.notice-box,
.info-panel { padding: 28px; }
.card h3,
.feature-box h3,
.contact-card h3,
.info-panel h3,
.notice-box h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.card p,
.feature-box p,
.contact-card p,
.info-panel p,
.notice-box p,
.timeline-item p,
.event-card p {
  color: var(--muted);
}
.feature-icon,
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(216, 178, 103, 0.22), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 12px 28px rgba(0,0,0,0.22);
}
.feature-icon::before,
.card-icon::before {
  content: '';
  width: 28px;
  height: 28px;
  display: block;
  background: center / contain no-repeat;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.22));
}
.icon-stage::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23d8b267' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 18l10 10'/%3E%3Cpath d='M28 18l-10 10'/%3E%3Cpath d='M23 28v15'/%3E%3Cpath d='M15 46h16'/%3E%3Cpath d='M40 18c4 1 7 4 8 8 1 6-2 12-8 15'/%3E%3Cpath d='M46 24c2 .6 3.5 2.4 4 4.8'/%3E%3C/g%3E%3C/svg%3E");
}
.icon-dining::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23d8b267' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 14v17'/%3E%3Cpath d='M12 14v10c0 3.3 2.7 6 6 6s6-2.7 6-6V14'/%3E%3Cpath d='M18 30v20'/%3E%3Cpath d='M38 14v36'/%3E%3Cpath d='M38 14c6 4 10 10.5 10 18v0H38'/%3E%3C/g%3E%3C/svg%3E");
}
.icon-toast::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23d8b267' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 14l7 14v10c0 5-3 8-7 12'/%3E%3Cpath d='M44 14l-7 14v10c0 5 3 8 7 12'/%3E%3Cpath d='M16 18h12'/%3E%3Cpath d='M36 18h12'/%3E%3Cpath d='M26 28h12'/%3E%3C/g%3E%3C/svg%3E");
}
.icon-premium::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23d8b267' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 10l4.8 11.7L49 26l-9 8.1L42.4 46 32 39.5 21.6 46 24 34.1 15 26l12.2-4.3z'/%3E%3C/g%3E%3C/svg%3E");
}
.icon-location::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23d8b267' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 52s14-13.4 14-25a14 14 0 10-28 0c0 11.6 14 25 14 25z'/%3E%3Ccircle cx='32' cy='27' r='5.5'/%3E%3C/g%3E%3C/svg%3E");
}
.icon-promo::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23d8b267' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 29l24-9v24l-24-9z'/%3E%3Cpath d='M38 24h7a5 5 0 015 5v6a5 5 0 01-5 5h-7'/%3E%3Cpath d='M22 42l4 10h6l-2.5-8.5'/%3E%3C/g%3E%3C/svg%3E");
}
.dark-panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 30px;
}
.list-clean { list-style: none; display: grid; gap: 12px; }
.list-clean li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}
.list-clean li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
}
.badges { display: flex; flex-wrap: wrap; gap: 12px; }
.badge {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.88);
  font-size: 0.92rem;
}
.metric-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.metric {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.metric strong {
  display: block;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 6px;
}
.metric span { color: var(--muted); font-size: .94rem; }

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.event-card { overflow: hidden; }
.event-card .event-image {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}
.event-card .event-body { padding: 24px; }
.event-meta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: var(--gold);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.event-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.timeline {
  display: grid;
  gap: 18px;
}
.timeline-item {
  padding: 22px 24px;
  position: relative;
  overflow: hidden;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), transparent);
}
.timeline-item strong {
  display: block;
  font-size: .86rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  margin-bottom: 10px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
}
.gallery-card {
  overflow: hidden;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.55));
}
.gallery-card span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  font-weight: 600;
}
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; }
.contact-list { list-style: none; display: grid; gap: 16px; margin-top: 8px; }
.contact-list li { color: var(--muted); }
.contact-list strong { display: block; color: #fff; margin-bottom: 4px; }
.map-embed {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 22px;
  background: #0e1219;
}
.form-grid { display: grid; gap: 16px; }
.input, textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: #fff;
  padding: 16px 18px;
  font: inherit;
}
textarea { min-height: 140px; resize: vertical; }
.notice-box small { color: var(--muted); display: block; margin-top: 12px; }

.footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(6, 8, 12, 0.96);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr .8fr .8fr;
  gap: 28px;
  padding: 54px 0 28px;
}
.footer-brand p,
.footer-col p,
.footer-col li,
.footer-bottom {
  color: var(--muted);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-col h4 {
  margin-bottom: 14px;
  font-size: 1rem;
}
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0 30px;
  font-size: .9rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.floating-reservation {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
.floating-reservation .btn { min-height: 56px; padding-inline: 22px; }

.reveal-up { opacity: 0; transform: translateY(22px); transition: .7s ease; }
.reveal-up.visible { opacity: 1; transform: translateY(0); }


@media (min-width: 1280px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(560px, 0.92fr);
    gap: 44px;
  }
  .hero-copy {
    max-width: 800px;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .contact-grid,
  .footer-inner,
  .grid-2,
  .event-grid,
  .grid-3,
  .grid-4,
  .gallery-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }
  .gallery-card { min-height: 220px; }
}

@media (max-width: 960px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 16px;
  }
  .nav {
    position: fixed;
    top: 88px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    gap: 18px;
    padding: 24px;
    border-radius: 22px;
    background: rgba(10,12,18,0.98);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
  }
  .site-header.nav-open .nav { display: flex; }
  .header-actions .btn,
  .header-phone { display: none; }
  .nav-toggle { display: inline-block; }
  .hero-copy { padding-top: 52px; padding-bottom: 26px; }
  .hero-highlights { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .section-tight { padding: 52px 0; }
  .header-inner { min-height: 78px; }
  .logo-mark { width: 56px; height: 56px; }
  .logo-title { font-size: 1.35rem; }
  .logo-copy { max-width: 130px; }
  .nav { top: 78px; }
  .hero,
  .hero-slider,
  .hero-page,
  .hero-overlay { min-height: calc(100vh - 78px); }
  .hero-title { font-size: clamp(2.6rem, 15vw, 4rem); }
  .hero-card { padding: 22px; }
  .slider-arrows { display: none; }
  .container { width: min(var(--container), calc(100% - 24px)); }
  .floating-reservation { right: 12px; bottom: 12px; }
}


/* Mobile-first refinements */
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }
.nav-toggle { -webkit-tap-highlight-color: transparent; }
.btn, .nav a, .arrow, .dot, .header-phone { touch-action: manipulation; }

@media (max-width: 960px) {
  .site-header {
    backdrop-filter: blur(20px);
  }
  .header-inner {
    min-height: 76px;
    grid-template-columns: minmax(0,1fr) auto;
    gap: 12px;
    padding: 10px 0;
  }
  .logo {
    min-width: 0;
    gap: 12px;
  }
  .logo-copy {
    min-width: 0;
  }
  .logo-title {
    font-size: 1.35rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .logo-sub {
    letter-spacing: 0.16em;
    font-size: 0.66rem;
  }
  .nav {
    top: 84px;
    left: 12px;
    right: 12px;
    gap: 10px;
    padding: 14px;
  }
  .nav a {
    display: block;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    font-size: 1rem;
  }
  .nav a::after { display: none; }

  .hero,
  .hero-slider,
  .hero-page,
  .hero-overlay {
    min-height: auto;
  }
  .hero-overlay {
    padding: 24px 0 34px;
    align-items: end;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: stretch;
  }
  .hero-copy {
    order: 1;
    max-width: 100%;
    padding: 24px 0 8px;
  }
  .slide-panel,
  .slide-panel.active {
    display: block;
  }
  .hero-card {
    order: 2;
    padding: 18px;
    border-radius: 20px;
    min-height: auto;
    max-width: 100%;
  }
  .hero-card:not(.active) {
    display: none;
  }
  .hero-title {
    font-size: clamp(2.3rem, 12vw, 3.8rem);
    line-height: 0.98;
    margin-bottom: 14px;
  }
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 24px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-highlights {
    margin-top: 22px;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero-stat {
    padding: 14px 16px;
    border-radius: 14px;
  }
  .slider-dots {
    bottom: 12px;
    gap: 8px;
  }
  .slider-dots .dot {
    width: 10px;
    height: 10px;
  }

.page-hero {
    min-height: 320px;
  }
  .page-hero-content {
    padding: 90px 0 42px;
  }
  .page-title {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
    line-height: 1;
  }
  .page-subtitle,
  .section-subtitle {
    font-size: 1rem;
  }

  .card,
  .feature-box,
  .contact-card,
  .notice-box,
  .info-panel,
  .dark-panel,
  .timeline-item,
  .event-card .event-body {
    padding: 22px;
  }
  .metric {
    padding: 18px;
  }
  .gallery-card {
    min-height: 190px;
  }
  .map-embed {
    min-height: 300px;
  }
  .footer-inner {
    padding: 42px 0 20px;
  }
  .footer-bottom {
    padding-bottom: 92px;
  }
  .floating-reservation {
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
  }
  .floating-reservation .btn {
    width: 100%;
    min-height: 54px;
    border-radius: 16px;
    box-shadow: 0 16px 36px rgba(0,0,0,0.34);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }
  .section {
    padding: 56px 0;
  }
  .section-tight {
    padding: 42px 0;
  }
  .header-inner {
    min-height: 72px;
  }
  .logo-mark {
    width: 50px;
    height: 50px;
  }
  .logo-title {
    font-size: 1.2rem;
  }
  .logo-copy {
    max-width: 110px;
  }
  .nav {
    top: 78px;
    padding: 12px;
  }
  .eyebrow {
    gap: 8px;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    margin-bottom: 14px;
  }
  .eyebrow::before {
    width: 28px;
  }
  .section-title {
    margin-bottom: 12px;
  }
  .hero-overlay {
    padding-top: 14px;
  }
  .hero-title {
    font-size: clamp(2rem, 11vw, 3rem);
  }
  .hero-card h3,
  .card h3,
  .feature-box h3,
  .contact-card h3,
  .info-panel h3,
  .notice-box h3,
  .event-card h3 {
    font-size: 1.08rem;
  }
  .hero-card,
  .card,
  .feature-box,
  .contact-card,
  .notice-box,
  .info-panel,
  .dark-panel,
  .timeline-item,
  .event-card .event-body {
    padding: 18px;
    border-radius: 18px;
  }
  .hero-poster,
  .gallery-card,
  .map-embed {
    border-radius: 18px;
  }
  .metric strong {
    font-size: 1.25rem;
  }
  .breadcrumbs {
    gap: 6px;
    font-size: 0.82rem;
  }
  .slider-arrows {
    display: none;
  }
}

@media (max-width: 420px) {
  .logo {
    gap: 10px;
  }
  .logo-copy {
    max-width: 96px;
  }
  .logo-title {
    font-size: 1.08rem;
  }
  .logo-sub {
    font-size: 0.58rem;
  }
  .btn {
    min-height: 50px;
    padding: 0 18px;
    font-size: 0.95rem;
  }
  .hero-title {
    font-size: clamp(1.8rem, 10.5vw, 2.6rem);
  }
}


/* SEO + content helpers */
strong { color: #fff; }
.faq-panel { display: grid; gap: 18px; }
.faq-item { padding: 18px 20px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,0.03); }
.faq-item strong { display: block; margin-bottom: 8px; font-size: 1.02rem; }
.faq-item p { color: var(--muted); }

@media (max-width: 767px) {
  .faq-item { padding: 16px; }
}


@media (min-width: 1280px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(560px, 0.92fr);
    gap: 44px;
  }
  .hero-copy {
    max-width: 800px;
  }
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-event-visual {
    width: 100%;
    min-height: 520px;
    border-radius: 26px;
    transform: none;
    margin-top: 12px;
  }
  .hero-event-visual img { min-height: 520px; }
}

@media (max-width: 640px) {
  .hero-event-visual {
    min-height: 340px;
    border-radius: 22px;
  }
  .hero-event-visual img { min-height: 340px; }
  .hero-event-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: 250px;
    gap: 8px;
  }
  .hero-event-caption strong {
    font-size: 1.15rem;
  }
}

@media (min-width: 1600px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(760px, 1.2fr);
  }
}

@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(520px, 0.95fr);
  }
  .hero-event-visual,
  .hero-event-visual img {
    min-height: 700px;
  }
}

/* Mobile header social size fix */
@media (max-width: 960px) {
  .header-actions {
    gap: 8px;
  }
  .social-follow {
    gap: 6px;
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
  }
  .social-follow-label {
    display: none;
  }
  .social-links {
    gap: 6px;
  }
  .social-link {
    width: 34px;
    height: 34px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.22);
  }
  .social-link svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    grid-template-columns: minmax(0,1fr) auto;
    gap: 10px;
  }
  .header-actions {
    gap: 6px;
  }
  .social-link {
    width: 30px;
    height: 30px;
  }
  .social-link svg {
    width: 13px;
    height: 13px;
  }
}

@media (max-width: 420px) {
  .header-actions {
    gap: 4px;
  }
  .social-links {
    gap: 4px;
  }
  .social-link {
    width: 28px;
    height: 28px;
  }
}


/* Force correct mobile centering (overrides any earlier experimental rules) */
@media (max-width: 1100px) {
  .container { margin-left: auto; margin-right: auto; }
  .hero-slider .container {
    width: 100%;
    max-width: none;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 640px) {
  .hero-slider .container {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* Mobile centering alignment: match hero width with other sections */
@media (max-width: 900px) {
  .container { width: calc(100% - 24px); }
  .hero-slider .container {
    width: calc(100% - 24px);
    padding-left: 0;
    padding-right: 0;
  }
  .hero-event-caption {
    left: 18px;
    right: 18px;
  }
}

@media (max-width: 520px) {
  .container { width: calc(100% - 20px); }
  .hero-slider .container { width: calc(100% - 20px); }
}

/* Final mobile layout repair: keep every section inside viewport */
@media (max-width: 960px) {
  html, body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .container,
  .hero-slider .container,
  .hero-page .container,
  .page-hero .container,
  .site-header .container,
  .site-footer .container {
    width: calc(100% - 24px) !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .hero,
  .hero-slider,
  .hero-page,
  .hero-overlay {
    min-height: auto !important;
  }

  .hero-overlay {
    padding: 14px 0 28px !important;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    width: 100% !important;
    align-items: stretch !important;
  }

  .hero-copy,
  .hero-card,
  .hero-event-visual {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    justify-self: stretch !important;
  }

  .hero-copy {
    order: 1;
    padding: 12px 0 6px !important;
  }

  .hero-title,
  .hero-subtitle,
  .hero-actions,
  .hero-highlights {
    max-width: 100% !important;
  }

  .hero-event-visual {
    order: 2;
    display: block !important;
    min-height: 340px !important;
    height: min(62vw, 420px);
    border-radius: 20px !important;
    margin-top: 4px !important;
    box-shadow: 0 18px 40px rgba(0,0,0,0.28) !important;
  }

  .hero-event-visual img {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: rgba(4, 6, 10, 0.34);
  }

  .hero-event-caption {
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
    max-width: none !important;
  }

  .hero-highlights,
  .grid-2,
  .grid-3,
  .grid-4,
  .event-grid,
  .gallery-grid,
  .contact-grid,
  .metric-grid,
  .footer-inner {
    grid-template-columns: 1fr !important;
  }

  .footer-inner,
  .footer-bottom {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .container,
  .hero-slider .container,
  .hero-page .container,
  .page-hero .container,
  .site-header .container,
  .site-footer .container {
    width: calc(100% - 20px) !important;
  }

  .hero-copy {
    padding-top: 6px !important;
  }

  .hero-title {
    font-size: clamp(2rem, 10.6vw, 3rem) !important;
    line-height: 0.98 !important;
  }

  .hero-subtitle {
    font-size: 0.98rem !important;
  }

  .hero-event-visual {
    min-height: 270px !important;
    height: min(64vw, 340px) !important;
    border-radius: 18px !important;
  }

  .hero-actions {
    gap: 10px !important;
  }

  .hero-highlights {
    gap: 10px !important;
  }

  .floating-reservation {
    left: 10px !important;
    right: 10px !important;
  }
}

@media (max-width: 420px) {
  .container,
  .hero-slider .container,
  .hero-page .container,
  .page-hero .container,
  .site-header .container,
  .site-footer .container {
    width: calc(100% - 16px) !important;
  }

  .hero-event-visual {
    min-height: 240px !important;
    height: min(68vw, 300px) !important;
  }
}

@media (max-width: 768px) {
  .event-card .event-image {
    aspect-ratio: auto !important;
    height: clamp(200px, 58vw, 280px) !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-color: rgba(8, 10, 16, 0.92) !important;
  }

  .event-card .event-body {
    padding: 20px !important;
  }
}

@media (max-width: 420px) {
  .event-card .event-image {
    height: clamp(190px, 62vw, 240px) !important;
  }
}
