/* ── Self-hosted fonts ──────────────────────────────── */

@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/bebas-neue-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/bebas-neue-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('assets/fonts/source-serif-4-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('assets/fonts/source-serif-4-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --paper: #f3ead1;
  --paper-rgb: 243, 234, 209;
  --ink: #1a1a1a;
  --ink-rgb: 26, 26, 26;
  --burnt: #c65b3e;
  --mustard: #d6a038;
  --olive: #6f7b3a;
  --olive-rgb: 111, 123, 58;
  --shadow: rgba(var(--ink-rgb), 0.18);
  --body-font: "Source Serif 4", "Iowan Old Style", "Palatino Linotype", "Palatino", "Georgia", serif;
  --display-font: "Franklin Gothic Medium", "Franklin Gothic", "Trebuchet MS", sans-serif;
  --brand-font: "Rockwell Extra Bold", "Rockwell", "Bookman Old Style", "Palatino Linotype", "Palatino", serif;
}

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

body {
  font-family: var(--body-font);
  background: linear-gradient(
    180deg,
    rgba(var(--paper-rgb), 0.96) 0%,
    var(--paper) 55%,
    rgba(var(--paper-rgb), 0.86) 100%
  );
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
  opacity: 0.18;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: -1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  gap: 24px;
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid rgba(var(--paper-rgb), 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.is-compact {
  padding: 10px 6vw;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}


.site-header.is-hidden {
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
}

.brand {
  display: flex;
  font-family: var(--brand-font);
  text-transform: uppercase;
  align-items: center;
}

.brand-lockup {
  display: flex;
  align-items: baseline;
  gap: 10px;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.brand-mark {
  font-family: var(--brand-font);
  font-size: 1.8rem;
  font-weight: 700;
}

.brand-year {
  font-family: var(--brand-font);
  font-size: 1.2rem;
  color: var(--mustard);
  font-weight: 700;
}

.site-nav {
  display: flex;
  gap: 18px;
  font-family: var(--display-font);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav a {
  position: relative;
  padding-bottom: 4px;
}

.site-nav a.is-active,
.site-nav a[aria-current="page"] {
  color: var(--paper);
}

.site-nav a.is-active::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(0);
}

.site-nav a.is-active::before,
.site-nav a[aria-current="page"]::before,
.site-nav a:hover::before,
.site-nav a:focus-visible::before {
  content: "";
  position: absolute;
  left: -0.08em;
  right: -0.08em;
  bottom: 0.08em;
  height: 0.36em;
  background: var(--olive);
  z-index: -1;
  transform: skew(-6deg);
  box-shadow: 3px 3px 0 rgba(var(--paper-rgb), 0.35);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--paper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.cta {
  font-family: var(--display-font);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid var(--paper);
  padding: 10px 18px;
  background: var(--mustard);
  color: var(--ink);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-mustard {
  background: var(--mustard);
}

.cta:hover,
.cta:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.6);
}

.site-header .cta {
  box-shadow: 4px 4px 0 rgba(var(--paper-rgb), 0.7);
}

.site-header .cta:hover,
.site-header .cta:focus-visible {
  box-shadow: 6px 6px 0 rgba(var(--paper-rgb), 0.85);
}

.nav-toggle {
  display: none;
}

.cta.jitter {
  animation: jitter 1.4s infinite;
}

.cta.jitter:hover,
.cta.jitter:focus-visible {
  animation: none;
}

.cta-footer {
  border-color: var(--paper);
  color: var(--paper);
  box-shadow: 4px 4px 0 rgba(var(--paper-rgb), 0.7);
}

.cta-footer:hover,
.cta-footer:focus-visible {
  box-shadow: 6px 6px 0 rgba(var(--paper-rgb), 0.85);
}

main {
  padding: 24px 6vw 0;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.kicker {
  font-family: var(--display-font);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.95rem;
  color: var(--burnt);
  margin-bottom: 16px;
}

.highlight-underline {
  position: relative;
  display: inline-block;
  z-index: 0;
  padding: 0 0.08em;
  --highlight-color: var(--mustard);
}

.highlight-underline::before,
.highlight-underline::after {
  content: "";
  position: absolute;
  left: -0.08em;
  right: -0.08em;
  bottom: 0.08em;
  height: 0.32em;
  clip-path: polygon(
    0%   0%,
    36%  8%,
    40%  28%,
    60%  28%,
    64%  8%,
    100% 0%,
    100% 100%,
    64%  92%,
    60%  72%,
    40%  72%,
    36%  92%,
    0%   100%
  );
}

.highlight-underline::before {
  background: var(--ink);
  z-index: -2;
  transform: translate(6px, 6px);
}

.sponsors .highlight-underline::before {
  background: var(--paper);
}

.highlight-underline::after {
  background: var(--highlight-color);
  z-index: -1;
}

.highlight-olive {
  --highlight-color: var(--olive);
}

.highlight-mustard {
  --highlight-color: var(--mustard);
}

.highlight-burnt {
  --highlight-color: var(--burnt);
}

.highlight-wrap {
  display: inline;
  font-weight: 700;
  background: linear-gradient(to bottom, transparent 58%, var(--highlight-color) 58%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0 0.08em;
}

.highlight-wrap::after {
  display: none;
}

.hero h1 {
  font-family: var(--display-font);
  font-size: clamp(3.2rem, 6vw, 6.6rem);
  letter-spacing: 0.08em;
  line-height: 0.95;
}

.hero-lede {
  font-size: 1.2rem;
  max-width: 52ch;
  margin: 18px 0 10px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  background: rgba(var(--paper-rgb), 0.72);
  border: none;
  padding: 16px;
  backdrop-filter: blur(6px);
}

.hero-dates {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 14px;
  border-left: 3px solid var(--burnt);
  font-family: var(--body-font);
  font-size: 0.88rem;
  color: var(--ink);
  flex-shrink: 0;
}

.hero-dates li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  line-height: 1.5;
}

.hero-date {
  font-family: var(--display-font);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--burnt);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 7ch;
}

.meta-button {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid var(--ink);
  padding: 10px 14px;
  font-family: var(--display-font);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.meta-button:hover,
.meta-button:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.meta-icon {
  width: 28px;
  height: 28px;
  color: var(--ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.meta-icon svg {
  width: 20px;
  height: 20px;
}

.meta-text {
  font-size: 0.95rem;
  font-weight: 700;
}

.meta-map {
  background: var(--mustard);
}

.meta-calendar {
  background: var(--olive);
  color: var(--paper);
}

.meta-calendar .meta-icon {
  color: var(--paper);
}

.meta-register {
  background: var(--burnt);
  color: var(--paper);
}

.meta-register .meta-icon {
  color: var(--paper);
}

.hero-collage {
  position: relative;
  min-height: 380px;
}

.collage {
  position: absolute;
  border: 8px solid rgba(var(--paper-rgb), 0.96);
  box-shadow: 10px 12px 0 var(--ink);
  object-fit: cover;
}

.collage-main {
  width: 62%;
  right: 0;
  top: 10px;
  transform: rotate(-2deg);
}

.collage-tilt {
  width: 48%;
  left: 0;
  top: 90px;
  transform: rotate(5deg);
}

.collage-edge {
  width: 50%;
  right: 20%;
  bottom: -20px;
  transform: rotate(2deg);
}

.section {
  padding: 32px 0;
  border-top: 1px solid rgba(var(--ink-rgb), 0.2);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section h2 {
  font-family: var(--display-font);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  letter-spacing: 0.08em;
}

.section-head p {
  max-width: 48ch;
}

.ticket-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.ticket-card {
  position: relative;
  border: 2px solid var(--ink);
  padding: 0;
  background: var(--mustard);
  font-family: var(--display-font);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.05rem;
  box-shadow: 5px 5px 0 var(--ink);
  animation: rise 0.7s ease both;
  animation-delay: calc(var(--i) * 0.06s);
}

.ticket-reveal {
  position: relative;
  width: 100%;
  padding: 18px;
  border: none;
  background: transparent;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  display: grid;
  gap: 14px;
}

.ticket-text-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
}

.ticket-text-pill {
  border: 2px solid var(--ink);
  background: rgba(var(--paper-rgb), 0.55);
  padding: 10px 12px;
  line-height: 1.2;
  box-shadow: 3px 3px 0 var(--ink);
}

.ticket-reveal:focus-visible {
  outline: 3px solid var(--burnt);
  outline-offset: -6px;
}

.ticket-title {
  position: relative;
  z-index: 1;
}

.ticket-photo {
  width: 100%;
  height: 200px;
  opacity: 1;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  background-image: var(--photo);
  background-size: cover;
  background-position: center;
}

/* ── Featured Guests ──────────────────────────────────────────── */

.guests {
  background: linear-gradient(135deg, rgba(214, 160, 56, 0.08), transparent 55%);
}

.guest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  padding: 6px;
}

.guest-card {
  border: 1px solid rgba(var(--ink-rgb), 0.2);
  background: var(--paper);
  box-shadow: 7px 7px 0 var(--ink);
  display: flex;
  flex-direction: column;
}

.guest-card img,
.guest-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top;
  border-bottom: 2px solid var(--ink);
}

.guest-placeholder {
  display: grid;
  place-items: center;
  font-family: var(--display-font);
  font-size: 3rem;
  letter-spacing: 0.12em;
  color: var(--burnt);
  background: rgba(var(--ink-rgb), 0.06);
}

.guest-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.guest-card-body h3 {
  font-family: var(--display-font);
  font-size: 1.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burnt);
}

.guest-card-body p {
  font-family: var(--body-font);
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--ink);
}

/* ── Mentors ──────────────────────────────────────────────────── */

.mentors {
  background: linear-gradient(120deg, rgba(198, 91, 62, 0.1), transparent 60%);
}

.mentor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  padding: 6px;
}

.mentor-card-wide {
  grid-column: span 2;
  display: grid;
  align-content: center;
  min-height: 260px;
  font-family: var(--body-font);
}

.mentor-card-copy {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 32ch;
  list-style: disc;
  padding-left: 1.2em;
  display: grid;
  gap: 4px;
}

.mentor-card {
  border: 1px solid rgba(var(--ink-rgb), 0.2);
  padding: 14px;
  background: var(--mustard);
  box-shadow: 6px 6px 0 var(--ink);
  position: relative;
  transform: rotate(-1deg);
}

.mentor-card:nth-child(3n) {
  background: var(--olive);
}

.mentor-card:nth-child(3n + 1) {
  background: var(--mustard);
}

.mentor-card:nth-child(3n + 2) {
  background: var(--burnt);
}

.mentor-card:nth-child(2) {
  transform: translate(8px, -12px) rotate(1.5deg);
  z-index: 3;
}

.mentor-card:nth-child(3) {
  transform: translate(-6px, -4px) rotate(-0.5deg);
  z-index: 2;
}

.mentor-card:nth-child(4) {
  transform: translate(10px, -18px) rotate(2deg);
  z-index: 4;
}

.mentor-card:nth-child(5) {
  transform: translate(-10px, -10px) rotate(-1.5deg);
  z-index: 3;
}

.mentor-card:nth-child(6) {
  transform: translate(6px, -14px) rotate(1deg);
  z-index: 2;
}

.mentor-card:nth-child(7) {
  transform: translate(-4px, -8px) rotate(-0.8deg);
  z-index: 1;
}

.mentor-card img,
.mentor-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 2px solid var(--ink);
  margin-bottom: 12px;
}

