/* ═══════════════════════════════════════════════════════
   Eccentric & Vintage Events  —  style.css
   Art Deco · Black · Chocolate · Antique Gold
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Josefin+Sans:wght@300;400;600;700&family=Cormorant+Garamond:wght@400;500&display=swap');

/* ── Variables ────────────────────────────────────────── */
:root {
  --burgundy:      #2A1508;
  --burgundy-dark: #0C0806;
  --burgundy-mid:  #4D2E16;
  --gold:          #C4922A;
  --gold-light:    #E8C97A;
  --gold-pale:     #F5EDD0;
  --ivory:         #F7F4EF;
  --ivory-dark:    #EDEAE3;
  --ivory-mid:     #E2DDD5;
  --charcoal:      #1A1410;
  --charcoal-mid:  #3A3028;
  --warm-gray:     #7A6E62;
  --warm-gray-lt:  #B2A89C;
  --white:         #FFFFFF;
  --red:           #C0392B;
  --green:         #2E7D32;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Josefin Sans', 'Arial Narrow', sans-serif;
  --font-prose:   'Cormorant Garamond', Georgia, serif;

  --shadow-sm:  0 2px 8px rgba(12,8,6,.18);
  --shadow-md:  0 4px 20px rgba(12,8,6,.22);
  --shadow-lg:  0 8px 40px rgba(12,8,6,.28);
  --radius:     8px;
  --radius-lg:  14px;
}

/* ── Reset ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
em, i { font-style: normal; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--charcoal);
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: .04em;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--burgundy); text-decoration: none; }
a:hover { color: var(--gold); }

/* ── Art Deco Patterns ───────────────────────────────── */
.deco-border {
  border: 1px solid var(--gold);
  box-shadow: inset 0 0 0 4px var(--ivory), inset 0 0 0 5px var(--gold);
}
.deco-divider {
  display: flex; align-items: center; gap: 12px; margin: 24px 0;
}
.deco-divider::before, .deco-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--gold);
}
.deco-divider span {
  color: var(--gold); font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  font-family: var(--font-body); font-weight: 600;
}
.deco-ornament {
  text-align: center; color: var(--gold); font-size: 1.2rem; letter-spacing: .4em;
  margin: 8px 0;
}

/* ── Navbar ───────────────────────────────────────────── */
.site-nav {
  background: #0C0806;
  border-bottom: 1px solid rgba(196,146,42,.4);
  position: sticky; top: 0; z-index: 999;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; padding: 0 20px; height: 64px;
  gap: 0; position: relative;
}
.nav-brand {
  font-family: var(--font-body);
  font-size: .9rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase;
  color: var(--white); text-decoration: none; white-space: nowrap;
  flex-shrink: 0; margin-right: 28px;
}
.nav-brand:hover { color: var(--gold-light); }
.nav-links {
  display: flex; align-items: center; gap: 2px; flex: 1;
}
.nav-links a {
  color: rgba(255,255,255,.65); font-size: .63rem; font-weight: 600;
  padding: 6px 10px; border-radius: 3px; transition: all .2s;
  letter-spacing: .2em; text-transform: uppercase; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold-light); background: rgba(255,255,255,.06);
}
.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; margin-left: auto; }
.nav-btn {
  font-size: .63rem; font-weight: 600; padding: 6px 14px; border-radius: 3px;
  cursor: pointer; border: none; transition: all .2s; font-family: var(--font-body);
  letter-spacing: .18em; text-transform: uppercase; white-space: nowrap;
}
.nav-btn-outline { background: none; border: 1px solid rgba(196,146,42,.45); color: var(--gold-light); }
.nav-btn-outline:hover { border-color: var(--gold-light); background: rgba(196,146,42,.08); }
.nav-btn-gold { background: var(--gold); color: #0C0806; font-weight: 700; }
.nav-btn-gold:hover { background: var(--gold-light); }
.nav-user-pill {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.08); border-radius: 20px; padding: 3px 12px 3px 3px; cursor: pointer;
}
.nav-user-avatar {
  width: 26px; height: 26px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 700; font-size: .72rem; color: #0C0806;
}
.nav-user-name { color: rgba(255,255,255,.8); font-size: .65rem; font-weight: 600; letter-spacing: .1em; }
.nav-hamburger {
  display: none; background: none; border: 1px solid rgba(196,146,42,.35);
  color: var(--gold-light); font-size: .95rem; cursor: pointer;
  width: 34px; height: 34px; border-radius: 4px;
  align-items: center; justify-content: center; flex-shrink: 0; margin-left: 12px;
}

