/* ============================================================
   THE VLX 2027 — static stylesheet
   Consolidated design tokens + all component styles.
   Converted from the Angular component styles (branch: the-vlx).
   Vintage broadsheet / The New York Times aesthetic.
   ============================================================ */

/* ============================================================
   THE VLX 2027 — "Magazine Cover" theme
   Vintage broadsheet / The New York Times aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,300..900;1,300..900&family=Lora:ital,wght@0,400..700;1,400..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=UnifrakturMaguntia&display=swap');

/* Import Font Awesome */
@import url('assets/fontawesome/css/all.min.css');

/* ---- Brand masthead face: Chomsky (SIL Open Font License 1.1) ---- */
@font-face {
  font-family: 'Chomsky';
  src: url('assets/fonts/chomsky.woff') format('woff'),
       url('assets/fonts/chomsky.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}



:root {
  --paper: #f4efe2;
  --paper-2: #ede6d4;
  --paper-3: #e6dcc4;
  --ink: #1b1713;
  --ink-soft: #4c453a;
  --ink-faint: #857c6b;
  --rule: #16120e;
  --hair: #c6bba2;
  --red: #8a2a1e;      /* oxblood — vintage press accent */
  --orange: #b5541a;   /* nod to VLX brand orange */
  --gold: #a87c26;
  --serif: 'Lora', Georgia, serif;
  --display: 'Playfair Display', 'Times New Roman', serif;
  --sans: 'Libre Franklin', 'Helvetica Neue', Arial, sans-serif;
  --blackletter: 'Chomsky', 'UnifrakturMaguntia', 'Old English Text MT', cursive;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: var(--serif);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.75;
  font-size: 17px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 64px;
  }
}

::selection {
  background: var(--ink);
  color: var(--paper);
}

a {
  color: var(--red);
}

/* Shared vintage devices ------------------------------------ */

/* double rule (thick + thin), classic newspaper */
.rule-double {
  border: 0;
  border-top: 3px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  height: 6px;
  background: transparent;
}

.rule-thin {
  border: 0;
  border-top: 1px solid var(--hair);
}

/* Franklin uppercase label with rules — NYT section kicker */
.kicker {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 14px;
}

.kicker::before,
.kicker::after {
  content: '';
  height: 1px;
  background: var(--rule);
  flex: 1;
}

.kicker.left-align::before {
  display: none;
}

.kicker.left-align::after {
  flex: 0 0 64px;
}

/* ===== app shell (app.css) ===== */

.main-content {
  position: relative;
  top: 0;
  margin: 0 auto;
  padding: 0;
  min-height: calc(100vh - 90px);
  max-width: 1160px;
  width: 100%;
  padding-top: 128px; /* header height */
  background: var(--paper);
}

/* Global reset for the fixed header */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .main-content {
    padding-top: 58px; /* compact mobile masthead */
    min-height: calc(100vh - 58px);
  }
}

/* ===== hero cover (home) ===== */
/* Home — magazine cover hero */
.container {
  margin: 0;
  padding: 0;
}

.hero-container {
  width: 100%;
  max-width: 100%;
  height: 640px;
  background-image: url('assets/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  margin: 0;
}

/* duotone press-print treatment + legibility scrim */
.hero-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      rgba(24, 18, 12, 0.5),
      rgba(24, 18, 12, 0.62) 60%,
      rgba(24, 18, 12, 0.78)
    );
}

/* paper frame inset like a mounted cover photo */
.hero-cover {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(244, 239, 226, 0.55);
  outline: 4px solid rgba(244, 239, 226, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem 3.4rem;
}

.hero-content {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cover-kicker {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #f4efe2;
  opacity: 0.85;
  margin-bottom: 22px;
}

.cover-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  color: #f4efe2;
  text-transform: uppercase;
  margin: 0;
}

.cover-dateline {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  background: #f4efe2;
  padding: 9px 22px;
  margin: 26px 0 20px;
}

.cover-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  justify-content: center;
}

.cover-lines span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: #f4efe2;
}

