*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #050506;
  --surface:   #0d0d0d;
  --surface2:  #0f0f0f;
  --border:    #222;
  --muted:     #828181;
  --white:     #ffffff;

  /* event-type accent colours */
  --live-fg:   #e94560;
  --live-bg:   #3d1525;
  --live-border:#e94560;

  --watch-fg:  #3498db;
  --watch-bg:  #0f1f33;
  --watch-border:#3498db;

  --food-fg:   #2ecc71;
  --food-bg:   #0f2e1a;
  --food-border:#2ecc71;

  --warn-fg:   #f6d900;
  --warn-bg:   #6d3200;
  --warn-border:#f69c00;
}

html { font-size: 16px; }
body {
  background: var(--surface);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
}

/* ─── PAGE WRAPPER ─────────────────────────────────────── */
.page {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  background: var(--surface);
}

/* ─── ABOUT PAGE WRAPPER ────────────────────────────────── */
.page-about {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--surface);
  min-height: 100vh;
}

/* ─── GRADIENT DECORATION ──────────────────────────────── */
.gradient-bg {
  position: absolute;
  top: 88px;
  left: 0;
  width: 100%;
  height: 320px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.gradient-bg svg {
  display: block;
  width: 100%;
  height: 100%;
  transform: translateZ(0);
  will-change: filter;
  animation: hueCycle 10s linear infinite;
  filter: saturate(1.8) brightness(1.2) hue-rotate(0deg);
}

@keyframes hueCycle {
  0%   { filter: saturate(1.8) brightness(1.2) hue-rotate(0deg); }
  100% { filter: saturate(1.8) brightness(1.2) hue-rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .gradient-bg svg { animation: none; }
}

/* ─── HEADER ────────────────────────────────────────────── */
header {
  position: relative;
  z-index: 10;
  background: var(--surface);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(255,255,255,0.06);
}

.logo {
  height: 40px;
  width: auto;
}

.menu-btn {
  width: 40px; height: 40px;
  border: none; background: transparent;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  transition: background .15s;
}
.menu-btn:hover { background: var(--border); }
.menu-btn svg { width: 24px; height: 24px; }

/* ─── GRADIENT FADE ─────────────────────────────────────── */
/* Smooth fade from transparent into --surface below the gradient */
.gradient-fade {
  position: relative;
  z-index: 1;
  height: 80px;
  margin-top: -80px;
  background: linear-gradient(to bottom, transparent, var(--surface));
  pointer-events: none;
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  padding: 24px 24px 16px;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -.01em;
  margin-bottom: 8px;
}
.hero p {
  font-weight: 200;
  font-size: 16px;
  line-height: 1.2;
  color: var(--white);
}

/* ─── CONTROLS ──────────────────────────────────────────── */
.controls {
  position: relative;
  z-index: 1;
  padding: 16px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: transparent;
}

/* Tab + Filter row */
.top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
}

/* Pill tab switcher */
.tab-switcher {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  display: flex;
  padding: 4px 5px 4px 4px;
  gap: 0;
}
.tab-btn {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 100px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  padding: 4px 16px;
  cursor: pointer;
  transition: background .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
}
.tab-btn.active {
  background: var(--border);
  border-color: var(--border);
  box-shadow: 0 4px 4px rgba(0,0,0,.25);
}

/* Filter icon button */
.filter-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  cursor: pointer;
  display: flex; align-items: center;
  transition: background .15s;
}
.filter-btn:hover { background: var(--border); }
.filter-btn-inner {
  padding: 4px 16px;
  border-radius: 100px;
  display: flex; align-items: center;
}
.filter-btn svg { width: 24px; height: 24px; display: block; }

/* Category chips */
.chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.chips::-webkit-scrollbar { display: none; }
.chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--white);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  padding: 8px 16px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, border-color .2s;
}
.chip.active, .chip:hover {
  background: var(--border);
}

/* ─── EVENT LIST ─────────────────────────────────────────── */
.event-list {
  position: relative;
  z-index: 1;
  padding: 16px 16px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ─── ACCORDION CARD ─────────────────────────────────────── */
.event-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0,0,0,.25);
  transition: border-color .2s;
  transform: translateZ(0);
}

.event-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  cursor: pointer;
  user-select: none;
}

/* Thumbnail icon — background/border/padding baked into SVG file */
.thumb {
  width: 48px; height: 48px;
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
}
.thumb img { width: 100%; height: 100%; display: block; }