/* Mobile-only items (hidden on desktop) */
.nav-mob-sep  { display: none; }
.nav-mob-action { display: none !important; }

/* ── Mobile nav ─────────────────────────────────────────── */
@media (max-width: 820px) {
  body { overflow-x: hidden; }
  .nav-actions { display: none; }
  .nav-hamburger { display: flex; }

  /* Nav links hidden by default on mobile, shown as dropdown */
  .nav-links {
    display: none;
    position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #0C0806; border-bottom: 1px solid rgba(196,146,42,.3);
    padding: 8px 0 16px; z-index: 998;
  }
  .nav-links.open { display: flex; }

  /* All links inside open dropdown */
  .nav-links a {
    display: block; padding: 11px 24px; font-size: .68rem;
    border-left: 3px solid transparent; border-radius: 0;
    color: rgba(255,255,255,.65);
  }
  .nav-links a:hover, .nav-links a.active {
    background: rgba(255,255,255,.05); border-left-color: var(--gold); color: var(--gold-light);
  }

  /* Mobile separator and action items */
  .nav-mob-sep {
    display: block !important; height: 1px;
    background: rgba(196,146,42,.2); margin: 8px 24px;
  }
  .nav-mob-action {
    display: block !important; padding: 10px 24px;
    font-size: .68rem; font-weight: 600; letter-spacing: .18em;
    text-transform: uppercase; color: rgba(255,255,255,.55);
    border-left: 3px solid transparent;
  }
  .nav-mob-action:hover { color: var(--gold-light); background: rgba(255,255,255,.05); }
  .nav-mob-cta { color: var(--gold) !important; }

  .nav-brand { font-size: .8rem; letter-spacing: .2em; margin-right: 0; }
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, #0C0806 0%, #1E0E06 50%, #2A1508 100%);
  padding: 72px 0 60px; position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(196,146,42,.03) 0, rgba(196,146,42,.03) 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
}
.hero-eyebrow {
  font-size: .72rem; letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold-light); font-weight: 400; margin-bottom: 12px;
  font-family: var(--font-body);
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white); font-weight: 700; line-height: 1.15; margin-bottom: 16px;
}
.hero-title em { color: var(--gold-light); font-style: normal; }
.hero-subtitle {
  font-size: 1rem; color: rgba(255,255,255,.7); line-height: 1.8;
  max-width: 520px; font-family: var(--font-body); letter-spacing: .06em;
}
.hero-search-bar {
  display: flex; gap: 8px; margin-top: 28px; max-width: 600px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(196,146,42,.4);
  border-radius: var(--radius); overflow: hidden; padding: 4px 4px 4px 16px;
}
.hero-search-bar input {
  flex: 1; background: none; border: none; outline: none;
  color: #fff; font-size: .9rem; font-family: var(--font-body);
}
.hero-search-bar input::placeholder { color: rgba(255,255,255,.5); }
.hero-search-bar select {
  background: rgba(255,255,255,.1); border: none; border-left: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8); font-size: .82rem; padding: 6px 10px; cursor: pointer;
  font-family: var(--font-body);
}
.hero-search-bar button {
  background: var(--gold); color: var(--burgundy-dark);
  border: none; padding: 8px 20px; border-radius: 4px;
  font-weight: 700; cursor: pointer; font-family: var(--font-body); font-size: .85rem;
  transition: background .2s;
}
.hero-search-bar button:hover { background: var(--gold-light); }

/* ── Section ──────────────────────────────────────────── */
.section { padding: 64px 0; }
.section-alt { background: var(--ivory-dark); }
.section-dark { background: var(--burgundy-dark); }
.section-label {
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 8px;
  font-family: var(--font-body);
}
.section-title {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--charcoal); font-weight: 700; line-height: 1.2;
}
.section-title.light { color: var(--white); }
.section-subtitle {
  color: var(--warm-gray); font-size: .95rem; max-width: 560px;
}

