:root {
  --bg: #0b0d12;
  --bg2: #121521;
  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.09);
  --line: rgba(255, 255, 255, 0.14);
  --text: rgba(252, 250, 245, 0.96);
  --muted: rgba(232, 230, 220, 0.72);
  --gold: #f7cf77;
  --gold2: #ffb23d;
  --lime: #ffb23d;
  --cyan: rgba(255, 230, 176, 0.92);
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.5);
  --radius: 22px;
  --radius2: 28px;
  --wrap: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: radial-gradient(circle at 18% 6%, rgba(255, 178, 61, 0.08), transparent 55%),
    radial-gradient(circle at 78% 12%, rgba(247, 207, 119, 0.08), transparent 58%),
    radial-gradient(circle at 60% 86%, rgba(255, 230, 176, 0.05), transparent 60%), var(--bg);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 30% 5%, black 0%, transparent 65%);
}

.bg-blobs {
  position: absolute;
  inset: -20vmax;
  filter: blur(32px);
  opacity: 0.78;
}

.blob {
  position: absolute;
  border-radius: 999px;
  transform: translate3d(0, 0, 0);
  animation: drift 16s ease-in-out infinite;
  mix-blend-mode: screen;
}

.blob.b1 {
  width: 56vmax;
  height: 56vmax;
  left: 6vmax;
  top: 4vmax;
  background: radial-gradient(circle at 30% 30%, rgba(247, 207, 119, 0.78), transparent 60%),
    radial-gradient(circle at 60% 60%, rgba(255, 230, 176, 0.5), transparent 62%);
}

.blob.b2 {
  width: 60vmax;
  height: 60vmax;
  right: 4vmax;
  top: 12vmax;
  animation-delay: -6s;
  background: radial-gradient(circle at 40% 40%, rgba(255, 178, 61, 0.5), transparent 62%),
    radial-gradient(circle at 60% 50%, rgba(247, 207, 119, 0.42), transparent 66%);
}

.blob.b3 {
  width: 66vmax;
  height: 66vmax;
  left: 14vmax;
  bottom: 4vmax;
  animation-delay: -10s;
  background: radial-gradient(circle at 45% 35%, rgba(255, 230, 176, 0.34), transparent 62%),
    radial-gradient(circle at 55% 55%, rgba(255, 178, 61, 0.28), transparent 64%);
}

.bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.33'/%3E%3C/svg%3E");
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 1.8rem);
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem clamp(1rem, 3vw, 1.8rem);
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(11, 13, 18, 0.86), rgba(11, 13, 18, 0.56));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.brand-logo {
  width: 84px;
  height: 84px;
  min-width: 84px;
  max-width: 84px;
  min-height: 84px;
  max-height: 84px;
  flex: 0 0 84px;
  object-fit: cover;
}

.brand-stack {
  display: grid;
  line-height: 1;
  min-width: 0;
}

.brand-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--muted);
}

