/* =====================================================
   Good Shit Guide — styles.css
   Canonical stylesheet. Green & gold, Savannah-built.
   ===================================================== */

/* ===== ROOT TOKENS ===== */
:root {
  --green-deepest:  #0a1c12;
  --green-deep:     #0f2618;
  --green-mid:      #1a3d28;
  --green-light:    #2a5a3c;
  --gold-bright:    #d4a843;
  --gold-mid:       #b8922e;
  --gold-dim:       #8a6d22;
  --amber-glow:     #e8a830;
  --cream-bright:   #f5ead8;
  --cream-mid:      #e8d9be;
  --cream-dim:      #c9b899;
  --text-primary:   #f5ead8;
  --text-secondary: #c9b899;
  --text-muted:     #7a9a85;
  --border-subtle:  rgba(212, 168, 67, 0.18);
  --border-mid:     rgba(212, 168, 67, 0.35);
  --border-gold:    rgba(212, 168, 67, 0.65);
  --card-bg:        rgba(15, 38, 24, 0.85);
  --card-bg-hover:  rgba(26, 61, 40, 0.9);
  --panel-bg:       rgba(10, 28, 18, 0.94);
  --shadow-soft:    0 10px 30px rgba(0,0,0,0.18);
  --grain-opacity:  0.032;
  --oak-opacity:    0.07;
  --radius-sm:      4px;
  --radius-md:      10px;
  --radius-lg:      14px;
  --nav-height:     60px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--green-deepest);
  color: var(--text-primary);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Moss-fiber texture */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    repeating-linear-gradient(97deg, transparent, transparent 180px,
      rgba(212,168,67,0.015) 180px, rgba(212,168,67,0.015) 181px),
    repeating-linear-gradient(175deg, transparent, transparent 220px,
      rgba(26,61,40,0.08) 220px, rgba(26,61,40,0.08) 221px);
  pointer-events: none;
  z-index: 0;
}

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

* { position: relative; z-index: 1; }

/* ===== ACCESSIBILITY ===== */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ===== TYPOGRAPHY ===== */
.serif { font-family: 'Cormorant Garamond', serif; }
h1, h2, h3 { font-family: 'Cinzel', serif; font-weight: 600; }
h4, h5     { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-style: italic; }
a { color: var(--gold-bright); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--cream-bright); }

/* ===== DIVIDERS ===== */
.gold-rule {
  border: none; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-subtle) 15%, var(--gold-dim) 50%, var(--border-subtle) 85%, transparent 100%);
  margin: 3rem 0;
  position: relative;
}
.gold-rule::before {
  content: '\2726';
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: var(--green-deepest);
  padding: 0 1.1rem;
  font-family: 'Cinzel', serif; font-size: 0.65rem;
  letter-spacing: 0.4em; color: var(--gold-dim); line-height: 1;
}
.ornament {
  text-align: center; color: var(--gold-bright); font-size: 1.1rem;
  letter-spacing: 0.5em; margin: 0.5rem 0; font-family: 'Cinzel', serif;
}

/* ===== LAYOUT ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section   { padding: 4rem 0; }
.hidden    { display: none !important; }

/* ===== NAV ===== */
header {
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(10,28,18,0.96);
  backdrop-filter: blur(8px);
  position: sticky; top: 0; z-index: 100;
  min-height: var(--nav-height);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1.5rem; max-width: 1100px; margin: 0 auto;
}

/* Nav logo — works as both div and anchor */
.nav-logo,
a.nav-logo {
  font-family: 'Cinzel', serif; font-size: 1.05rem; font-weight: 700;
  color: var(--gold-bright); letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none;
  display: flex; align-items: center; gap: 0.4rem;
}
.nav-logo span { color: var(--cream-mid); font-weight: 400; }
.nav-logo img  { max-height: 32px; width: auto; vertical-align: middle; }

