/* hub-shared.css — Shared design system for theHUBtustin.com */

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ink:     #0d0d18;
  --navy:    #141428;
  --gold:    #d4a843;
  --gold2:   #f0c85a;
  --cream:   #faf7f0;
  --warm:    #f5f0e8;
  --muted:   #8a8fa8;
  --border:  rgba(212,168,67,0.25);
  --card-bg: #1a1a2e;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #0d0d18;
  color: #e8eaf0;
  min-height: 100vh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── TOPBAR / NAV ── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,13,24,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,168,67,0.15);
  padding: 10px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.topbar-logo {
  height: 44px; width: auto; display: block;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5));
  text-decoration: none;
}
.topbar-logo img {
  height: 44px; width: auto; display: block;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5));
}
.topbar-nav {
  display: flex; align-items: center; gap: 4px;
}
.nav-link {
  color: rgba(232,234,240,0.75);
  text-decoration: none;
  font-size: 14px; font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--gold2); }
.nav-cta {
  background: var(--gold);
  color: #0d0d18 !important;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  margin-left: 6px;
}
.nav-cta:hover { background: var(--gold2); color: #0d0d18 !important; transform: translateY(-1px); }
.fb-icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(24,119,242,0.16);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff; text-decoration: none; font-weight: 900; font-family: Arial, sans-serif;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.fb-icon:hover { transform: translateY(-1px); border-color: rgba(24,119,242,0.9); background: #1877f2; }
.fb-icon svg { width: 18px; height: 18px; fill: currentColor; }
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; z-index: 101;
}
.hamburger span {
  width: 24px; height: 2px; background: #fff;
  border-radius: 2px; transition: all 0.3s; display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Legacy: topbar-cta for older pages */
.topbar-cta {
  background: var(--gold);
  color: #0d0d18;
  font-weight: 700; font-size: 13px;
  padding: 8px 20px; border-radius: 100px;
  text-decoration: none; white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.topbar-cta:hover { background: var(--gold2); transform: translateY(-1px); }
.topbar-actions { display: flex; align-items: center; gap: 10px; }
.topbar-back {
  color: rgba(255,255,255,0.6); font-size: 13px; font-weight: 600;
  text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color 0.2s;
}
.topbar-back:hover { color: var(--gold2); }

/* ── HERO (Full-page homepage) ── */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(13,13,24,0.65) 0%, rgba(13,13,24,0.45) 40%, rgba(13,13,24,0.75) 100%),
    url('/ott-historic-street.jpg') center/cover no-repeat;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 60%, rgba(212,168,67,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,168,67,0.12); border: 1px solid var(--border);
  color: var(--gold2); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 100px; margin-bottom: 28px;
  position: relative; z-index: 1;
}
.hero-eyebrow::before { content: '📍'; font-size: 13px; }
.hero-logo {
  width: clamp(200px, 38vw, 300px); height: auto; display: block;
  margin: 0 auto 22px; position: relative; z-index: 1;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.6)) drop-shadow(0 0 40px rgba(212,168,67,0.15));
}
.hero-h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 5.5vw, 52px);
  color: #fff; line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 12px;
  position: relative; z-index: 1;
}
.hero-h1 .gold { color: var(--gold2); }
.hero-descriptor {
  font-size: 16px; color: rgba(255,255,255,0.6);
  max-width: 440px; margin: 0 auto 6px; position: relative; z-index: 1;
}
.hero-tagline {
  font-size: clamp(16px, 3.5vw, 22px); color: rgba(255,255,255,0.72);
  font-weight: 300; font-style: italic; max-width: 560px;
  margin: 0 auto 40px; position: relative; z-index: 1;
}
.hero-tagline strong { color: rgba(255,255,255,0.9); font-style: normal; font-weight: 500; }
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  position: relative; z-index: 1;
}
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  animation: bob 2.5s ease-in-out infinite;
}
.hero-scroll::after { content: '↓'; font-size: 18px; }
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 120px 24px 64px;
  text-align: center;
  background: #0d0d18;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 80%, rgba(212,168,67,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px; position: relative; z-index: 1;
}
.page-hero-h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 6vw, 56px);
  color: #fff; line-height: 1.1; margin-bottom: 16px;
  position: relative; z-index: 1;
}
.page-hero-h1 .gold { color: var(--gold2); }
.page-hero-sub {
  font-size: 18px; color: rgba(232,234,240,0.65);
  max-width: 600px; margin: 0 auto; line-height: 1.7;
  position: relative; z-index: 1;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold); color: #0d0d18;
  font-weight: 800; font-size: 15px;
  padding: 15px 36px; border-radius: 100px; text-decoration: none;
  box-shadow: 0 6px 28px rgba(212,168,67,0.4);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(212,168,67,0.55); background: var(--gold2); }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.85);
  font-weight: 600; font-size: 15px; padding: 14px 32px; border-radius: 100px;
  text-decoration: none; transition: border-color 0.2s, color 0.2s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold2); }

