:root {
  --paper: #f6f1e7;
  --paper-2: #eee6d6;
  --cream: #fffcf7;
  --ink: #1d1812;
  --muted: #5e564c;
  --line: rgba(29, 24, 18, 0.12);
  --line-strong: rgba(29, 24, 18, 0.22);
  --accent: #c44521;
  --accent-dark: #9c3418;
  --forest: #2c5e4f;
  --gold: #b8892d;
  --shadow: 0 14px 40px rgba(29, 24, 18, 0.08);
  --radius: 18px;
  --header: 76px;
  --font: "Figtree", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, #fde8c8 0%, transparent 55%),
    radial-gradient(900px 400px at 110% 0%, #f3d7c4 0%, transparent 50%),
    var(--paper);
  font-family: var(--font);
  line-height: 1.55;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.12; margin: 0 0 0.4em; font-weight: 560; }
p { margin: 0 0 1em; color: var(--muted); }

.wrap { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.eyebrow {
  display: inline-block;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: 1px solid var(--line-strong);
  background: var(--cream);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 650;
  cursor: pointer;
  transition: 0.18s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-accent { background: var(--accent); border-color: var(--accent); color: white; }
.btn-accent:hover { background: var(--accent-dark); }
.btn-forest { background: var(--forest); border-color: var(--forest); color: #f6f1e7; }
.btn-ghost { background: transparent; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(246, 241, 231, 0.88);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: var(--header);
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 620;
  text-decoration: none;
  letter-spacing: -0.03em;
}
.logo span { color: var(--accent); }
.nav { display: flex; gap: 4px; margin-left: auto; }
.nav a {
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
}
.nav a:hover, .nav a.is-active { color: var(--ink); background: rgba(255,255,255,0.7); }
.header-cta { margin-left: 8px; }
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.hero { padding: 48px 0 24px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  letter-spacing: -0.05em;
  margin: 0 0 12px;
}
.hero .lede { font-size: 1.2rem; max-width: 34ch; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 22px 0 18px; }
.social-row { display: flex; gap: 16px; flex-wrap: wrap; }
.social-row a { color: var(--muted); text-decoration: none; font-weight: 650; font-size: 0.92rem; }
.social-row a:hover { color: var(--accent); }

.mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  grid-template-rows: 150px 170px 140px;
  gap: 12px;
  transform: rotate(-1.5deg);
}
.mosaic img, .mosaic .tile {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
  background: #ddd;
}
.mosaic .span-2 { grid-column: span 2; }
.mosaic .tall { grid-row: span 2; }

.section { padding: 56px 0; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 0; }

.event-list { display: grid; gap: 14px; }
.event-card {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 18px;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px 18px;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset;
}
.event-card:hover { border-color: #d9b089; transform: translateY(-2px); }
.date-badge {
  background: var(--paper-2);
  border-radius: 16px;
  text-align: center;
  padding: 10px 8px;
}
.date-badge .mon { font-size: 0.72rem; letter-spacing: 0.14em; font-weight: 800; color: var(--accent); }
.date-badge .day { font-family: var(--display); font-size: 1.8rem; line-height: 1; }
.event-card h3 { margin: 0 0 4px; font-size: 1.2rem; }
.event-meta { color: var(--muted); font-size: 0.92rem; }
.chip {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f3e0c8;
  color: #7a3b12;
  font-size: 0.75rem;
  font-weight: 700;
  margin-right: 6px;
}

.artist-grid, .venue-grid, .news-grid, .photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  display: block;
  box-shadow: var(--shadow);
}
.card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.card-body { padding: 16px 16px 18px; }
.card-body h3 { margin: 0 0 6px; font-size: 1.25rem; }
.card:hover { transform: translateY(-3px); }

.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.filter-btn {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 650;
  color: var(--muted);
}
.filter-btn.is-on, .filter-btn:hover { background: var(--ink); color: var(--cream); }

.search-bar {
  display: flex;
  gap: 10px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 8px 8px 16px;
  margin-bottom: 18px;
}
.search-bar input {
  border: 0;
  outline: 0;
  background: transparent;
  width: 100%;
  padding: 8px 0;
}
.view-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.view-tabs .btn.is-on {
  background: var(--forest);
  color: #f6f1e7;
  border-color: var(--forest);
}

main { min-height: calc(100vh - 220px); }
.page-hero { padding: 42px 0 10px; }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }

.profile {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  padding-bottom: 40px;
}
.profile img { border-radius: 28px; width: 100%; height: 460px; object-fit: cover; }
.kv { display: grid; gap: 8px; margin: 18px 0; }
.kv div { color: var(--muted); }
.kv strong { color: var(--ink); }

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.cal-cell {
  min-height: 92px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px;
  text-align: left;
  cursor: pointer;
}
.cal-cell strong { display: block; font-size: 0.85rem; }
.cal-cell .dot {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 700;
}
.cal-cell.is-muted { opacity: 0.4; }
.cal-cell.is-on { outline: 2px solid var(--accent); }
.cal-head { text-align: center; font-size: 0.78rem; font-weight: 800; color: var(--muted); padding-bottom: 6px; }

#event-map { height: 460px; border-radius: 24px; overflow: hidden; border: 1px solid var(--line); margin-bottom: 22px; }

.form {
  position: relative;
  display: grid;
  gap: 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
}
.form label { font-weight: 700; font-size: 0.88rem; }
.form input, .form select, .form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 12px 12px;
}
.form textarea { min-height: 140px; resize: vertical; }
.notice {
  display: none;
  background: #e7f3ec;
  color: #21553f;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 650;
}
.notice.show { display: block; }
.notice.is-error { background: #f8e4dc; color: #8a2b12; }
.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; }
.video-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; }
.video-grid iframe { width: 100%; aspect-ratio: 16/9; border: 0; border-radius: 20px; }

.site-footer {
  margin-top: 40px;
  padding: 36px 0 24px;
  border-top: 1px solid var(--line);
  background: #efe7d8;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 24px; }
.site-footer a { color: var(--muted); }
.tiny { font-size: 0.85rem; color: var(--muted); }

.empty { padding: 28px; text-align: center; color: var(--muted); }

@media (max-width: 860px) {
  .nav, .header-cta { display: none; }
  .nav.is-open, .header-cta.is-open {
    display: flex;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px;
    flex-direction: column;
  }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .hero-grid, .profile, .split, .artist-grid, .venue-grid, .news-grid, .video-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .event-card { grid-template-columns: 76px 1fr; }
  .event-card .hide-sm { display: none; }
  .mosaic {
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 120px 130px 120px;
    transform: none;
  }
  .calendar { grid-template-columns: repeat(7, minmax(0, 1fr)); }
  .cal-cell { min-height: 64px; padding: 4px; }
}
