/* ─────────────────────────────────────────────
   Design Tokens
───────────────────────────────────────────── */
:root {
  --bg:             #FDF5E8;
  --text:           #5C2A10;
  --text-secondary: #6B1530;
  --accent:         #C42043;
  --border:         #F2A7B8;
  --surface-blush:  #F7D0D8;
  --surface-mint:   #B8E8D0;
  --nav-bg:         #FDF5E8;
  --nav-text:       #5C2A10;
  --link-underline: rgba(26, 74, 60, 0.4);
  --nav-height:     68px;
}

[data-theme="dark"] {
  --bg:             #2A1810;
  --text:           #F5E8DB;
  --text-secondary: #E8C4B8;
  --accent:         #E8628A;
  --border:         #5C2A10;
  --surface-blush:  #5C2A10;
  --surface-mint:   #1A4A3C;
  --nav-bg:         #332015;
  --nav-text:       #F5E8DB;
  --link-underline: rgba(126, 206, 192, 0.4);
}

/* ─────────────────────────────────────────────
   Reset & Base
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; overflow-x: hidden; scroll-padding-top: calc(var(--nav-height) + 2.5rem); }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 1.25rem;
  line-height: 1.7;
  font-weight: 400;
  font-optical-sizing: auto;
  font-feature-settings: "kern" 1, "liga" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

/* ─────────────────────────────────────────────
   PASSWORD GATE
───────────────────────────────────────────── */
#pw-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #1A4A3C;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease;
}

#pw-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 460px;
  width: 90%;
  padding: 2.5rem 2.5rem 3rem;
  background: #FDF5E8;
  border: 3px solid #5C2A10;
  box-shadow: 9px 9px 0 #5C2A10;
}

#pw-inner img { max-width: 320px; width: 100%; height: auto; margin: 0 auto 1.75rem; display: block; }

#pw-inner h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #5C2A10;
  margin-bottom: 0.5rem;
}

#pw-inner p {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  color: #6B1530;
  margin-bottom: 1.5rem;
}

#pw-input {
  width: 100%;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.625rem 0.875rem;
  border: 3px solid #5C2A10;
  background: #FDF5E8;
  color: #5C2A10;
  outline: none;
  box-shadow: 5px 5px 0 #5C2A10;
  margin-bottom: 1rem;
  text-align: center;
}

#pw-input:focus { background: #ffffff; }

#pw-submit {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.625rem 2rem;
  border: 3px solid #5C2A10;
  background: #C42043;
  color: #FDF5E8;
  cursor: pointer;
  box-shadow: 5px 5px 0 #5C2A10;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.1s ease;
}

#pw-submit:hover { background: #ffffff; color: #5C2A10; }
#pw-submit:active { transform: translate(5px,5px); box-shadow: none; }

#pw-gate.hidden { opacity: 0; pointer-events: none; }

/* ─────────────────────────────────────────────
   Nav
───────────────────────────────────────────── */
#nav-tagline {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--nav-text);
  white-space: nowrap;
  margin-right: auto;
  padding-left: 0.25rem;
  text-decoration: none;
  cursor: pointer;
}

#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0.875rem;
  z-index: 200;
  background: var(--nav-bg);
  transition: box-shadow 0.3s ease;
}

#site-nav.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.12); }

#nav-menu {
  display: flex;
  align-items: stretch;
  gap: 0;
  list-style: none;
  height: 100%;
}

#nav-menu li {
  display: flex;
  align-items: center;
  height: 100%;
}

#nav-menu a {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--nav-text);
  text-decoration: none;
  padding: 0.5rem 0.5625rem;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

#nav-menu a:hover { background: rgba(26,74,60,0.1); }

#nav-menu a.active {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 3px;
}

/* Theme toggle */
#theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nav-text);
  margin-left: 0.875rem;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  line-height: 1;
}

#theme-toggle:hover { transform: scale(1.2) rotate(12deg); }

