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

:root {
  --primary: #d4f040;
  --primary-dark: #b8d620;
  --dark: #080808;
  --dark2: #111111;
  --dark3: #1c1c1c;
  --cream: #f4efe6;
  --warm: #faf7f2;
  --muted: #666;
  --muted-light: #999;
  --text: #111;
  --border-dark: #222;
  --border-light: #ddd8cf;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── NAV ── */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #1e1e1e;
}

nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  overflow-x: hidden;
}

/* Tag navigation */
.tag-nav {
  list-style: none;
  display: flex;
  gap: 1rem;
  flex: 1;
}

.tag-nav a {
  text-decoration: none;
  color: #888;
  font-weight: 600;
  font-size: 0.8rem;
  transition: color 0.2s;
  cursor: pointer;
}

.tag-nav a:hover,
.tag-nav a.active {
  color: var(--primary);
}

.selected-tag-container {
  display: flex;
  align-items: center;
}

.selected-tag-pill {
  background: var(--primary);
  color: #1a1a1a;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  text-transform: capitalize;
}

/* Smaller button */
.btn-tiny {
  padding: 0.12rem 0.4rem !important;
  font-size: 0.6rem !important;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 3px;
}

/* More tags dropdown */
.more-tags-dropdown {
  display: none;
  background: rgba(8,8,8,0.98);
  border-bottom: 1px solid #1e1e1e;
  max-height: 300px;
  overflow-y: auto;
}

.more-tags-dropdown.open {
  display: block;
}

