/* ============================================================
   Druid City Anime Festival — styles
   Dark "night con floor" theme: deep indigo, brand blue + hot
   pink from the flyer, rainbow used only as a thin accent band.
   ============================================================ */

:root {
  /* Surfaces */
  --night: #0a0820;
  --night-2: #100c2b;
  --panel: #191140;
  --panel-2: #221856;
  --paper: #fbf6ff;

  /* Brand */
  --sky: #4cc2ff;          /* logo blue */
  --sky-deep: #1c8ad6;
  --pink: #ff4f97;
  --pink-deep: #c9206b;
  --gold: #ffc93c;
  --mint: #57e3b6;
  --violet: #b58bff;

  /* Text */
  --text: #f2edff;
  --muted: #b3a8d4;
  --ink: #211540;          /* text on paper surfaces */
  --ink-soft: #5c4d85;

  --line: rgba(255, 255, 255, .10);
  --line-2: rgba(255, 255, 255, .18);

  --radius: 18px;
  --radius-lg: 26px;
  --max: 1150px;

  --display: "Baloo 2", ui-rounded, "Hiragino Maru Gothic ProN", "Trebuchet MS", system-ui, sans-serif;
  --body: "Nunito", "Segoe UI", system-ui, -apple-system, sans-serif;

  --rainbow: linear-gradient(90deg, #ff4f97 0%, #ff9d4e 18%, #ffd84e 34%, #6fe36f 52%, #46e0d0 68%, #4cc2ff 84%, #b58bff 100%);
  --shadow: 0 14px 34px rgba(0, 0, 0, .45);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--text);
  background: var(--night);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: var(--sky); }

h1, h2, h3, .display { font-family: var(--display); font-weight: 800; line-height: 1.1; letter-spacing: .01em; }

.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }

/* Missing-image placeholder */
.img--missing {
  min-height: 120px;
  background: repeating-linear-gradient(45deg, #241b56 0 12px, #1b1445 12px 24px);
  position: relative;
}
.img--missing::after {
  content: "image"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
}

/* Decorative rainbow hairline */
.rainbow-rule { height: 4px; background: var(--rainbow); }

/* Star field used behind dark hero sections */
.stars {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    radial-gradient(2px 2px at 12% 22%, #fff 45%, transparent),
    radial-gradient(2px 2px at 82% 16%, var(--sky) 45%, transparent),
    radial-gradient(3px 3px at 28% 72%, var(--gold) 45%, transparent),
    radial-gradient(2px 2px at 66% 62%, var(--pink) 45%, transparent),
    radial-gradient(2px 2px at 47% 34%, #fff 45%, transparent),
    radial-gradient(3px 3px at 91% 78%, var(--violet) 45%, transparent),
    radial-gradient(2px 2px at 6% 58%, var(--mint) 45%, transparent);
  background-repeat: no-repeat;
  opacity: .75;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: .8rem 1.7rem; border-radius: 999px;
  font-family: var(--display); font-weight: 800; font-size: 1.05rem;
  text-decoration: none; border: 0; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease, background-color .15s ease;
}
.btn--primary {
  color: #fff;
  background: linear-gradient(180deg, var(--pink) 0%, var(--pink-deep) 100%);
  box-shadow: 0 8px 22px rgba(201, 32, 107, .45);
}
.btn--primary:hover { transform: translateY(-2px); filter: brightness(1.07); box-shadow: 0 12px 28px rgba(201, 32, 107, .55); }
.btn--ghost {
  color: var(--text); background: rgba(255, 255, 255, .06);
  border: 2px solid var(--line-2); box-shadow: none;
}
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--sky); color: var(--sky); }
.btn--big { padding: 1rem 2.6rem; font-size: 1.25rem; }
.btn--on-paper.btn--ghost { color: var(--ink); background: #fff; border-color: #e2d5f5; }
.btn--on-paper.btn--ghost:hover { color: var(--sky-deep); border-color: var(--sky-deep); }

/* ---------- Top strip ---------- */
.topbar {
  background: var(--night-2); border-bottom: 1px solid var(--line);
  font-size: .88rem; color: var(--muted);
}
.topbar__inner { display: flex; flex-wrap: wrap; gap: .3rem 1.2rem; justify-content: space-between; align-items: center; padding: .45rem 0; }
.topbar strong { color: var(--text); font-weight: 700; }
.topbar a { color: var(--gold); text-decoration: none; font-weight: 700; }
.topbar a:hover { text-decoration: underline; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(10, 8, 32, .88); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: min(100% - 2.5rem, var(--max)); margin-inline: auto; padding: .6rem 0;
}
.nav__brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--text); }
.nav__logo {
  width: 46px; height: 46px; object-fit: contain; flex: 0 0 auto;
  background: linear-gradient(160deg, #fff, #e8f6ff); border-radius: 50%;
  border: 2px solid var(--sky); padding: 2px;
}
.nav__brand-text { font-family: var(--display); font-weight: 800; line-height: 1.05; font-size: 1rem; }
.nav__brand-text small { display: block; font-family: var(--body); font-weight: 700; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sky); }