.mentor-placeholder {
  display: grid;
  place-items: center;
  font-family: var(--display-font);
  font-size: 2rem;
  letter-spacing: 0.12em;
  color: var(--burnt);
  background: rgba(var(--paper-rgb), 0.9);
}

.mentor-card h3 {
  font-family: var(--display-font);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Mentor speech bubbles ────────────────────────────────────── */

.mentor-bubble {
  position: fixed;
  z-index: 300;
  max-width: 200px;
  padding: 10px 14px;
  font-family: var(--body-font);
  font-size: 0.88rem;
  line-height: 1.45;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px) scale(0.96);
  transition: opacity 0.18s ease, transform 0.18s ease;
  /* Bubble background and foreground set per variant */
  --bubble-bg: var(--paper);
  background: var(--bubble-bg);
  color: var(--ink);
}

.mentor-bubble.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Tail pointing down (bubble sits above card) */
.mentor-bubble::before,
.mentor-bubble::after {
  content: '';
  position: absolute;
  left: 22px;
  bottom: -12px;
  border: 6px solid transparent;
  border-top-color: var(--ink);
  border-bottom: none;
}
.mentor-bubble::after {
  bottom: -9px;
  border-top-color: var(--bubble-bg);
  z-index: 1;
}

/* Tail pointing up (bubble sits below card) */
.mentor-bubble.bubble-below::before,
.mentor-bubble.bubble-below::after {
  bottom: auto;
  top: -12px;
  border-top: none;
  border-bottom: 6px solid var(--ink);
}
.mentor-bubble.bubble-below::after {
  top: -9px;
  border-bottom-color: var(--bubble-bg);
}

