/* ================================
   NAIROBOPFIESTA — GLOBAL STYLES
   Brand: #006B3F (green) #F0B429 (gold)
   Fonts: Urbanist (headings) + Inter (body)
================================ */

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

:root {
  --green: #006B3F;
  --green-dark: #004d2c;
  --green-light: #008a51;
  --gold: #F0B429;
  --gold-dark: #c9920d;
  --cream: #f5f0e8;
  --dark: #0a0a0a;
  --dark2: #111111;
  --dark3: #1a1a1a;
  --text-muted: #888888;
  --font-display: 'Urbanist', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 800;
}

p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.75);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ================================
   BUTTONS
================================ */

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s, transform 0.1s;
  border-radius: 2px;
  touch-action: manipulation;
}

.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  transition: all 0.2s;
  border-radius: 2px;
  touch-action: manipulation;
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-tickets {
  flex: 1;
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 10px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  display: block;
  transition: background 0.2s;
  border-radius: 2px;
  touch-action: manipulation;
}

.btn-tickets:hover { background: var(--gold-dark); }

.btn-more {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--cream);
  padding: 10px 14px;
  font-size: 0.75rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 2px;
  touch-action: manipulation;
}

.btn-more:hover { border-color: var(--gold); color: var(--gold); }

/* ================================
   NAVIGATION
================================ */

nav {
  background: var(--green-dark);
  border-bottom: 3px solid var(--gold);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 8px 16px;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  border-radius: 2px;
  transition: background 0.2s !important;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--gold-dark); color: var(--dark) !important; }

/* Mobile menu button */
.nav-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid rgba(240,180,41,0.4);
  color: var(--gold);
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 2px;
  font-size: 1.2rem;
  line-height: 1;
}

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--green-dark);
  border-bottom: 3px solid var(--gold);
  padding: 1.5rem;
  z-index: 99;
  flex-direction: column;
  gap: 0;
}

.nav-drawer.open { display: flex; }

.nav-drawer a {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
  display: block;
}

.nav-drawer a:hover { color: var(--gold); }

.nav-drawer .nav-cta {
  margin-top: 1rem;
  text-align: center;
  padding: 12px;
  display: block;
}

/* ================================
   HERO
================================ */

.hero {
  background: var(--green);
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 4rem 2.5rem;
  position: relative;
  overflow: hidden;
  gap: 2rem;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 22vw;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
  letter-spacing: -4px;
  user-select: none;
}

.hero-diagonal {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: var(--green-dark);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.hero-title span { color: var(--gold); }

.hero-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.8);
  max-width: 420px;
  margin-bottom: 2.5rem;
}

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

.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  min-height: 300px;
}

.hero-punchline-wrap { text-align: center; }

.hero-punchline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
  opacity: 1;
  transition: opacity 0.6s ease;
  text-align: center;
  max-width: 400px;
}

.hero-punchline-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1.5rem auto 0;
  opacity: 0.5;
}

/* ================================
   TICKER
================================ */