#lang-toggle {
  background: none; border: 1px solid transparent; cursor: pointer;
  padding: 0.5rem 6px; display: flex; align-items: center; gap: 2px;
  color: var(--nav-text); font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em;
  margin-left: 0.375rem; border-radius: 4px; transition: border-color 0.15s;
}
#lang-toggle:hover { border-color: rgba(26,74,60,0.25); }
.lang-opt { opacity: 0.38; transition: opacity 0.15s; }
.lang-opt.active { opacity: 1; }
.lang-sep { opacity: 0.25; font-weight: 300; }

#theme-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 50%;
}

#theme-toggle svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  display: block;
}

/* ─────────────────────────────────────────────
   Column & Full-Bleed
───────────────────────────────────────────── */
.column { max-width: 680px; margin: 0 auto; padding: 0 1.5rem; }

.full-bleed { width: 100vw; margin-left: calc(50% - 50vw); }

.full-bleed .inner { max-width: 680px; margin: 0 auto; padding: 0 1.5rem; }

.color-band { padding: 6rem 0; }

/* ─────────────────────────────────────────────
   Color Bands
───────────────────────────────────────────── */
.bg-mint        { background-color: #B8E8D0; color: #1A4A3C; }
.bg-pastel-pink { background-color: #F2A7B8; color: #5C2A10; }
.bg-dark-green  { background-color: #1A4A3C; color: #B8E8D0; }
.bg-blush       { background-color: #F7D0D8; color: #5C2A10; }
.bg-cherry      { background-color: #C42043; color: #FDF5E8; }

.bg-mint h2, .bg-mint h3         { color: #0A2E20; }
.bg-mint h4                       { color: #1A4A3C; }

.bg-blush h2, .bg-blush h3       { color: #C42043; }
.bg-blush h4                      { color: #5C2A10; }

.bg-pastel-pink h2,
.bg-pastel-pink h3               { color: #C42043; }
.bg-pastel-pink h4               { color: #5C2A10; }

.bg-dark-green h2, .bg-dark-green h3 { color: #7ECEC0; }
.bg-dark-green h4                     { color: #B8E8D0; }

.bg-cherry h2, .bg-cherry h3,
.bg-cherry h4                    { color: #FDF5E8; }

.bg-mint ul li::marker, .bg-dark-green ul li::marker { color: inherit; }
.bg-cherry li::marker            { color: rgba(253,245,232,0.7); }
.bg-pastel-pink li::marker,
.bg-blush li::marker             { color: #C42043; }

[data-theme="dark"] .bg-mint { background-color: #0F3A2E; color: #B8E8D0; }
[data-theme="dark"] .bg-mint h2,
[data-theme="dark"] .bg-mint h3 { color: #7ECEC0; }

[data-theme="dark"] .bg-pastel-pink { background-color: #4A1A25; color: #F5E8DB; }
[data-theme="dark"] .bg-pastel-pink h2,
[data-theme="dark"] .bg-pastel-pink h3 { color: #E8628A; }

[data-theme="dark"] .bg-dark-green { background-color: #0D2E27; color: #7ECEC0; }
[data-theme="dark"] .bg-dark-green h2,
[data-theme="dark"] .bg-dark-green h3 { color: #7ECEC0; }

[data-theme="dark"] .bg-blush { background-color: #5C2A10; color: #F5E8DB; }
[data-theme="dark"] .bg-blush h2,
[data-theme="dark"] .bg-blush h3 { color: #F5E8DB; }

/* ─────────────────────────────────────────────
   Section Hero Band
───────────────────────────────────────────── */
.section-hero {
  position: relative;
  z-index: 2;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url('images/Bg_Pattern_half_B2.jpg');
  background-size: 340px auto;
  background-repeat: repeat;
  background-position: center;
  box-shadow:
    0 7px 10px rgba(0,0,0,0.28),
    0 -7px 10px rgba(0,0,0,0.28);
}

.section-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.56) 0%, transparent 38%),
    linear-gradient(to top,    rgba(0,0,0,0.56) 0%, transparent 38%);
  z-index: 0;
  pointer-events: none;
}

.section-hero-title {
  position: relative;
  z-index: 1;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 148px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.95);
  text-shadow:
    0 0 50px rgba(255,235,150,0.35),
    0 0 100px rgba(255,210,80,0.18),
    0 2px 4px rgba(0,0,0,0.82);
  margin: 0;
}

.section-hero .hero-tt-logo {
  position: relative;
  z-index: 1;
  max-height: none;
  max-width: 88%;
  width: auto;
  filter:
    drop-shadow(0 0 50px rgba(10,4,0,0.55))
    drop-shadow(0 0 100px rgba(10,4,0,0.35))
    drop-shadow(0 2px 4px rgba(10,4,0,0.90));
}

.section-hero-logo {
  height: auto;
  min-height: 380px;
  padding: 2.5rem 0;
}

/* ─────────────────────────────────────────────
   Headings
───────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Inter', system-ui, sans-serif; color: var(--text); }

h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

h2 {
  font-size: 2rem; font-weight: 600;
  line-height: 1.2; letter-spacing: -0.025em;
  margin-top: 3rem; margin-bottom: 1rem;
  color: var(--text);
}

h3 {
  font-size: 1.3125rem; font-weight: 600;
  line-height: 1.3; letter-spacing: -0.015em;
  margin-top: 2.75rem; margin-bottom: 0.75rem;
  color: var(--text);
}

h4 {
  font-size: 0.6875rem; font-weight: 600;
  line-height: 1.4; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--accent);
  margin-top: 2rem; margin-bottom: 0.5rem;
}

/* ─────────────────────────────────────────────
   Paragraphs
───────────────────────────────────────────── */
p { margin-top: 1.25em; hyphens: none; -webkit-hyphens: none; overflow-wrap: break-word; orphans: 3; widows: 3; }
p:first-child { margin-top: 0; }
strong { font-weight: 700; }
em { font-style: italic; }

/* ─────────────────────────────────────────────
   Lead & Logline
───────────────────────────────────────────── */
.lead {
  font-family: 'Bitter', Georgia, serif;
  font-size: 1.75rem; line-height: 1.45;
  font-style: italic; color: var(--text-secondary);
  margin-top: 1.5rem; font-weight: 400;
}

.bg-mint .lead           { color: #1A4A3C; }
.bg-dark-green .lead     { color: #7ECEC0; }
.bg-cherry .lead         { color: rgba(253,245,232,0.9); }
.bg-pastel-pink .lead,
.bg-blush .lead          { color: #5C2A10; }

[data-theme="dark"] .bg-mint .lead       { color: #B8E8D0; }
[data-theme="dark"] .bg-pastel-pink .lead { color: #F5E8DB; }
[data-theme="dark"] .bg-blush .lead      { color: #F5E8DB; }

.logline {
  display: block; width: 100%;
  margin: 2.75rem 0;
  padding: 0;
  font-family: 'Bitter', Georgia, serif;
  font-size: 1.75rem; font-style: italic;
  line-height: 1.55; letter-spacing: 0.005em;
  color: var(--text-secondary);
  text-align: center;
  border: none; background: none;
}

.logline::before, .logline::after { content: none; }

.bg-mint .logline          { color: #1A4A3C; }
.bg-dark-green .logline    { color: #B8E8D0; }
.bg-cherry .logline        { color: rgba(253,245,232,0.9); }
.bg-pastel-pink .logline,
.bg-blush .logline         { color: #5C2A10; }

[data-theme="dark"] .bg-mint .logline       { color: #B8E8D0; }
[data-theme="dark"] .bg-dark-green .logline  { color: #7ECEC0; }
[data-theme="dark"] .bg-pastel-pink .logline { color: #F5E8DB; }
[data-theme="dark"] .bg-blush .logline      { color: #F5E8DB; }

/* ─── Costume reference row ──────────────────── */
.costume-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 1.5rem 0 2rem;
}
.costume-thumb {
  flex: 1 1 0;
  max-width: 30%;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.3);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.costume-thumb:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
}
.costume-thumb img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 600px) {
  .costume-row { flex-direction: column; align-items: center; }
  .costume-thumb { max-width: 85%; }
}

/* ─────────────────────────────────────────────
   Links
───────────────────────────────────────────── */
a { color: var(--accent); text-decoration: underline; text-decoration-color: var(--link-underline); text-underline-offset: 3px; transition: text-decoration-color 0.15s ease; }
a:hover { text-decoration-color: rgba(26,74,60,0.7); }
.bg-dark-green a { color: #7ECEC0; }
.bg-cherry a     { color: #F2A7B8; }

.link-neutral {
  color: inherit;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.25rem; font-weight: 400;
  text-decoration: underline;
  text-decoration-color: var(--link-underline);
  text-underline-offset: 3px;
  display: block; margin-top: 0.875rem;
}
.link-neutral:hover { text-decoration-color: rgba(26,74,60,0.7); }

.q-link {
  color: inherit;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.25rem; font-weight: 400;
  text-decoration: underline;
  text-decoration-color: var(--link-underline);
  text-underline-offset: 3px;
  display: block;
  margin: 1.25rem 0;
}
.q-link:hover { text-decoration-color: currentColor; }

/* ─────────────────────────────────────────────
   Lists
───────────────────────────────────────────── */
ul, ol { margin: 1.25em 0 1.25em 1.75em; }
li { margin-bottom: 0.75em; line-height: 1.65; }
li::marker { color: var(--accent); }
ol li { font-weight: 400; }
ol li::marker { font-family: 'Inter', system-ui, sans-serif; font-size: 0.875em; font-weight: 700; color: var(--accent); }

hr.q-divider { border: none; border-top: 1px solid currentColor; opacity: 0.15; margin: 3rem 0 3.75rem; }

.ticket-num { color: var(--accent); font-size: 1.3125rem; font-weight: 600; font-family: 'Inter', system-ui, sans-serif; }
.bg-blush .ticket-num, .bg-pastel-pink .ticket-num { color: #C42043; }
.bg-dark-green .ticket-num { color: #7ECEC0; }
.bg-cherry .ticket-num { color: rgba(253,245,232,0.9); }
[data-theme="dark"] .bg-mint .ticket-num { color: #B8E8D0; }

/* ─────────────────────────────────────────────
   Buttons
───────────────────────────────────────────── */
.btn {
  display: block; width: fit-content;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9375rem; font-weight: 400;
  letter-spacing: 0.02em; text-decoration: none;
  padding: 0.625rem 1.625rem;
  border-radius: 0;
  border: 3px solid #5C2A10;
  background: #C42043; color: #FDF5E8;
  cursor: pointer; user-select: none;
  box-shadow: 5px 5px 0 #5C2A10, 9px 9px 0 #C42043;
  transition: transform 0.1s ease-in-out, box-shadow 0.1s ease-in-out, background 0.1s ease;
  margin-top: 1.75rem; position: relative;
}

.btn:hover { background: #ffffff; text-decoration: none; color: #5C2A10; }
.btn:active { transform: translate(9px,9px); box-shadow: none; }

.bg-mint .btn { border-color: #1A4A3C; background: #7ECEC0; color: #1A4A3C; box-shadow: 5px 5px 0 #1A4A3C, 9px 9px 0 #7ECEC0; }
.bg-mint .btn:hover { background: #ffffff; color: #1A4A3C; }

.bg-pastel-pink .btn, .bg-blush .btn { border-color: #5C2A10; background: #C42043; color: #FDF5E8; box-shadow: 5px 5px 0 #5C2A10, 9px 9px 0 #C42043; }
.bg-pastel-pink .btn:hover,
.bg-blush .btn:hover { background: #ffffff; color: #5C2A10; }

.bg-dark-green .btn { border-color: #B8E8D0; background: #7ECEC0; color: #1A4A3C; box-shadow: 5px 5px 0 #B8E8D0, 9px 9px 0 #7ECEC0; }
.bg-dark-green .btn:hover { background: #ffffff; color: #1A4A3C; }

.bg-cherry .btn { border-color: #FDF5E8; background: rgba(253,245,232,0.3); color: #FDF5E8; box-shadow: 5px 5px 0 rgba(253,245,232,0.6), 9px 9px 0 rgba(253,245,232,0.3); }
.bg-cherry .btn:hover { background: #ffffff; color: #C42043; }

[data-theme="dark"] .btn { border-color: #F5E8DB; background: #E8628A; color: #2A1810; box-shadow: 5px 5px 0 #F5E8DB, 9px 9px 0 #E8628A; }
[data-theme="dark"] .btn:hover { background: #ffffff; color: #2A1810; }

/* ─────────────────────────────────────────────
   Caption & Fine Print
───────────────────────────────────────────── */
.caption { font-family: 'Inter', system-ui, sans-serif; font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.55; }

.fine-print {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: inherit; opacity: 0.55;
  margin-top: 1.25rem; line-height: 1.55;
}

/* ─────────────────────────────────────────────
   Forms
───────────────────────────────────────────── */
.form-label-above {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: normal;
  color: inherit;
  display: block;
  margin-bottom: 0.875rem;
  margin-top: 2rem;
}

.form-box { background: transparent; border-radius: 0; padding: 0; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 0.75rem; }

.form-field { display: flex; flex-direction: column; gap: 0.3rem; }
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.6875rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  opacity: 0.65;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1rem; font-weight: 700;
  padding: 0.625rem 0.875rem;
  border-radius: 0;
  border: 3px solid #5C2A10;
  background: #FDF5E8; color: #5C2A10;
  outline: none;
  box-shadow: 5px 5px 0 #5C2A10, 9px 9px 0 #F2A7B8;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.form-field input::placeholder,
.form-field select::placeholder,
.form-field textarea::placeholder { color: #F2A7B8; font-weight: 400; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: #ffffff;
  box-shadow: 5px 5px 0 #5C2A10, 9px 9px 0 #F2A7B8;
  outline: none;
}

.bg-mint .form-field input, .bg-mint .form-field select {
  border-color: #1A4A3C; background: #B8E8D0; color: #1A4A3C;
  box-shadow: 5px 5px 0 #1A4A3C, 9px 9px 0 #7ECEC0;
}
.bg-mint .form-field input::placeholder { color: #7ECEC0; }
.bg-mint .form-field input:focus,
.bg-mint .form-field select:focus { background: #ffffff; }

.bg-pastel-pink .form-field input, .bg-pastel-pink .form-field select,
.bg-blush .form-field input,       .bg-blush .form-field select {
  border-color: #5C2A10; background: #F7D0D8; color: #5C2A10;
  box-shadow: 5px 5px 0 #5C2A10, 9px 9px 0 #C42043;
}
.bg-pastel-pink .form-field input::placeholder,
.bg-blush .form-field input::placeholder { color: #C42043; }
.bg-pastel-pink .form-field input:focus,
.bg-pastel-pink .form-field select:focus,
.bg-blush .form-field input:focus,
.bg-blush .form-field select:focus { background: #ffffff; }

.bg-dark-green .form-field input, .bg-dark-green .form-field select {
  border-color: #B8E8D0; background: #1A4A3C; color: #B8E8D0;
  box-shadow: 5px 5px 0 #B8E8D0, 9px 9px 0 #7ECEC0;
}
.bg-dark-green .form-field input::placeholder { color: #7ECEC0; }
.bg-dark-green .form-field input:focus,
.bg-dark-green .form-field select:focus { background: #ffffff; color: #1A4A3C; }

[data-theme="dark"] .form-field input,
[data-theme="dark"] .form-field select {
  border-color: #F5E8DB; background: #2A1810; color: #F5E8DB;
  box-shadow: 5px 5px 0 #F5E8DB, 9px 9px 0 #E8628A;
}
[data-theme="dark"] .form-field input::placeholder { color: #E8628A; }
[data-theme="dark"] .form-field input:focus { background: #ffffff; color: #2A1810; }

.form-privacy { font-family: 'Inter', system-ui, sans-serif; font-size: 0.6875rem; opacity: 0.5; margin-top: 0.875rem; line-height: 1.5; }

.check-group { margin: 0.75rem 0 0.25rem; }

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.625rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: inherit;
  cursor: pointer;
}

.check-item input[type="checkbox"],
.check-item input[type="radio"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 0.2rem;
  accent-color: #C42043;
  cursor: pointer;
}

.bg-mint .check-item input[type="checkbox"],
.bg-mint .check-item input[type="radio"] { accent-color: #1A4A3C; }
.bg-dark-green .check-item input[type="checkbox"],
.bg-dark-green .check-item input[type="radio"] { accent-color: #7ECEC0; }

.check-label-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: inherit; opacity: 0.65;
  display: block; margin: 1.75rem 0 0.5rem;
}

.check-price-tier {
  border: 3px solid #5C2A10;
  padding: 1.5rem 1.25rem 1.25rem;
  margin-bottom: 0.875rem;
  display: block;
  cursor: pointer;
  transition: box-shadow 0.15s ease;
}

.check-price-tier:has(input:checked) { box-shadow: 5px 5px 0 #5C2A10; }

.check-price-tier input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 26px; height: 26px;
  border: 3px solid currentColor;
  border-radius: 50%;
  display: block;
  margin: 0 auto 1rem;
  cursor: pointer;
  transition: background 0.15s ease;
  flex-shrink: 0;
}
.check-price-tier input[type="radio"]:checked {
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.35) inset;
}

.tier-name {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  text-align: center;
  color: inherit;
  opacity: 0.85;
  margin-top: 0.875rem;
}

.tier-cost {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-align: center;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.tier-desc {
  display: block;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  text-align: center;
  padding: 0 1.25rem;
  line-height: 1.55;
  text-wrap: balance;
}

.tier-note {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-style: normal;
  text-align: center;
  opacity: 0.7;
  margin-top: 0.625rem;
  letter-spacing: 0.01em;
}

.tier-normal     { background: #F7D0D8; color: #5C2A10; border-color: #5C2A10; }
.tier-easy       { background: #B8E8D0; color: #1A4A3C; border-color: #1A4A3C; }
.tier-easy:has(input:checked) { box-shadow: 5px 5px 0 #1A4A3C; }
.tier-expert     { background: #1A4A3C; color: #B8E8D0; border-color: #B8E8D0; }
.tier-expert:has(input:checked) { box-shadow: 5px 5px 0 #B8E8D0; }
.tier-benefactor { background: #C42043; color: #FDF5E8; border-color: #FDF5E8; }
.tier-benefactor:has(input:checked) { box-shadow: 5px 5px 0 rgba(253,245,232,0.8); }

.tier-fair    { background: #F7D0D8; color: #5C2A10; border-color: #5C2A10; }
.tier-fair:has(input:checked) { box-shadow: 5px 5px 0 #5C2A10; }
.tier-honkin  { background: #1A4A3C; color: #B8E8D0; border-color: #B8E8D0; }
.tier-honkin:has(input:checked) { box-shadow: 5px 5px 0 #B8E8D0; }
.tier-little  { background: #B8E8D0; color: #1A4A3C; border-color: #1A4A3C; }
.tier-little:has(input:checked) { box-shadow: 5px 5px 0 #1A4A3C; }
.tier-none    { background: #FDF5E8; color: #5C2A10; border-color: #5C2A10; }
.tier-none:has(input:checked) { box-shadow: 5px 5px 0 #5C2A10; }

.check-price-tier strong { display: block; font-size: 1.05rem; }
.check-price-tier em     { font-size: 1rem; opacity: 0.85; font-style: italic; }

/* ─────────────────────────────────────────────
   Ticket blocks
───────────────────────────────────────────── */
.ticket-block { margin-bottom: 2.25rem; }
.ticket-block h3 { margin-top: 0; }

.bg-pastel-pink.reserve-band {
  border-top: 6px solid #5C2A10;
  border-bottom: 6px solid #5C2A10;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15), 0 -8px 24px rgba(0,0,0,0.15);
  position: relative;
  z-index: 2;
}

/* ─────────────────────────────────────────────
   Team Gallery
───────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 60px;
  margin-top: 2rem;
  width: 100%;
  padding: 0 60px;
}

.team-card {
  position: relative;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 3px solid #B8E8D0;
  box-shadow: 5px 5px 0 #1A4A3C;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card:hover {
  transform: translate(-3px,-3px);
  box-shadow: 8px 8px 0 #1A4A3C;
}

.team-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: filter 0.2s ease;
}

.team-card:hover img { filter: brightness(0.65); }

.team-card:not([data-name="Brett Jackson"]):not([data-name="Jaden Andrea"]):not([data-name="Kim Blacklock"]):not([data-name="Will Gatlin"]) { opacity: 0.25; }
.team-card:not([data-name="Brett Jackson"]):not([data-name="Jaden Andrea"]):not([data-name="Kim Blacklock"]):not([data-name="Will Gatlin"]):hover { opacity: 0.5; }

.team-card-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,46,32,0.88);
  color: #B8E8D0;
  padding: 0.5rem 0.625rem;
  pointer-events: none;
}

.team-card-caption strong {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.75rem; font-weight: 700;
  line-height: 1.2;
}

.team-card-caption span {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.625rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.06em;
  opacity: 0.8; margin-top: 0.15rem;
}

#team-modal {
  display: none;
  position: fixed;
  inset: 0; z-index: 5000;
  background: rgba(10,46,32,0.9);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

#team-modal.open { display: flex; }

#team-modal-inner {
  background: #B8E8D0;
  border: 3px solid #1A4A3C;
  box-shadow: 9px 9px 0 #1A4A3C;
  max-width: 540px; width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.75rem;
  color: #1A4A3C;
}

#team-modal-name { color: #0A2E20; margin: 0; font-size: 1.3rem; }
#team-modal-title-span { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.65; display: block; margin-bottom: 0.5rem; }

#team-modal-img {
  width: 100%; height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border: 3px solid #1A4A3C;
}

#team-modal-bio { font-size: 0.9375rem; line-height: 1.6; color: #1A4A3C; margin-top: 0.25rem; }
#team-modal-links { margin-top: 0.5rem; display: flex; gap: 0.75rem; }
#team-modal-links a { color: #1A4A3C; }
#team-modal-links svg { width: 22px; height: 22px; }

#team-modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: none; border: none;
  color: #B8E8D0; font-size: 1.5rem;
  cursor: pointer; font-weight: 700;
  line-height: 1;
}

#team-modal-prev,
#team-modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,46,32,0.7);
  border: 3px solid #B8E8D0;
  color: #B8E8D0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  width: 3rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  z-index: 5001;
  flex-shrink: 0;
}

#team-modal-prev { left: 1rem; }
#team-modal-next { right: 1rem; }

#team-modal-prev:hover,
#team-modal-next:hover {
  background: #B8E8D0;
  color: #0A2E20;
}

/* ─────────────────────────────────────────────
   Spacers
───────────────────────────────────────────── */
.spacer    { display: block; height: 2.5rem; }
.spacer-sm { display: block; height: 1.25rem; }

/* ─────────────────────────────────────────────
   Footer
───────────────────────────────────────────── */
.site-footer {
  background: #C42043;
  padding: 4rem 0 5rem;
  text-align: center;
}

.footer-laa-logo {
  width: 174px; height: 75px;
  display: block; margin: 0 auto;
}

.footer-ig-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: rgba(253,245,232,0.55);
  transition: color 0.2s ease;
}

.footer-ig-link:hover { color: rgba(253,245,232,0.9); }
.footer-ig-link svg { width: 22px; height: 22px; fill: currentColor; display: block; }

.footer-tagline {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  color: rgba(253,245,232,0.75);
  margin-top: 1.25rem;
  letter-spacing: 0.01em;
}

/* ─────────────────────────────────────────────
   Lodging
───────────────────────────────────────────── */
.warning-box {
  border: 3px solid #5C2A10;
  background: #F7D0D8;
  color: #5C2A10;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  font-size: 1rem;
  line-height: 1.6;
}

.warning-box p { margin: 0; }

.bg-mint .warning-box {
  border-color: #1A4A3C;
  background: #d4f0e4;
  color: #1A4A3C;
}

.lodging-option-head {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.5rem; font-weight: 700;
  letter-spacing: -0.02em;
  color: #0A2E20;
  margin: 3rem 0 0.75rem;
  line-height: 1.2;
  border-bottom: 3px solid #1A4A3C;
  padding-bottom: 0.5rem;
}

.lodging-location-block {
  margin: 1.25rem 0 0;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.lodging-location-block strong {
  display: block;
  font-size: 1.05rem;
}

.lodging-location-block .lodging-loc-links {
  display: flex;
  gap: 1.25rem;
  margin-top: 0.4rem;
  flex-wrap: wrap;
}

.lodging-location-block .lodging-loc-links a {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1A4A3C;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.placeholder-content {
  opacity: 0.5; font-style: italic;
  font-family: 'Bitter', Georgia, serif;
  font-size: 1.25rem;
}

/* ─────────────────────────────────────────────
   Ticket form outer box
───────────────────────────────────────────── */
.form-box-outer {
  background: #FDF5E8;
  border: 3px solid #5C2A10;
  box-shadow: 9px 9px 0 #5C2A10;
  padding: 2rem 2.5rem 2.5rem;
  margin-top: 2rem;
}

.reserve-section-head {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #5C2A10;
  margin: 2.5rem 0 0.75rem;
  line-height: 1.2;
  text-align: center;
}

.reserve-section-head:first-child { margin-top: 0; }

/* ─────────────────────────────────────────────
   Dark mode — form overrides
───────────────────────────────────────────── */
[data-theme="dark"] .form-box-outer {
  background: #3A1A10;
  border-color: rgba(245,232,219,0.35);
  box-shadow: 9px 9px 0 rgba(245,232,219,0.2);
}

[data-theme="dark"] .bg-pastel-pink .form-box-outer {
  background: #5C2030;
  border-color: rgba(245,232,219,0.35);
  box-shadow: 9px 9px 0 rgba(245,232,219,0.2);
}

[data-theme="dark"] .bg-blush .form-box-outer {
  background: #7A3010;
  border-color: rgba(245,232,219,0.35);
  box-shadow: 9px 9px 0 rgba(245,232,219,0.2);
}

[data-theme="dark"] .reserve-section-head {
  color: #E8C4B8;
}

[data-theme="dark"] .lodging-option-head {
  color: #7ECEC0;
  border-color: #7ECEC0;
}

[data-theme="dark"] .check-label-title {
  color: #E8C4B8;
}

[data-theme="dark"] .check-item {
  color: #F5E8DB;
}

[data-theme="dark"] .warning-box {
  background: #3A1A10;
  border-color: #E8C4B8;
  color: #F5E8DB;
}

/* ─────────────────────────────────────────────
   Responsive
───────────────────────────────────────────── */
@media (max-width: 900px) {
  .section-hero       { height: 280px; }
  .section-hero-title { font-size: clamp(72px, 14vw, 148px); }
}

@media (max-width: 720px) {
  body                { font-size: 1.125rem; }
  h2                  { font-size: 1.625rem; }
  h3                  { font-size: 1.1875rem; }
  .lead               { font-size: 1.4375rem; }
  .logline            { font-size: 1.3125rem; }
  .section-hero       { height: 220px; }
  .section-hero-title { font-size: clamp(56px, 11vw, 100px); }
  .section-hero .hero-tt-logo { max-height: 130px; }
  .form-row           { grid-template-columns: 1fr; }
  :root               { --nav-height: 108px; }
  #site-nav           { height: auto; min-height: var(--nav-height); flex-wrap: wrap; align-content: flex-start; justify-content: flex-start; padding: 0.35rem 0.5rem 0.3rem; overflow: visible; }
  #nav-tagline        { display: block; width: 100%; margin-right: 0; padding: 0.2rem 0.25rem 0.15rem; font-size: 0.7rem; }
  #nav-menu           { gap: 0; flex-wrap: wrap; width: 100%; padding: 0; }
  #nav-menu a         { font-size: 0.8rem; padding: 0.3rem 0.45rem; }
  .color-band         { padding: 4rem 0; }
  .team-grid          { grid-template-columns: repeat(3, 1fr); }
  .form-box-outer     { padding: 1.25rem 1.25rem 1.75rem; }
  .reserve-section-head { font-size: 1.375rem; }
}

@media (max-width: 480px) {
  #team-modal           { padding: 3.5rem 0.5rem 0.5rem; align-items: flex-start; }
  #team-modal-inner     { padding: 1.25rem; max-height: calc(100vh - 4rem); }
  #team-modal-prev,
  #team-modal-next      { top: auto; bottom: 0.5rem; transform: none; width: 2.5rem; height: 2.5rem; font-size: 1.5rem; }
  #team-modal-prev      { left: 0.5rem; }
  #team-modal-next      { right: 0.5rem; }
  #team-modal-close     { top: 0.75rem; right: 0.75rem; }
}