.more-tags-content {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.8rem 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.more-tag-btn {
  background: transparent;
  color: #aaa;
  border: 1px solid #333;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
}

.more-tag-btn:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.more-tag-btn.active {
  background: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
}

/* Borough filter inside header */
header .borough-filter {
  border-top: 1px solid #1e1e1e;
  background: rgba(8,8,8,0.95);
}

header .borough-filter .filter-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.35rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

header .borough-filter .filter-label {
  color: #888;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

header .borough-filter .filter-btns {
  display: flex;
  gap: 0.4rem;
}

header .borough-filter .filter-btn {
  background: transparent;
  color: #aaa;
  border: 1px solid #333;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
}

header .borough-filter .filter-btn:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
}

header .borough-filter .filter-btn.active {
  background: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
}

.logo {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  flex-shrink: 0;
  text-decoration: none;
  cursor: pointer;
}

.logo:hover { opacity: 0.8; }

.logo span { color: var(--primary); }

nav ul {
  list-style: none;
  display: flex;
  gap: 1.75rem;
  flex: 1;
}

nav a {
  text-decoration: none;
  color: #888;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
}

nav a:hover,
nav a.active { color: var(--primary); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  background: var(--primary);
  color: var(--dark);
  padding: 0.7rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.btn:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

.btn-sm { padding: 0.45rem 1rem; font-size: 0.825rem; }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #555;
}

.btn-outline:hover { background: #fff; color: var(--dark); border-color: #fff; }

.btn-dark {
  background: var(--dark);
  color: var(--primary);
  border-color: var(--dark);
}

.btn-dark:hover { background: #2a2a2a; border-color: #2a2a2a; }

/* ── DATE RANGE PICKER ── */
.date-range-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.date-range-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: #aaa;
  border: 1px solid #333;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.date-range-btn:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.date-range-btn.active {
  background: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
}

.date-range-btn.active svg {
  stroke: var(--dark);
}

.date-range-label {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.date-range-panel {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(20,20,20,0.98);
  border: 1px solid #333;
  border-radius: 8px;
  padding: 0.75rem;
  z-index: 300;
  min-width: 280px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.date-range-panel.open {
  display: block;
}

.date-range-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.date-range-month-label {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

.date-range-nav {
  background: none;
  border: none;
  color: #888;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0 0.5rem;
  line-height: 1;
  border-radius: 4px;
}

.date-range-nav:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.date-range-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.date-range-cal .dr-day-header {
  font-size: 0.65rem;
  color: #666;
  text-align: center;
  padding: 0.2rem 0;
  font-weight: 600;
}

.date-range-cal .dr-day {
  font-size: 0.75rem;
  text-align: center;
  padding: 0.35rem 0;
  cursor: pointer;
  border-radius: 4px;
  color: #ccc;
  transition: background 0.1s;
}

.date-range-cal .dr-day:hover {
  background: rgba(255,255,255,0.1);
}

.date-range-cal .dr-day.empty {
  cursor: default;
  color: transparent;
}

.date-range-cal .dr-day.empty:hover {
  background: none;
}

.date-range-cal .dr-day.selected {
  background: var(--primary);
  color: var(--dark);
  font-weight: 700;
}

.date-range-cal .dr-day.in-range {
  background: rgba(212,240,64,0.2);
  color: #fff;
}

.date-range-cal .dr-day.today {
  border: 1px solid #666;
}

.date-range-cal .dr-day.outside {
  color: #444;
}

.date-range-hint {
  text-align: center;
  font-size: 0.75rem;
  color: #888;
  padding: 0.25rem 0;
}

.date-range-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid #2a2a2a;
}

.date-range-clear,
.date-range-apply {
  border: none;
  padding: 0.35rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

.date-range-clear {
  background: transparent;
  color: #888;
  border: 1px solid #444;
}

.date-range-clear:hover {
  background: rgba(255,255,255,0.05);
  color: #ccc;
}

.date-range-apply {
  background: var(--primary);
  color: var(--dark);
}

.date-range-apply:hover {
  background: var(--primary-dark);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 28vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}

.hero-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 2rem;
  width: 100%;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(212,240,64,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-deco {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(8rem, 22vw, 18rem);
  font-weight: 900;
  letter-spacing: -8px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.05);
  user-select: none;
  white-space: nowrap;
  line-height: 1;
  pointer-events: none;
}

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

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 900;
  line-height: 0.92;
  color: #fff;
  letter-spacing: -3px;
  margin-bottom: 1.75rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--primary);
}

.hero-sub {
  font-size: 1.1rem;
  color: #888;
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.today-event-card {
  flex-shrink: 0;
  width: 280px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.today-featured-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.today-featured-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.today-event-card .event-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f4a261;
  background: rgba(244, 162, 97, 0.15);
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
  align-self: flex-start;
}

.today-featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}

.today-featured-tags .clickable-tag {
  cursor: pointer;
  transition: all 0.15s ease;
  background: rgba(212, 240, 64, 0.25);
  color: #d4f040;
}

.today-featured-tags .clickable-tag:hover {
  background: rgba(212, 240, 64, 0.45);
  color: #fff;
}

.today-featured-tags .clickable-tag.active {
  background: #d4f040;
  color: #1a1a1a;
}

.today-event-card .event-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}

.today-event-card .event-name-link {
  color: #fff;
  text-decoration: none;
}

.today-event-card .event-name-link:hover {
  color: var(--primary);
}

.today-event-card .event-description {
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.5;
  margin: 0;
}

.today-event-card .event-venue-info {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.5;
}

.today-event-card .venue-name {
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}

.today-event-card .venue-location {
  font-size: 0.8rem;
  color: #666;
}

.today-event-card .event-time {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.today-event-card .event-price {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  align-self: flex-start;
}

/* ── SECTIONS ── */
.section { padding: 1rem 0; }

.section-dark {
  background: var(--dark);
  color: #fff;
}

.section-warm { background: var(--warm); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header.light h2 { color: #fff; }
.section-header.light p  { color: #777; }

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
}

.section-header p { color: var(--muted); font-size: 1rem; }

/* ── EVENTS ── */
.event-list { display: flex; flex-direction: column; gap: 1rem; }

.event-card {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.4rem 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.event-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: #fff;
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  min-width: 56px;
  text-align: center;
  flex-shrink: 0;
}

.event-date .month {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary);
}

.event-date .dow {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.1rem;
}

.event-date .day {
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
}

.event-price {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-top: 0.3rem;
}

.event-time {
  font-size: 0.68rem;
  color: var(--mid);
  margin-top: 0.2rem;
}

.event-tag {
  display: inline-block;
  background: rgba(212,240,64,0.14);
  color: #5a7000;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.18rem 0.55rem;
  border-radius: 4px;
  margin-bottom: 0.35rem;
}

/* ── CLICKABLE TAGS ── */
.event-tags, .venue-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.4rem;
}

.clickable-tag {
  display: inline-block;
  background: rgba(212,240,64,0.14);
  color: #5a7000;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: lowercase;
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.15s ease;
  border: 1px solid transparent;
}

.clickable-tag:hover {
  background: rgba(212,240,64,0.25);
  border-color: rgba(90,112,0,0.3);
}

.clickable-tag.active {
  background: #d4f040;
  color: #1a1a1a;
  border-color: #5a7000;
}

.section-dark .clickable-tag {
  background: rgba(255,255,255,0.08);
  color: #ccc;
}

.section-dark .clickable-tag:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.2);
}

.section-dark .clickable-tag.active {
  background: #d4f040;
  color: #1a1a1a;
}

.event-info { flex: 1; }
.event-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.3rem; }
.event-info p  { color: var(--muted); font-size: 0.9rem; }