.brand-name {
  font-family: "Syne", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

.brand-sub {
  font-family: "Syne", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(247, 207, 119, 0.92);
  letter-spacing: 0.08em;
  text-transform: lowercase;
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav a {
  text-decoration: none;
  color: rgba(248, 246, 240, 0.88);
  font-size: 0.95rem;
  padding: 0.25rem 0.1rem;
  border-bottom: 1px solid transparent;
  transition: opacity 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.nav a:hover,
.nav a:focus-visible {
  opacity: 1;
  border-bottom-color: rgba(247, 207, 119, 0.75);
  transform: translateY(-1px);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.52rem 0.78rem;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(248, 246, 240, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 650;
  font-size: 0.9rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
}

.pill:hover,
.pill:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(247, 207, 119, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

.pill-primary {
  border-color: rgba(247, 207, 119, 0.55);
  background: linear-gradient(135deg, rgba(247, 207, 119, 0.22), rgba(255, 178, 61, 0.12));
}

.hero {
  padding-top: clamp(2rem, 5vw, 4.6rem);
  padding-bottom: clamp(1.4rem, 5vw, 2.8rem);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  color: rgba(232, 230, 220, 0.82);
  margin: 0;
  font-size: 0.92rem;
}

.chip-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--gold2);
  box-shadow: 0 0 0 0 rgba(255, 178, 61, 0.55);
  animation: pulse 1.6s ease-out infinite;
}

.hero-title {
  margin: 1.1rem 0 0;
  font-family: "Syne", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-title-top {
  display: block;
  font-size: clamp(2.2rem, 7vw, 4.4rem);
  color: rgba(252, 250, 245, 0.92);
}

.hero-title-main {
  display: block;
  font-size: clamp(2.6rem, 8.2vw, 5.4rem);
  background: linear-gradient(135deg, rgba(247, 207, 119, 1), rgba(255, 230, 176, 0.94), rgba(255, 178, 61, 0.92));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.spacer {
  height: 1.25rem;
}

.hero-lead {
  margin: 1.05rem 0 0;
  max-width: 70ch;
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  color: rgba(232, 230, 220, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.78rem 1.08rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(248, 246, 240, 0.92);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  border-color: rgba(247, 207, 119, 0.5);
}

.btn-primary {
  border-color: rgba(247, 207, 119, 0.6);
  background: linear-gradient(135deg, rgba(247, 207, 119, 0.26), rgba(255, 178, 61, 0.12));
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
}

.hero-metrics {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.metric {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  padding: 0.95rem;
  transform: translateY(10px);
  opacity: 0;
  animation: reveal 700ms ease forwards;
  animation-delay: 220ms;
}

.metric h2 {
  margin: 0;
  font-family: "Syne", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.05rem;
}

.muted {
  color: var(--muted);
}

.tiny {
  font-size: 0.92rem;
}

.section {
  padding-top: clamp(2.2rem, 6vw, 3.4rem);
  padding-bottom: clamp(1.8rem, 6vw, 3.2rem);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-title {
  margin: 0;
  font-family: "Syne", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
  font-size: clamp(1.6rem, 4vw, 2.15rem);
}

.section-sub {
  margin: 0.45rem 0 0;
  color: rgba(232, 230, 220, 0.72);
  max-width: 70ch;
}

.link {
  color: rgba(247, 207, 119, 0.92);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid rgba(247, 207, 119, 0.35);
  padding-bottom: 0.12rem;
}

.link:hover,
.link:focus-visible {
  opacity: 0.92;
}

.section-actions {
  display: flex;
  gap: 0.6rem;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(248, 246, 240, 0.92);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.icon-btn:hover,
.icon-btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(247, 207, 119, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.next-event {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1.1rem;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  overflow: hidden;
  /* Allow vertical page scroll, but keep horizontal swipes on the card itself. */
  touch-action: pan-y;
}

.next-event-media {
  height: clamp(320px, 52vh, 750px);
  background: linear-gradient(135deg, rgba(247, 207, 119, 0.22), rgba(255, 230, 176, 0.1), rgba(255, 178, 61, 0.08));
  position: relative;
}

.next-event-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  display: block;
  filter: saturate(1.05);
  transform: scale(1.01);
}

/* Big poster uses object-fit: cover for a clean hero without affecting layout. */

.next-event-body {
  padding: 1.2rem 1.2rem 1.25rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(247, 207, 119, 0.46);
  background: rgba(247, 207, 119, 0.12);
  color: rgba(247, 207, 119, 0.92);
}

.next-event-title {
  margin: 0.75rem 0 0;
  font-family: "Syne", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
  font-size: clamp(1.35rem, 3.8vw, 2rem);
  line-height: 1.05;
}

.next-event-time {
  margin: 0.65rem 0 0;
  color: rgba(232, 230, 220, 0.82);
  font-weight: 650;
}

.next-event-desc {
  margin: 0.65rem 0 0;
  color: rgba(232, 230, 220, 0.74);
  white-space: pre-line;
}

.next-event-meta {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.meta-pill {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  font-size: 0.9rem;
  color: rgba(252, 250, 245, 0.88);
}

.meta-pill-live {
  border-color: rgba(247, 207, 119, 0.35);
  background: rgba(247, 207, 119, 0.08);
  color: rgba(255, 230, 176, 0.92);
}

.events-rail-wrap {
  margin-top: 1rem;
}

.events-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 320px);
  gap: 0.9rem;
  overflow-x: auto;
  padding: 0.2rem 0.2rem 0.85rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.events-rail::-webkit-scrollbar {
  height: 10px;
}

.events-rail::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.event-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  overflow: hidden;
  position: relative;
  min-height: 230px;
  cursor: pointer;
  color: rgba(252, 250, 245, 0.94);
  text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.event-card:hover,
.event-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(247, 207, 119, 0.45);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
}

.event-card.active {
  /* Keep it premium, not neon: subtle gold stroke + depth. */
  border-color: rgba(247, 207, 119, 0.42);
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(247, 207, 119, 0.12);
}

.event-card.active .event-card-title {
  color: rgba(255, 240, 210, 0.98);
}

.event-card-media {
  height: 150px;
  padding: 0.65rem;
  display: grid;
  overflow: hidden;
  position: relative;
  z-index: 0;
  background: linear-gradient(135deg, rgba(255, 230, 176, 0.12), rgba(247, 207, 119, 0.14));
}

/* Only show the blurred poster backdrop when we use `contain`.
   For `cover` (cropped) posters we want a clean cut without glow/shadow artifacts. */
.event-card.fit-contain .event-card-media.has-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--poster);
  background-size: cover;
  background-position: center;
  filter: blur(14px) saturate(1.05);
  opacity: 0.42;
  transform: scale(1.08);
  pointer-events: none;
}

.event-card.fit-contain .event-card-media.has-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 13, 18, 0.18), rgba(11, 13, 18, 0.62));
  pointer-events: none;
}

.event-card.fit-cover .event-card-media {
  padding: 0;
  background: rgba(11, 13, 18, 0.55);
}

.event-card.fit-cover .event-card-media img {
  border-radius: 0;
  border: 0;
  box-shadow: none;
  filter: saturate(1.05) contrast(1.03);
  object-position: 50% 50%;
}

.event-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  filter: saturate(1.08) contrast(1.02);
}

.event-card.fit-contain .event-card-media img {
  object-fit: contain;
  object-position: center;
  filter: saturate(1.06) contrast(1.02);
}

.event-card-body {
  padding: 0.95rem 0.95rem 1.05rem;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(11, 13, 18, 0.18), rgba(11, 13, 18, 0));
}

.event-card-title {
  margin: 0;
  font-family: "Syne", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 820;
  letter-spacing: -0.01em;
  font-size: 1.15rem;
  line-height: 1.08;
  /* Match the site's gold headline vibe so the "topic" is immediately visible. */
  color: rgba(255, 230, 176, 0.94);
}

.event-card-time {
  margin: 0.55rem 0 0;
  color: rgba(232, 230, 220, 0.84);
  font-weight: 650;
  font-size: 0.95rem;
}

.event-card-desc {
  margin: 0.55rem 0 0;
  color: rgba(232, 230, 220, 0.7);
  font-size: 0.95rem;
  white-space: pre-line;
}

.hours {
  margin-top: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  padding: 1.05rem 1.05rem 1.1rem;
}

.hours-status {
  margin: 0;
  font-family: "Syne", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.55rem, 3.6vw, 2.05rem);
  line-height: 1.15;
  display: inline-flex;
  align-items: center;
}