/* Style A — paper (default) */
.mentor-bubble-a {
  --bubble-bg: var(--paper);
  color: var(--ink);
}

/* Style B — burnt */
.mentor-bubble-b {
  --bubble-bg: var(--burnt);
  color: var(--paper);
  border-color: var(--burnt);
  box-shadow: 4px 4px 0 var(--ink);
}
.mentor-bubble-b::before { border-top-color: var(--burnt); }
.mentor-bubble-b.bubble-below::before { border-bottom-color: var(--burnt); }

/* Style C — ink/mustard */
.mentor-bubble-c {
  --bubble-bg: var(--ink);
  color: var(--mustard);
  border-color: var(--ink);
}

/* ── ────────────────────────────────────────────────────────────── */

.mentor-volunteer-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.location-date-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.location-date-list li {
  display: grid;
  gap: 2px;
}

.location-date {
  font-family: var(--display-font);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.location-card-photo {
  padding: 0;
  overflow: hidden;
}

.location-card-photo img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.location-photo-caption {
  padding: 10px 16px;
  font-family: var(--display-font);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  border-top: 2px solid var(--ink);
}

.location-card-map {
  position: relative;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}

.location-card-map img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
}

.location-map-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.location-map-label {
  display: block;
  position: relative;
  z-index: 3;
  padding: 10px 16px;
  font-family: var(--display-font);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  text-align: right;
  border-top: 2px solid var(--ink);
  background: rgba(var(--paper-rgb), 0.92);
  transition: background 0.15s ease;
}