.ticker {
  background: var(--gold);
  color: var(--dark);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-block;
  animation: ticker 30s linear infinite;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes ticker {
  from { transform: translateX(100vw); }
  to { transform: translateX(-100%); }
}

/* ================================
   SECTIONS
================================ */

section { padding: 5rem 2.5rem; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(240, 180, 41, 0.3);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 3rem;
  letter-spacing: -1px;
}

/* ================================
   CALENDAR PUNCHLINE
================================ */

.calendar-punchline {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 2.5rem;
  min-height: 2.5rem;
  transition: opacity 0.4s;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

/* ================================
   YEAR NAV
================================ */

.year-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.year-btn {
  background: transparent;
  border: 1px solid rgba(240, 180, 41, 0.4);
  color: var(--cream);
  padding: 8px 18px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
  touch-action: manipulation;
}

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

.year-label {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--cream);
}

/* ================================
   MONTH TABS
================================ */

.month-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
  overflow-x: auto;
  margin-bottom: 1.5rem;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.month-tabs::-webkit-scrollbar { display: none; }

.month-btn {
  background: var(--dark3);
  border: 1px solid rgba(240, 180, 41, 0.3);
  color: var(--cream);
  padding: 10px 16px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 2px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
  touch-action: manipulation;
}

.month-btn.active,
.month-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* ================================
   FILTER TYPE ROW
================================ */

.filter-type-row {
  display: flex;
  gap: 8px;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.filter-type-btn {
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
  touch-action: manipulation;
}

.filter-type-btn.active,
.filter-type-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(240, 180, 41, 0.08); }

/* ================================
   CATEGORY FILTERS
================================ */

.filter-row {
  display: flex;
  gap: 8px;
  margin-bottom: 2rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.filter-row::-webkit-scrollbar { display: none; }

.filter-tab {
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  touch-action: manipulation;
}

.filter-tab.active,
.filter-tab:hover { border-color: var(--gold); color: var(--gold); background: rgba(240, 180, 41, 0.08); }

/* ================================
   EVENT CARDS
================================ */

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.event-card {
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
  border-radius: 4px;
}

.event-card:hover { transform: translateY(-4px); border-color: var(--gold); }

.event-card-poster {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.event-card-poster img { width: 100%; height: 100%; object-fit: cover; }

.poster-placeholder {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.4;
  text-align: center;
  padding: 1rem;
  line-height: 1.2;
}

.event-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  font-size: 0.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
}

.badge-free { background: var(--green); color: var(--cream); }
.badge-ticketed { background: var(--gold); color: var(--dark); }

.event-card-body { padding: 1.2rem; }

.event-category {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.event-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 8px;
  line-height: 1.2;
}

.event-meta {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 1rem;
}

.event-card-footer { display: flex; gap: 8px; }

/* ================================
   POSTER WALL
================================ */

.poster-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.mosaic-item {
  aspect-ratio: 3/4;
  background: var(--green-dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.mosaic-item:hover { border-color: var(--gold); }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; }
.mosaic-item:nth-child(1) { grid-row: span 2; }
.mosaic-item:nth-child(5) { grid-column: span 2; }

.mosaic-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 10px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cream);
}

.mosaic-placeholder {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(240, 180, 41, 0.3);
  text-align: center;
  padding: 1rem;
  line-height: 1.3;
}

/* ================================
   SUBMIT FORM
================================ */

.submit-section {
  background: var(--green-dark);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 800px;
}

.form-full { grid-column: 1 / -1; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(240, 180, 41, 0.3);
  color: var(--cream);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 2px;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--gold); }

.form-input::placeholder { color: rgba(245, 240, 232, 0.3); }
.form-select option { background: var(--dark); }
.form-textarea { resize: vertical; min-height: 110px; }

/* ================================
   TOGGLE
================================ */

.ticket-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.toggle-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.toggle {
  width: 42px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.2s;
  flex-shrink: 0;
  touch-action: manipulation;
}

.toggle.on { background: var(--gold); }

.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: var(--cream);
  border-radius: 50%;
  transition: transform 0.2s;
}

.toggle.on .toggle-knob { transform: translateX(18px); }

/* ================================
   NOTICE
================================ */

.notice {
  background: var(--dark3);
  border: 1px solid rgba(240, 180, 41, 0.3);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 800px;
  border-radius: 2px;
}

.notice strong { color: var(--gold); }

/* ================================
   CONTACT
================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 700px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--dark3);
  border: 1px solid rgba(240, 180, 41, 0.2);
  padding: 1.5rem;
  border-radius: 4px;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--cream);
}

.contact-card:hover { border-color: var(--gold); transform: translateY(-2px); }

.contact-icon {
  width: 52px;
  height: 52px;
  background: rgba(240, 180, 41, 0.1);
  border: 1px solid rgba(240, 180, 41, 0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-value {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
  word-break: break-all;
}

/* ================================
   STATES
================================ */

.loading-state,
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  grid-column: 1 / -1;
}

.error-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  grid-column: 1 / -1;
}

/* ================================
   TOAST
================================ */

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  z-index: 1000;
  animation: slideIn 0.3s ease;
  max-width: 320px;
  border-radius: 4px;
  line-height: 1.5;
}