.nav__links { list-style: none; display: flex; align-items: center; gap: .35rem; }
.nav__links a {
  display: block; padding: .5rem .8rem; border-radius: 10px;
  color: var(--muted); text-decoration: none; font-weight: 700; font-size: .96rem;
  transition: color .15s, background-color .15s;
}
.nav__links a:hover { color: var(--text); background: rgba(255, 255, 255, .07); }
.nav__links a[aria-current="page"] { color: var(--text); background: rgba(76, 194, 255, .14); box-shadow: inset 0 -2px 0 var(--sky); }
.nav__cta, .nav__links a.nav__cta {
  color: #fff; background: linear-gradient(180deg, var(--pink) 0%, var(--pink-deep) 100%);
  padding: .5rem 1.25rem; border-radius: 999px; margin-left: .4rem;
  box-shadow: 0 6px 16px rgba(201, 32, 107, .4);
}
.nav__links a.nav__cta:hover { color: #fff; background: linear-gradient(180deg, #ff69a6 0%, #d8256f 100%); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 3px; background: var(--text); border-radius: 2px; transition: .2s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Home hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: 3.5rem 0 4rem;
  background:
    radial-gradient(circle at 12% 10%, rgba(76, 194, 255, .22) 0, transparent 45%),
    radial-gradient(circle at 86% 24%, rgba(255, 79, 151, .20) 0, transparent 45%),
    radial-gradient(circle at 50% 105%, rgba(181, 139, 255, .18) 0, transparent 55%),
    var(--night);
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 2.5rem; align-items: center; }
.hero__eyebrow {
  display: inline-block; font-weight: 800; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(255, 201, 60, .4); background: rgba(255, 201, 60, .08);
  padding: .3rem 1rem; border-radius: 999px; margin-bottom: 1.1rem;
}
.hero__title { font-size: clamp(2.8rem, 7vw, 5.2rem); margin-bottom: .6rem; }
.hero__title .line-1 {
  display: block; color: var(--sky);
  text-shadow: 0 0 26px rgba(76, 194, 255, .45), 0 4px 0 rgba(6, 4, 20, .55);
}
.hero__title .line-2 {
  display: block;
  background: var(--rainbow); -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, .5));
}
.hero__dates { color: var(--text); font-size: 1.12rem; font-weight: 700; margin-bottom: 1.6rem; }
.hero__dates span { color: var(--muted); font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__art { position: relative; display: flex; justify-content: center; }
.hero__art::after {
  content: ""; position: absolute; inset: 8% 4% 6%; z-index: -1; border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 194, 255, .3) 0, transparent 68%);
  filter: blur(14px);
}
.hero__mascot { max-height: 440px; width: auto; filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .55)); }

