* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #110b14;
  --bg-2: #1a1020;
  --panel: rgba(24, 17, 29, 0.84);
  --panel-2: rgba(30, 22, 36, 0.90);
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 92, 174, 0.42);
  --text: #fff9fc;
  --muted: #d7cbd5;
  --pink: #ff4fa0;
  --pink-2: #ff6ba7;
  --peach: #ff9b78;
  --purple: #7d2fff;
  --yellow: #ffcc33;
  --dark: #0d0811;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Nunito Sans", "Inter", Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 79, 160, 0.12), transparent 26%),
    radial-gradient(circle at 88% 10%, rgba(125, 47, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #130d16 0%, #0d0910 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
.logo-text strong,
.wide-feature-meta strong {
  font-family: "Bricolage Grotesque", "Nunito Sans", Arial, Helvetica, sans-serif;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

main {
  padding: 0 6vw 90px;
  position: relative;
  z-index: 2;
}

/* HEADER */

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 10, 16, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px 6vw;
}

.topbar-home {
  background: rgba(17, 11, 20, 0.86);
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.34));
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.logo-text strong {
  font-size: 19px;
  letter-spacing: 0.4px;
  color: #ffffff;
  line-height: 1.1;
  font-weight: 800;
}

.logo-text small {
  color: #d4cad5;
  font-size: 12px;
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: #f2eaf0;
  font-weight: 900;
}

.main-nav a {
  opacity: 0.92;
  transition: color 0.18s ease, opacity 0.18s ease;
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--pink-2);
  opacity: 1;
}

.mobile-menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.mobile-menu-btn span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-btn:hover {
  border-color: rgba(255, 107, 167, 0.55);
  background: rgba(255,255,255,0.09);
}

.mobile-menu-btn.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* TYPOGRAPHY */

.eyebrow {
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(62px, 8vw, 118px);
  line-height: 0.9;
  margin: 0 0 20px;
  letter-spacing: -3px;
  color: #ffffff;
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  margin: 0 0 18px;
  letter-spacing: -1px;
  color: #ffffff;
}

h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 28px;
  letter-spacing: -0.6px;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 28px;
  border-radius: 18px;
  font-weight: 900;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

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

.btn-pink {
  background: linear-gradient(135deg, var(--pink), var(--peach));
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 16px 36px rgba(255, 79, 160, 0.24);
}

.btn-pink:hover {
  box-shadow: 0 18px 42px rgba(255, 79, 160, 0.36);
}

.btn-ghost {
  background: rgba(255,255,255,0.045);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.btn-ghost:hover {
  border-color: rgba(255, 107, 167, 0.54);
  background: rgba(255,255,255,0.08);
}

/* HERO VIDEO */

.home-hero-video {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: #0d0811;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 5, 10, 0.86), rgba(7, 5, 10, 0.50)),
    radial-gradient(circle at 76% 28%, rgba(255,79,160,0.18), transparent 34%),
    linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.36));
}

.hero-video-content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 760px;
  padding: 90px 6vw 100px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 58px;
  align-items: center;
}

.hero-video-left h1 {
  font-size: clamp(72px, 9vw, 140px);
  line-height: 0.92;
  margin: 0 0 22px;
  color: #ffffff;
  letter-spacing: -3px;
  text-shadow:
    0 0 34px rgba(255, 79, 160, 0.16),
    0 14px 48px rgba(0,0,0,0.58);
}

.hero-video-left .hero-subline {
  max-width: 730px;
  font-size: 23px;
  line-height: 1.5;
  font-weight: 700;
  color: rgba(255, 245, 250, 0.92);
  margin: 0 0 30px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.38);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-side-card {
  position: relative;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.085), rgba(255,255,255,0.03)),
    rgba(24, 16, 29, 0.78);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 30px;
  padding: 30px;
  box-shadow:
    0 26px 72px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  animation: fadeUp 0.75s ease both;
}

.hero-side-card p {
  color: #e6dbe4;
}

.hero-side-card h3 {
  font-size: 30px;
}

.hero-side-time {
  display: inline-flex;
  margin-top: 22px;
  padding: 12px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--pink), var(--peach));
  color: #ffffff;
  font-weight: 900;
  font-size: 22px;
  box-shadow: 0 12px 28px rgba(255, 79, 160, 0.26);
}

/* LARGE IMAGE + TEXT SECTION */