.cover-lines span::before {
  content: '— ';
  opacity: 0.6;
}

/* Buttons — letterpress style */
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-btn {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  background: #f4efe2;
  color: var(--ink);
  border: 1px solid #f4efe2;
  transition: all 0.25s ease;
}

.hero-btn:hover {
  background: var(--red);
  color: #f4efe2;
  transform: translateY(-2px);
}

.hero-btn-outline {
  background: transparent;
  color: #f4efe2;
  border: 1px solid #f4efe2;
}

.hero-btn-outline:hover {
  background: #f4efe2;
  color: var(--ink);
}

/* cover masthead strip at bottom */
.cover-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #f4efe2;
  background: rgba(24, 18, 12, 0.82);
  border-top: 1px solid rgba(244, 239, 226, 0.35);
  padding: 10px 16px;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-container {
    height: 520px;
  }

  .hero-cover {
    inset: 10px;
    padding: 1.4rem 1rem 3rem;
  }

  .cover-dateline {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    padding: 7px 14px;
  }

  .cover-lines {
    display: none;
  }

  .hero-cta {
    margin-top: 22px;
    gap: 10px;
  }

  .hero-btn {
    font-size: 0.64rem;
    padding: 11px 20px;
    letter-spacing: 0.18em;
  }

  .cover-footer {
    font-size: 0.55rem;
    letter-spacing: 0.16em;
  }
}

/* ===== header / masthead ===== */
/* Header — vintage newspaper masthead */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--paper);
  color: var(--ink);
  z-index: 1000;
  border-top: 4px solid var(--rule);
  border-bottom: 1px solid var(--hair);
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 10px 20px 0;
  position: relative;
}

/* Masthead ------------------------------------------------- */
.masthead {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding-bottom: 8px;
}

.mast-left,
.mast-right {
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.7;
}

.mast-right {
  text-align: right;
}

.mast-left span,
.mast-right span {
  display: block;
}

.mast-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.mast-dancers {
  height: 58px;
  width: auto;
  display: block;
  flex: none;
}

.mast-name {
  font-family: var(--blackletter);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--ink);
  text-decoration: none;
  display: block;
  padding-top: 4px;
}

.mast-sub {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 2px;
}

/* Nav ------------------------------------------------------- */
.nav-rule {
  border-top: 3px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  height: 4px;
}

.nav-primary {
  display: flex;
  justify-content: center;
  padding: 6px 0 7px;
  margin: 0;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item + .nav-item::before {
  content: '·';
  color: var(--ink-faint);
  padding: 0 10px;
}

.nav-link {
  color: var(--ink);
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 4px;
  transition: all 0.25s ease;
  display: block;
}

.nav-link:hover {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}

.hamburger {
  width: 24px;
  height: 2px;
  background-color: var(--ink);
  margin: 4px 0;
  transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--paper);
  border-bottom: 3px solid var(--rule);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 12px 20px;
}

.mobile-nav-item {
  border-bottom: 1px solid var(--hair);
}

.mobile-nav-item:last-child {
  border-bottom: none;
}

.mobile-nav-link {
  color: var(--ink);
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 4px;
  display: block;
  transition: color 0.25s ease;
}

.mobile-nav-link:hover {
  color: var(--red);
}

/* Tablet Styles */
@media (max-width: 968px) {
  .mast-name {
    font-size: 2rem;
  }

  .mast-sub {
    display: none;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-primary {
    display: none;
  }

  .nav-rule {
    display: none;
  }

  .masthead {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 0;
  }

  .mast-left,
  .mast-right {
    display: none;
  }

  .mast-name {
    font-size: 1.9rem;
  }

  .mast-dancers {
    height: 40px;
  }

  .mast-lockup {
    gap: 9px;
  }

  .mast-sub {
    display: block;
    margin-bottom: 2px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .header-container {
    padding: 4px 16px 0;
  }
}

/* ===== footer / colophon ===== */
/* Footer — the colophon, ink band */
.footer-container {
  width: 100%;
  background: var(--ink);
  color: var(--paper);
  padding: 60px 0 40px;
  border-top: 4px solid var(--ink);
}

.footer-content {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.footer-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--paper);
}

.footer-copyright {
  padding-top: 30px;
  border-top: 1px solid rgba(244, 239, 226, 0.25);
  margin-top: 44px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--paper);
  transition: color 0.25s ease;
}

