@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300&family=Source+Serif+4:ital,wght@0,300;0,400;1,400&display=swap');

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

:root {
  --dark:    #0a0a10;
  --text:    #f0eee8;
  --muted:   rgba(240,238,232,0.55);
  --accent:  #e8c87a;
  --accent2: #c084fc;
  --bg:      #13111a;
  --surface: #1c1928;
  --border:  rgba(255,255,255,0.07);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Source Serif 4', Georgia, serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

/* ── Hero ── */
.sp-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform .1s linear;
  filter: brightness(0.7) saturate(1.2);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,16,0.2) 0%,
    rgba(10,10,16,0.3) 40%,
    rgba(10,10,16,0.85) 80%,
    rgba(10,10,16,1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 4rem 4rem;
  max-width: 900px;
}

.breadcrumb {
  display: flex;
  gap: .4rem;
  font-family: 'Raleway', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2rem;
}
.breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { opacity: .4; }

.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 1.5rem;
  max-width: 18ch;
}

.hero-quote blockquote {
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 44ch;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
}
.hero-quote em { color: var(--accent); font-style: italic; }

.hero-labels { display: flex; gap: .5rem; }
.label-tag {
  font-family: 'Raleway', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .22rem .7rem;
  border-radius: 2rem;
  background: rgba(232,200,122,0.15);
  border: 1px solid rgba(232,200,122,0.35);
  color: var(--accent);
  text-decoration: none;
  transition: all .2s;
}
.label-tag:hover { background: rgba(232,200,122,0.25); }

/* Gradient accent strip */
.accent-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), transparent);
  z-index: 3;
}

/* ── Content sections ── */
.sp-content { background: var(--bg); }

.sp-section, .sp-gallery {
  padding: 4rem 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.sp-section.visible, .sp-gallery.visible {
  opacity: 1;
  transform: translateY(0);
}

.sp-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 4rem;
}

/* ── Content grid ── */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 3rem;
  align-items: start;
}

.event-body {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text);
}
.event-body p { margin-bottom: 1.2rem; }
.event-body blockquote {
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
  border-left: 3px solid var(--accent);
  padding: .5rem 1rem;
  margin: 1.5rem 0;
}
.event-body blockquote em { color: var(--accent); }
.event-body img {
  height: 200px;
  width: auto;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border);
  margin-right: .75rem;
  cursor: zoom-in;
  transition: transform .3s, box-shadow .3s;
  vertical-align: bottom;
}
.event-body img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.event-body a { color: var(--accent); text-decoration: none; }

/* ── Sidebar meta ── */
.sp-meta {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 2rem;
}
.meta-item {}
.meta-key {
  font-family: 'Raleway', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .2rem;
}
.meta-val {
  font-size: .9rem;
  color: var(--text);
}

/* ── Gallery ── */
.gallery-label {
  font-family: 'Raleway', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: .75rem;
}
.gallery-grid figure { overflow: hidden; border-radius: 8px; }
.gallery-grid figure:first-child { grid-row: span 2; }
.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform .4s ease;
  filter: saturate(0.9) brightness(0.85);
}
.gallery-grid img:hover {
  transform: scale(1.05);
  filter: saturate(1.1) brightness(0.95);
}

/* ── Footer ── */
.sp-footer {
  padding: 2rem 4rem;
  border-top: 1px solid var(--border);
}
.back-link {
  font-family: 'Raleway', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.back-link:hover { color: var(--accent); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-content { padding: 2rem 1.5rem 3rem; }
  .sp-inner { padding: 0 1.5rem; }
  .content-grid { grid-template-columns: 1fr; }
  .sp-meta { position: static; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid figure:first-child { grid-row: auto; }
  .sp-footer { padding: 2rem 1.5rem; }
}
@media (max-width: 480px) {
  .hero-content { padding: 1.5rem 1rem 2.5rem; }
  .sp-inner { padding: 0 1rem; }
  .hero-title { font-size: 1.8rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { min-height: 200px; }
  .event-body img { height: 150px; }
}

/* ── Lightbox ── */
#lightbox{display:none;position:fixed;inset:0;background:rgba(0,0,0,.9);
  z-index:9999;align-items:center;justify-content:center;
  flex-direction:column;gap:.5rem}
#lightbox img{max-width:90vw;max-height:80vh;object-fit:contain}
.lb-close{position:fixed;top:1rem;right:1.5rem;font-size:2.5rem;
  color:#fff;cursor:pointer;line-height:1;opacity:.8}
.lb-close:hover{opacity:1}
.lb-nav{position:fixed;top:50%;transform:translateY(-50%);font-size:3rem;
  color:#fff;cursor:pointer;padding:.5rem;user-select:none;opacity:.7}
.lb-nav:hover{opacity:1}
.lb-prev{left:1rem}.lb-next{right:1rem}
.lb-caption{color:#ccc;font-size:.9rem;text-align:center;max-width:80vw}