.venue-feature {
  padding: 76px 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: stretch;
}

.venue-feature-image {
  min-height: 420px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 22px 60px rgba(0,0,0,0.28);
  background: #120b14;
}

.venue-feature-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.venue-feature-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 79, 160, 0.10), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.022)),
    rgba(24, 16, 29, 0.82);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 30px;
  padding: 38px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
}

.venue-feature-text h2 {
  margin-bottom: 16px;
}

.venue-feature-text p {
  margin-bottom: 24px;
  font-size: 18px;
}

/* HOME IMAGE BREAK */

.home-image-break {
  position: relative;
  margin: 58px 0 34px;
  min-height: 390px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 70px rgba(0,0,0,0.32);
  background: #120b14;
}

.home-image-break-media {
  position: absolute;
  inset: 0;
}

.home-image-break-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-image-break::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,5,10,0.82), rgba(8,5,10,0.30)),
    radial-gradient(circle at 80% 30%, rgba(255,79,160,0.20), transparent 34%),
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.34));
  pointer-events: none;
}

.home-image-break-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 56px;
}

.home-image-break-content h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  margin-bottom: 18px;
}

.home-image-break-content p {
  max-width: 540px;
  font-size: 19px;
  color: rgba(255,245,250,0.90);
}

/* SECTIONS */

.section {
  padding: 82px 0 20px;
}

.events-section {
  padding-top: 76px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}

.section-head h2 {
  font-size: clamp(36px, 5vw, 64px);
}

.small-link {
  color: var(--pink-2);
  font-weight: 900;
  transition: color 0.18s ease;
}

.small-link:hover {
  color: #ffffff;
}

/* HIGHLIGHTS */

.quick-highlights {
  margin-top: 28px;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.quick-box {
  min-height: 146px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.022)),
    rgba(25, 17, 30, 0.84);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  animation: fadeUp 0.6s ease both;
}

.quick-box:nth-child(1) { animation-delay: 0.04s; }
.quick-box:nth-child(2) { animation-delay: 0.08s; }
.quick-box:nth-child(3) { animation-delay: 0.12s; }
.quick-box:nth-child(4) { animation-delay: 0.16s; }

.quick-box:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 24px 56px rgba(0,0,0,0.28);
}

.quick-box strong {
  display: block;
  color: var(--yellow);
  font-size: 19px;
  margin-bottom: 8px;
  font-weight: 900;
}

.quick-box span {
  color: var(--muted);
  line-height: 1.45;
}

/* EVENT CARDS */

.public-event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.public-event-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.022)),
    rgba(25, 17, 30, 0.86);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(0,0,0,0.24);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  animation: fadeUp 0.75s ease both;
}

.public-event-card:nth-child(1) { animation-delay: 0.05s; }
.public-event-card:nth-child(2) { animation-delay: 0.10s; }
.public-event-card:nth-child(3) { animation-delay: 0.15s; }

.public-event-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 167, 0.36);
  box-shadow: 0 24px 62px rgba(0,0,0,0.30);
}

.card-link-area {
  display: block;
  height: 100%;
}

.poster-area {
  height: 390px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 79, 160, 0.10), transparent 36%),
    linear-gradient(135deg, #1c0e20, #0d0811);
  position: relative;
  overflow: hidden;
}

.poster-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.public-event-card:hover .poster-area img {
  transform: scale(1.03);
}

.poster-fallback {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  font-size: 34px;
  line-height: 1.05;
  text-align: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 79, 160, 0.20), transparent 36%),
    linear-gradient(135deg, #341224, #17101d);
}

.floating-date {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 76px;
  height: 84px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--pink), var(--peach));
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0,0,0,0.28);
}

.floating-date span {
  font-size: 30px;
}

.floating-date small {
  font-size: 12px;
}

.public-event-info {
  padding: 24px;
}

.public-event-info h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.event-meta {
  margin: 0 0 8px;
  color: var(--pink-2);
  font-weight: 900;
  font-size: 14px;
}

.public-event-info p {
  color: var(--muted);
}

.event-bottom {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.event-bottom span {
  background: rgba(255, 79, 160, 0.12);
  border: 1px solid rgba(255, 79, 160, 0.24);
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 800;
  color: #ffd4ea;
}

.event-bottom strong,
.event-bottom a {
  color: var(--pink-2);
  font-weight: 900;
}

/* EMPTY */

.empty-public {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.022)),
    rgba(25, 17, 30, 0.86);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.20);
}