/* Event meta */
.event-meta { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.venue-name  { font-size: 12px; font-weight: 500; color: var(--muted); white-space: nowrap; }
.event-title { font-size: 16px; font-weight: 600; line-height: 1.3; color: var(--white); }
.event-tags  { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 12px; line-height: normal; }
.tag-type    { font-weight: 400; }
.tag-type.live  { color: var(--live-fg); }
.tag-type.watch { color: var(--watch-fg);}
.tag-type.food  { color: var(--food-fg); }
.tag-date, .tag-time { color: var(--muted); font-size: 12px; }

/* Chevron */
.chevron {
  width: 24px; height: 24px; flex-shrink: 0;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 0;
  transition: transform .25s ease;
  margin-top: 2px;
}
.chevron svg { width: 20px; height: 20px; }
.event-card.open .chevron { transform: rotate(180deg); }

/* ─── ACCORDION BODY ─────────────────────────────────────── */
.event-body {
  height: 0;
  overflow: hidden;
  transition: height .25s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: height;
  transform: translateZ(0);
}

.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

.body-inner {
  padding: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Description */
.event-desc {
  padding: 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--white);
}

/* Disclaimer banner */
.disclaimer {
  margin: 0 16px;
  background: var(--warn-bg);
  border: 1px solid var(--warn-border);
  border-radius: 8px;
  padding: 10px;
  font-size: 10px;
  line-height: 1.6;
  color: var(--warn-fg);
}
.disclaimer a { color: var(--warn-fg); text-decoration: underline; }

/* Venue card */
.venue-card {
  margin: 0 16px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.venue-card-name { font-size: 16px; font-weight: 500; color: var(--white); }
.venue-details   { display: flex; flex-direction: column; gap: 4px; margin-top: 4px; }
.venue-row {
  display: flex;
  gap: 8px;
  align-items: center;
  height: 24px;
}
.venue-row svg    { width: 14px; height: 14px; flex-shrink: 0; }
.venue-row span   { font-size: 12px; color: var(--white); line-height: 1.6; white-space: nowrap; }
.venue-row .info-icon { width: 12px; height: 12px; margin-left: 4px; vertical-align: middle; }
.venue-desc-text  { font-size: 14px; line-height: 1.6; color: var(--white); }

/* Venue tags */
.venue-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.vtag {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 12px;
  color: var(--white);
  line-height: 1.6;
}

/* Social icons */
.social-row { display: flex; gap: 16px; align-items: center; }
.social-row a { color: var(--white); display: flex; }
.social-row svg { width: 24px; height: 24px; }

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--surface);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 2px solid var(--border);
}
.footer-logo { height: 40px; width: auto; margin-bottom: 10px; }
.footer-tagline { font-family: 'Roboto', sans-serif; font-size: 14px; line-height: 1.4; color: #828181; max-width: 248px; margin-bottom: 24px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.footer-links a { font-family: 'Roboto', sans-serif; font-size: 14px; line-height: 1.4; color: var(--white); text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.footer-divider { border: none; border-top: 1px solid #333; margin: 16px 0; }
.footer-disclaimer { font-family: 'Roboto', sans-serif; font-size: 10px; line-height: 1.8; color: #828181; max-width: 329px; }
.footer-brand { font-family: 'Roboto', sans-serif; font-size: 14px; line-height: 1.4; color: #828181; }
.footer-city  { font-family: 'Roboto', sans-serif; font-size: 14px; line-height: 1.4; color: #828181; margin-top: 4px; }

/* ─── HIDDEN class ───────────────────────────────────────── */
.hidden { display: none !important; }

/* ─── SIDEBAR: hidden on mobile by default ──────────────── */
.sidebar { display: none; }

/* ═══════════════════════════════════════════════════════════
   DESKTOP RESPONSIVE  (≥ 768px)
═══════════════════════════════════════════════════════════ */
@media (min-width: 768px) {

  /* Page: full width, no mobile cap */
  .page {
    max-width: 100%;
  }

  /* Header: wider padding, show desktop nav, hide hamburger */
  header {
    padding: 24px 56px;
  }
  .menu-btn {
    display: none;
  }
  .desktop-nav {
    display: flex;
    gap: 32px;
    align-items: center;
  }
  .desktop-nav a {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    transition: opacity .15s;
  }
  .desktop-nav a:hover { opacity: 0.7; }

  /* Gradient taller on desktop */
  .gradient-bg {
    height: 480px;
  }

  /* Hero: larger text, more padding */
  .hero {
    padding: 48px 48px 32px;
  }
  .hero h1 {
    font-size: 64px;
  }
  .hero p {
    font-size: 32px;
    max-width: 635px;
  }

  /* Content layout: main + sidebar side by side */
  .content-layout {
    display: flex;
    align-items: flex-start;
    padding-bottom: 48px;
  }

  .content-main {
    flex: 1;
    min-width: 0;
  }

  /* Controls: hide filter btn and chips on desktop */
  .controls {
    padding: 0 48px 32px;
  }
  .filter-btn {
    display: none;
  }
  .chips {
    display: none;
  }
  .top-row {
    justify-content: flex-start;
  }

  /* Event list: 3-column grid */
  .event-list {
    padding: 0 48px 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  /* Cards: no accordion on desktop — always show body */
  .event-card {
    border-radius: 16px;
  }
  .event-header {
    cursor: default;
  }
  .chevron {
    display: none;
  }

  /* Sidebar */
  .sidebar {
    display: flex;
    flex-direction: column;
    width: 242px;
    flex-shrink: 0;
    padding: 0 24px 32px;
    gap: 0;
  }
  .sidebar-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .sidebar-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: .02em;
    margin-top: 0;
  }
  .sidebar-divider {
    border: none;
    border-top: 1px solid var(--border);
    width: 100%;
  }
  .sidebar-divider--gap {
    margin: 24px 0;
  }
  .sidebar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .sidebar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    font-size: 16px;
    color: var(--white);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    user-select: none;
  }
  .sidebar-item input[type="checkbox"] {
    display: none;
  }
  .sidebar-checkbox {
    width: 24px;
    height: 24px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--surface);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, border-color .15s;
  }
  .sidebar-item input:checked + .sidebar-checkbox {
    background: var(--border);
    border-color: var(--white);
  }
  .sidebar-item input:checked + .sidebar-checkbox::after {
    content: '';
    width: 10px;
    height: 6px;
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(-45deg) translateY(-1px);
    display: block;
  }

  /* Footer: horizontal 3-col layout */
  footer {
    padding: 32px 48px;
    gap: 0;
  }
  .footer-logo { margin-bottom: 10px; }
  .footer-tagline { margin-bottom: 0; }
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
  }
  .footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 338px;
  }
  .footer-links {
    flex-direction: column;
  }
  .footer-address {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .footer-disclaimer {
    max-width: 700px;
  }
}

/* Hide desktop nav on mobile (default) — scoped to avoid overriding desktop media query */
@media (max-width: 767px) {
  .desktop-nav { display: none; }
}

/* ─── MOBILE FILTER DRAWER ──────────────────────────────── */
.filter-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(31, 31, 31, 0.62);
  z-index: 100;
  opacity: 0;
  transition: opacity .25s ease;
}
.filter-overlay.active {
  display: block;
  opacity: 1;
}