/* Desktop nav — explicitly row so * { position:relative } can't collapse it */
.nav-desktop {
  display: flex;
  align-items: center;
}
.nav-desktop ul {
  display: flex;
  flex-direction: row;   /* explicit — prevents any inherited column */
  align-items: center;
  gap: 2rem;
  list-style: none;
  flex-wrap: nowrap;
}
.nav-desktop ul li {
  display: flex;
  align-items: center;
}
nav a {
  font-family: 'Cinzel', serif; font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-secondary);
  transition: color 0.2s; position: relative;
}
nav a:hover { color: var(--gold-bright); }
nav a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold-bright);
  transform: scaleX(0); transition: transform 0.2s; transform-origin: left;
}
nav a:hover::after { transform: scaleX(1); }

/* ===== HAMBURGER BUTTON ===== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.nav-hamburger:hover { border-color: var(--border-mid); }
.nav-hamburger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--gold-bright);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
/* X state */
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== MOBILE DRAWER ===== */
.nav-drawer {
  max-height: 0;
  overflow: hidden;
  background: rgba(10,28,18,0.98);
  border-top: 1px solid transparent;
  transition: max-height 0.35s ease, border-color 0.2s;
}
.nav-drawer.open {
  max-height: 400px;
  border-top-color: var(--border-subtle);
}
.nav-drawer ul { list-style: none; padding: 0.5rem 0 1rem; }
.nav-drawer__link {
  display: flex;
  align-items: center;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.9rem 1.5rem;
  min-height: 44px;
  border-left: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.nav-drawer__link:hover,
.nav-drawer__link:active {
  color: var(--gold-bright);
  border-left-color: var(--gold-bright);
  background: rgba(26,61,40,0.4);
}

/* Page overlay behind open drawer */
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 90;
  backdrop-filter: blur(2px);
}
.nav-overlay.visible { display: block; }

/* ===== HERO ===== */
.hero {
  min-height: 72vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 5rem 1.5rem 4rem;
  border-bottom: 1px solid var(--border-subtle);
  position: relative; overflow: hidden;
  gap: 0.75rem;
  background: radial-gradient(ellipse 70% 60% at 50% 45%,
    rgba(26,61,40,0.18) 0%, rgba(10,28,18,0.0) 60%, rgba(6,16,10,0.45) 100%);
}

/* Live oak — left */
.hero::before {
  content: ''; position: absolute; top: 0; left: -60px;
  width: 55%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 600'%3E%3Cg fill='none'%3E%3Cpath d='M-20 0 Q60 120 200 180 Q320 230 460 210' stroke='%230f2618' stroke-width='18' stroke-linecap='round'/%3E%3Cpath d='M120 90 Q180 60 260 80 Q320 95 380 75' stroke='%230f2618' stroke-width='11' stroke-linecap='round'/%3E%3Cpath d='M200 180 Q230 140 290 130 Q340 125 390 140' stroke='%230f2618' stroke-width='8' stroke-linecap='round'/%3E%3Cellipse cx='380' cy='75' rx='28' ry='14' fill='%230a1c12' opacity='0.6'/%3E%3Cellipse cx='390' cy='140' rx='24' ry='12' fill='%230a1c12' opacity='0.6'/%3E%3Cellipse cx='310' cy='125' rx='22' ry='11' fill='%230a1c12' opacity='0.6'/%3E%3Cellipse cx='460' cy='210' rx='26' ry='13' fill='%230a1c12' opacity='0.55'/%3E%3Cpath d='M380 75 Q382 100 378 130 Q374 155 380 175' stroke='%231a3d28' stroke-width='1.5' opacity='0.5'/%3E%3Cpath d='M390 140 Q388 165 392 195' stroke='%231a3d28' stroke-width='1.5' opacity='0.45'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: top left;
  background-size: contain; opacity: var(--oak-opacity);
  pointer-events: none; z-index: 0;
}