/* WIDE FEATURE */

.wide-feature {
  margin-top: 74px;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 79, 160, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.022)),
    rgba(25, 17, 30, 0.86);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 30px;
  padding: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 26px;
  align-items: center;
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.wide-feature:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}

.wide-feature-content {
  max-width: 820px;
}

.wide-feature-meta {
  justify-self: end;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
    #19111d;
  border: 1px solid var(--border);
  color: #ffffff;
  border-radius: 24px;
  padding: 24px;
  min-width: 230px;
}

.wide-feature-meta span {
  color: var(--yellow);
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 900;
  margin-bottom: 8px;
}

.wide-feature-meta strong {
  font-size: 28px;
}

/* SPLIT CARDS */

.split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 70px;
}

.split-card {
  min-height: 320px;
  border-radius: 30px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.022)),
    rgba(25, 17, 30, 0.86);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.split-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}

.soft-light,
.soft-warm {
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 79, 160, 0.10), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.022)),
    rgba(25, 17, 30, 0.86);
}

/* PAGE HERO SUBPAGES */

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 6vw 72px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 79, 160, 0.24), transparent 28%),
    radial-gradient(circle at 85% 16%, rgba(125, 47, 255, 0.22), transparent 28%),
    linear-gradient(135deg, #341224 0%, #22102a 45%, #0d0813 100%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 10, 18, 0.70), rgba(16, 10, 18, 0.30));
  pointer-events: none;
}

.page-hero > div {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-hero p {
  font-size: 20px;
  max-width: 720px;
}

/* EVENT SINGLE */

.event-single-main {
  padding-top: 54px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--pink-2);
  font-weight: 900;
}

.event-single-layout {
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.event-single-poster {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.022)),
    rgba(25, 17, 30, 0.86);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
}

.event-single-poster img {
  width: 100%;
  display: block;
}

.poster-fallback.big {
  min-height: 680px;
  font-size: 52px;
}

.event-single-content {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.022)),
    rgba(25, 17, 30, 0.86);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 26px;
  padding: 40px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
}

.event-single-content h1 {
  font-size: clamp(42px, 6vw, 76px);
}

.single-lead {
  font-size: 22px;
  color: #f2e9ef;
  margin-bottom: 30px;
}

.single-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0;
}

.single-info-card {
  background: #19121d;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
}

.single-info-card small {
  display: block;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 8px;
}

.single-info-card strong {
  font-size: 18px;
  color: #ffffff;
}

.single-description {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.single-description h2 {
  font-size: 32px;
}

.single-description p {
  white-space: pre-line;
  font-size: 18px;
}

.single-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* TABS */

.public-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.public-tabs a {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  font-weight: 900;
  color: #f0e7ed;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.public-tabs a.active,
.public-tabs a:hover {
  background: linear-gradient(135deg, var(--pink), var(--peach));
  color: #ffffff;
  border-color: rgba(255,255,255,0.18);
}

/* BAR */

.drink-category-block {
  margin-bottom: 70px;
}

.bar-drink-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.bar-drink-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.022)),
    rgba(25, 17, 30, 0.86);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.bar-drink-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 79, 160, 0.36);
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
}

.bar-drink-image {
  height: 300px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 79, 160, 0.10), transparent 36%),
    #161019;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bar-drink-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 22px;
  display: block;
}

.drink-fallback {
  width: 130px;
  height: 130px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--pink), var(--peach));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 42px;
}

.bar-drink-info {
  padding: 22px;
}

.bar-drink-info h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.drink-meta {
  color: var(--pink-2);
  font-weight: 900;
  margin-top: 0;
}

/* FOOTER */

footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 34px 6vw;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent),
    #0d0811;
  color: #d7cad4;
}

/* ANIMATIONS */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .bar-drink-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quick-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .venue-feature {
    grid-template-columns: 1fr;
  }

  .venue-feature-image {
    min-height: 360px;
  }
}

@media (max-width: 1100px) {
  .public-event-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-video-content {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: auto;
    padding: 70px 5vw 78px;
  }

  .hero-side-card {
    max-width: 560px;
  }
}

@media (max-width: 1050px) {
  .topbar {
    padding: 14px 5vw;
  }

  .main-nav {
    gap: 14px;
    font-size: 13px;
  }

  .logo-text strong {
    font-size: 18px;
  }
}