/* ── Buttons ──────────────────────────────────────────── */
.btn-burgundy {
  background: var(--burgundy); color: var(--gold-light);
  border: none; padding: 11px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: .75rem; cursor: pointer;
  font-family: var(--font-body); transition: all .2s;
  letter-spacing: .2em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px;
}
.btn-burgundy:hover { background: var(--burgundy-mid); color: var(--gold-light); }
.btn-gold {
  background: var(--gold); color: #0C0806;
  border: none; padding: 11px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: .75rem; cursor: pointer;
  font-family: var(--font-body); transition: all .2s;
  letter-spacing: .2em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px;
}
.btn-gold:hover { background: var(--gold-light); }
.btn-outline {
  background: none; color: var(--burgundy-mid);
  border: 1.5px solid var(--burgundy-mid); padding: 10px 24px; border-radius: var(--radius);
  font-weight: 600; font-size: .75rem; cursor: pointer;
  font-family: var(--font-body); transition: all .2s;
  letter-spacing: .2em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { background: var(--burgundy); color: var(--gold-light); border-color: var(--burgundy); }
.btn-outline-gold {
  background: none; color: var(--gold);
  border: 1.5px solid var(--gold); padding: 10px 24px; border-radius: var(--radius);
  font-weight: 600; font-size: .75rem; cursor: pointer;
  font-family: var(--font-body); transition: all .2s;
  letter-spacing: .2em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-gold:hover { background: var(--gold); color: #0C0806; }
.btn-sm { padding: 6px 16px; font-size: .68rem; }
.btn-danger {
  background: var(--red); color: #fff; border: none; padding: 8px 16px;
  border-radius: var(--radius); font-size: .68rem; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
}
.btn-action {
  background: var(--ivory-dark); color: var(--charcoal-mid); border: none;
  width: 32px; height: 32px; border-radius: 6px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .8rem; transition: all .15s;
}
.btn-action:hover { background: var(--burgundy); color: var(--gold-light); }

/* ── Cards ────────────────────────────────────────────── */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden; transition: box-shadow .25s, transform .25s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* Event Card */
.event-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: box-shadow .25s, transform .25s; cursor: pointer;
  border: 1px solid var(--ivory-mid);
  display: flex; flex-direction: column;
}
.event-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.event-card-img {
  width: 100%; height: 200px; object-fit: cover;
  background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.event-card-img .placeholder-icon {
  font-size: 3rem; color: rgba(255,255,255,.3);
}
.event-card-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.event-card-cat {
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 6px;
}
.event-card-title {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--charcoal); line-height: 1.3; margin-bottom: 8px;
}
.event-card-meta {
  font-size: .78rem; color: var(--warm-gray); display: flex;
  flex-wrap: wrap; gap: 10px; margin-bottom: 10px;
}
.event-card-meta i { color: var(--gold); margin-right: 4px; font-size: .72rem; }
.event-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto; padding-top: 12px;
  border-top: 1px solid var(--ivory-mid);
}
.event-card-price {
  font-weight: 700; color: var(--burgundy); font-size: .85rem;
}
.event-card-rating {
  display: flex; align-items: center; gap: 4px; font-size: .78rem; color: var(--warm-gray);
}

/* Listing Card */
.listing-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden; cursor: pointer;
  border: 1px solid var(--ivory-mid); transition: all .25s;
}
.listing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.listing-card-img {
  width: 100%; height: 160px; object-fit: cover;
  background: linear-gradient(135deg, var(--charcoal-mid), var(--charcoal));
}
.listing-card-body { padding: 16px 18px; }
.listing-type-badge {
  font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
  font-weight: 700; padding: 2px 8px; border-radius: 3px; display: inline-block;
  margin-bottom: 6px;
}
.type-venue     { background: rgba(123,28,49,.1); color: var(--burgundy); }
.type-entertainer { background: rgba(196,146,42,.1); color: #8B6018; }
.type-caterer   { background: rgba(46,125,50,.1); color: var(--green); }
.type-shop      { background: rgba(62,39,35,.1); color: #3E2723; }
.type-fair      { background: rgba(21,101,192,.1); color: #1565C0; }

/* ── Badges ───────────────────────────────────────────── */
.badge {
  display: inline-block; padding: 3px 10px; border-radius: 20px;
  font-size: .7rem; font-weight: 700; letter-spacing: .05em;
}
.badge-pending  { background: rgba(196,146,42,.15); color: #7A5A10; }
.badge-approved { background: rgba(46,125,50,.12); color: var(--green); }
.badge-rejected { background: rgba(192,57,43,.12); color: var(--red); }
.badge-featured { background: var(--gold); color: var(--burgundy-dark); }
.badge-star {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--burgundy-dark); box-shadow: 0 2px 8px rgba(196,146,42,.4);
  display: inline-flex; align-items: center; gap: 4px;
}
.badge-private { background: rgba(30,30,30,.1); color: var(--charcoal-mid); }
.tier-badge {
  background: var(--burgundy-dark); color: var(--gold-light);
  border-radius: 20px; padding: 3px 10px; font-size: .7rem; font-weight: 700;
}

/* ── Stars & Ratings ─────────────────────────────────── */
.stars { color: var(--gold); letter-spacing: -.05em; }
.stars-empty { color: var(--ivory-mid); }
.rating-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--burgundy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; font-family: var(--font-display);
}
.rating-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 0; border-bottom: 1px solid var(--ivory-mid);
}
.rating-row:last-child { border-bottom: none; }
.rating-bar-wrap { flex: 1; height: 5px; background: var(--ivory-mid); border-radius: 3px; margin: 0 12px; }
.rating-bar { height: 100%; border-radius: 3px; background: var(--gold); }
.rating-val { font-weight: 700; font-size: .8rem; color: var(--burgundy); min-width: 24px; text-align: right; }

/* ── Calendar ─────────────────────────────────────────── */
.calendar-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); overflow: hidden;
  border: 1px solid var(--gold-pale);
}
.calendar-header {
  background: var(--burgundy-dark); padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.calendar-header h3 {
  font-family: var(--font-display); color: var(--white); font-size: 1.1rem;
  letter-spacing: .05em;
}
.calendar-nav-btn {
  background: rgba(255,255,255,.15); border: none; color: #fff;
  width: 30px; height: 30px; border-radius: 4px; cursor: pointer; font-size: .9rem;
  transition: background .15s;
}
.calendar-nav-btn:hover { background: rgba(255,255,255,.25); }
.calendar-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
}
.calendar-dow {
  text-align: center; padding: 8px 0; font-size: .65rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--warm-gray); font-weight: 700; background: var(--ivory-dark);
}
.calendar-day {
  border: 1px solid var(--ivory-mid); min-height: 52px;
  padding: 6px; text-align: center; font-size: .82rem;
  color: var(--charcoal-mid); transition: background .15s; position: relative;
}
.calendar-day.other-month { color: var(--warm-gray-lt); background: var(--ivory-dark); }
.calendar-day.today {
  background: var(--gold-pale); font-weight: 700; color: var(--burgundy-dark);
}
.calendar-day.has-events {
  background: rgba(123,28,49,.06); cursor: pointer;
}
.calendar-day.has-events:hover { background: rgba(123,28,49,.12); }
.calendar-day.has-events .day-num {
  background: var(--burgundy); color: #fff;
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2px; font-size: .78rem; font-weight: 700;
}
.calendar-day-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  display: inline-block; margin: 1px;
}