/* Live oak — right (mirror) */
.hero::after {
  content: ''; position: absolute; top: 0; right: -60px;
  width: 55%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 600'%3E%3Cg fill='none' transform='scale(-1,1) translate(-500,0)'%3E%3Cpath d='M-20 0 Q60 120 200 180 Q320 230 460 210' stroke='%230f2618' stroke-width='18' stroke-linecap='round'/%3E%3Cpath d='M120 90 Q180 60 260 80 Q320 95 380 75' stroke='%230f2618' stroke-width='11' stroke-linecap='round'/%3E%3Cpath d='M200 180 Q230 140 290 130 Q340 125 390 140' stroke='%230f2618' stroke-width='8' stroke-linecap='round'/%3E%3Cellipse cx='380' cy='75' rx='28' ry='14' fill='%230a1c12' opacity='0.6'/%3E%3Cellipse cx='390' cy='140' rx='24' ry='12' fill='%230a1c12' opacity='0.6'/%3E%3Cellipse cx='460' cy='210' rx='26' ry='13' fill='%230a1c12' opacity='0.55'/%3E%3Cpath d='M380 75 Q382 100 378 130' stroke='%231a3d28' stroke-width='1.5' opacity='0.5'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: top right;
  background-size: contain; opacity: var(--oak-opacity);
  pointer-events: none; z-index: 0;
}

.hero > * { position: relative; z-index: 1; }

.hero-eyebrow {
  font-family: 'Cinzel', serif; font-size: 0.68rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold-mid);
  margin-bottom: 0;
}
.hero-tagline {
  font-size: 0.82rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); border: 1px solid var(--border-subtle);
  padding: 0.5rem 1.5rem; border-radius: 2px;
  margin-top: 0;
}

/* Hero logo — the visual title */
.logo,
.hero-logo {
  max-width: 340px;
  width: 65%;
  height: auto;
  display: block;
  margin: 0.25rem auto;
  animation: gaslightFlicker 8s ease-in-out infinite;
}

@keyframes gaslightFlicker {
  0%, 100% { opacity: 1;    text-shadow: 0 0 40px rgba(212,168,67,0.12); }
  48%       { opacity: 0.97; text-shadow: 0 0 60px rgba(212,168,67,0.18); }
  50%       { opacity: 0.95; text-shadow: 0 0 30px rgba(212,168,67,0.08); }
  52%       { opacity: 0.97; text-shadow: 0 0 50px rgba(212,168,67,0.15); }
}

/* Spanish moss strands */
.moss-bar {
  display: flex; gap: 0.8rem; justify-content: center;
  margin: 2rem 0 2.5rem; opacity: 0.55;
}
.moss-strand {
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--green-light) 30%, var(--gold-dim) 70%, transparent);
  animation: sway 4s ease-in-out infinite;
}
.moss-strand:nth-child(1){height:48px;animation-delay:0s}
.moss-strand:nth-child(2){height:64px;animation-delay:.3s}
.moss-strand:nth-child(3){height:38px;animation-delay:.6s}
.moss-strand:nth-child(4){height:72px;animation-delay:.9s}
.moss-strand:nth-child(5){height:44px;animation-delay:.4s}
.moss-strand:nth-child(6){height:58px;animation-delay:1.1s}
.moss-strand:nth-child(7){height:36px;animation-delay:.2s}
@keyframes sway {
  0%, 100% { transform: rotate(-3deg) translateX(-2px); }
  50%       { transform: rotate(3deg)  translateX(2px);  }
}

/* ===== ADVENTURE SELECTOR ===== */
.adventure-section {
  padding: 3.5rem 0; text-align: center;
  border-bottom: 1px solid var(--border-subtle);
  background-image:
    radial-gradient(ellipse 22px 14px at 11px 7px,  rgba(15,38,24,0.45) 55%, transparent 70%),
    radial-gradient(ellipse 22px 14px at 33px 21px, rgba(15,38,24,0.45) 55%, transparent 70%),
    radial-gradient(ellipse 22px 14px at 11px 35px, rgba(12,30,18,0.35) 55%, transparent 70%),
    radial-gradient(ellipse 22px 14px at 33px 49px, rgba(15,38,24,0.35) 55%, transparent 70%);
  background-size: 44px 56px;
}

