/* Black Swamp Horror & Oddities — Static Site Styles */

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0a;
  --fg: #f5f5f0;
  --gold: #d4b483;
  --swamp: #2f3e30;
  --bone: #f5f5f0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Crimson Pro', Georgia, serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* Film grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0.04;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
ul, ol { list-style: none; }

::selection { background: var(--gold); color: #000; }

/* ─── Typography ─── */
h1, h2, h3,
.nav-brand, .nav-desktop, .mobile-links,
.btn-primary, .btn-outline,
.cta-heading,
.footer-socials, .footer-links, .footer-copy,
.badge, .back-link,
.page-subtitle, .card-city, .location-city {
  font-family: 'Cinzel', serif;
}

/* ─── Nav ─── */
.nav {
  position: fixed;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(245, 245, 240, 0.1);
}

.nav-inner {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}

.nav-brand {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  transition: color 0.2s;
}
.nav-brand:hover { color: var(--bone); }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-link { color: rgba(245, 245, 240, 0.7); transition: color 0.2s; }
.nav-link:hover { color: var(--gold); }

.nav-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(245, 245, 240, 0.1);
}

.nav-location {
  color: var(--gold);
  opacity: 0.85;
}
.nav-location:hover { opacity: 1; }

.nav-social { color: rgba(245, 245, 240, 0.5); transition: color 0.2s; }
.nav-social:hover { color: var(--gold); }
.nav-social svg { width: 1rem; height: 1rem; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span { display: block; height: 2px; width: 1.5rem; background: var(--bone); }

/* Mobile overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  background: #000;
  transition: opacity 0.3s, transform 0.3s;
}
.mobile-menu[hidden] {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
  display: flex;
}
.mobile-menu:not([hidden]) {
  opacity: 1;
  transform: translateY(0);
}

.mobile-close {
  display: flex;
  justify-content: flex-end;
  padding: 0.75rem 1rem;
}
.mobile-close button {
  background: none;
  border: none;
  color: var(--bone);
  font-size: 1.875rem;
  line-height: 1;
  padding: 0.5rem;
  cursor: pointer;
}

.mobile-links {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.mobile-links a { color: var(--gold); transition: color 0.2s; }
.mobile-links a:hover { color: var(--bone); }

.mobile-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-bottom: 3rem;
}
.mobile-socials a { color: rgba(245, 245, 240, 0.5); transition: color 0.2s; }
.mobile-socials a:hover { color: var(--gold); }
.mobile-socials svg { width: 1.5rem; height: 1.5rem; }

/* ─── Hero ─── */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  filter: brightness(0.75);
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000, transparent, rgba(0,0,0,0.4));
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
}

.hero-logo {
  width: 12rem;
  height: 12rem;
  position: relative;
  margin-bottom: 1.5rem;
  animation: fade-in 1s ease-out;
  border-radius: 50%;
  overflow: hidden;
}
.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 25px 25px rgba(0,0,0,0.25));
  mix-blend-mode: screen;
}

.hero-text {
  max-width: 42rem;
  margin: 0 auto 1.5rem;
}

.hero-text h1 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  filter: drop-shadow(0 4px 3px rgba(0,0,0,0.4));
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1rem;
  color: rgba(245, 245, 240, 0.9);
  font-weight: 300;
  font-style: italic;
  line-height: 1.625;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

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

/* ─── Section utilities ─── */
.section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 1rem;
}

.section-narrow {
  max-width: 36rem;
  text-align: center;
}

