/* ── photon: Maxram forever! ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body.is-photon {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  font-weight: 400;
  background: #1a1a1a;
  color: #1a1a1a;
  overflow-x: hidden;
}

/* ── SECTIONS ── */
.ph-sec {
  position: relative;
  padding: 5rem 2rem;
  overflow: hidden;
}

/* ── HERO (rusty red) ── */
.ph-hero {
  background: linear-gradient(160deg, #b84a1a 0%, #8b3010 50%, #6a1e08 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ph-confetti-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ph-confetti-svg { width: 100%; height: 100%; }

.ph-hero__inner {
  position: relative;
  z-index: 2;
}

.ph-hero__year {
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(255,220,160,.7);
  margin-bottom: 1.5rem;
}

.ph-hero__title {
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  text-shadow: 4px 6px 0 rgba(0,0,0,.25);
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}
.ph-forever {
  display: block;
  color: #ffd060;
  font-size: 1.1em;
  text-shadow: 4px 6px 0 rgba(0,0,0,.3);
  -webkit-text-stroke: 2px rgba(180,90,0,.3);
}

.ph-hero__meta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.ph-chip {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 999px;
  background: rgba(0,0,0,.25);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
}
.ph-chip--date { background: rgba(255,200,60,.2); border-color: rgba(255,200,60,.5); }
.ph-chip--loc  { background: rgba(255,255,255,.1); }

.ph-hero__labels {
  display: flex;
  gap: .75rem;
  justify-content: center;
}
.label-tag {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 3px;
  text-decoration: none;
  background: rgba(255,255,255,.9);
  color: #8b3010;
  transition: background .2s, color .2s;
}
.label-tag:hover { background: #ffd060; color: #4a1a00; }

/* ── TRIBUTE (warm amber) ── */
.ph-tribute {
  background: linear-gradient(135deg, #e8a820 0%, #c87a10 100%);
  text-align: center;
  color: #fff;
}

.ph-rust-badge {
  margin: 0 auto 2rem;
  display: flex;
  justify-content: center;
}

.ph-section-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  margin-bottom: .75rem;
  text-shadow: 2px 3px 0 rgba(0,0,0,.2);
}
.ph-subline {
  font-size: 1.1rem;
  font-weight: 300;
  opacity: .9;
  letter-spacing: .03em;
}

/* ── STORY (cream) ── */
.ph-story {
  background: #fdf6e8;
  color: #2a1a08;
}
.ph-container { max-width: 1100px; margin: 0 auto; }
.ph-container--narrow { max-width: 680px; }

.ph-story__decor { margin: 1.5rem 0; }

.ph-prose {
  font-size: 1.2rem;
  line-height: 1.9;
  color: #3a2010;
}
.ph-prose p { margin-bottom: 1.5rem; }
.ph-prose p:last-child { margin-bottom: 0; }

/* Big decorative initial */
.ph-prose p:first-child::first-letter {
  float: left;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: .75;
  color: #b84a1a;
  margin: .1rem .25rem 0 0;
}

/* ── TOAST (forest green) ── */
.ph-toast {
  background: linear-gradient(135deg, #2e6040 0%, #1a4028 100%);
  text-align: center;
  color: #fff;
}
.ph-toast__stars {
  font-size: 1.5rem;
  letter-spacing: .3em;
  color: #ffd060;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.ph-toast__quote {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.4;
  color: #ffd060;
  max-width: 600px;
  margin: 0 auto 1rem;
  text-shadow: 1px 2px 8px rgba(0,0,0,.3);
}
.ph-toast__sub {
  font-size: .85rem;
  opacity: .7;
  letter-spacing: .05em;
}

/* ── END/FOOTER ── */
.ph-end {
  background: #1a1a1a;
  color: #ccc;
  padding: 3rem 2rem;
}
.ph-end .event-collections { color: #999; }
.ph-end .event-collections a { color: #ffd060; }

/* ── PARTICLE CANVAS ── */
#particle-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9990;
  opacity: 0;
  transition: opacity 1s;
}
#particle-canvas.active { opacity: 1; }

/* ── REVEAL ANIMATIONS ── */
.ph-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.ph-fade.is-visible { opacity: 1; transform: translateY(0); }

.ph-fade-sec {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}
.ph-fade-sec.is-visible { opacity: 1; transform: translateY(0); }

/* ── 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}