/* ── SECTION WRAPPER ── */
section { padding: 80px 24px; }
.container { max-width: 860px; margin: 0 auto; }
.container-wide { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 5vw, 44px); color: #fff; line-height: 1.15; margin-bottom: 16px;
}
.section-body {
  font-size: 17px; color: rgba(232,234,240,0.72); max-width: 600px; line-height: 1.75;
}
.divider-line {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 2px; margin-bottom: 24px;
}
.section-link {
  display: inline-block; margin-top: 28px;
  color: var(--gold2); text-decoration: none; font-weight: 700; font-size: 15px;
  border-bottom: 1px solid rgba(240,200,90,0.35); padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.section-link:hover { border-color: var(--gold2); }

/* ── VIBE STRIP ── */
.vibe-strip {
  background: linear-gradient(90deg, #141428 0%, #1a1a35 50%, #141428 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 20px 0; overflow: hidden; white-space: nowrap;
}
.vibe-track {
  display: inline-flex; gap: 0;
  animation: scroll-left 30s linear infinite;
}
.vibe-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 32px; font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(212,168,67,0.7);
}
.vibe-item .dot { color: var(--gold); font-size: 8px; }
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── ABOUT SECTION ── */
.about-section { background: #111121; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; position: relative; }
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-img::after {
  content: ''; position: absolute; inset: 0; border-radius: 16px;
  border: 1px solid var(--border); pointer-events: none;
}
.about-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,168,67,0.1); border: 1px solid var(--border);
  color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 16px;
}
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.about-stat {
  background: rgba(212,168,67,0.06); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px;
}
.about-stat .stat-num { font-size: 28px; font-weight: 800; color: var(--gold2); line-height: 1; }
.about-stat .stat-lbl { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ── EVENT CARDS ── */
.events-section { background: #0d0d18; }
.events-grid { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.event-card {
  display: flex; align-items: center; gap: 20px;
  background: #141428; border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px; padding: 22px 24px;
  transition: border-color 0.2s, transform 0.2s;
  position: relative; overflow: hidden;
}
.event-card:hover { border-color: var(--border); transform: translateX(4px); }
.event-card.highlight {
  border-color: rgba(212,168,67,0.35);
  background: linear-gradient(135deg, #1a1a2e 0%, #16162a 100%);
}
.event-card.highlight::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--gold2));
  border-radius: 3px 0 0 3px;
}
.event-icon-wrap {
  width: 56px; height: 56px; flex-shrink: 0;
  background: rgba(212,168,67,0.1); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 26px;
}
.event-date { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.event-name { font-size: 17px; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 3px; }
.event-desc { font-size: 13px; color: var(--muted); }
.event-badge {
  margin-left: auto; flex-shrink: 0;
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
}
.badge-confirmed { background: rgba(80,220,120,0.12); color: #50dc78; border: 1px solid rgba(80,220,120,0.25); }
.badge-tbd       { background: rgba(255,190,50,0.12);  color: #ffbe32; border: 1px solid rgba(255,190,50,0.25); }
.badge-coming    { background: rgba(130,130,220,0.12); color: #9090e8; border: 1px solid rgba(130,130,220,0.25); }
.event-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; margin-left: auto; flex-shrink: 0; }
.event-actions .event-badge { margin-left: 0; }
.flyer-btn {
  border: 1px solid rgba(212,168,67,0.35); background: rgba(212,168,67,0.08);
  color: var(--gold2); border-radius: 100px; padding: 8px 13px;
  font: inherit; font-size: 12px; font-weight: 800; cursor: pointer; white-space: nowrap;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.flyer-btn:hover { transform: translateY(-1px); border-color: var(--gold2); background: rgba(212,168,67,0.14); }
.ticket-btn {
  display: inline-block; font-size: 12px; font-weight: 600; color: var(--gold);
  border: 1px solid var(--border); border-radius: 6px; padding: 6px 14px;
  text-decoration: none; background: rgba(212,168,67,0.06); transition: all 0.18s; white-space: nowrap;
}
.ticket-btn:hover { transform: translateY(-1px); border-color: var(--gold2); background: rgba(212,168,67,0.14); color: var(--gold2); }
.flyer-modal {
  position: fixed; inset: 0; z-index: 999; display: none; align-items: center; justify-content: center;
  padding: 22px; background: rgba(5,5,10,0.82); backdrop-filter: blur(10px);
}
.flyer-modal.open { display: flex; }
.flyer-modal-inner { position: relative; max-width: min(92vw, 620px); max-height: 92vh; }
.flyer-modal img { width: 100%; max-height: 88vh; object-fit: contain; border-radius: 16px; box-shadow: 0 24px 80px rgba(0,0,0,0.65); }
.flyer-close {
  position: absolute; top: -14px; right: -14px; width: 42px; height: 42px;
  border: 0; border-radius: 50%; background: var(--gold); color: #0d0d18;
  font-size: 24px; font-weight: 900; cursor: pointer; box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}
.events-note {
  margin-top: 28px; padding: 16px 20px;
  background: rgba(212,168,67,0.06); border: 1px solid var(--border);
  border-radius: 12px; font-size: 14px; color: rgba(232,234,240,0.65);
  display: flex; align-items: center; gap: 10px;
}
.section-note {
  margin-top: 20px; padding: 14px 18px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; font-size: 13px; color: rgba(232,234,240,0.55);
  font-style: italic;
}

/* ── GALLERY ── */
.gallery-section { background: #111121; overflow: hidden; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto;
  gap: 12px; margin-top: 40px;
}
.gallery-item { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; position: relative; }
.gallery-item:first-child { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; filter: brightness(0.88) saturate(1.1); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,13,24,0.5) 0%, transparent 60%); pointer-events: none; }
.gallery-caption { position: absolute; left: 12px; right: 12px; bottom: 10px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.82); text-shadow: 0 2px 8px rgba(0,0,0,0.65); z-index: 2; }

/* ── VIBE CARDS ── */
.vibe-section { background: #0d0d18; }
.vibe-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.vibe-card {
  background: #141428; border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px; padding: 28px 24px; text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.vibe-card:hover { border-color: var(--border); transform: translateY(-3px); }
.vibe-card .vc-icon { font-size: 36px; margin-bottom: 14px; display: block; }
.vibe-card .vc-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.vibe-card .vc-body { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── GUIDE / FEATURE CARD ── */
.guide-card {
  margin: 28px auto 0; max-width: 720px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 18px 20px; border-radius: 16px;
  background: rgba(212,168,67,0.055); border: 1px solid rgba(212,168,67,0.18);
}
.guide-card p { color: rgba(232,234,240,0.68); font-size: 14px; line-height: 1.55; margin: 0; }
.guide-card strong { color: rgba(255,255,255,0.9); }
.guide-card a {
  flex-shrink: 0; color: var(--gold2); text-decoration: none;
  border: 1px solid rgba(212,168,67,0.35); border-radius: 100px;
  padding: 10px 16px; font-size: 13px; font-weight: 800;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.guide-card a:hover { border-color: var(--gold2); background: rgba(212,168,67,0.09); transform: translateY(-1px); }

/* ── HIDDEN GEMS ── */
.gems-section { background: #111121; }
.gems-grid { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.gem-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: #1a1a2e; border: 1px solid rgba(212,168,67,0.12);
  border-radius: 14px; padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.gem-card:hover { border-color: var(--border); transform: translateY(-2px); }
.gem-icon { font-size: 38px; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.gem-body { flex: 1; }
.gem-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.gem-name { font-family: 'DM Serif Display', serif; font-size: 22px; color: #fff; margin-bottom: 8px; line-height: 1.25; }
.gem-desc { font-size: 14px; color: rgba(232,234,240,0.72); line-height: 1.65; margin-bottom: 14px; }
.gem-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.gem-pill { font-size: 12px; color: rgba(232,234,240,0.6); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 4px 12px; }
.gem-link { display: inline-block; font-size: 13px; font-weight: 600; color: var(--gold); border: 1px solid var(--border); border-radius: 8px; padding: 8px 18px; text-decoration: none; background: rgba(212,168,67,0.06); transition: all 0.18s; }
.gem-link:hover { background: rgba(212,168,67,0.14); border-color: var(--gold2); color: var(--gold2); transform: translateY(-1px); }

/* ── CATEGORY CARDS ── */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.category-card {
  background: #141428; border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px; padding: 28px 20px;
  text-align: center; text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
  display: block;
}
.category-card:hover { border-color: var(--border); transform: translateY(-3px); }
.category-card .cc-icon { font-size: 36px; margin-bottom: 12px; display: block; }
.category-card .cc-title { font-size: 14px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.category-card .cc-sub { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ── SPOTLIGHT SECTION ── */
.spotlight-section { background: #111121; }
.spotlight-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center; margin-top: 40px; }
.spotlight-img { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; position: relative; }
.spotlight-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.spotlight-img::after { content: ''; position: absolute; inset: 0; border-radius: 16px; border: 1px solid var(--border); pointer-events: none; }
.spotlight-pill { display: inline-block; background: rgba(212,168,67,0.12); border: 1px solid var(--border); color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; margin-bottom: 14px; }
.spotlight-name { font-family: 'DM Serif Display', serif; font-size: 32px; color: #fff; margin-bottom: 12px; }
.spotlight-desc { font-size: 15px; color: rgba(232,234,240,0.72); line-height: 1.7; margin-bottom: 20px; }
.spotlight-note { font-size: 12px; color: rgba(232,234,240,0.35); font-style: italic; margin-top: 16px; }

/* ── PASSPORT ── */
.passport-section { background: #0d0d18; }
.passport-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.passport-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,168,67,0.1); border: 1px solid var(--border); color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 16px; }
.passport-visual {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #141428 60%, #1a1630 100%);
  border: 1px solid rgba(212,168,67,0.25); border-radius: 20px; padding: 36px 32px;
  text-align: center; overflow: hidden;
}
.passport-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(212,168,67,0.07) 0%, transparent 70%); pointer-events: none; }
.passport-book { font-size: 80px; display: block; margin-bottom: 16px; filter: drop-shadow(0 8px 24px rgba(212,168,67,0.3)); }
.passport-stops-preview { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.stop-chip { display: inline-flex; align-items: center; gap: 6px; background: rgba(212,168,67,0.08); border: 1px solid rgba(212,168,67,0.2); border-radius: 100px; padding: 6px 14px; font-size: 12px; font-weight: 600; color: rgba(232,234,240,0.65); }
.stop-chip.tbd { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.08); color: rgba(232,234,240,0.3); }
.passport-coming-banner { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,168,67,0.1); border: 1px solid rgba(212,168,67,0.3); border-radius: 10px; padding: 10px 18px; font-size: 13px; font-weight: 700; color: var(--gold2); margin-top: 20px; letter-spacing: 0.5px; }
.passport-steps { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.passport-step { display: flex; align-items: flex-start; gap: 16px; }
.step-num { width: 34px; height: 34px; flex-shrink: 0; border-radius: 50%; background: rgba(212,168,67,0.12); border: 1px solid rgba(212,168,67,0.3); color: var(--gold2); font-weight: 800; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.step-body .step-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.step-body .step-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.passport-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* ── FORMS ── */
.signup-section { background: linear-gradient(160deg, #141428 0%, #1a1a35 100%); border-top: 1px solid var(--border); }
.signup-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.signup-headline { font-family: 'DM Serif Display', serif; font-size: clamp(28px, 5vw, 44px); color: #fff; margin-bottom: 12px; line-height: 1.1; }
.signup-headline .gold { color: var(--gold2); }
.signup-sub { font-size: 16px; color: var(--muted); margin-bottom: 36px; line-height: 1.7; }
.form-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 36px 32px; text-align: left; }
.form-row { display: flex; gap: 14px; }
.form-group { flex: 1; margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 13px 16px; color: #fff; font-size: 15px; font-family: inherit;
  outline: none; transition: border-color 0.2s, background 0.2s;
}
.form-group select option { background: #1a1a2e; color: #fff; }
.form-group textarea { min-height: 108px; resize: vertical; line-height: 1.55; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); background: rgba(255,255,255,0.09); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.host-card { margin-top: 22px; padding: 24px; text-align: center; background: rgba(212,168,67,0.06); border: 1px solid var(--border); border-radius: 18px; }
.host-card h3 { font-family: 'DM Serif Display', serif; font-size: 26px; color: #fff; margin-bottom: 8px; }
.host-card p { color: var(--muted); font-size: 14px; line-height: 1.65; margin-bottom: 18px; }
.host-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%; }
.submit-btn {
  width: 100%; padding: 16px; background: var(--gold); color: #0d0d18;
  font-weight: 800; font-size: 16px; border: none; border-radius: 12px; cursor: pointer;
  font-family: inherit; box-shadow: 0 4px 20px rgba(212,168,67,0.35);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s; margin-top: 4px;
  text-decoration: none; display: block; text-align: center;
}
.submit-btn:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212,168,67,0.5); }
.submit-btn:disabled { opacity: 0.6; transform: none; cursor: wait; }
.privacy-note { font-size: 11px; color: #44475a; margin-top: 14px; line-height: 1.6; text-align: center; }
.privacy-note a { color: #5a5e7a; }
.thank-you { display: none; text-align: center; padding: 20px 0; }
.ty-emoji { font-size: 52px; margin-bottom: 12px; }
.ty-headline { font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--gold2); margin-bottom: 10px; }
.ty-body { color: var(--muted); font-size: 15px; line-height: 1.75; max-width: 420px; margin: 0 auto; }
.incentive-badge { display: flex; align-items: center; justify-content: center; gap: 10px; background: rgba(212,168,67,0.08); border: 1px solid rgba(212,168,67,0.3); border-radius: 12px; padding: 12px 18px; margin-bottom: 24px; font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.4; }
.incentive-badge .ib-icon { font-size: 22px; flex-shrink: 0; }
.incentive-badge strong { color: var(--gold2); }

/* ── JOIN OPTION CARDS ── */
.join-options-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.join-option-card {
  background: #141428; border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px; padding: 28px 22px; text-align: center;
  cursor: pointer; text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
  display: block;
}
.join-option-card:hover { border-color: var(--border); transform: translateY(-3px); }
.join-option-card .joc-icon { font-size: 32px; margin-bottom: 12px; display: block; }
.join-option-card .joc-title { font-size: 14px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.join-option-card .joc-sub { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ── FORM SECTION ANCHORS ── */
.form-section { padding: 60px 24px; }
.form-section + .form-section { padding-top: 0; }
.form-section-inner { max-width: 640px; margin: 0 auto; }
.form-section-header { margin-bottom: 28px; }
.form-section-header h2 { font-family: 'DM Serif Display', serif; font-size: 32px; color: #fff; margin-bottom: 8px; }
.form-section-header p { font-size: 15px; color: rgba(232,234,240,0.65); line-height: 1.65; }

/* ── HISTORY SECTION ── */
.history-section { background: #0d0d18; }
.history-img { border-radius: 14px; overflow: hidden; margin-top: 32px; max-height: 380px; }
.history-img img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.85) saturate(1.1); }

/* ── RESTAURANT CARDS ── */
.resto-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 28px; }
.resto-img { height: 180px; overflow: hidden; border-radius: 10px 10px 0 0; margin: -20px -20px 16px -20px; }
.resto-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.resto-card:hover .resto-img img { transform: scale(1.04); }
.resto-card {
  background: #141428; border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; padding: 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.resto-card:hover { border-color: var(--border); transform: translateY(-2px); }
.resto-name { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.resto-stars { font-size: 12px; color: var(--gold2); margin-bottom: 6px; }
.resto-tag { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.resto-link { font-size: 12px; color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(212,168,67,0.3); padding-bottom: 1px; }
.resto-link:hover { color: var(--gold2); border-color: var(--gold2); }

/* ── SHOP LIST ── */
.shop-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.shop-pill { font-size: 13px; color: rgba(232,234,240,0.75); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; padding: 8px 16px; }

/* ── FOOTER ── */
.footer { background: #080810; border-top: 1px solid rgba(255,255,255,0.06); padding: 40px 24px; text-align: center; }
.footer-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 4px 8px; margin-bottom: 18px; }
.footer-nav a { color: #44475a; text-decoration: none; font-size: 13px; padding: 4px 8px; transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-brand { font-size: 13px; color: #44475a; margin-bottom: 4px; }
.footer-brand a { color: #55587a; text-decoration: none; }
.footer-dre { font-size: 11px; color: #2e3050; }
.footer-social { margin-top: 12px; display: flex; justify-content: center; }
.footer-social .fb-icon { width: 42px; height: 42px; color: #e8eaf0; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .join-options-grid { grid-template-columns: repeat(2, 1fr); }
  .spotlight-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  /* Full-screen mobile nav */
  .topbar-nav {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13,13,24,0.97);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 16px; z-index: 99;
  }
  .topbar-nav.open { display: flex; }
  .topbar-nav .nav-link { font-size: 22px; padding: 12px 24px; }
  .topbar-nav .nav-cta { font-size: 18px; padding: 14px 36px; margin-left: 0; margin-top: 8px; }
  .topbar-nav .fb-icon { width: 48px; height: 48px; margin-top: 12px; }
  .hamburger { display: flex; }
  .topbar-logo img { height: 36px; }
}
@media (max-width: 760px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img { order: -1; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
  .vibe-cards { grid-template-columns: 1fr; }
  .guide-card { flex-direction: column; text-align: center; align-items: stretch; }
  .guide-card a { text-align: center; }
  .form-row { flex-direction: column; gap: 0; }
  .topbar { padding: 10px 14px; }
  .hero-logo { width: clamp(160px, 52vw, 240px); }
  .passport-inner { grid-template-columns: 1fr; gap: 36px; }
  .passport-visual { order: -1; }
  .resto-grid { grid-template-columns: 1fr; }
  .join-options-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .event-card { flex-direction: column; align-items: flex-start; gap: 12px; }
  .event-icon-wrap { width: 48px; height: 48px; font-size: 22px; }
  .event-card > .event-badge { margin-left: 0; align-self: flex-start; }
  .event-actions { flex-direction: row; flex-wrap: wrap; gap: 10px; margin-left: 0; align-items: center; width: 100%; }
  .event-actions .event-badge { margin-left: 0; }
  .flyer-btn, .ticket-btn { min-height: 44px; padding: 10px 18px; font-size: 13px; display: inline-flex; align-items: center; justify-content: center; }
  .hero-tagline br { display: none; }
  section { padding: 56px 18px; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .join-options-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; aspect-ratio: 4/3; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { text-align: center; }
  .form-card { padding: 24px 18px; }
}