/* ── Tabs ─────────────────────────────────────────────── */
.eve-tabs {
  display: flex; gap: 4px; border-bottom: 2px solid var(--ivory-mid);
  margin-bottom: 28px; overflow-x: auto; padding-bottom: 0;
  scrollbar-width: none;
}
.eve-tabs::-webkit-scrollbar { display: none; }
.eve-tab {
  padding: 10px 20px; font-size: .82rem; font-weight: 600;
  color: var(--warm-gray); cursor: pointer; border: none;
  background: none; border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: all .2s; white-space: nowrap;
  font-family: var(--font-body); letter-spacing: .04em; text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
}
.eve-tab:hover { color: var(--burgundy); }
.eve-tab.active { color: var(--burgundy); border-bottom-color: var(--burgundy); }
.eve-tab-count {
  background: var(--ivory-dark); color: var(--warm-gray); border-radius: 10px;
  padding: 1px 7px; font-size: .68rem;
}
.eve-tab.active .eve-tab-count { background: var(--burgundy); color: #fff; }

/* ── Filter bar ───────────────────────────────────────── */
.filter-bar {
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin-bottom: 20px;
}
.filter-btn {
  background: var(--white); border: 1.5px solid var(--ivory-mid);
  color: var(--warm-gray); font-size: .78rem; font-weight: 600;
  padding: 6px 14px; border-radius: 20px; cursor: pointer;
  transition: all .2s; font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--burgundy); border-color: var(--burgundy); color: #fff;
}
.filter-select {
  background: var(--white); border: 1.5px solid var(--ivory-mid);
  color: var(--charcoal-mid); font-size: .82rem; padding: 7px 12px;
  border-radius: var(--radius); font-family: var(--font-body); cursor: pointer;
}
.search-input-wrap { display: flex; align-items: center; flex: 1; min-width: 200px; max-width: 320px; }
.search-input-wrap input {
  border: 1.5px solid var(--ivory-mid); border-radius: var(--radius);
  padding: 7px 12px 7px 36px; font-family: var(--font-body); font-size: .85rem;
  width: 100%; outline: none; background: var(--white);
}
.search-input-wrap input:focus { border-color: var(--gold); }
.search-input-icon { position: absolute; left: 12px; color: var(--warm-gray-lt); font-size: .8rem; }