.location-card-map:hover .location-map-label {
  background: var(--mustard);
}

.location-card h3 {
  font-family: var(--display-font);
  letter-spacing: 0.08em;
  position: relative;
  display: inline-block;
  width: fit-content;
  z-index: 0;
  padding: 0 0.08em;
  --highlight-color: var(--mustard);
}

.location-card h3::before,
.location-card h3::after {
  content: "";
  position: absolute;
  left: -0.08em;
  right: -0.08em;
  bottom: 0.08em;
  height: 0.32em;
  clip-path: polygon(
    0%   0%,
    36%  8%,
    40%  28%,
    60%  28%,
    64%  8%,
    100% 0%,
    100% 100%,
    64%  92%,
    60%  72%,
    40%  72%,
    36%  92%,
    0%   100%
  );
}

.location-card h3::before {
  background: var(--ink);
  z-index: -2;
  transform: translate(6px, 6px);
}

.location-card h3::after {
  background: var(--highlight-color);
  z-index: -1;
}

.location-card:nth-child(3n + 1) h3 { --highlight-color: var(--mustard); }
.location-card:nth-child(3n + 2) h3 { --highlight-color: var(--olive); }
.location-card:nth-child(3n)     h3 { --highlight-color: var(--burnt); }

.location-card {
  padding: 14px 16px;
  border: 2px solid var(--ink);
  background: rgba(var(--paper-rgb), 0.92);
  box-shadow: 4px 4px 0 var(--ink);
  display: grid;
  gap: 6px;
  align-content: start;
}

.bring-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}

.bring-note p + p {
  margin-top: 18px;
}

.bring-intro {
  margin-bottom: 24px;
  max-width: 72ch;
}

.bring-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.bring-list li {
  border: 2px solid var(--ink);
  padding: 14px 16px;
  background: rgba(var(--paper-rgb), 0.92);
  box-shadow: 4px 4px 0 var(--ink);
  display: grid;
  gap: 6px;
  align-content: start;
}

.background {
  background: linear-gradient(110deg, rgba(var(--olive-rgb), 0.12), transparent 70%);
}