.section-label {
  font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold-dim); margin-bottom: 0.75rem;
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
}
.section-label::before,
.section-label::after {
  content: ''; display: inline-block; width: 24px; height: 1px;
  background: var(--gold-dim); opacity: 0.5;
}
.section-title {
  font-family: 'Cinzel', serif; font-size: clamp(1.2rem,3vw,1.8rem);
  font-weight: 600; color: var(--cream-bright); margin-bottom: 0.5rem;
}
.section-body {
  font-family: 'Cormorant Garamond', serif; font-size: 1.15rem;
  font-style: italic; color: var(--text-secondary);
  margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto;
}
.sec-header { text-align: center; margin-bottom: 2.5rem; }

/* Transport grid — 2 col, Show Everything spans full width */
.transport-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; max-width: 640px; margin: 0 auto 2.5rem;
}
.transport-btn--full { grid-column: 1 / -1; }
.transport-btn {
  background: var(--card-bg); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm); padding: 1.5rem 1rem;
  cursor: pointer; transition: all 0.25s; text-align: center; color: var(--text-secondary);
}
.transport-btn:hover {
  background: var(--card-bg-hover); border-color: var(--border-mid);
  color: var(--cream-bright); transform: translateY(-2px);
}
.transport-btn.active {
  background: var(--green-mid); border-color: var(--gold-bright);
  color: var(--cream-bright); box-shadow: 0 0 0 1px var(--gold-dim) inset;
}
.transport-icon  { font-size: 2rem; margin-bottom: 0.6rem; display: block; }
.transport-label {
  font-family: 'Cinzel', serif; font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; display: block; margin-bottom: 0.3rem;
}
.transport-desc {
  font-family: 'Cormorant Garamond', serif; font-size: 0.95rem;
  font-style: italic; color: var(--text-muted);
}

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.card,
.activity-card {
  background: var(--card-bg); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); overflow: hidden;
  transition: all 0.25s; box-shadow: var(--shadow-soft);
}
.card:hover,
.activity-card:hover {
  background: var(--card-bg-hover); border-color: var(--border-mid); transform: translateY(-3px);
}
.activity-card {
  position: relative;
  background: linear-gradient(145deg, rgba(15,38,24,0.92) 0%, rgba(12,30,18,0.85) 100%);
}
.activity-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold-dim), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.activity-card:hover::before { opacity: 1; }
.activity-card.is-pick::before { opacity: 0.7; }
.activity-card__body    { padding: 0.95rem 1.15rem 1.1rem; }
.activity-card__top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 0.75rem; margin-bottom: 0.3rem;
}
.activity-card__top h3,
.activity-card h3 {
  font-family: 'Cinzel', serif; font-size: 0.95rem; font-weight: 600;
  color: var(--cream-bright); letter-spacing: 0.03em; margin: 0;
}
.activity-card__subline {
  font-family: 'Cormorant Garamond', serif; font-size: 1rem;
  font-style: italic; color: var(--text-secondary); margin-bottom: 0.6rem;
}
.activity-card p {
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 0.65rem;
}
.activity-card__meta { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.6rem; }
.card-top    { padding: 1.4rem 1.4rem 0.8rem; border-bottom: 1px solid var(--border-subtle); }
.card-body   { padding: 0.8rem 1.4rem 1.2rem; }
.card-category {
  font-family: 'Cinzel', serif; font-size: 0.58rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold-dim); margin-bottom: 0.5rem;
}
.card-title {
  font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 600;
  color: var(--cream-bright); letter-spacing: 0.03em; margin-bottom: 0.3rem;
}
.card-subtitle {
  font-family: 'Cormorant Garamond', serif; font-size: 1rem;
  font-style: italic; color: var(--text-secondary);
}
.card-desc  { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 0.8rem; }
.card-meta,
.activity-card__meta { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* ===== TAGS & BADGES ===== */
.tag, .badge {
  font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.25rem 0.6rem;
  border: 1px solid var(--border-mid); border-radius: 999px;
  color: var(--gold-dim); background: rgba(255,255,255,0.02);
  white-space: nowrap; flex-shrink: 0;
}
.badge--pick { border-color: var(--border-gold); color: var(--gold-bright); background: rgba(26,61,40,0.88); }
.tag.walk  { border-color: rgba(50,180,100,0.4);  color: #50b470; }
.tag.drive { border-color: rgba(180,120,50,0.4);  color: #c08840; }
.tag.ride  { border-color: rgba(100,140,200,0.4); color: #7899cc; }
.tag.bike  { border-color: rgba(160,200,100,0.4); color: #8ab856; }
.tag.boat  { border-color: rgba(90,140,200,0.5);  color: #86aeda; }
.rating-stars { color: var(--gold-dim); font-size: 0.78rem; margin-left: 0.4rem; }

/* ===== MUSIC ===== */
#music .container { max-width: 860px; }

/* Sticky day nav */
.music-day-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 0 2rem;
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: var(--nav-height);
  z-index: 50;
  background: rgba(10,28,18,0.97);
  backdrop-filter: blur(10px);
  padding: 0;
}
.music-day-nav__link {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none;
  padding: 0.85rem 1.1rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  min-height: 44px; display: inline-flex; align-items: center;
}
.music-day-nav__link:hover,
.music-day-nav__link.active {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-bright);
}

/* Day sections */
.day-section { margin-bottom: 3rem; }

.music-day-header {
  display: flex; align-items: baseline; gap: 1rem;
  margin-bottom: 0.75rem; padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-subtle);
}
.music-day-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 700; color: var(--cream-bright);
  letter-spacing: 0.03em; line-height: 1;
}
.music-day-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-style: italic;
  color: var(--gold-dim); letter-spacing: 0.1em;
}
.music-day-count {
  margin-left: auto;
  font-family: 'Cinzel', serif; font-size: 0.6rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted);
}