/* ---------- Countdown ---------- */
.countdown { display: flex; gap: .7rem; margin-bottom: 1.7rem; }
.countdown__unit {
  background: rgba(255, 255, 255, .05); border: 1px solid var(--line-2); border-radius: 14px;
  padding: .6rem .8rem; min-width: 76px; text-align: center; backdrop-filter: blur(4px);
}
.countdown__unit span { display: block; font-family: var(--display); font-size: 2rem; font-weight: 800; color: var(--sky); line-height: 1.1; }
.countdown__unit small { color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-size: .64rem; font-weight: 800; }

/* ---------- Interior page header ---------- */
.page-head {
  position: relative; overflow: hidden; text-align: center;
  padding: 3.2rem 0 2.6rem; border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 0%, rgba(76, 194, 255, .20) 0, transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(255, 79, 151, .18) 0, transparent 55%),
    var(--night-2);
}
.page-head__inner { position: relative; z-index: 1; }
.page-head__kicker { color: var(--gold); font-weight: 800; letter-spacing: .16em; text-transform: uppercase; font-size: .8rem; margin-bottom: .5rem; }
.page-head h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); }
.page-head h1 em { font-style: normal; color: var(--sky); }
.page-head p { color: var(--muted); max-width: 640px; margin: .9rem auto 0; font-size: 1.06rem; }

/* ---------- Sections ---------- */
.section { padding: 4rem 0; }
.section--alt { background: var(--night-2); }
.section--paper { background: var(--paper); color: var(--ink); }
.section--paper .section__lead, .section--paper p { color: var(--ink-soft); }
.section--paper h2, .section--paper h3 { color: var(--ink); }

.section__title { font-size: clamp(1.8rem, 4vw, 2.7rem); text-align: center; margin-bottom: .6rem; }
.section__title--left { text-align: left; }
/* Sub-section heading — sits inside a section, so it stays under the page h1 */
.section__title--sm { font-size: clamp(1.4rem, 3vw, 1.9rem); }
.section__title .accent { color: var(--sky); }
.section--paper .section__title .accent { color: var(--sky-deep); }
.section__rule { width: 76px; height: 5px; border-radius: 999px; background: var(--rainbow); margin: 0 auto 1.4rem; }
.section__title--left + .section__rule { margin-left: 0; }
.section__lead { color: var(--muted); max-width: 660px; margin: 0 auto 2.4rem; text-align: center; font-size: 1.06rem; }
.section__lead--left { margin-left: 0; text-align: left; }
.section__lead--tight { margin-bottom: 1.5rem; }

/* ---------- What / Where / When strip ---------- */
.wwn { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.wwn__item {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.6rem; position: relative; overflow: hidden;
}
.wwn__item::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: var(--rainbow); }
.wwn__label { color: var(--gold); font-weight: 800; letter-spacing: .16em; text-transform: uppercase; font-size: .74rem; }
.wwn__item h3 { font-size: 1.35rem; margin: .3rem 0 .35rem; }
.wwn__item p { color: var(--muted); font-size: .98rem; }
.wwn__item a { font-weight: 700; text-decoration: none; }
.wwn__item a:hover { text-decoration: underline; }

/* ---------- Tile grid (page shortcuts) ---------- */
/* minmax(300px) lands on 3 columns at full width, so the six tiles sit 3 + 3 */
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.3rem; }
.tile {
  display: block; text-decoration: none; color: var(--text);
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.6rem 1.5rem; position: relative; overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease;
}
.tile::before {
  content: ""; position: absolute; inset: -40% 55% auto -20%; height: 150px;
  background: radial-gradient(circle, var(--tile-glow, var(--sky)) 0, transparent 65%);
  opacity: .22; transition: opacity .18s ease;
}
.tile:hover { transform: translateY(-5px); border-color: var(--line-2); background: var(--panel-2); }
.tile:hover::before { opacity: .38; }
.tile__icon { font-size: 1.9rem; display: block; margin-bottom: .5rem; position: relative; }
.tile h3 { font-size: 1.3rem; margin-bottom: .3rem; position: relative; }
.tile p { color: var(--muted); font-size: .97rem; position: relative; }
.tile__more { display: inline-block; margin-top: .8rem; color: var(--sky); font-weight: 800; font-size: .92rem; position: relative; }
.tile:hover .tile__more { text-decoration: underline; }