.filter-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 290px;
  height: 100dvh;
  background: var(--surface);
  border-left: 2px solid var(--border);
  z-index: 101;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.filter-drawer.active {
  transform: translateX(0);
}

.filter-drawer-inner {
  padding: 69px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
  min-height: 100%;
}

.filter-drawer-close {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  align-self: flex-end;
  flex-shrink: 0;
}
.filter-drawer-close svg {
  width: 24px;
  height: 24px;
  display: block;
}
.filter-drawer-close:hover { background: var(--border); }

.filter-drawer-sections {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.filter-drawer-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-drawer-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: .02em;
}

.filter-drawer-divider {
  border: none;
  border-top: 1px solid var(--border);
  width: 100%;
  margin: 0;
}
.filter-drawer-divider--gap {
  margin: 24px 0;
}

.filter-drawer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.filter-drawer-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  font-size: 16px;
  color: var(--white);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  user-select: none;
}
.filter-drawer-item input[type="checkbox"] {
  display: none;
}
.filter-drawer-checkbox {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, border-color .15s;
}
.filter-drawer-item input:checked + .filter-drawer-checkbox {
  background: var(--border);
  border-color: var(--white);
}
.filter-drawer-item input:checked + .filter-drawer-checkbox::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg) translateY(-1px);
  display: block;
}

/* Hide chips on all sizes since drawer replaces them */
.chips { display: none !important; }

/* On desktop, hide the filter drawer entirely */
@media (min-width: 768px) {
  .filter-btn { display: none; }
  .filter-drawer, .filter-overlay { display: none !important; }
}

/* ─── DATE CAROUSEL ─────────────────────────────────────── */
#dateCarouselContainer {
  position: relative;
  z-index: 1;
  padding: 16px 0 0;
}

.date-carousel {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 24px 2px;
}
.date-carousel::-webkit-scrollbar { display: none; }