/* ─── Vertical Timeline ─── */
.tl {
  width: 100%;
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.tl-section {
  display: flex;
  width: 100%;
  padding: 3rem 1rem 3rem 0;
}

.tl-done,
.tl-active {
  min-height: auto;
}

.tl-upcoming {
  min-height: auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* Rail (left column: dot + line) */
.tl-rail {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 3rem;
  flex-shrink: 0;
}

/* Continuous vertical line via pseudo-element */
.tl-rail::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(212, 180, 131, 0.25);
  transform: translateX(-50%);
}

.tl-section:first-child .tl-rail::before {
  top: 50%;
}

.tl-last .tl-rail::before {
  bottom: 50%;
}

.tl-dot {
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  background: rgba(245, 245, 240, 0.2);
  flex-shrink: 0;
  z-index: 1;
}

.tl-dot-done {
  background: var(--gold);
}

.tl-dot-active {
  background: var(--gold);
  animation: pulse-gold 2s ease-in-out infinite;
}

.tl-line {
  display: none;
}

/* Content (right column) */
.tl-content {
  flex: 1;
  max-width: 40rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.tl-date {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(245, 245, 240, 0.5);
  margin-bottom: 0.25rem;
}

.tl-title {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}

.tl-body {
  font-size: 1rem;
  color: rgba(245, 245, 240, 0.8);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.tl-video {
  width: 100%;
  max-width: 36rem;
  max-height: 50vh;
  object-fit: contain;
  border-radius: 0.25rem;
  border: 1px solid rgba(212, 180, 131, 0.15);
  margin-top: 0.5rem;
}

.tl-link {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.tl-link:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Upcoming milestones — dimmed */
.tl-upcoming .tl-date { color: rgba(245, 245, 240, 0.3); }
.tl-upcoming .tl-title { color: rgba(245, 245, 240, 0.35); font-size: 1rem; }

/* ─── CTAs ─── */
.cta-section {
  padding: 4rem 1rem;
}

.cta-heading {
  font-size: 1.125rem;
  color: rgba(245, 245, 240, 0.9);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  text-align: center;
}

.cta-sub {
  font-size: 0.875rem;
  color: rgba(245, 245, 240, 0.6);
  font-style: italic;
  margin-bottom: 2rem;
  text-align: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: rgba(212, 180, 131, 0.9);
  color: #000;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--gold); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--gold); color: #000; }

.tl-content .btn-outline { align-self: center; }

.cta-aside {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: rgba(245, 245, 240, 0.45);
  text-align: center;
}
.cta-aside a {
  color: var(--gold);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.cta-aside a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── Why Vend ─── */
.section-heading {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 2.5rem;
  text-align: center;
}

.vend-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 64rem;
  width: 100%;
}

.vend-card {
  border: 1px solid rgba(245, 245, 240, 0.08);
  background: rgba(245, 245, 240, 0.03);
  padding: 2rem;
  text-align: center;
}

.vend-card-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--bone);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vend-card-body {
  font-size: 0.9375rem;
  color: rgba(245, 245, 240, 0.7);
  line-height: 1.625;
  font-style: italic;
}

/* ─── Vendor Showcase ─── */
.showcase-count {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(245, 245, 240, 0.5);
  margin-bottom: 0.5rem;
  text-align: center;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 64rem;
  width: 100%;
}

.showcase-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 245, 240, 0.08);
}

.showcase-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.3s;
}

.showcase-item:hover img {
  transform: scale(1.03);
}

.showcase-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bone);
}

.showcase-cta {
  margin-top: 2.5rem;
  text-align: center;
}

.showcase-join {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245, 245, 240, 0.6);
  margin-bottom: 1rem;
}

/* ─── Venue ─── */
.venue-video {
  width: 100%;
  max-width: 48rem;
  max-height: 50vh;
  object-fit: contain;
  border-radius: 0.25rem;
  border: 1px solid rgba(212, 180, 131, 0.15);
  margin-bottom: 2.5rem;
}

.venue-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 40rem;
  width: 100%;
  margin-bottom: 2.5rem;
}

.venue-stat {
  text-align: center;
}

.venue-stat-value {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.venue-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245, 245, 240, 0.5);
}

.venue-address {
  text-align: center;
  color: rgba(245, 245, 240, 0.7);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.625;
}

/* ─── CTA Band ─── */
.cta-band {
  width: 100%;
  padding: 4rem 1rem;
  text-align: center;
  background: rgba(212, 180, 131, 0.06);
  border-top: 1px solid rgba(212, 180, 131, 0.15);
  border-bottom: 1px solid rgba(212, 180, 131, 0.15);
}

.cta-band-heading {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bone);
  margin-bottom: 1.5rem;
}

/* ─── Curio Gallery Overrides ─── */
.curio-gallery-badge { display: none; }
.curio-gallery-filters { display: none; }
.curio-gallery-heading { text-align: center; }
.curio-gallery-grid {
  grid-template-columns: repeat(2, 1fr) !important;
  width: 100% !important;
}
.curio-gallery-cta { display: none; }