.toast-success { background: var(--green); border-left: 4px solid var(--gold); color: var(--cream); }
.toast-error { background: #3d0000; border-left: 4px solid #ff4444; color: var(--cream); }

@keyframes slideIn {
  from { transform: translateX(120px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ================================
   FOOTER
================================ */

footer {
  background: var(--green-dark);
  border-top: 3px solid var(--gold);
  padding: 4rem 2.5rem 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.2rem;
  display: block;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.8;
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.55);
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.2s;
}

.footer-col ul li:hover { color: var(--gold); }

.footer-bottom {
  background: var(--dark);
  padding: 1.2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text-muted);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 1.2rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--cream);
  transition: all 0.2s;
  touch-action: manipulation;
}

.social-icon:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* ================================
   LARGE DESKTOP — 1400px+
================================ */

@media (min-width: 1400px) {
  nav { padding: 0 4rem; }
  section { padding: 6rem 4rem; }
  footer { padding: 4rem 4rem 2rem; }
  .footer-bottom { padding: 1.2rem 4rem; }
  .hero { padding: 4rem; }
  .event-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ================================
   SMALL LAPTOP — 900px to 1023px
================================ */

@media (max-width: 1023px) {
  .nav-links { gap: 1.2rem; }
  .hero { padding: 3rem 2rem; }
  footer { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ================================
   TABLET LANDSCAPE — 768px to 899px
================================ */

@media (max-width: 899px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 3rem 2rem; }
  .hero-right { display: none; }
  .hero-diagonal { display: none; }
  .hero-bg-text { font-size: 35vw; }
  .contact-grid { grid-template-columns: 1fr; max-width: 500px; }
  .poster-mosaic { grid-template-columns: repeat(3, 1fr); }
  .mosaic-item:nth-child(1) { grid-row: span 1; }
  .mosaic-item:nth-child(5) { grid-column: span 1; }
  footer { grid-template-columns: 1fr 1fr; }
}

/* ================================
   TABLET PORTRAIT — 600px to 767px
================================ */

@media (max-width: 767px) {
  nav { padding: 0 1.2rem; height: 64px; }
  .nav-links { display: none; }
  .nav-menu-btn { display: block; }
  .hero { padding: 2.5rem 1.5rem; gap: 1.5rem; }
  .hero-title { letter-spacing: -1px; }
  .hero-sub { font-size: 0.85rem; }
  section { padding: 3.5rem 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .poster-mosaic { grid-template-columns: repeat(2, 1fr); }
  footer { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem 2rem; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 1rem 1.5rem; }
  .event-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

/* ================================
   STANDARD PHONE — 480px to 599px
================================ */

@media (max-width: 599px) {
  nav { padding: 0 1rem; height: 60px; }
  .nav-logo img { height: 36px; }
  .nav-brand { font-size: 1.1rem; }
  .hero { padding: 2rem 1rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; width: 100%; padding: 14px; }
  section { padding: 3rem 1rem; }
  .section-title { margin-bottom: 2rem; }
  .event-grid { grid-template-columns: 1fr; }
  .poster-mosaic { grid-template-columns: repeat(2, 1fr); }
  footer { padding: 2.5rem 1rem 1.5rem; }
  .footer-bottom { padding: 1rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .toast { left: 1rem; right: 1rem; bottom: 1rem; max-width: none; }
  .year-nav { gap: 1rem; }
  .year-label { font-size: 1.5rem; }
}

/* ================================
   SMALL PHONE — below 480px
================================ */

@media (max-width: 479px) {
  .nav-brand { font-size: 1rem; }
  .nav-logo img { height: 32px; }
  .hero-title { font-size: 2.8rem; }
  .section-title { font-size: 2rem; }
  .calendar-punchline { font-size: 1.1rem; }
  .event-name { font-size: 1rem; }
  .form-input, .form-select, .form-textarea { font-size: 0.85rem; padding: 10px 12px; }
  .poster-mosaic { grid-template-columns: 1fr 1fr; gap: 6px; }
  .filter-type-btn { padding: 7px 12px; font-size: 0.75rem; }
  .month-btn { padding: 8px 12px; font-size: 0.85rem; }
}