.social-link:hover {
  color: var(--paper);
  opacity: 0.8;
}

.social-link i {
  font-size: 34px;
}

.social-link span {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.copyright-text {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: rgba(244, 239, 226, 0.75);
}

.contact-email {
  font-family: var(--serif);
  font-size: 0.9rem;
  margin: 0;
}

.contact-email a {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.contact-email a:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .social-links {
    gap: 34px;
  }

  .footer-content {
    padding: 0 20px;
  }

  .footer-title {
    font-size: 1.8rem;
  }
}

/* ===== announcement ===== */
/* Announcement — lead article with drop cap */
.announcement-container {
  width: 100%;
  background: var(--paper);
  padding: 64px 0 40px;
  color: var(--ink);
}

.announcement-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.announce-head {
  text-align: center;
  margin-bottom: 34px;
}

.announce-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 12px;
}

.announce-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.15;
  margin: 0;
}

.announce-head::after {
  content: '';
  display: block;
  margin: 26px auto 0;
  width: 160px;
  border-top: 3px double var(--rule);
}

.announcement-text {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 1.1em;
  text-align: center;
}

.announcement-text strong {
  color: var(--ink);
}

/* first paragraph gets a vintage drop cap */
.announcement-text:first-of-type {
  color: var(--ink);
}

.announcement-text:first-of-type::first-letter {
  font-family: var(--display);
  font-weight: 800;
  font-size: 3.6em;
  float: left;
  line-height: 0.82;
  padding: 6px 10px 0 0;
  color: var(--red);
}

.announce-lead {
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--ink);
  font-style: italic;
  margin: 1.4em 0;
}

@media (max-width: 768px) {
  .announcement-container {
    padding: 44px 0 30px;
  }

  .announcement-content {
    padding: 0 18px;
  }

  .announcement-text {
    font-size: 0.95rem;
  }
}

/* ===== overview / programme ===== */
/* Overview — the program as newspaper sections */
.overview-container {
  width: 100%;
  background: var(--paper-2);
  padding: 64px 0 30px;
  color: var(--ink);
  border-top: 3px double var(--rule);
  border-bottom: 3px double var(--rule);
}

.overview-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}

.overview-header {
  margin-bottom: 34px;
}

.overview-title {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 14px;
}

.overview-title::after {
  content: 'Programme';
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  letter-spacing: 0;
  margin-top: 8px;
}

.suggest-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-faint);
  text-align: center;
  display: block;
}

.overview-header .suggest-title {
  margin-top: 4px;
}

/* Day headers — newspaper section slugs */
.day-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin: 46px 0 22px;
  padding-bottom: 10px;
  border-bottom: 3px double var(--rule);
}

.day-title sup {
  font-size: 0.55em;
}

.overview-section:first-of-type .day-title {
  margin-top: 6px;
}

/* Event rows — two-column alternating layout from the 2026 markup:
   .event-details (no class) pairs with .photo-section (no class) => text | photo
   .photo-section.left  pairs with .event-details.right         => photo | text */
.event-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 30px;
  padding: 20px 0;
  border-bottom: 1px solid var(--hair);
  align-items: center;
}

.event-layout:last-child {
  border-bottom: none;
}

.event-details {
  grid-column: 1;
  grid-row: 1;
}

.event-details.right {
  grid-column: 2;
  grid-row: 1;
}

.photo-section {
  grid-column: 2;
  grid-row: 1;
  padding: 10px 0;
}

.photo-section.left {
  grid-column: 1;
  grid-row: 1;
}

.photo-section.right {
  grid-column: 2;
  grid-row: 1;
}