@media (min-width: 640px) {
  .curio-gallery-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (min-width: 900px) {
  .curio-gallery-grid { grid-template-columns: repeat(4, 1fr) !important; }
}

/* ─── Subscribe Band ─── */
.subscribe-band {
  width: 100%;
  padding: 4rem 1rem;
  text-align: center;
  background: rgba(212, 180, 131, 0.06);
  border-top: 1px solid rgba(212, 180, 131, 0.15);
  border-bottom: 1px solid rgba(212, 180, 131, 0.15);
}

.subscribe-heading {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bone);
  margin-bottom: 0.75rem;
}

.subscribe-subhead {
  font-family: 'Crimson Pro', serif;
  font-size: 1.1rem;
  color: rgba(245, 245, 240, 0.6);
  margin-bottom: 2rem;
}

.subscribe-form {
  max-width: 480px;
  margin: 0 auto;
}

/* ─── Footer ─── */
.footer {
  width: 100%;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 1.5rem;
  row-gap: 0.5rem;
  color: rgba(212, 180, 131, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 700;
}
.footer-socials a {
  transition: color 0.2s;
}
.footer-socials a:hover {
  color: var(--bone);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}
.footer-dot { color: rgba(245, 245, 240, 0.4); }

.footer-links {
  display: flex;
  gap: 1rem;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-links a { color: rgba(245, 245, 240, 0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-links .dot { all: unset; color: rgba(245, 245, 240, 0.3); }

.footer-copy {
  color: rgba(245, 245, 240, 0.5);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── Content Pages (Safety, Location Detail) ─── */
.page {
  max-width: 48rem;
  margin: 0 auto;
  padding: 6rem 1rem 5rem;
  color: var(--bone);
}

.page-wide {
  max-width: 64rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  transition: color 0.2s;
}
.back-link:hover { color: var(--bone); }

.page h1 {
  margin-bottom: 0.5rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gold);
}

.page-subtitle {
  margin-bottom: 3rem;
  font-size: 0.875rem;
  color: rgba(245, 245, 240, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.page-intro {
  margin-bottom: 2.5rem;
  color: rgba(245, 245, 240, 0.6);
}

/* Policy sections */
.policy-section { margin-bottom: 2.5rem; }
.policy-section h2 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}
.policy-section h3 {
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--bone);
}
.policy-section p {
  color: rgba(245, 245, 240, 0.8);
  line-height: 1.625;
  margin-bottom: 0.75rem;
}
.policy-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: rgba(245, 245, 240, 0.8);
}
.policy-section li { margin-bottom: 0.25rem; }
.policy-section li + li { margin-top: 0.25rem; }
.policy-section strong { color: var(--bone); }
.policy-section a { color: var(--gold); }
.policy-section a:hover { text-decoration: underline; }

/* ─── Locations Page Hero ─── */
.locations-hero {
  position: relative;
  padding: 10rem 1rem 4rem;
  text-align: center;
  overflow: hidden;
}
.locations-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(127, 29, 29, 0.15), transparent 70%);
  pointer-events: none;
}
.locations-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.locations-hero p {
  max-width: 36rem;
  margin: 0 auto;
  color: rgba(245, 245, 240, 0.6);
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.625;
}
.locations-hero .divider {
  display: block;
  width: 4rem;
  height: 1px;
  margin: 1.5rem auto 0;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* ─── Location Sections ─── */
.locations-section {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
}
.locations-section + .locations-section {
  border-top: 1px solid rgba(245, 245, 240, 0.06);
}
.section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.section-header h2 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(245, 245, 240, 0.5);
  white-space: nowrap;
}
.section-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(245, 245, 240, 0.1);
}

/* ─── Location Grid ─── */
.location-grid {
  display: grid;
  gap: 1rem;
}

.location-card {
  display: block;
  position: relative;
  border: 1px solid rgba(245, 245, 240, 0.08);
  background: rgba(245, 245, 240, 0.03);
  padding: 1.5rem;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.location-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(212, 180, 131, 0.06), transparent);
  transition: opacity 0.3s;
  pointer-events: none;
}
.location-card:hover {
  border-color: rgba(212, 180, 131, 0.4);
  background: rgba(245, 245, 240, 0.06);
  transform: translateY(-2px);
}
.location-card:hover::before { opacity: 1; }