/* ── Forms ────────────────────────────────────────────── */
.form-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); padding: 28px 32px;
}
.form-label {
  font-size: .78rem; font-weight: 700; color: var(--charcoal-mid);
  letter-spacing: .04em; text-transform: uppercase; margin-bottom: 5px;
  display: block;
}
.form-control {
  width: 100%; padding: 10px 14px; border: 1.5px solid var(--ivory-mid);
  border-radius: var(--radius); font-family: var(--font-body); font-size: .9rem;
  color: var(--charcoal); background: var(--white);
  transition: border-color .2s; outline: none;
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196,146,42,.1); }
.form-select { appearance: none; cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-hint { font-size: .72rem; color: var(--warm-gray-lt); margin-top: 4px; }
.form-error { font-size: .78rem; color: var(--red); margin-top: 4px; }
.form-group { margin-bottom: 18px; }

/* ── Alerts ───────────────────────────────────────────── */
.alert-gold {
  background: rgba(196,146,42,.1); border: 1px solid rgba(196,146,42,.3);
  color: #6B4F10; border-radius: var(--radius); padding: 12px 16px; font-size: .85rem;
}
.alert-success {
  background: rgba(46,125,50,.1); border: 1px solid rgba(46,125,50,.25);
  color: var(--green); border-radius: var(--radius); padding: 12px 16px; font-size: .85rem;
}
.alert-danger {
  background: rgba(192,57,43,.1); border: 1px solid rgba(192,57,43,.25);
  color: var(--red); border-radius: var(--radius); padding: 12px 16px; font-size: .85rem;
}
.alert-info {
  background: rgba(21,101,192,.08); border: 1px solid rgba(21,101,192,.2);
  color: #1565C0; border-radius: var(--radius); padding: 12px 16px; font-size: .85rem;
}

/* ── Toast ────────────────────────────────────────────── */
.toast-wrap {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  display: flex; flex-direction: column; gap: 8px;
}
.toast {
  background: var(--charcoal); color: #fff; padding: 12px 20px; border-radius: var(--radius);
  font-size: .85rem; box-shadow: var(--shadow-md); min-width: 240px;
  animation: toastIn .3s ease; border-left: 4px solid var(--gold);
  font-family: var(--font-body);
}
.toast.success { border-color: var(--green); }
.toast.error   { border-color: var(--red); }
@keyframes toastIn { from { opacity:0; transform:translateX(20px); } to { opacity:1; transform:none; } }

/* ── Breadcrumb ───────────────────────────────────────── */
.breadcrumb-bar {
  background: var(--burgundy-dark); padding: 10px 0;
  border-bottom: 1px solid rgba(196,146,42,.2);
}
.breadcrumb-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.breadcrumb-trail {
  display: flex; align-items: center; gap: 8px;
  font-size: .75rem; color: rgba(255,255,255,.6);
}
.breadcrumb-trail a { color: rgba(255,255,255,.7); }
.breadcrumb-trail a:hover { color: var(--gold-light); }
.breadcrumb-trail .sep { color: rgba(255,255,255,.3); }
.breadcrumb-trail .current { color: var(--white); font-weight: 600; }

/* ── Article / Editorial ─────────────────────────────── */
.article-hero { height: 380px; object-fit: cover; width: 100%; border-radius: var(--radius-lg); }
.article-body {
  font-family: var(--font-prose); font-size: 1.08rem; line-height: 1.9; color: var(--charcoal);
}
.article-body h2 { font-family: var(--font-display); color: var(--burgundy-dark); margin: 2rem 0 1rem; font-size: 1.5rem; }
.article-body h3 { font-family: var(--font-display); color: var(--burgundy-dark); margin: 1.6rem 0 .8rem; font-size: 1.2rem; }
.article-body p  { margin-bottom: 1.4rem; }
.article-body blockquote {
  border-left: 4px solid var(--gold); padding: 14px 20px; margin: 24px 0;
  background: var(--gold-pale); border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; color: var(--warm-gray); font-size: 1.1rem;
}
.article-body img { max-width: 100%; border-radius: var(--radius); margin: 12px 0; }
.article-body a { color: var(--burgundy); text-decoration: underline; }

/* ── Event description (Josefin Sans, no drop cap) ───── */
.event-description {
  font-family: var(--font-body); font-size: 14.5px; line-height: 1.85;
  color: var(--charcoal); letter-spacing: .03em;
}
.event-description p:first-of-type::first-letter { all: unset; } /* kill any drop-cap inheritance */
.event-description p  { margin-bottom: 1.2rem; }
.event-description h2 { font-family: var(--font-display); color: var(--charcoal); font-size: 1.3rem; margin: 1.6rem 0 .8rem; }
.event-description h3 { font-family: var(--font-display); color: var(--charcoal); font-size: 1.1rem; margin: 1.3rem 0 .6rem; }
.event-description ul, .event-description ol { margin: 0 0 1.2rem 1.4rem; }
.event-description li { margin-bottom: .4rem; }
.event-description blockquote {
  border-left: 3px solid var(--gold); padding: 10px 18px; margin: 18px 0;
  background: var(--gold-pale); border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--warm-gray);
}
.event-description img { max-width: 100%; border-radius: var(--radius); display: block; margin: 12px auto; }
.event-description a { color: var(--burgundy-mid); text-decoration: underline; }