/* ---------- Facts ---------- */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; max-width: 820px; margin-inline: auto; }
.fact {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem 1rem; text-align: center;
}
.fact__big { display: block; font-family: var(--display); font-size: 2.5rem; font-weight: 800; color: var(--sky); line-height: 1; margin-bottom: .25rem; }
.fact span:last-child { color: var(--muted); font-weight: 700; font-size: .92rem; }

/* ---------- Attraction cards (sticker art) ---------- */
/* exactly four attractions — hold a 2 x 2 so the sticker art gets room */
.attraction-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 940px; margin-inline: auto; }
.attraction {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display: flex; flex-direction: column;
}
.attraction:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--shadow); }
.attraction__art {
  display: grid; place-items: center; padding: 1.6rem 1.4rem; min-height: 168px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, .12) 0, transparent 62%),
    linear-gradient(160deg, var(--panel-2), var(--panel));
  border-bottom: 1px solid var(--line);
}
.attraction__art img { max-height: 120px; width: auto; filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .5)); }
.attraction__body { padding: 1.3rem 1.5rem 1.6rem; }
.attraction__body h3 { font-size: 1.3rem; margin-bottom: .4rem; color: var(--sky); }
.attraction__body p { color: var(--muted); }
.attraction__tag {
  display: inline-block; margin-top: .9rem; font-size: .78rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(255, 201, 60, .35); background: rgba(255, 201, 60, .08);
  padding: .2rem .7rem; border-radius: 999px;
}

/* ---------- Schedule / Tabs ---------- */
.tabs__buttons { display: flex; justify-content: center; gap: .6rem; margin-bottom: 1.6rem; flex-wrap: wrap; }
.tabs__btn {
  background: var(--panel); color: var(--muted); border: 1px solid var(--line-2); cursor: pointer;
  padding: .65rem 1.7rem; border-radius: 999px; font-family: var(--display); font-weight: 800; font-size: 1rem;
  transition: .15s;
}
.tabs__btn:hover { color: var(--text); }
.tabs__btn.is-active {
  background: linear-gradient(180deg, var(--pink) 0%, var(--pink-deep) 100%);
  color: #fff; border-color: transparent; box-shadow: 0 6px 16px rgba(201, 32, 107, .4);
}
.tabs__panel { max-width: 880px; margin-inline: auto; }
.hours {
  text-align: center; font-family: var(--display); font-size: 1.35rem; font-weight: 800;
  color: var(--text); margin-bottom: 1.2rem;
}
.hours span { color: var(--sky); }

/* ---------- Agenda rows (one per programmed event) ---------- */
.agenda { list-style: none; }
/* Standalone agenda (outside the schedule tabs) — match the tab panel width */
.agenda--narrow { max-width: 880px; margin-inline: auto; }
.agenda li {
  display: flex; gap: 1.2rem; padding: 1rem 1.3rem; background: var(--panel);
  border: 1px solid var(--line); border-left: 4px solid var(--sky);
  border-radius: 12px; margin-bottom: .7rem; color: var(--text);
}
/* Room accents, so a track is scannable by colour down the page */
.agenda li.is-rooma { border-left-color: var(--mint); }
.agenda li.is-roomb { border-left-color: var(--violet); }
.agenda li.is-highlight { border-left-color: var(--pink); background: linear-gradient(90deg, rgba(255, 79, 151, .16), var(--panel) 55%); }