.time-slot .time {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule);
  display: inline-block;
  padding: 6px 10px;
  line-height: 1.4;
}

.event-info .event-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.25;
  margin: 0 0 8px;
}

.event-detail {
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}

.venue-link {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.venue-link:hover {
  color: var(--ink);
}

/* Photos — press prints with paper mats */
.photo-section {
  padding: 10px 0;
}

.photo-placeholder {
  position: relative;
}

.event-photo {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--rule);
  padding: 6px;
  background: var(--paper);
  box-shadow: 3px 3px 0 var(--paper-3);
  filter: grayscale(35%) sepia(12%) contrast(1.02);
  transition: filter 0.4s ease;
}

.event-photo:hover {
  filter: grayscale(0) sepia(0);
}

@media (max-width: 860px) {
  .event-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .event-details,
  .event-details.right {
    grid-column: 1;
    grid-row: 2;
  }

  .photo-section,
  .photo-section.left,
  .photo-section.right {
    grid-column: 1;
    grid-row: 1;
    padding-bottom: 0;
  }
}

/* ===== registrations + t-shirt ===== */
/* Registrations — subscription-desk, letterpress style */
.registrations-container {
  width: 100%;
  background: var(--paper);
  padding: 64px 0 50px;
  color: var(--ink);
}

.registrations-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.registrations-title {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin: 0 0 34px;
}

.registrations-title::after {
  content: 'Registration dates';
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  letter-spacing: 0;
  margin-top: 8px;
  color: var(--ink);
}

/* Countdown — stacked press numerals */
.countdown-container {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.countdown-item {
  background: var(--ink);
  color: var(--paper);
  min-width: 86px;
  padding: 14px 10px 12px;
}

.countdown-value {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1;
}

.countdown-label {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 8px;
  opacity: 0.75;
}

/* Info sections — boxed notices */
.registration-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  text-align: left;
  margin-bottom: 40px;
}

.info-section {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  box-shadow: 4px 4px 0 var(--paper-3);
  padding: 26px 26px 20px;
}

.sold-out-regis {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--red);
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.info-section p {
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 10px;
}

.info-text strong {
  color: var(--ink);
}

.info-section-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 14px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  font-family: var(--serif);
  font-size: 0.98rem;
  line-height: 1.6;
  padding: 9px 0;
  border-bottom: 1px solid var(--hair);
  color: var(--ink);
}

.features-list li:last-child {
  border-bottom: none;
}

/* Register button — letterpress block */
.register-button {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  padding: 17px 44px;
  cursor: not-allowed;
  opacity: 0.85;
  transition: all 0.25s ease;
}

/* T-shirt — classified-ad box */
.tshirt-preorder-section {
  margin-top: 54px;
  padding-top: 40px;
  border-top: 3px double var(--rule);
  text-align: left;
}

.tshirt-preorder-title {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 34px;
}

.tshirt-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: start;
  max-width: 760px;
  margin: 0 auto;
}

.tshirt-image-container {
  border: 1px solid var(--rule);
  padding: 6px;
  background: var(--paper);
  box-shadow: 3px 3px 0 var(--paper-3);
}

.tshirt-image {
  width: 100%;
  display: block;
  filter: grayscale(30%) sepia(10%);
}

.tshirt-details p {
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.tshirt-intro {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.tshirt-info-list {
  margin: 14px 0;
}

.tshirt-info-item {
  border-bottom: 1px solid var(--hair);
  padding: 7px 0;
}

.tshirt-note strong {
  color: var(--ink);
}

.tshirt-disclaimer {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--ink-faint);
}

.tshirt-preorder-button {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  padding: 13px 30px;
  margin-top: 16px;
  cursor: not-allowed;
  opacity: 0.85;
}

@media (max-width: 860px) {
  .registration-info {
    grid-template-columns: 1fr;
  }

  .tshirt-content {
    grid-template-columns: 1fr;
  }

  .countdown-item {
    min-width: 64px;
  }

  .countdown-value {
    font-size: 1.6rem;
  }
}

/* ===== live bands ===== */
/* Live bands — performers' profiles, press-print cards */
.livebands-container {
  width: 100%;
  background: var(--paper);
  padding: 64px 0;
  color: var(--ink);
  border-top: 3px double var(--rule);
}

.livebands-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}