.date-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  min-width: 78px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}
.date-pill.active {
  background: var(--border);
  border-color: var(--border);
}
.date-pill-day {
  font-size: 12px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  color: var(--muted);
  line-height: 1.6;
}
.date-pill.active .date-pill-day {
  color: var(--white);
}
.date-pill-num {
  font-size: 24px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: var(--white);
  line-height: 1;
}
.date-pill-count {
  font-size: 10px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  color: var(--muted);
  line-height: 1.6;
}
.date-pill.active .date-pill-count {
  color: var(--white);
}

/* Desktop: carousel sits above the event grid in the main column */
@media (min-width: 768px) {
  #dateCarouselContainer {
    padding: 0 48px 16px;
  }
}

/* ─── FILTER ITEM COUNTS & DISABLED STATE ──────────────── */
.filter-item-label {
  flex: 1;
  min-width: 0;
}

.filter-item-count {
  font-size: 12px;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  margin-left: auto;
  flex-shrink: 0;
}

.filter-item--disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: default;
}

.filter-item--disabled .filter-drawer-checkbox,
.filter-item--disabled .sidebar-checkbox {
  border-color: var(--border);
  background: transparent;
}

/* ─── NAV DRAWER ─────────────────────────────────────────── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(31, 31, 31, 0.62);
  z-index: 100;
  opacity: 0;
  transition: opacity .25s ease;
}
.nav-overlay.active {
  display: block;
  opacity: 1;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 290px;
  height: 100dvh;
  background: var(--surface);
  border-left: 2px solid var(--border);
  z-index: 101;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.nav-drawer.active {
  transform: translateX(0);
}

.nav-drawer-inner {
  padding: 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
  min-height: 100%;
}

.nav-drawer-close {
  background: transparent;
  border: none;
  cursor: pointer;
  /* Match exact size and padding of .menu-btn so they sit at the same visual height */
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  align-self: flex-end;
  flex-shrink: 0;
}
.nav-drawer-close:hover { background: var(--border); }

.nav-drawer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
  width: 100%;
}

.nav-drawer-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  line-height: 1;
  letter-spacing: .02em;
  color: var(--white);
  text-decoration: none;
  text-align: right;
  transition: opacity .15s;
}
.nav-drawer-link:hover { opacity: 0.7; }

/* Hide nav drawer on desktop — desktop nav takes over */
@media (min-width: 768px) {
  .nav-drawer, .nav-overlay { display: none !important; }
}

/* ─── HOURS INFO ─────────────────────────────────────────── */
.hours-info-btn {
  background: transparent;
  border: none;
  padding: 0;
  margin-left: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.hours-info-btn svg {
  width: 12px;
  height: 12px;
  display: block;
}
.hours-callout {
  font-size: 11px;
  line-height: 1.5;
  color: var(--muted);
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
  margin-top: 4px;
  width: 100%;
  box-sizing: border-box;
}

/* ─── PAGE ROUTING ───────────────────────────────────────── */
.nav-link.active { opacity: 1; }
.nav-link { opacity: 0.7; transition: opacity .15s; }
.nav-link:hover { opacity: 1; }

.about-content {
  position: relative;
  z-index: 1;
  padding: 200px 24px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  max-width: 640px;
  width: 100%;
}

.about-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--white);
}

.about-section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--white);
  margin-top: 24px;
}

.about-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--white);
  opacity: 0.85;
}

/* Desktop about layout */
@media (min-width: 768px) {
  .about-content {
    margin: 0 auto;
    padding: 240px 48px 64px;
    text-align: center;
    align-items: center;
  }
  .about-title { font-size: 72px; }
  .about-section-title { font-size: 48px; margin-top: 32px; }
  .about-body { font-size: 18px; }
}

/* About page gradient — same as main but scoped */
.about-gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
  overflow: hidden;
  transform: translateZ(0);
  animation: hueCycle 10s linear infinite;
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}
.about-gradient-bg svg {
  display: block;
  width: 100%;
  height: 100%;
  filter: saturate(1.8) brightness(1.2);
}

/* ─── MONTH SELECTOR ─────────────────────────────────────── */
.month-selector {
  display: flex;
  gap: 8px;
  padding: 0 24px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 8px;
}
.month-selector::-webkit-scrollbar { display: none; }

.month-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.6;
  transition: background .15s, border-color .15s;
  flex-shrink: 0;
}
.month-pill.active {
  background: var(--border);
  border-color: var(--border);
}
.month-pill:hover:not(.active) {
  background: rgba(255,255,255,0.05);
}