.agenda__time {
  color: var(--gold); font-weight: 800; min-width: 132px; flex: 0 0 auto;
  display: flex; flex-direction: column; line-height: 1.35;
}
.agenda__time small { color: var(--muted); font-weight: 700; font-size: .82rem; }
.agenda__body { min-width: 0; }
.agenda__name { font-family: var(--display); font-size: 1.12rem; font-weight: 800; line-height: 1.3; }
.agenda__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: .45rem;
  margin-top: .4rem; font-size: .85rem;
}
.agenda__info { color: var(--muted); font-size: .95rem; margin-top: .55rem; }
.agenda__info + .agenda__info { margin-top: .4rem; }

/* ---------- Meta pills (room, host, price, age) ---------- */
.pill {
  display: inline-block; padding: .18rem .62rem; border-radius: 999px;
  border: 1px solid var(--line-2); font-weight: 700; line-height: 1.55;
  color: var(--muted); white-space: nowrap;
}
.pill--room { color: var(--sky); border-color: rgba(76, 194, 255, .4); }
.pill--host { color: var(--text); }
.pill--free { color: var(--mint); border-color: rgba(87, 227, 182, .45); }
.pill--paid { color: var(--gold); border-color: rgba(255, 201, 60, .45); }
.pill--pass { color: var(--pink); border-color: rgba(255, 79, 151, .5); }
.pill--age { color: var(--violet); border-color: rgba(181, 139, 255, .45); }

/* ---------- All-weekend open play (card grid, not time-ordered) ----------
   Sits between the day buttons and the day panels. Matches .tabs__panel width
   so the card grid lines up with the agenda rows underneath it, and carries a
   rule along the bottom to separate "all weekend" from "this day". */
.openplay-block {
  max-width: 880px; margin: 0 auto 2.2rem;
  padding-bottom: 2.2rem; border-bottom: 1px solid var(--line-2);
}
.openplay { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.openplay__card {
  background: var(--panel); border: 1px solid var(--line); border-top: 4px solid var(--gold);
  border-radius: var(--radius); padding: 1.3rem 1.4rem;
}
.openplay__card h3 { font-size: 1.12rem; line-height: 1.3; margin-bottom: .5rem; }
.openplay__card p { color: var(--muted); font-size: .93rem; margin-top: .55rem; }

/* ---------- Split band (mascot, DM band, venue) ---------- */
.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 2.6rem; align-items: center; }
.split--flip { grid-template-columns: 1.15fr .85fr; }
.split__art { display: flex; justify-content: center; }
.split__art img { max-height: 340px; width: auto; filter: drop-shadow(0 14px 26px rgba(0, 0, 0, .5)); }
.split__copy p { color: var(--muted); font-size: 1.05rem; margin-bottom: 1.2rem; }
.section--paper .split__art img { filter: drop-shadow(0 14px 26px rgba(90, 60, 150, .28)); }

/* Framed key art (the printed flyer) */
.art-frame {
  background: #fff; border-radius: var(--radius-lg); padding: .6rem;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  transform: rotate(-1.2deg); transition: transform .2s ease;
}
.art-frame:hover { transform: rotate(0deg) scale(1.01); }
.art-frame img { border-radius: 14px; }

/* ---------- Info cards ---------- */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.3rem; }
.info-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; transition: transform .18s ease, border-color .18s ease;
}
.info-card:hover { transform: translateY(-5px); border-color: var(--line-2); }
.info-card__emoji { font-size: 2rem; display: block; margin-bottom: .4rem; }
.info-card h3 { color: var(--sky); margin-bottom: .35rem; font-size: 1.25rem; }
.info-card p { color: var(--muted); }

/* ---------- Steps ---------- */
.steps { list-style: none; max-width: 680px; margin: 0 auto 2rem; }
.steps li {
  display: flex; gap: 1.1rem; align-items: flex-start; padding: 1rem 1.2rem;
  background: var(--panel); border: 1px solid var(--line); border-left: 4px solid var(--pink);
  border-radius: 12px; margin-bottom: .8rem;
}
.steps li div { color: var(--muted); }
.steps li strong { color: var(--text); }
.steps__num {
  flex: 0 0 auto; width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(180deg, var(--pink), var(--pink-deep)); color: #fff;
  font-family: var(--display); font-weight: 800; display: grid; place-items: center;
}