.livebands-title {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 34px;
}

.livebands-title::after {
  content: 'On Stage';
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  letter-spacing: 0;
  margin-top: 8px;
}

.band-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-faint);
  text-align: center;
  margin: -22px 0 44px;
}

.bands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.band-card {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.band-name {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  line-height: 1.5;
}

.band-image {
  width: 100%;
  aspect-ratio: 4/3;
  border: 1px solid var(--rule);
  padding: 6px;
  background: var(--paper);
  box-shadow: 3px 3px 0 var(--paper-3);
  overflow: hidden;
}

.band-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) sepia(14%);
  transition: filter 0.4s ease;
}

.band-card:hover .band-photo {
  filter: grayscale(0) sepia(0);
}

.band-description {
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-style: italic;
}

.band-description a {
  color: var(--red) !important;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.25s ease;
}

.band-description a:hover {
  color: var(--ink) !important;
}

@media (max-width: 860px) {
  .bands-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .band-name {
    letter-spacing: 0.2em;
  }
}

/* ===== transportation ===== */
/* Transportation — travel notices column */
.transportation-container {
  width: 100%;
  background: var(--paper-2);
  padding: 64px 0;
  color: var(--ink);
}

.transportation-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.transportation-title {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 34px;
}

.transportation-title::after {
  content: 'Getting There';
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 3.2rem);
  letter-spacing: 0;
  margin-top: 8px;
}

.transportation-info {
  background: var(--paper);
  border: 1px solid var(--rule);
  box-shadow: 4px 4px 0 var(--paper-3);
  padding: 34px 32px 26px;
}

.info-text {
  font-family: var(--serif);
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 1em;
}

.highlight-text {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
}

.link-text {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.link-text:hover {
  color: var(--ink);
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 14px 0;
  border-top: 1px solid var(--hair);
}

.price-item {
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px solid var(--hair);
}

.contact-info {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  border-top: 3px double var(--rule);
  padding-top: 14px;
  margin-top: 16px;
}

/* ===== accommodation ===== */
/* Accommodation — feature article with notice box */
.accommodation-container {
  width: 100%;
  background: var(--paper);
  padding: 64px 0;
  color: var(--ink);
}

.accommodation-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.accommodation-title {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 34px;
}

.accommodation-title::after {
  content: 'Where to Stay';
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 3.2rem);
  letter-spacing: 0;
  margin-top: 8px;
}

.accommodation-intro {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 16px;
}

.accommodation-text {
  font-family: var(--serif);
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 1em;
}

.accommodation-important {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  box-shadow: 4px 4px 0 var(--paper-3);
  padding: 22px 24px 16px;
  margin: 22px 0;
}

.accommodation-important-title {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.accommodation-important-text {
  font-family: var(--serif);
  font-size: 0.94rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 10px;
}

.accommodation-availability {
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
}

.accommodation-website {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-top: 10px;
}

.accommodation-link {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.accommodation-link:hover {
  color: var(--ink);
}

.accommodation-divider {
  border: 0;
  border-top: 3px double var(--rule);
  margin: 36px 0;
}

.accommodation-subtitle {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.5rem;
  margin: 0 0 14px;
}

.accommodation-disclaimer {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--ink-faint);
}

.accommodation-map {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-top: 14px;
  line-height: 1.8;
}

/* ===== youtube highlights ===== */
/* YouTube highlights — the moving pictures section */
.youtube-container {
  width: 100%;
  background: var(--paper);
  padding: 64px 0;
  color: var(--ink);
}

.youtube-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.youtube-heading {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

.youtube-heading::after {
  content: 'In Motion';
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  letter-spacing: 0;
  margin-top: 8px;
}

.youtube-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-faint);
  text-align: center;
  margin: 6px 0 40px;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.video-card {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  box-shadow: 4px 4px 0 var(--paper-3);
  overflow: hidden;
  transition: all 0.25s ease;
}

.video-card:hover {
  transform: translateY(-3px);
  box-shadow: 6px 7px 0 var(--paper-3);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  background-color: var(--ink);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-title {
  font-family: var(--display);
  font-weight: 700;
  padding: 18px 20px;
  margin: 0;
  font-size: 1.05rem;
  text-align: center;
  color: var(--ink);
}

/* ===== gallery ===== */
/* Gallery — photo essay, press prints */
.gallery-container {
  width: 100%;
  background: var(--paper-2);
  padding: 64px 0;
  color: var(--ink);
  border-top: 3px double var(--rule);
}

.gallery-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.gallery-title {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 40px;
}

.gallery-title::after {
  content: 'The Archives';
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  letter-spacing: 0;
  margin-top: 8px;
}

.slideshow-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.slideshow-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: var(--ink);
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: 5px 5px 0 var(--paper-3);
  margin-bottom: 34px;
}

.slide-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: pan-y pinch-zoom;
  cursor: grab;
}