.location-card-external {
  cursor: pointer;
}
.location-card-external .card-name::after {
  content: ' \2197';
  font-size: 0.75em;
  opacity: 0.5;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.badge {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.badge-haunt { background: rgba(127, 29, 29, 0.8); color: #fecaca; }
.badge-shop { background: rgba(47, 62, 48, 0.8); color: var(--bone); }
.badge-bar { background: rgba(88, 28, 135, 0.8); color: #e9d5ff; }
.badge-landmark { background: rgba(212, 180, 131, 0.8); color: #000; }
.badge-paranormal { background: rgba(30, 58, 95, 0.8); color: #bfdbfe; }
.badge-attraction { background: rgba(127, 29, 29, 0.9); color: #fecaca; }

.card-city {
  font-size: 0.75rem;
  color: rgba(245, 245, 240, 0.5);
}

.card-name {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gold);
  transition: color 0.2s;
}
.location-card:hover .card-name { color: var(--bone); }

.card-desc {
  font-size: 0.875rem;
  color: rgba(245, 245, 240, 0.7);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-address {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: rgba(245, 245, 240, 0.35);
  font-family: 'Cinzel', serif;
  letter-spacing: 0.05em;
}

/* Location detail */
.location-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.location-city {
  font-size: 0.875rem;
  color: rgba(245, 245, 240, 0.5);
}
.location-desc {
  margin-bottom: 2rem;
  color: rgba(245, 245, 240, 0.8);
  line-height: 1.625;
  font-size: 1.125rem;
}

/* ─── Apply (Vendor Application Embed) ─── */
.apply-page {
  padding-top: 5rem;
}

.apply-frame {
  display: block;
  width: 100%;
  max-width: 672px;
  min-height: 600px;
  margin: 0 auto;
  border: none;
  background: var(--bg);
  color-scheme: dark;
}

/* ─── 404 ─── */
.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
}
.not-found h1 {
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}
.not-found p {
  color: rgba(245, 245, 240, 0.6);
  margin-bottom: 2rem;
}

/* ─── Hero-to-Timeline Bridge ─── */
.hero-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0 0;
}

.hero-bridge-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, transparent, rgba(212, 180, 131, 0.4));
}

.hero-bridge-chevron {
  margin-top: 0.5rem;
  color: rgba(212, 180, 131, 0.35);
  animation: bob 2.5s ease-in-out infinite;
}

/* ─── Timeline Entry Animations ─── */
.tl-reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.tl-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Animations ─── */
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 180, 131, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(212, 180, 131, 0); }
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bob {
  0%, 100% { transform: translateY(0); opacity: 0.35; }
  50% { transform: translateY(6px); opacity: 0.6; }
}

/* ─── Desktop ─── */
@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }

  .hero-content { padding: 0 1.5rem; }
  .hero-logo { width: 24rem; height: 24rem; }
  .hero-text h1 {
    font-size: 3rem;
    letter-spacing: 0.2em;
  }
  .hero-text p { font-size: 1.5rem; }
  .hero-text { margin-bottom: 2.5rem; }

  /* Timeline desktop */
  .tl { padding: 0 2rem; }

  .tl-section { padding: 4rem 2rem 4rem 0; }

  .tl-done,
  .tl-active {
    min-height: auto;
  }

  .tl-rail { width: 5rem; }

  .tl-dot { width: 1rem; height: 1rem; }

  .tl-line { width: 2px; }

  .tl-title { font-size: 1.5rem; }

  .tl-body { font-size: 1.125rem; }

  .section { padding: 6rem 1.5rem; }
  .cta-section { padding: 6rem 1.5rem; }
  .cta-heading { font-size: 1.25rem; }

  .vend-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { grid-template-columns: repeat(3, 1fr); }
  .section-heading { font-size: 1.5rem; }

  .venue-stats { grid-template-columns: repeat(4, 1fr); }
  .venue-stat-value { font-size: 2rem; }

  .cta-band { padding: 5rem 1.5rem; }
  .cta-band-heading { font-size: 1.5rem; }

  .footer-socials { font-size: 0.875rem; }

  .page h1 { font-size: 2.25rem; }

  .locations-hero h1 { font-size: 2.75rem; }
  .locations-hero p { font-size: 1.25rem; }
  .locations-section { padding: 3rem 2rem 4rem; }
  .location-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .showcase-grid { grid-template-columns: repeat(4, 1fr); }
  .location-grid { grid-template-columns: repeat(3, 1fr); }
}