/* ── Sidebar widgets ─────────────────────────────────── */
.widget {
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  overflow: hidden; margin-bottom: 24px; border: 1px solid var(--ivory-mid);
}
.widget-header {
  background: var(--burgundy-dark); color: var(--gold-light);
  padding: 12px 18px; font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; font-family: var(--font-body);
  display: flex; align-items: center; gap: 8px;
}
.widget-body { padding: 16px 18px; }

/* ── Footer ───────────────────────────────────────────── */
.site-footer {
  background: #0C0806; color: rgba(255,255,255,.6);
  padding: 56px 0 0; border-top: 1px solid rgba(196,146,42,.35);
}
.footer-brand {
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase; color: var(--white);
  margin-bottom: 10px;
}
.footer-brand em { color: var(--gold-light); font-style: normal; }
.site-footer h5 {
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; font-family: var(--font-body); font-weight: 700;
}
.site-footer a {
  color: rgba(255,255,255,.65); display: block; font-size: .85rem;
  padding: 3px 0; transition: color .15s;
}
.site-footer a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(196,146,42,.2); padding: 16px 0; margin-top: 40px;
  font-size: .75rem; color: rgba(255,255,255,.4);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-legal-links { display: flex; gap: 16px; }
.footer-legal-links a { color: rgba(255,255,255,.45); font-size: .75rem; display: inline; padding: 0; }
.footer-legal-links a:hover { color: var(--gold-light); }