.background-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.background-card {
  padding: 14px 16px;
  background: rgba(var(--paper-rgb), 0.92);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  display: grid;
  gap: 12px;
  align-content: start;
}

.background-card p {
  margin: 0;
}

.background-card h3 {
  font-family: var(--display-font);
  letter-spacing: 0.08em;
}

.bring-title {
  font-family: var(--display-font);
  letter-spacing: 0.08em;
  position: relative;
  display: inline-block;
  width: fit-content;
  z-index: 0;
  padding: 0 0.08em;
  --highlight-color: var(--mustard);
}

.bring-title::after {
  content: "";
  position: absolute;
  left: -0.08em;
  right: -0.08em;
  bottom: 0.08em;
  height: 0.32em;
  background: var(--highlight-color);
  z-index: -1;
  transform: skew(-6deg);
  box-shadow: 3px 3px 0 var(--ink);
}

.bring-list li:nth-child(3n + 1) .bring-title { --highlight-color: var(--mustard); }
.bring-list li:nth-child(3n + 2) .bring-title { --highlight-color: var(--olive); }
.bring-list li:nth-child(3n)     .bring-title { --highlight-color: var(--burnt); }

.gallery {
  background: linear-gradient(100deg, rgba(var(--olive-rgb), 0.12), transparent 65%);
}

.gallery-block + .gallery-block {
  margin-top: 36px;
}

.gallery-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.gallery-title h3 {
  font-family: var(--display-font);
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.lightbox-thumb {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  display: block;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  background: rgba(var(--paper-rgb), 0.8);
  transition: transform 0.2s ease;
}

.gallery-grid img:nth-child(3n) {
  transform: rotate(-1deg);
}

.gallery-grid img:nth-child(4n) {
  transform: rotate(1deg);
}

.gallery-grid img:hover,
.gallery-grid img:focus-visible {
  transform: translateY(-4px);
}

.lightbox-thumb:focus-visible img {
  outline: 3px solid var(--burnt);
  outline-offset: 4px;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(var(--ink-rgb), 0.88);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  justify-items: center;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 999;
  padding: 32px 4vw;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-frame {
  max-width: min(900px, 92vw);
  margin: 0;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 70vh;
  border: 4px solid var(--paper);
  box-shadow: 10px 10px 0 var(--ink);
  background: var(--paper);
}

.lightbox-caption {
  color: var(--paper);
  font-family: var(--display-font);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 6vw;
  width: 44px;
  height: 44px;
  border: 2px solid var(--paper);
  background: var(--paper);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 3px 3px 0 var(--burnt);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--burnt);
}

.lightbox-nav {
  border: 2px solid var(--paper);
  background: var(--paper);
  color: var(--ink);
  height: 44px;
  padding: 0 18px;
  font-family: var(--display-font);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 3px 3px 0 var(--burnt);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--burnt);
}

.lightbox-nav.prev,
.lightbox-nav.next {
  align-self: center;
}

body.lightbox-open {
  overflow: hidden;
}

.sponsors {
  background: var(--ink);
  color: var(--paper);
  padding: 40px 24px;
  border: none;
  margin: 0 -6vw;
}

.sponsors .section-head {
  padding: 0 6vw;
}

.sponsor-grid {
  padding: 20px 6vw 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  align-items: center;
}

.sponsor-feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  justify-items: center;
  padding: 10px 0 14px;
}

.meta-on-dark {
  border-color: var(--paper);
  box-shadow: 4px 4px 0 var(--paper);
}

.meta-on-dark:hover,
.meta-on-dark:focus-visible {
  box-shadow: 6px 6px 0 var(--paper);
}

.sponsor-grid-full {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding: 10px 0 4px;
}

.sponsor-feature .sponsor-logo {
  max-height: 164px;
  width: min(520px, 96vw);
  filter: none;
  opacity: 1;
}

.sponsor-logo {
  max-height: 64px;
  width: 100%;
  object-fit: contain;
  filter: none;
  opacity: 0.95;
}

.sponsor-logo.color {
  filter: none;
  opacity: 1;
}

.sponsor-logo-invert {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.supporter-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0.95;
  transition: opacity 0.15s ease;
}