/* Event rows */
.music-event-list { display: flex; flex-direction: column; gap: 2px; }

.music-event {
  display: grid;
  grid-template-columns: 108px 1fr auto;
  align-items: center;
  gap: 0 1.25rem;
  padding: 0.75rem 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid transparent;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  cursor: default;
}
.music-event:hover {
  background: var(--card-bg-hover);
  border-left-color: var(--gold-dim);
  transform: translateX(3px);
}
.music-event--pick {
  border-left-color: var(--gold-bright);
  background: rgba(26,61,40,0.75);
}
.music-event--pick:hover { border-left-color: var(--gold-bright); }

.music-event__time {
  font-family: 'Cinzel', serif; font-size: 0.72rem;
  letter-spacing: 0.06em; color: var(--gold-dim); white-space: nowrap;
}
.music-event--pick .music-event__time { color: var(--gold-bright); }

.music-event__artist {
  font-family: 'Cinzel', serif; font-size: 0.88rem; font-weight: 600;
  color: var(--cream-bright); letter-spacing: 0.03em; line-height: 1.3;
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.4rem;
}

.music-event__venue {
  font-family: 'Cormorant Garamond', serif; font-size: 0.88rem;
  font-style: italic; color: var(--text-secondary);
  text-align: right; white-space: nowrap;
  display: flex; align-items: center; gap: 0.35rem; justify-content: flex-end;
}

/* Legacy card styles (kept for CSV upload fallback) */
.music-upload-zone {
  border: 1px dashed var(--border-mid); border-radius: var(--radius-sm);
  padding: 3rem 2rem; text-align: center; margin-bottom: 2rem;
  background: rgba(15,38,24,0.4); cursor: pointer; transition: all 0.25s;
}
.music-upload-zone:hover { border-color: var(--border-gold); background: rgba(26,61,40,0.5); }
.music-upload-zone p {
  font-family: 'Cormorant Garamond', serif; font-size: 1.05rem;
  font-style: italic; color: var(--text-muted); margin-top: 0.5rem;
}
.upload-icon { font-size: 2rem; color: var(--gold-dim); }
#csv-input   { display: none; }
.week-badge {
  display: inline-block; font-family: 'Cinzel', serif; font-size: 0.62rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  background: transparent; border: 1px solid var(--gold-dim);
  box-shadow: inset 0 0 0 2px rgba(212,168,67,0.06);
  color: var(--gold-bright); padding: 0.3rem 0.9rem;
  border-radius: 2px; margin-bottom: 1.5rem;
}