.hours-live-dot {
  display: inline-block;
  width: 0.62rem;
  height: 0.62rem;
  margin-left: 0.95rem;
  position: relative;
  border-radius: 999px;
  background: rgba(80, 255, 150, 0.95);
  box-shadow: 0 0 0 0 rgba(80, 255, 150, 0.38);
  animation: openPulse 1.2s ease-out infinite;
}

.hours-live-dot::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(80, 255, 150, 0.18), transparent 70%);
  filter: blur(2px);
  opacity: 0.9;
  pointer-events: none;
}

.hours-more {
  margin-top: 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(248, 246, 240, 0.9);
  font: inherit;
  font-weight: 750;
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.hours-more:hover,
.hours-more:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(247, 207, 119, 0.42);
  background: rgba(255, 255, 255, 0.06);
}

.hours-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hours-list li {
  display: grid;
  gap: 0.15rem;
  padding: 0.55rem 0.65rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(232, 230, 220, 0.78);
  font-weight: 650;
}

.hours-day {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 230, 176, 0.92);
}

.hours-hours {
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  color: rgba(248, 246, 240, 0.92);
}

.hours-meta {
  margin: 0.9rem 0 0;
  font-size: 0.83rem;
}

@media (max-width: 720px) {
  .hours-list {
    grid-template-columns: 1fr;
  }
}

.ig-grid {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.ig-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  aspect-ratio: 1 / 1;
  transform: translateY(10px);
  opacity: 0;
  animation: reveal 650ms ease forwards;
}

.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.ig-item:hover img,
.ig-item:focus-visible img {
  transform: scale(1.03);
  filter: saturate(1.2);
}

.ig-badge {
  position: absolute;
  left: 0.6rem;
  top: 0.6rem;
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(11, 13, 18, 0.5);
  color: rgba(248, 246, 240, 0.9);
  backdrop-filter: blur(8px);
}

.ig-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.fb-shell {
  margin-top: 1.1rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  overflow: hidden;
  box-shadow: var(--shadow);
}

.fb-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.95rem 0.95rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(11, 13, 18, 0.45), rgba(11, 13, 18, 0));
}

.fb-head-left {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.fb-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 999px;
  border: 1px solid rgba(247, 207, 119, 0.35);
  background: rgba(255, 255, 255, 0.05);
  object-fit: cover;
}