/* ── Subscription Tier Cards ─────────────────────────── */
.tier-card {
  background: var(--white); border: 2px solid var(--ivory-mid); border-radius: var(--radius-lg);
  padding: 28px 24px; text-align: center; transition: all .25s; position: relative;
}
.tier-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.tier-card.featured { border-color: var(--burgundy); }
.tier-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--burgundy); color: #fff; font-size: .65rem; font-weight: 700;
  letter-spacing: .15em; padding: 3px 14px; border-radius: 20px;
  font-family: var(--font-body);
}
.tier-price {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 700;
  color: var(--burgundy-dark); margin: 12px 0 4px;
}
.tier-price span { font-size: 1rem; font-weight: 400; color: var(--warm-gray); }
.tier-events { font-size: .85rem; color: var(--warm-gray); margin-bottom: 20px; }
.tier-features { list-style: none; text-align: left; margin-bottom: 24px; }
.tier-features li {
  font-size: .82rem; color: var(--charcoal-mid); padding: 4px 0;
  display: flex; align-items: center; gap: 8px;
}
.tier-features li i { color: var(--gold); font-size: .75rem; }

/* ── Event page specific ──────────────────────────────── */
.event-hero-img {
  width: 100%; height: 420px; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
.event-meta-block {
  background: var(--white); border-radius: var(--radius-lg); padding: 20px 24px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--ivory-mid);
}
.event-meta-item { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--ivory-mid); }
.event-meta-item:last-child { border-bottom: none; }
.event-meta-icon {
  width: 34px; height: 34px; border-radius: 8px; background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .85rem; flex-shrink: 0;
}
.event-meta-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--warm-gray-lt); font-weight: 700; }
.event-meta-val { font-size: .9rem; color: var(--charcoal); font-weight: 500; }

/* ── Password gate ────────────────────────────────────── */
.password-gate {
  background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
  border-radius: var(--radius-lg); padding: 40px; text-align: center;
  color: white; margin: 20px 0;
}
.password-gate h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 8px; }
.password-gate p { color: rgba(255,255,255,.75); margin-bottom: 20px; }
.password-gate input {
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius); padding: 10px 16px; color: white;
  font-family: var(--font-body); font-size: .9rem; outline: none;
  text-align: center; letter-spacing: .1em; width: 100%; max-width: 300px;
}
.password-gate input::placeholder { color: rgba(255,255,255,.5); }

/* ── Modal ────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(30,0,10,.6);
  backdrop-filter: blur(4px); z-index: 10000;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white); border-radius: var(--radius-lg);
  max-width: 680px; width: 100%; max-height: 90vh;
  overflow-y: auto; padding: 32px; box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--burgundy);
}
.modal-box h4 {
  font-family: var(--font-display); color: var(--burgundy-dark);
  font-size: 1.3rem; margin-bottom: 20px;
}

/* ── Admin (reuse in admin/index.html) ───────────────── */
.admin-sidebar {
  width: 220px; background: #0C0806;
  height: 100vh; max-height: 100vh;
  padding: 20px 0; border-right: 1px solid rgba(196,146,42,.25);
  position: fixed; left: 0; top: 0;
  overflow-y: auto; overflow-x: hidden;
  z-index: 100;
  scrollbar-width: thin;
  scrollbar-color: rgba(196,146,42,.3) transparent;
}
.admin-sidebar::-webkit-scrollbar { width: 4px; }
.admin-sidebar::-webkit-scrollbar-track { background: transparent; }
.admin-sidebar::-webkit-scrollbar-thumb { background: rgba(196,146,42,.35); border-radius: 2px; }
.admin-sidebar::-webkit-scrollbar-thumb:hover { background: rgba(196,146,42,.6); }
.admin-logo {
  padding: 0 20px 20px; border-bottom: 1px solid rgba(196,146,42,.2);
  margin-bottom: 12px;
}
.admin-logo div {
  font-family: var(--font-display); color: var(--white); font-size: 1rem; font-weight: 700;
}
.admin-logo div em { color: var(--gold-light); font-style: italic; }
.admin-logo small { color: rgba(255,255,255,.4); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.admin-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; color: rgba(255,255,255,.7); cursor: pointer;
  transition: all .15s; font-size: .82rem; font-family: var(--font-body); font-weight: 500;
  border-left: 3px solid transparent; margin: 1px 0;
}
.admin-nav-item:hover { color: #fff; background: rgba(255,255,255,.06); }
.admin-nav-item.active { color: var(--gold-light); background: rgba(196,146,42,.1); border-left-color: var(--gold); }
.admin-nav-item i { width: 18px; text-align: center; font-size: .85rem; }
.admin-nav-sep {
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.25); padding: 14px 20px 4px; font-weight: 700;
}
.admin-main { margin-left: 220px; padding: 28px 32px; }
.admin-topbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--ivory-mid);
}
.admin-panel { display: none; }
.admin-panel.active { display: block; }
.stat-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 20px 24px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--ivory-mid);
}
.stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--burgundy-dark); }
.stat-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--warm-gray); }