.supporter-link:hover,
.supporter-link:focus-visible {
  opacity: 1;
}

.cursor-tip {
  position: fixed;
  pointer-events: none;
  background: var(--burnt);
  color: var(--paper);
  font-family: var(--display-font);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 14px;
  white-space: nowrap;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  opacity: 0;
  transition: opacity 0.12s ease;
  z-index: 1000;
  transform: translate(12px, -50%);
}

.supporter-text {
  position: relative;
  min-height: 64px;
  display: grid;
  place-items: center;
  padding: 10px 14px;
  color: var(--paper);
  font-family: var(--display-font);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.75rem;
  text-decoration: none;
}

.site-footer {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-immersive {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.78) 70%),
    url("assets/etc/sidescull.jpg");
  background-size: cover;
  background-position: center;
  border-top: 1px solid rgba(var(--ink-rgb), 0.3);
}

.sstiksishness {
  background: linear-gradient(110deg, rgba(198, 91, 62, 0.08), transparent 70%);
}

.sstiks-card {
  max-width: 980px;
  padding: 28px;
  background: rgba(var(--paper-rgb), 0.92);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  display: grid;
  gap: 12px;
}

.sstiks-kicker {
  font-family: var(--display-font);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--burnt);
}

.sstiks-card p {
  margin: 0;
}

.sstiks-list {
  list-style: disc;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.sstiks-list li {
  margin: 0;
}

.sstiks-note {
  font-weight: 600;
}

.footer-bar {
  padding: 30px 6vw 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--display-font);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  background: var(--ink);
  color: var(--paper);
}

.footer-bar-left {
  display: grid;
  gap: 6px;
}

.footer-copy {
  font-family: var(--display-font);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}

.reveal {
  animation: rise 0.8s ease both;
  animation-delay: var(--delay, 0s);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes jitter {
  0%,
  85%,
  100% {
    transform: translate(0, 0);
  }
  86% {
    transform: translate(2px, -2px) rotate(-1.5deg);
  }
  88% {
    transform: translate(-2px, 2px) rotate(1.5deg);
  }
  90% {
    transform: translate(2px, 0) rotate(-0.5deg);
  }
  92% {
    transform: translate(0, -2px);
  }
  94% {
    transform: translate(-2px, 0);
  }
  96% {
    transform: translate(1px, 1px);
  }
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-toggle {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--paper);
    font-family: var(--display-font);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.95rem;
  }

  .nav-toggle-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
  }

  .nav-toggle::after {
    content: '▾';
    font-size: 0.75em;
    display: inline-block;
    transition: transform 0.2s ease;
  }

  .site-header.nav-is-open .nav-toggle::after {
    transform: rotate(180deg);
  }

  .site-nav {
    display: none;
    width: 100%;
    order: 10;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(var(--paper-rgb), 0.2);
    padding: 8px 0;
  }

  .site-header.nav-is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 10px 0;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    min-height: 320px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .bring-grid {
    grid-template-columns: 1fr;
  }

  .gallery-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .mentor-grid {
    gap: 18px;
    padding: 0;
  }

  .mentor-card-wide {
    grid-column: span 1;
    min-height: auto;
  }

  .mentor-card {
    transform: none;
  }
}

@media (max-width: 720px) {
  .hero-meta {
    grid-template-columns: 1fr;
  }

  .collage {
    position: relative;
    width: 100%;
    right: auto;
    left: auto;
    top: auto;
    bottom: auto;
    transform: rotate(0deg);
    margin-bottom: 16px;
  }

  .hero-collage {
    display: grid;
    gap: 14px;
  }

  .ticket-text-row {
    grid-template-columns: 1fr;
  }

  .sponsors {
    margin: 0 -6vw;
  }

  .sponsor-feature {
    grid-template-columns: 1fr;
  }

  .lightbox {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding: 80px 6vw 30px;
  }

  .lightbox-nav.prev,
  .lightbox-nav.next {
    justify-self: center;
    align-self: auto;
  }

  .lightbox-close {
    top: 18px;
  }

  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 400px) {
  .brand-year {
    display: none;
  }

  .nav-toggle-label {
    display: none;
  }

  .site-header {
    gap: 12px;
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .site-header .cta {
    padding: 6px 10px;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
  }
}

/* ── Registration Modal ─────────────────────────────── */

.reg-modal {
  position: fixed;
  inset: 0;
  background: rgba(var(--ink-rgb), 0.85);
  display: grid;
  align-items: center;
  justify-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1000;
  padding: 32px 6vw;
}

.reg-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.reg-modal-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  padding: 40px;
  max-width: 540px;
  width: 100%;
  display: grid;
  gap: 22px;
  position: relative;
  text-align: center;
}