/* ===== CATEGORY FILTERS ===== */
.category-filters {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 1.75rem; justify-content: center;
}
.cat-btn {
  font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 0.45rem 1rem;
  background: transparent; border: 1px solid var(--border-subtle);
  border-radius: 2px; color: var(--text-muted); cursor: pointer; transition: all 0.2s;
  min-height: 36px;
}
.cat-btn:hover  { border-color: var(--border-mid); color: var(--cream-mid); }
.cat-btn.active { border-color: var(--gold-dim); color: var(--gold-bright); background: rgba(26,61,40,0.6); }

/* ===== LOAD MORE ===== */
.explore-footer {
  text-align: center; margin-top: 2.5rem;
  padding-top: 1.5rem; border-top: 1px solid var(--border-subtle);
}
.load-more-btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: 'Cinzel', serif; font-size: 0.68rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold-bright);
  background: transparent; border: 1px solid var(--border-gold);
  border-radius: 2px; padding: 0.75rem 2rem; cursor: pointer; transition: all 0.25s;
  min-height: 44px;
}
.load-more-btn:hover { background: var(--green-mid); transform: translateY(-1px); }
.load-more-btn::before { content: '\2193'; font-size: 1rem; color: var(--gold-dim); }
.explore-count {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 0.88rem; color: var(--text-muted); margin-top: 0.75rem;
}

/* ===== RANDOMIZER ===== */
.randomizer-shell {
  max-width: 680px; margin: 0 auto;
  background: linear-gradient(160deg, rgba(15,38,24,0.92) 0%, rgba(10,28,18,0.96) 100%);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-sm);
  padding: 2rem 2rem 1.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25), inset 0 1px 0 rgba(212,168,67,0.08);
}
.randomizer-filters {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; margin-bottom: 1.75rem;
}
.randomizer-filter-group { display: flex; flex-direction: column; gap: 0.4rem; }
.randomizer-label {
  font-family: 'Cinzel', serif; font-size: 0.6rem;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-dim);
}
.randomizer-select {
  background: var(--green-deep); border: 1px solid var(--border-mid);
  border-radius: 2px; color: var(--cream-bright);
  font-family: 'Lato', sans-serif; font-size: 0.85rem;
  padding: 0.5rem 2rem 0.5rem 0.75rem; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%238a6d22'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.75rem center;
  cursor: pointer; transition: border-color 0.2s;
  min-height: 44px;
}
.randomizer-select:hover,
.randomizer-select:focus { border-color: var(--border-gold); outline: none; }
.randomizer-select optgroup { color: var(--gold-dim); font-style: normal; }
.randomizer-select option   { color: var(--cream-bright); background: var(--green-deep); }
.randomizer-action { text-align: center; margin-bottom: 1.5rem; }
.randomizer-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Cinzel', serif; font-size: 0.75rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green-deepest); background: var(--gold-bright);
  border: none; border-radius: 2px; padding: 0.85rem 2.5rem;
  cursor: pointer; transition: all 0.2s; min-height: 44px;
}
.randomizer-btn:hover  { background: var(--gold-mid); transform: translateY(-1px); }
.randomizer-btn:active { transform: scale(0.98); }
.randomizer-btn--ghost {
  background: transparent; border: 1px solid var(--border-gold); color: var(--gold-bright);
}
.randomizer-btn--ghost:hover { background: var(--green-mid); }
.randomizer-btn__icon { font-size: 1.1rem; }
.randomizer-panel {
  border-top: 1px solid var(--border-subtle); padding-top: 1.5rem;
  margin-top: 0.5rem; animation: fadeUp 0.35s ease;
}
.randomizer-panel.hidden { display: none; }
.randomizer-again        { text-align: center; margin-top: 1.25rem; }
.randomizer-again.hidden { display: none; }
.randomizer-result h3 {
  font-family: 'Cinzel', serif; font-size: 1.1rem; color: var(--cream-bright); margin-bottom: 0.25rem;
}
.randomizer-result p { color: var(--text-secondary); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== MAP ===== */
#map {
  height: 620px; width: 100%; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-subtle); box-shadow: var(--shadow-soft); margin-bottom: 2rem;
}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip { background: var(--green-deep); color: var(--text-primary); }
.map-popup__title {
  font-family: 'Cinzel', serif; font-size: 0.92rem; color: var(--cream-bright); margin-bottom: 0.2rem;
}
.map-popup__meta { color: var(--text-secondary); font-size: 0.82rem; }