.fb-head-text {
  display: grid;
  min-width: 0;
  line-height: 1.1;
}

.fb-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 230, 220, 0.74);
}

.fb-name {
  font-family: "Syne", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 850;
  color: rgba(255, 230, 176, 0.96);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fb-handle {
  font-size: 0.9rem;
  color: rgba(232, 230, 220, 0.72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fb-open {
  padding: 0.6rem 0.9rem;
  font-weight: 800;
}

.fb-viewport {
  position: relative;
  overflow: hidden;
  background: #fff;
  /* Crop the plugin's internal header area (we render our own header). */
  --fb-crop-top: 74px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fb-viewport iframe {
  display: block;
  width: 100%;
  height: clamp(820px, 96vh, 1120px);
  border: 0;
  background: #fff;
  position: relative;
  top: calc(var(--fb-crop-top) * -1);
  height: calc(clamp(820px, 96vh, 1120px) + var(--fb-crop-top));
}

.fb-feed {
  padding: 0 0.95rem 1rem;
  display: grid;
  gap: 0.85rem;
}

.fb-post {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 0.85rem;
  padding: 0.85rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.fb-post:hover,
.fb-post:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(247, 207, 119, 0.45);
  background: rgba(255, 255, 255, 0.05);
}

.fb-post-media {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(247, 207, 119, 0.18), rgba(255, 178, 61, 0.06));
  aspect-ratio: 1 / 1;
}

.fb-post-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.06);
}

.fb-post-body {
  min-width: 0;
  display: grid;
  gap: 0.35rem;
  align-content: start;
}

.fb-post-date {
  font-size: 0.82rem;
  color: rgba(232, 230, 220, 0.72);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fb-post-text {
  color: rgba(248, 246, 240, 0.9);
  font-weight: 650;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media (max-width: 720px) {
  .fb-feed {
    padding: 0 0.75rem 0.95rem;
  }

  .fb-post {
    grid-template-columns: 96px minmax(0, 1fr);
    padding: 0.75rem;
    gap: 0.7rem;
  }
}

.map {
  margin-top: 1.1rem;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  min-height: 320px;
}

.map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 13, 18, 0.6);
  backdrop-filter: blur(10px);
  padding: 1.4rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(232, 230, 220, 0.74);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 0.12rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: rgba(247, 207, 119, 0.95);
  border-bottom-color: rgba(247, 207, 119, 0.55);
}

.skeleton {
  position: relative;
  overflow: hidden;
}

.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: translateX(-100%);
  animation: shimmer 1.2s ease-in-out infinite;
}

.skeleton-line {
  display: inline-block;
  min-height: 1.2em;
  width: min(22rem, 90%);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.skeleton-block {
  min-height: 3.6em;
  width: min(44rem, 95%);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
}

[data-reveal] {
  transform: translateY(14px);
  opacity: 0;
}

.reveal-in {
  transform: translateY(0);
  opacity: 1;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 700ms ease;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 178, 61, 0.5);
  }
  100% {
    box-shadow: 0 0 0 12px rgba(255, 178, 61, 0);
  }
}

@keyframes openPulse {
  0% {
    transform: translateY(1px) scale(0.96);
    box-shadow: 0 0 0 0 rgba(80, 255, 150, 0.36);
  }
  60% {
    transform: translateY(0px) scale(1);
    box-shadow: 0 0 0 18px rgba(80, 255, 150, 0);
  }
  100% {
    transform: translateY(0px) scale(1);
    box-shadow: 0 0 0 0 rgba(80, 255, 150, 0);
  }
}

@keyframes shimmer {
  to {
    transform: translateX(100%);
  }
}

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

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(3vmax, -2vmax, 0) scale(1.02);
  }
}

@media (max-width: 980px) {
  .header-cta {
    display: none;
  }

  .ig-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .next-event-media {
    height: clamp(260px, 44vh, 560px);
  }
}

@media (max-width: 720px) {
  .nav {
    display: none;
  }

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

  .event-card-media {
    height: 140px;
    padding: 0.55rem;
  }

  .map iframe {
    height: 320px;
  }

  .fb-shell {
    max-width: 100%;
  }

  .fb-viewport {
    --fb-crop-top: 64px;
  }

  .fb-viewport iframe {
    width: 100%;
    height: calc(760px + var(--fb-crop-top));
  }

  .brand-logo {
    width: 62px;
    height: 62px;
    min-width: 62px;
    max-width: 62px;
    min-height: 62px;
    max-height: 62px;
    flex-basis: 62px;
  }
}