/* ── Table ────────────────────────────────────────────── */
.table-eve {
  width: 100%; border-collapse: collapse; font-size: .82rem;
}
.table-eve th {
  background: var(--ivory-dark); padding: 10px 14px;
  font-size: .7rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--warm-gray); font-weight: 700; text-align: left; border-bottom: 2px solid var(--ivory-mid);
}
.table-eve td { padding: 11px 14px; border-bottom: 1px solid var(--ivory-mid); vertical-align: middle; }
.table-eve tr:hover td { background: var(--ivory-dark); }
.table-eve tr:last-child td { border-bottom: none; }

/* ── Form switch ──────────────────────────────────────── */
.form-check-input:checked { background-color: var(--burgundy); border-color: var(--burgundy); }
.form-check-input:focus { box-shadow: 0 0 0 3px rgba(123,28,49,.15); }

/* ── Drag handle (for reorderable lists) ─────────────── */
.drag-handle {
  cursor: grab; color: var(--warm-gray-lt); padding: 4px;
  font-size: .9rem; transition: color .15s;
}
.drag-handle:hover { color: var(--gold); }
.sortable-ghost { opacity: .4; background: var(--gold-pale) !important; }

/* ── Quill overrides ──────────────────────────────────── */
.ql-toolbar { border: 1.5px solid var(--ivory-mid) !important; border-radius: var(--radius) var(--radius) 0 0 !important; }
.ql-container { border: 1.5px solid var(--ivory-mid) !important; border-top: none !important; border-radius: 0 0 var(--radius) var(--radius) !important; min-height: 200px; font-family: var(--font-prose) !important; font-size: .95rem !important; }

/* ── Utilities ────────────────────────────────────────── */
html { overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -12px; }
.col-half { flex: 0 0 50%; max-width: 50%; padding: 0 12px; }
.col-third { flex: 0 0 33.333%; max-width: 33.333%; padding: 0 12px; }
.col-two-thirds { flex: 0 0 66.666%; max-width: 66.666%; padding: 0 12px; }
.col-quarter { flex: 0 0 25%; max-width: 25%; padding: 0 12px; }
.col-three-quarters { flex: 0 0 75%; max-width: 75%; padding: 0 12px; }
@media (max-width: 768px) {
  .col-half, .col-third, .col-two-thirds, .col-quarter, .col-three-quarters {
    flex: 0 0 100%; max-width: 100%;
  }
  .admin-sidebar { transform: translateX(-100%); transition: transform .3s; }
  .admin-sidebar.open { transform: none; }
  .admin-main { margin-left: 0; padding: 20px; }
}
.text-gold { color: var(--gold); }
.text-burgundy { color: var(--burgundy); }
.text-muted { color: var(--warm-gray); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.p-3 { padding: 24px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.w-100 { width: 100%; }
.hidden { display: none !important; }

/* ── Scrollbar ────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ivory-dark); }
::-webkit-scrollbar-thumb { background: var(--warm-gray-lt); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--burgundy); }

/* ── Photo gallery ────────────────────────────────────── */
.photo-strip { display: flex; gap: 8px; overflow-x: auto; padding: 8px 0; }
.photo-strip img { height: 120px; border-radius: var(--radius); object-fit: cover; cursor: pointer; flex-shrink: 0; }
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.9); z-index: 20000;
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); }
.lightbox-close {
  position: fixed; top: 20px; right: 24px; color: #fff; font-size: 2rem;
  cursor: pointer; background: none; border: none; z-index: 20001;
}