/* ===== MISC ===== */
.filter-notice {
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
  font-style: italic; color: var(--text-muted); text-align: center;
  padding: 2.5rem 1rem; border: 1px dashed var(--border-subtle);
  border-radius: var(--radius-sm); display: none; grid-column: 1 / -1;
}
.results-count {
  margin: 1rem 0 1.2rem; color: var(--text-secondary);
  font-family: 'Cinzel', serif; font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.panel {
  margin: 1rem 0 1.5rem; padding: 1rem 1.1rem;
  background: var(--card-bg); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); box-shadow: var(--shadow-soft);
}
.toolbar-row { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.toolbar-row button {
  min-height: 44px; border-radius: 6px;
  border: 1px solid var(--border-mid); background: rgba(15,38,24,0.95);
  color: var(--text-primary); padding: 0.5rem 1rem;
  font-family: 'Cinzel', serif; font-size: 0.68rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s;
}
.toolbar-row button:hover  { background: var(--card-bg-hover); }
.toolbar-row button.active { background: var(--green-mid); border-color: var(--gold-bright); color: var(--cream-bright); }

/* ===== ABOUT ===== */
#about {
  background-image:
    radial-gradient(ellipse 22px 14px at 11px 7px,  rgba(15,38,24,0.45) 55%, transparent 70%),
    radial-gradient(ellipse 22px 14px at 33px 21px, rgba(15,38,24,0.45) 55%, transparent 70%),
    radial-gradient(ellipse 22px 14px at 11px 35px, rgba(12,30,18,0.35) 55%, transparent 70%),
    radial-gradient(ellipse 22px 14px at 33px 49px, rgba(15,38,24,0.35) 55%, transparent 70%);
  background-size: 44px 56px;
}
.about-container {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.5rem;
}
.about-body {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-top: 1.25rem;
  text-align: left;
}
.about-curation {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 1rem;
  text-align: center;
}
#about .serif { position: relative; }
#about .serif:first-of-type::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif; font-size: 5rem; line-height: 0;
  position: absolute; top: 2.5rem; left: -1.5rem;
  color: var(--gold-dim); opacity: 0.35;
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border-subtle);
  padding: 3rem 0; text-align: center; margin-top: 4rem;
}
.footer-logo {
  font-family: 'Cinzel', serif; font-size: 1.2rem; font-weight: 700;
  color: var(--gold-bright); letter-spacing: 0.12em; margin-bottom: 0.75rem;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
}
.footer-logo img {
  max-height: 60px; width: auto; vertical-align: middle;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem;
}
.footer-links {
  display: flex; justify-content: center; gap: 2rem; list-style: none;
  font-family: 'Cinzel', serif; font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--gold-bright); }
.footer-copy { margin-top: 1.5rem; font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.05em; }

/* ===== FADE-IN ===== */
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .randomizer-filters { grid-template-columns: 1fr; }
  .toolbar-row { flex-direction: column; }
}