.slide-image:active {
  cursor: grabbing;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(25%) sepia(10%);
  transition: filter 0.4s ease;
}

.main-image:hover {
  filter: grayscale(0) sepia(0);
}

/* Navigation — squared press buttons */
.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(24, 18, 12, 0.75);
  color: var(--paper);
  border: 1px solid var(--paper);
  width: 46px;
  height: 46px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  z-index: 10;
}

.nav-button:hover {
  background-color: var(--paper);
  color: var(--ink);
}

.prev-button {
  left: 16px;
}

.next-button {
  right: 16px;
}

.arrow {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 4px;
}

/* Counter */
.image-counter {
  position: absolute;
  bottom: 14px;
  left: 16px;
  background: rgba(24, 18, 12, 0.8);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px;
  z-index: 10;
}

/* Thumbnail filmstrip */
.thumbnail-container {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
}

.thumbnail-container::-webkit-scrollbar {
  height: 6px;
}

.thumbnail-container::-webkit-scrollbar-track {
  background: var(--paper-3);
}

.thumbnail-container::-webkit-scrollbar-thumb {
  background: var(--ink);
}

.thumbnail {
  width: 120px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--hair);
  padding: 2px;
  background: var(--paper);
  opacity: 0.55;
  transition: all 0.25s ease;
}

.thumbnail:hover {
  opacity: 0.9;
}

.thumbnail.active {
  border: 1px solid var(--ink);
  box-shadow: 3px 3px 0 var(--paper-3);
  opacity: 1;
}

.thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(35%);
}

.thumbnail.active .thumbnail-image {
  filter: none;
}

@media (max-width: 768px) {
  .nav-button {
    display: none;
  }

  .slide-image {
    cursor: default;
  }

  .slideshow-container {
    aspect-ratio: 4/3;
  }

  .thumbnail {
    width: 84px;
    height: 56px;
  }
}

/* ===== save the date ===== */
/* Save the date — boxed notice with letterpress buttons */
.save-container {
  width: 100%;
  background: var(--ink);
  padding: 64px 0;
  color: var(--paper);
  text-align: center;
}

.save-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.save-eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.save-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  margin: 0 0 16px;
}

.save-content p {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(244, 239, 226, 0.85);
}

.save-content sup {
  font-size: 0.6em;
}

.save-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 18px;
}

.save-btn {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--paper);
  border: 1px solid rgba(244, 239, 226, 0.7);
  padding: 13px 24px;
  transition: all 0.25s ease;
}

.save-btn:hover {
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-2px);
}

.save-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(244, 239, 226, 0.65);
}

/* ===== FAQ ===== */
/* FAQ — the reader asks, broadsheet accordion */
.faq-container {
  width: 100%;
  background: var(--paper-2);
  padding: 64px 0;
  color: var(--ink);
}

.faq-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  text-align: center;
  color: var(--red);
  margin-bottom: 12px;
}