.event-venue {
  font-size: 0.75rem;
  font-weight: 700;
  color: #aaa;
  letter-spacing: 0.3px;
  text-align: right;
  flex-shrink: 0;
  max-width: 130px;
  line-height: 1.35;
}

/* ── PLACE CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.place-card {
  background: var(--dark3);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  transition: transform 0.2s, box-shadow 0.2s;
}

.place-card.light-card {
  background: #fff;
  border-color: var(--border-light);
}

.place-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.place-accent {
  height: 6px;
  width: 100%;
  filter: brightness(1.6) saturate(1.4);
}

.venue-name-link {
  color: inherit;
  text-decoration: none;
}
.venue-name-link:hover { text-decoration: underline; text-underline-offset: 3px; }

.event-name-link {
  color: inherit;
  text-decoration: none;
}
.event-name-link:hover {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.venue-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(255,255,255,0.25);
}
.venue-link:hover {
  text-decoration-color: var(--primary);
  color: var(--primary);
}

.venue-addr-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(255,255,255,0.25);
}
.venue-addr-link:hover { text-decoration-color: var(--primary); }

.place-body { padding: 1.25rem; }

.place-tag {
  display: inline-block;
  background: rgba(212,240,64,0.12);
  color: #7a9a00;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.18rem 0.55rem;
  border-radius: 4px;
  margin-bottom: 0.4rem;
}

.section-dark .place-tag {
  background: rgba(212,240,64,0.1);
  color: #b4cc1a;
}

/* Venue tags inherit clickable-tag styles */
.venue-tags {
  margin-bottom: 0.5rem;
}

.place-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: #fff;
}

.light-card .place-body h3 { color: var(--text); }
.light-card .venue-addr-link { text-decoration-color: rgba(0,0,0,0.2); }
.light-card .venue-addr-link:hover { text-decoration-color: var(--primary-dark); }

.place-body p  { font-size: 0.875rem; color: #999; margin-bottom: 0.5rem; }
.light-card .place-body p { color: var(--muted); }

.place-meta {
  font-size: 0.775rem !important;
  color: #555 !important;
  font-style: italic;
}

/* ── ARTS / FILM ── */
.arts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.arts-feature {
  background: #111;
  border: 1px solid #222;
  color: #fff;
  border-radius: 14px;
  padding: 2.5rem;
}

.arts-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--dark);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.arts-feature h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.arts-feature > p { color: #aaa; font-size: 0.95rem; margin-bottom: 1rem; }
.arts-feature .place-meta { color: #555 !important; }

.arts-side { display: flex; flex-direction: column; gap: 1rem; }

.arts-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid #222;
  border-radius: 10px;
  padding: 1rem 1.1rem;
}

.arts-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }

.arts-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.2rem; color: #fff; }
.arts-item p  { font-size: 0.84rem; color: #888; }

/* ── NEWSLETTER ── */
.newsletter {
  background: var(--primary);
  padding: 6rem 2rem;
}

.newsletter-inner {
  text-align: center;
  max-width: 540px;
}

.nl-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  margin-bottom: 0.75rem;
}