@media (max-width: 640px) {
  /* Hamburger takes over — hide desktop nav */
  .nav-desktop { display: none; }
  .nav-hamburger { display: flex; }

  .transport-grid { grid-template-columns: 1fr; }
  .transport-btn--full { grid-column: 1; }
  .card-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 2.5rem 1.5rem 2rem; gap: 0.6rem; }
  .hero::before, .hero::after { opacity: calc(var(--oak-opacity) * 0.6); }
  .logo, .hero-logo { max-width: 220px; width: 75%; }
  .category-filters { gap: 0.4rem; }
  .cat-btn { font-size: 0.58rem; padding: 0.4rem 0.7rem; }
  #map { height: 460px; }
  #about .serif:first-of-type::before { display: none; }
  .music-day-nav { top: var(--nav-height); }
  .music-day-nav__link { padding: 0.75rem 0.8rem; font-size: 0.6rem; }
}

@media (max-width: 480px) {
  .transport-btn { padding: 1rem 0.75rem; }
  .transport-icon { font-size: 1.5rem; margin-bottom: 0.3rem; }
}

@media (max-width: 600px) {
  .music-event { grid-template-columns: 1fr; gap: 0.2rem; }
  .music-event__venue {
    text-align: left; justify-content: flex-start;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 100%;
  }
  .music-event__time { font-size: 0.68rem; }
}

/* Pick badge icon — inline SVG next to artist name in music rows */
.pick-badge {
  height: 18px;
  width: auto;
  vertical-align: middle;
  flex-shrink: 0;
  opacity: 0.9;
  filter: drop-shadow(0 0 3px rgba(212,168,67,0.4));
}

/* ── Happenings ──────────────────────────────────────────────────── */
.happenings-list {
  max-width: 720px;
  margin: 0 auto;
}

.happenings-day {
  margin-bottom: 2.5rem;
}

.happenings-day-header {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 0.4rem;
  margin-bottom: 1rem;
}

.happenings-event {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.happenings-event:last-child {
  border-bottom: none;
}

.happenings-event__main {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.happenings-event__name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-primary);
  font-weight: 600;
}

.happenings-event__note {
  font-size: 0.8rem;
  color: var(--gold-dim);
  font-style: italic;
}

.happenings-event__meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.happenings-event__time {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.happenings-event__venue {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.happenings-event__price {
  font-size: 0.72rem;
  color: var(--gold-dim);
  background: rgba(var(--gold-rgb, 180,140,60), 0.08);
  border: 1px solid rgba(var(--gold-rgb, 180,140,60), 0.2);
  border-radius: 2px;
  padding: 0.1rem 0.45rem;
  letter-spacing: 0.05em;
}

@media (min-width: 600px) {
  .happenings-event {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .happenings-event__meta {
    text-align: right;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-end;
  }
}

/* ── Happenings ──────────────────────────────────────────────────── */
.happenings-list { max-width: 720px; margin: 0 auto; }
.happenings-day { margin-bottom: 2.5rem; }
.happenings-day-header {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 0.4rem;
  margin-bottom: 1rem;
}
.happenings-event {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.happenings-event:last-child { border-bottom: none; }
.happenings-event__main { display: flex; align-items: baseline; gap: 0.6rem; flex-wrap: wrap; }
.happenings-event__name { font-family: var(--font-serif); font-size: 1.05rem; color: var(--text-primary); font-weight: 600; }
.happenings-event__note { font-size: 0.8rem; color: var(--gold-dim); font-style: italic; }
.happenings-event__meta { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; }
.happenings-event__time { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.04em; }
.happenings-event__venue { font-size: 0.78rem; color: var(--text-secondary); }
.happenings-event__price {
  font-size: 0.72rem;
  color: var(--gold-dim);
  background: rgba(180,140,60,0.08);
  border: 1px solid rgba(180,140,60,0.2);
  border-radius: 2px;
  padding: 0.1rem 0.45rem;
  letter-spacing: 0.05em;
}
@media (min-width: 600px) {
  .happenings-event { flex-direction: row; justify-content: space-between; align-items: center; }
  .happenings-event__meta { text-align: right; flex-direction: column; gap: 0.25rem; align-items: flex-end; }
}