.faq-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  text-align: center;
  margin: 0 0 40px;
}

.faq-item {
  border-bottom: 1px solid var(--hair);
}

.faq-q {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.08rem;
  line-height: 1.4;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 40px;
  transition: color 0.2s ease;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::after {
  content: '+';
  position: absolute;
  right: 6px;
  top: 12px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--ink-faint);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-q::after {
  content: '−';
}

.faq-q:hover {
  color: var(--red);
}

.faq-a {
  font-family: var(--serif);
  font-size: 0.96rem;
  line-height: 1.85;
  color: var(--ink-soft);
  padding: 0 40px 20px 0;
  margin: 0;
}

/* ===== scroll-to-top ===== */
.scroll-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--ink);
  color: var(--paper);
  border: 1px solid var(--paper);
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 4px 4px 0 rgba(24, 18, 12, 0.35);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.scroll-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top-btn:hover {
  background-color: var(--red);
  transform: translateY(-5px);
  box-shadow: 5px 6px 0 rgba(24, 18, 12, 0.4);
}

.scroll-to-top-btn:active {
  transform: translateY(-2px);
}

.scroll-to-top-btn i {
  color: #ffffff;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .scroll-to-top-btn {
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .scroll-to-top-btn {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
  .scroll-to-top-btn {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* ===== terms & conditions ===== */
/* Terms — the fine print, broadsheet style */
.terms-container {
  width: 100%;
  background: var(--paper);
  padding: 60px 0;
  color: var(--ink);
}

.terms-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.terms-main-title {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 10px;
}

.terms-main-title::after {
  content: 'The Fine Print';
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 3.2rem);
  letter-spacing: 0;
  margin-top: 8px;
  color: var(--ink);
}

.terms-content > .terms-main-title + .terms-section {
  border-top: 3px double var(--rule);
  padding-top: 34px;
}

.terms-section {
  margin-bottom: 42px;
}

.terms-section-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.5rem;
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--hair);
}

.terms-subsection-title {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 24px 0 12px;
  color: var(--red);
}

.terms-text {
  font-family: var(--serif);
  font-size: 0.96rem;
  line-height: 1.85;
  margin: 0 0 14px;
  color: var(--ink-soft);
  text-align: left;
}

.terms-text strong {
  color: var(--ink);
}

.terms-list {
  list-style: disc;
  padding-left: 26px;
  margin: 8px 0 18px;
}

.terms-list li {
  font-family: var(--serif);
  font-size: 0.96rem;
  line-height: 1.8;
  margin-bottom: 6px;
  color: var(--ink-soft);
}

.terms-text:last-child {
  margin-bottom: 0;
}

.highlight-text {
  font-weight: 600;
  color: var(--ink);
  border-left: 3px solid var(--red);
  padding-left: 14px;
}

.link-text {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-weight: 600;
}

.link-text:hover {
  color: var(--ink);
}

/* ===== volunteers ===== */
/* Volunteers — recruiting notice, broadsheet style */
.volunteers-container {
  width: 100%;
  background: var(--paper);
  padding: 60px 0 40px;
  color: var(--ink);
}

.volunteers-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.volunteers-header {
  text-align: center;
  margin-bottom: 44px;
  padding-bottom: 30px;
  border-bottom: 3px double var(--rule);
}

.volunteers-title {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.volunteers-title::after {
  content: 'Help Wanted';
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 3.2rem);
  letter-spacing: 0;
  margin-top: 8px;
}

.volunteers-italic {
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.15rem;
  margin: 6px 0 14px;
}

.volunteers-subtitle {
  font-family: var(--serif);
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0;
}

.volunteers-section {
  padding: 0;
}

.content-section {
  margin-bottom: 38px;
}

.section-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--hair);
}

.section-intro {
  font-family: var(--serif);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 10px;
}

.section-text {
  font-family: var(--serif);
  font-size: 0.96rem;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0 0 14px;
}

.section-text.mt-3 {
  margin-top: 14px;
}

.section-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}