/* ---------- Ticket / pass cards ---------- */
.pass-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; max-width: 900px; margin-inline: auto; }
.pass {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.9rem 1.7rem; text-align: center; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.pass::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: var(--rainbow); }
.pass--feature { border-color: rgba(255, 79, 151, .55); background: linear-gradient(180deg, var(--panel-2), var(--panel)); }
.pass__flag {
  position: absolute; top: 1.1rem; right: -2.4rem; transform: rotate(35deg);
  background: var(--pink); color: #fff; font-size: .7rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; padding: .25rem 2.6rem;
}
.pass h3 { font-size: 1.5rem; margin-bottom: .2rem; }
.pass__meta { color: var(--gold); font-weight: 800; font-size: .84rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .9rem; }
.pass ul { list-style: none; text-align: left; margin-bottom: 1.4rem; }
.pass ul li { color: var(--muted); padding: .3rem 0 .3rem 1.6rem; position: relative; }
.pass ul li::before { content: "✦"; position: absolute; left: 0; color: var(--sky); }
.pass .btn { margin-top: auto; }

/* ---------- Ticks list ---------- */
.ticks { list-style: none; margin-bottom: 1rem; }
.ticks li { color: var(--muted); padding: .28rem 0 .28rem 1.7rem; position: relative; }
.ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--mint); font-weight: 900; }

/* ---------- Note panel ---------- */
.note-panel {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
}
.note-panel h3 { color: var(--sky); margin-bottom: .7rem; }
.note { color: var(--muted); font-size: .93rem; margin-top: 1rem; }
.section--paper .note { color: var(--ink-soft); }

/* ---------- Venue card ---------- */
.venue-card {
  display: flex; align-items: center; gap: 2.2rem; flex-wrap: wrap; justify-content: center;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2.2rem; max-width: 760px; margin-inline: auto; box-shadow: var(--shadow);
}
.venue-card__logo { width: 132px; height: 132px; object-fit: contain; background: #fff; border-radius: 18px; padding: .6rem; }
.venue-card__info h3 { font-size: 1.7rem; color: var(--sky); margin-bottom: .3rem; }
.venue-card__info address { font-style: normal; color: var(--muted); font-weight: 600; margin-bottom: 1.1rem; }

/* ---------- CTA band ---------- */
.band--cta {
  position: relative; overflow: hidden; text-align: center; padding: 4rem 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 79, 151, .28) 0, transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(76, 194, 255, .26) 0, transparent 55%),
    var(--night-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.band--cta .container { position: relative; z-index: 1; }
.band--cta p { color: var(--muted); max-width: 560px; margin: 0 auto 1.8rem; }

/* ---------- D&D page: video banner hero ---------- */
.dnd-hero {
  position: relative; overflow: hidden; padding: 2.4rem 0 3rem; text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(181, 139, 255, .22) 0, transparent 60%), var(--night);
}
.dnd-hero__frame {
  position: relative; z-index: 1;
  width: min(100% - 2.5rem, 1000px); margin: 0 auto;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line-2); box-shadow: 0 20px 50px rgba(0, 0, 0, .6);
}
.dnd-hero__video { display: block; width: 100%; height: auto; background: #0d0a12; }
.dnd-hero__cta { position: relative; z-index: 1; margin-top: 2rem; }
.dnd-hero__tagline { color: var(--text); font-size: 1.15rem; font-weight: 700; margin-bottom: 1.2rem; }

/* ---------- Footer ---------- */
.site-footer { background: #07061a; border-top: 1px solid var(--line); padding: 3rem 0 1.6rem; color: var(--muted); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 2rem; margin-bottom: 2.2rem; }
.footer__brand { display: flex; align-items: center; gap: .7rem; margin-bottom: .8rem; text-decoration: none; color: var(--text); }
.footer__brand img { width: 44px; height: 44px; object-fit: contain; background: #fff; border-radius: 50%; border: 2px solid var(--sky); padding: 2px; }
.footer__brand span { font-family: var(--display); font-weight: 800; line-height: 1.1; }
.footer h4 { font-family: var(--display); color: var(--text); font-size: 1.05rem; margin-bottom: .7rem; letter-spacing: .04em; }
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: .35rem; }
.footer__col a { color: var(--muted); text-decoration: none; font-weight: 600; }
.footer__col a:hover { color: var(--sky); }
.footer__note { font-size: .93rem; }
.footer__bottom {
  border-top: 1px solid var(--line); padding-top: 1.2rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; align-items: center;
  font-size: .88rem;
}
.footer__social { display: flex; gap: 1.1rem; }
.footer__social a { color: var(--muted); text-decoration: none; font-weight: 700; }
.footer__social a:hover { color: var(--pink); }

/* ---------- Utilities ---------- */
.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;
}
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }
.plain-link { color: var(--sky); font-weight: 700; text-decoration: none; }
.plain-link:hover { text-decoration: underline; }