.reg-modal-card .kicker {
  margin: 0;
}

.reg-modal-headline {
  font-family: var(--display-font);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: 0.05em;
  line-height: 1.15;
  color: var(--burnt);
}

.reg-modal-tagline {
  font-family: var(--display-font);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 1rem;
  padding: 8px 0 0;
}

.paddle-divider {
  position: relative;
  height: 10px;
  margin: 14px 0;
}

.paddle-divider::before,
.paddle-divider::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(
    0%   0%,
    36%  8%,
    40%  28%,
    60%  28%,
    64%  8%,
    100% 0%,
    100% 100%,
    64%  92%,
    60%  72%,
    40%  72%,
    36%  92%,
    0%   100%
  );
}

.paddle-divider::before {
  background: var(--ink);
  transform: translate(4px, 4px);
}

.paddle-divider::after {
  background: var(--mustard);
}

.reg-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.reg-modal-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-color: var(--ink);
  font-size: 0.82rem;
  padding: 12px 10px;
  line-height: 1.3;
}

.reg-modal-cta svg {
  flex-shrink: 0;
}

.reg-modal-subscribe {
  width: 100%;
}

.reg-modal-contact {
  font-family: var(--display-font);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--grey, #555);
}

.reg-modal-contact a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cta-burnt {
  background: var(--burnt);
  color: var(--paper);
}

.cta-olive {
  background: var(--olive);
  color: var(--paper);
}

.reg-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 3px 3px 0 var(--burnt);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.reg-modal-close:hover,
.reg-modal-close:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--burnt);
}

@media (max-width: 500px) {
  .reg-modal-card {
    padding: 40px 20px 28px;
  }

  .reg-modal-actions {
    grid-template-columns: 1fr;
  }
}

/* ── End Registration Modal ─────────────────────────── */

/* ── SSTIKSishness Modal ────────────────────────────── */

.sstiks-modal {
  position: fixed;
  inset: 0;
  background: rgba(var(--ink-rgb), 0.88);
  z-index: 200;
  overflow-y: auto;
  padding: 40px 6vw;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.sstiks-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.sstiks-modal-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  width: min(700px, 100%);
  margin: 0 auto;
  padding: 36px 44px 44px;
  position: relative;
}

.sstiks-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.sstiks-modal-title {
  font-family: var(--display-font);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.06em;
  margin: 0;
}

.sstiks-modal-close {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 3px 3px 0 var(--burnt);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.sstiks-modal-close:hover,
.sstiks-modal-close:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--burnt);
}

.sstiks-modal-sub {
  font-family: var(--display-font);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(var(--ink-rgb), 0.2);
}

@media (max-width: 600px) {
  .sstiks-modal-card {
    padding: 28px 20px 32px;
  }
}

/* ── End SSTIKSishness Modal ────────────────────────── */

/* ── Preview Warning Modal ──────────────────────────── */

.preview-modal {
  position: fixed;
  inset: 0;
  background: rgba(var(--ink-rgb), 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1100;
}

.preview-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.preview-modal-card {
  position: relative;
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  max-width: 420px;
  width: 100%;
  padding: 48px 36px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.preview-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 3px 3px 0 var(--burnt);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.preview-modal-close:hover,
.preview-modal-close:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--burnt);
}

.preview-warning-icon {
  margin-bottom: 4px;
}

.preview-modal-title {
  font-family: var(--display-font);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  letter-spacing: 0.06em;
  color: var(--burnt);
  margin: 0;
}

.preview-modal-message {
  font-family: var(--display-font);
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin: 0;
}

.preview-modal-warning {
  font-family: var(--display-font);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--burnt);
  margin: 0;
}

.preview-modal-dismiss {
  margin-top: 8px;
}

/* ── End Preview Warning Modal ──────────────────────── */

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