.section-list li {
  font-family: var(--serif);
  font-size: 0.96rem;
  line-height: 1.8;
  margin-bottom: 8px;
  padding-left: 22px;
  position: relative;
  color: var(--ink-soft);
}

.section-list li:before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.spirit-quote {
  font-family: var(--serif);
  font-size: 0.96rem;
  color: var(--ink-soft);
  margin: 0 0 12px;
}

.quote {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.7;
  margin: 18px 0;
  padding-left: 18px;
  border-left: 3px solid var(--red);
  color: var(--ink);
}

.button-container {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.apply-button {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  padding: 15px 38px;
  text-decoration: none;
  border: 1px solid var(--ink);
  transition: all 0.25s ease;
}

.apply-button:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

.apply-button:active {
  transform: translateY(0);
}

/* ============================================================
   Registration timeline (three windows)
   ============================================================ */
.countdown-item-days {
  min-width: 168px;
  padding: 20px 22px 18px;
}

.countdown-item-days .countdown-value {
  font-size: 3.4rem;
}

.countdown-item-days .countdown-label {
  font-size: 0.66rem;
  margin-top: 10px;
}

.countdown-eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red);
  text-align: center;
  margin: 0 0 18px;
}

.countdown-open {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--red);
  text-align: center;
  margin: 10px 0 0;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 34px 0 20px;
  text-align: left;
}

.tier {
  position: relative;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  box-shadow: 4px 4px 0 var(--paper-3);
  padding: 24px 22px 20px;
}

.tier.is-open {
  opacity: 0.65;
}

.tier.is-next {
  border-width: 2px;
  box-shadow: 6px 6px 0 var(--paper-3);
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 18px;
  background: var(--red);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 5px 11px;
}

.tier-date {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}

.tier-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.28rem;
  line-height: 1.2;
  margin: 8px 0 10px;
}

.tier-note {
  font-family: var(--serif);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 6px;
}

.tier-note strong {
  color: var(--ink);
}

.tier-footnote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--ink-faint);
  text-align: center;
  margin: 0 0 34px;
}

.steps-list {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0 0 12px;
}

.steps-list li {
  counter-increment: step;
  position: relative;
  padding-left: 30px;
  margin-bottom: 9px;
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.steps-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1px;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--red);
}

.tshirt-section {
  width: 100%;
  background: var(--paper-2);
  padding: 64px 0;
  border-top: 3px double var(--rule);
}

.tshirt-section .tshirt-preorder-section {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (max-width: 860px) {
  .tier-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   VLX 2027 — minimal homepage additions
   (branch: vlx-2027-minimal-homepage)
   ============================================================ */

/* Programme — theme line sits quietly below the details */
.event-theme {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--ink-faint);
  margin: 8px 0 0;
}

/* Live bands — line-up teaser (announced soon) */
.band-teaser {
  max-width: 640px;
  margin: 0 auto;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  box-shadow: 4px 4px 0 var(--paper-3);
  padding: 40px 38px 34px;
  text-align: center;
}

.band-teaser-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.6vw, 2.3rem);
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--ink);
}

.band-teaser-text {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0 0 1em;
}

.band-teaser-text:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .band-teaser {
    padding: 30px 22px 26px;
  }
}

/* Archive — link out to the full Facebook album */
.archive-cta {
  text-align: center;
  margin-top: 36px;
}

.archive-cta-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-faint);
  margin: 0 0 16px;
}

.archive-cta a {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 13px 26px;
  transition: all 0.25s ease;
}

.archive-cta a:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

/* In Motion — follow-us call to action under the videos */
.videos-cta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-faint);
  text-align: center;
  margin: 40px 0 0;
}

/* Countdown — smaller tiles for hours / minutes / seconds */
.countdown-item-sm {
  min-width: 74px;
  padding: 14px 10px 12px;
}

.countdown-item-sm .countdown-value {
  font-size: 1.9rem;
}

/* Announcement — muted legal-ish note */
.announcement-note {
  font-size: 0.85rem;
  color: var(--ink-faint);
  font-style: italic;
}