/* Skip link */
.skip-link {
  position: absolute; left: 50%; transform: translate(-50%, -200%);
  background: var(--pink); color: #fff; padding: .6rem 1.2rem; border-radius: 0 0 12px 12px;
  z-index: 100; font-weight: 800; text-decoration: none; transition: transform .18s ease;
}
.skip-link:focus { transform: translate(-50%, 0); }

:where(a, button, [tabindex]):focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

/* ---------- Scroll reveal (only active when JS is present) ---------- */
.js .reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.2, .7, .2, 1), transform .6s cubic-bezier(.2, .7, .2, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute; top: 100%; right: 0; left: 0; flex-direction: column; gap: 0;
    align-items: stretch; background: var(--night-2); padding: .5rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--line); max-height: 0; overflow: hidden;
    transition: max-height .25s ease;
  }
  .nav__links.is-open { max-height: 460px; }
  .nav__links li { border-bottom: 1px solid var(--line); }
  .nav__links a { padding: .8rem .4rem; border-radius: 0; }
  .nav__cta, .nav__links a.nav__cta { margin: .8rem 0 0; text-align: center; }
}
@media (max-width: 860px) {
  /* minmax(0,1fr) lets the column shrink so wide children wrap instead of overflowing */
  .hero__inner { grid-template-columns: minmax(0, 1fr); text-align: center; }
  .hero__actions, .countdown { justify-content: center; }
  .hero__art { order: -1; }
  .hero__mascot { max-height: 300px; }
  .wwn { grid-template-columns: 1fr; }
  .split, .split--flip { grid-template-columns: 1fr; text-align: center; }
  .section__title--left { text-align: center; }
  .section__title--left + .section__rule { margin-inline: auto; }
  .section__lead--left { text-align: center; margin-inline: auto; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .art-frame { transform: none; }
}
@media (max-width: 900px) {
  .openplay { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .attraction-grid { grid-template-columns: 1fr; }
  .openplay { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .footer__grid { grid-template-columns: 1fr; }
  .topbar__inner { justify-content: center; text-align: center; }
}
@media (max-width: 480px) {
  .hero__title { font-size: clamp(2.1rem, 9vw, 2.8rem); }
  .countdown { flex-wrap: wrap; gap: .5rem; }
  .countdown__unit { min-width: 64px; flex: 0 1 66px; padding: .5rem .3rem; }
  .countdown__unit span { font-size: 1.6rem; }
  .btn { padding: .75rem 1.4rem; font-size: 1rem; }
  .btn--big { padding: .9rem 1.9rem; font-size: 1.1rem; }
  .agenda li { flex-direction: column; gap: .35rem; }
  .agenda__time { min-width: 0; flex-direction: row; align-items: baseline; gap: .5rem; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; transition: none !important; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
}