@media (max-width: 1000px) {
  .event-single-layout {
    grid-template-columns: 1fr;
  }

  .event-single-content {
    padding: 28px;
  }

  .single-info-grid {
    grid-template-columns: 1fr;
  }

  .poster-fallback.big {
    min-height: 420px;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .wide-feature {
    grid-template-columns: 1fr;
  }

  .wide-feature-meta {
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .bar-drink-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* MOBILE */

@media (max-width: 850px) {
  .topbar {
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 74px;
    padding: 12px 5vw;
  }

  .logo {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 64px);
    display: flex;
    align-items: center;
  }

  .logo img {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
  }

  .logo-text {
    min-width: 0;
    overflow: hidden;
  }

  .logo-text strong {
    display: block;
    font-size: 16px;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .logo-text small {
    display: block;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-menu-btn {
    display: flex;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    z-index: 1001;
  }

  .main-nav {
    position: fixed;
    top: 82px;
    left: 5vw;
    right: 5vw;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 14px;
    display: none;
    grid-template-columns: 1fr;
    gap: 10px;
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)),
      rgba(18, 11, 22, 0.98);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 28px 80px rgba(0,0,0,0.52);
    backdrop-filter: blur(18px);
    z-index: 1000;
    animation: navDrop 0.18s ease both;
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.09);
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    text-align: left;
  }

  .main-nav a:hover {
    background:
      linear-gradient(135deg, rgba(255,79,160,0.24), rgba(255,155,120,0.15)),
      rgba(255,255,255,0.055);
    border-color: rgba(255, 107, 167, 0.44);
  }

  .home-hero-video {
    min-height: auto;
  }

  .hero-video-content {
    padding: 58px 5vw 66px;
    gap: 30px;
  }

  .hero-video-left h1 {
    font-size: clamp(52px, 14vw, 82px);
    letter-spacing: -1.5px;
  }

  .hero-video-left .hero-subline {
    font-size: 18px;
    line-height: 1.5;
    max-width: 100%;
  }

  .hero-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }

  .home-hero-video .hero-buttons .btn {
    width: auto;
    min-width: 0;
    max-width: none;
    min-height: 44px;
    padding: 10px 18px;
    font-size: 15px;
    line-height: 1.1;
    border-radius: 15px;
    white-space: nowrap;
  }

  .hero-side-card {
    width: 100%;
    padding: 24px;
    border-radius: 24px;
  }

  .venue-feature {
    padding: 56px 0 16px;
    gap: 22px;
  }

  .venue-feature-image {
    min-height: 300px;
    border-radius: 24px;
  }

  .venue-feature-text {
    padding: 28px;
    border-radius: 24px;
  }

  .home-image-break {
    min-height: 420px;
    margin: 42px 0 28px;
    border-radius: 26px;
  }

  .home-image-break::after {
    background:
      linear-gradient(180deg, rgba(8,5,10,0.60), rgba(8,5,10,0.86)),
      radial-gradient(circle at 80% 20%, rgba(255,79,160,0.18), transparent 34%);
  }

  .home-image-break-content {
    padding: 30px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .home-image-break-content p {
    font-size: 17px;
  }

  .public-event-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .poster-area {
    height: 330px;
  }

  .quick-highlights {
    margin-top: 26px;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .quick-box {
    min-height: 92px;
    padding: 14px 16px;
    border-radius: 18px;
  }

  .quick-box strong {
    font-size: 17px;
    margin-bottom: 4px;
  }

  .quick-box span {
    font-size: 13px;
    line-height: 1.3;
  }

  .events-section {
    padding-top: 60px;
  }
}

@media (max-width: 600px) {
  .bar-drink-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    padding: 12px 5vw;
  }

  main {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .home-hero-video,
  .page-hero {
    padding-left: 0;
    padding-right: 0;
  }

  .split-card,
  .wide-feature {
    padding: 24px;
    border-radius: 22px;
  }

  .logo img {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .mobile-menu-btn {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .logo-text strong {
    font-size: 15px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .home-hero-video .hero-buttons .btn {
    width: auto;
    min-width: 0;
    max-width: none;
    min-height: 42px;
    padding: 9px 13px;
    font-size: 13px;
    border-radius: 14px;
    white-space: nowrap;
    text-align: center;
    justify-content: center;
  }

  .hero-video-left h1 {
    font-size: 52px;
  }

  .hero-side-card h3 {
    font-size: 26px;
  }

  .home-image-break {
    min-height: 360px;
    border-radius: 22px;
  }

  .home-image-break-content {
    padding: 24px;
  }

  .page-hero p {
    font-size: 18px;
  }

  .wide-feature-meta {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .quick-highlights {
    grid-template-columns: 1fr 1fr;
  }

  .quick-box {
    min-height: 88px;
  }
}

@media (max-width: 420px) {
  .topbar {
    padding: 10px 4vw;
  }

  .main-nav {
    top: 76px;
    left: 4vw;
    right: 4vw;
  }

  .logo img {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .mobile-menu-btn {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .logo-text strong {
    font-size: 15px;
  }

  .hero-video-content {
    padding: 48px 5vw 56px;
  }

  .hero-video-left h1 {
    font-size: 46px;
  }

  .hero-video-left .hero-subline {
    font-size: 17px;
  }

  .home-hero-video .hero-buttons {
    gap: 8px;
  }

  .home-hero-video .hero-buttons .btn {
    padding: 8px 10px;
    font-size: 12.5px;
    border-radius: 13px;
  }

  .venue-feature-text {
    padding: 24px;
  }
}

/* =========================================================
   SUBPAGE MOBILE FIX
   Alamlehtede hero tekst ei lõika enam telefonis servast ära
   ========================================================= */

@media (max-width: 850px) {
  .page-hero {
    padding: 58px 5vw 56px;
    overflow: hidden;
  }

  .page-hero > div {
    max-width: 100%;
    width: 100%;
  }

  .page-hero h1 {
    font-size: clamp(42px, 13vw, 72px);
    line-height: 0.96;
    letter-spacing: -1.5px;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .page-hero p {
    font-size: 18px;
    line-height: 1.55;
    max-width: 100%;
  }

  .page-hero .eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
  }
}

@media (max-width: 600px) {
  .page-hero {
    padding: 48px 5vw 48px;
  }

  .page-hero h1 {
    font-size: clamp(38px, 12vw, 56px);
    line-height: 1;
    letter-spacing: -1px;
  }

  .page-hero p {
    font-size: 17px;
  }
}

@media (max-width: 420px) {
  .page-hero {
    padding: 42px 4vw 44px;
  }

  .page-hero h1 {
    font-size: 40px;
    letter-spacing: -0.8px;
  }

  .page-hero p {
    font-size: 16.5px;
  }
}

/* SIMPLE CONTACT PAGE */

.simple-contact-layout {
  padding: 72px 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.simple-contact-card {
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 79, 160, 0.10), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.022)),
    rgba(25, 17, 30, 0.86);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 30px;
  padding: 38px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
}

.main-contact-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main-contact-card p {
  max-width: 720px;
  font-size: 18px;
}

.contact-big-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.contact-big-item {
  display: block;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

a.contact-big-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 107, 167, 0.44);
  background:
    linear-gradient(135deg, rgba(255,79,160,0.14), rgba(255,155,120,0.08)),
    rgba(255,255,255,0.055);
}

.contact-big-item span {
  display: block;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 6px;
}

.contact-big-item strong {
  display: block;
  color: #ffffff;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.12;
}

.contact-side-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-mini-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contact-mini-list div {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 18px;
}

.contact-mini-list small {
  display: block;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 6px;
}

.contact-mini-list strong {
  display: block;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.35;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

@media (max-width: 1000px) {
  .simple-contact-layout {
    grid-template-columns: 1fr;
  }

  .main-contact-card {
    min-height: auto;
  }
}

@media (max-width: 650px) {
  .simple-contact-layout {
    padding-top: 52px;
  }

  .simple-contact-card {
    padding: 24px;
    border-radius: 24px;
  }

  .contact-big-item {
    padding: 18px;
    border-radius: 18px;
  }

  .contact-big-item strong {
    font-size: 22px;
  }

  .contact-actions .btn {
    width: 100%;
  }
}

/* CLEAN CONTACT PAGE */

.contact-clean-layout {
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
}

.contact-clean-card {
  min-height: auto;
}

@media (max-width: 650px) {
  .contact-clean-layout {
    padding-top: 42px;
  }

  .contact-clean-card {
    padding: 24px;
  }

  .contact-big-list {
    margin-top: 24px;
  }
}