.newsletter h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 0.875rem;
}

.nl-desc {
  color: rgba(0,0,0,0.55);
  margin-bottom: 2rem;
  font-size: 0.975rem;
  line-height: 1.65;
}

#newsletter-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

#newsletter-form input {
  flex: 1;
  min-width: 210px;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: 2px solid rgba(0,0,0,0.15);
  background: rgba(255,255,255,0.55);
  color: var(--dark);
  font-size: 0.9rem;
}

#newsletter-form input::placeholder { color: rgba(0,0,0,0.4); }
#newsletter-form input:focus {
  outline: none;
  border-color: var(--dark);
  background: rgba(255,255,255,0.8);
}

#nl-status {
  margin-top: 1rem;
  color: var(--dark);
  font-weight: 700;
  min-height: 1.5rem;
  font-size: 0.875rem;
}

/* ── FOOTER ── */
footer {
  background: #000;
  color: #555;
  font-size: 0.88rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 2rem;
  max-width: 1120px;
  margin: 0 auto;
}

.footer-brand .logo { font-size: 1.2rem; margin-bottom: 0.75rem; }
.footer-brand p { color: #3a3a3a; line-height: 1.7; max-width: 280px; font-size: 0.875rem; }

.footer-links h4 {
  color: #666;
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: #3a3a3a; text-decoration: none; transition: color 0.2s; font-size: 0.875rem; }
.footer-links a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid #111;
  padding: 1.5rem 2rem;
  text-align: center;
  color: #333;
  font-size: 0.775rem;
  max-width: 1120px;
  margin: 0 auto;
}

.build-stamp {
  font-size: 0.68rem;
  color: #222;
  margin-top: 0.3rem;
  letter-spacing: 0.5px;
}

/* ── FEATURED CARD (Film / full-width) ── */
.place-card.featured {
  grid-column: 1 / -1;
  flex-direction: row;
}

.place-card.featured .place-accent {
  width: 8px;
  height: auto;
  min-height: 100%;
  flex-shrink: 0;
}

/* ── BOROUGH HIDDEN ── */
.borough-hidden, .tag-hidden { display: none !important; }

/* ── VENUE BOROUGH INDICATOR ── */
.venue-borough {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.85;
}

/* ── NO RESULTS ── */
.no-results {
  color: var(--muted-light);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem 0;
  grid-column: 1 / -1;
  font-style: italic;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-wrapper { flex-direction: column; gap: 2rem; }
  .today-event-card { width: 100%; }
  .arts-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / 3; }
  .event-venue { display: none; }
}

@media (max-width: 700px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-card:nth-child(4),
  .cat-card:nth-child(5) { border-top: 1px solid rgba(0,0,0,0.12); }
  nav ul { display: none; }
  .hero h1 { letter-spacing: -2px; }
  .hero-deco { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
}

@media (max-width: 640px) {
  .place-card.featured { flex-direction: column; }
  .place-card.featured .place-accent { width: 100%; height: 6px; }
}

@media (max-width: 640px) {
  /* Nav wraps on mobile */
  nav {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
  }
  .tag-nav {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  header .borough-filter .filter-inner {
    flex-wrap: wrap;
    gap: 0.3rem;
  }
  header .borough-filter .filter-btn {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }

  /* Event cards: date icon left, text wraps right */
  .event-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
  }
  .event-date {
    min-width: 44px;
    padding: 0.4rem 0.5rem;
  }
  .event-date .month { font-size: 0.5rem; }
  .event-date .dow { font-size: 0.48rem; }
  .event-date .day { font-size: 1.2rem; }
  .event-info { min-width: 0; }
  .event-info h3 { font-size: 0.95rem; }
  .event-info p { font-size: 0.82rem; }
  .event-venue { display: none; }
  .nav-cta { display: none; }
  .date-range-panel { min-width: 260px; left: 0; right: auto; transform: none; }
  .date-range-btn { font-size: 0.7rem; padding: 0.25rem 0.5rem; }
}
