:root {
  --ink: #0b0d10;
  --ink-soft: #15181d;
  --paper: #f6f3ed;
  --paper-deep: #eae4da;
  --red: #e32636;
  --red-dark: #b71926;
  --gold: #c69a54;
  --white: #ffffff;
  --muted: #686a6f;
  --line: rgba(11, 13, 16, 0.14);
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow: 0 22px 60px rgba(11, 13, 16, 0.14);
  --radius: 20px;
  --display: "Sora", "Segoe UI", Arial, sans-serif;
  --sans: "Inter", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 2000;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 240, 232, 0.96);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  width: min(1240px, calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 100px;
  height: 58px;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
}

.brand-copy {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.brand-copy span { display: block; color: var(--red); }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.primary-nav a {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] { color: var(--red); }

.primary-nav .nav-ticket {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
}

.primary-nav .nav-ticket:hover,
.primary-nav .nav-ticket:focus-visible { background: var(--red-dark); color: var(--white); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 20px;
  cursor: pointer;
}

.announcement {
  padding: 9px 20px;
  background: var(--red);
  color: var(--white);
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 40px)); margin: 0 auto; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px) 0 0 / 10vw 100%,
    radial-gradient(circle at 75% 35%, rgba(213,31,42,.22), transparent 30%),
    var(--ink);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -36vw;
  width: 68vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 7vw rgba(255,255,255,.018), 0 0 0 14vw rgba(255,255,255,.012);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  padding: 92px 0 104px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: #f0cdd0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-kicker::before { content: ""; width: 36px; height: 2px; background: var(--red); }

.hero h1,
.page-hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 9vw, 126px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.hero h1 em { color: var(--red); font-style: normal; font-weight: 800; }

.hero-lead {
  max-width: 700px;
  margin: 30px 0 0;
  color: #c8c9cc;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.button:hover,
.button:focus-visible { background: var(--red-dark); }

.button.light { background: var(--white); color: var(--ink); }
.button.light:hover, .button.light:focus-visible { background: #e7e7e7; }
.button.dark { background: var(--ink); color: var(--white); }
.button.dark:hover, .button.dark:focus-visible { background: #272b31; }
.button.outline { border-color: currentColor; background: transparent; }
.button.outline:hover, .button.outline:focus-visible { background: rgba(255,255,255,.1); }
.button.outline-dark { border-color: var(--ink); background: transparent; color: var(--ink); }
.button.outline-dark:hover, .button.outline-dark:focus-visible { background: var(--ink); color: var(--white); }

.date-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.date-rail a {
  padding: 24px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  text-align: center;
  text-decoration: none;
}

.date-rail a:last-child { border-right: 0; }
.date-rail strong { display: block; font-family: var(--display); font-size: 34px; line-height: 1; }
.date-rail span { display: block; margin-top: 5px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

.section { padding: 100px 0; }
.section.dark { background: var(--ink); color: var(--white); }
.section.white { background: var(--white); }
.section.red { background: var(--red); color: var(--white); }
.section.compact { padding: 70px 0; }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .7fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 48px;
}

.section-title {
  max-width: 800px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 78px);
  letter-spacing: -0.04em;
  line-height: .98;
}

.section-title em { color: var(--red); font-style: normal; font-weight: 800; }
.section-copy { margin: 0; color: var(--muted); font-size: 17px; }
.dark .section-copy { color: #b6b8bd; }

.schedule-stack { display: grid; gap: 18px; }

.night-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(11,13,16,.045);
}

.night-row:hover { border-color: rgba(213,31,42,.5); }

.night-date-block {
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.night-date-block small { display: block; color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.night-date-block strong { display: block; margin-top: 3px; font-family: var(--display); font-size: 56px; line-height: .9; }
.night-date-block span { display: block; color: var(--muted); font-size: 13px; font-weight: 700; }

.night-program h3 { margin: 0 0 8px; font-family: var(--display); font-size: clamp(27px, 3vw, 40px); line-height: 1.05; }
.night-program p { margin: 0; color: var(--muted); }

.price {
  min-width: 88px;
  text-align: center;
}
.price strong { display: block; font-family: var(--display); font-size: 42px; line-height: 1; }
.price span { display: block; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }

.ticket-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 42px;
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
}

.ticket-band h2 { margin: 0 0 8px; font-family: var(--display); font-size: clamp(36px, 5vw, 64px); line-height: 1; }
.ticket-band p { margin: 0; color: #ffe3e5; }

.split-grid,
.competition-grid,
.ticket-grid,
.info-grid,
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.competition-card,
.info-card,
.ticket-card,
.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.competition-card { padding: 38px; }
.competition-card.student { background: var(--ink); color: var(--white); border-color: var(--ink); }
.competition-card .tag, .tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(213,31,42,.1);
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.competition-card.student .tag { background: rgba(213,31,42,.22); color: #ffbfc4; }
.competition-card h3 { margin: 22px 0 12px; font-family: var(--display); font-size: 42px; line-height: 1; }
.competition-card p { margin: 0 0 24px; color: var(--muted); }
.competition-card.student p { color: #bfc0c3; }

.venue-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 50px;
  align-items: center;
}

.venue-mark {
  min-height: 330px;
  display: grid;
  place-items: center;
  padding: 60px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.venue-mark strong { display: block; font-family: var(--display); font-size: clamp(52px, 7vw, 92px); line-height: .84; }
.venue-mark span { display: block; margin-top: 18px; font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.venue-logo { width: min(460px, 100%); margin: 0 auto; }

.venue-copy h2 { margin: 0 0 20px; font-family: var(--display); font-size: clamp(44px, 6vw, 76px); line-height: .95; }
.venue-copy p { color: var(--muted); }
.venue-address { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); font-weight: 800; }

.page-hero {
  padding: 96px 0 80px;
  background: var(--ink);
  color: var(--white);
}

.page-hero h1 { font-size: clamp(56px, 8vw, 108px); }
.page-hero p { max-width: 760px; margin: 28px 0 0; color: #b8bbc0; font-size: 20px; }
.page-hero .button-row { margin-top: 30px; }

.lineup-night {
  display: grid;
  grid-template-columns: 185px minmax(0, 1fr);
  gap: 45px;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}

.lineup-night:last-child { border-bottom: 0; }
.lineup-date { position: sticky; top: 118px; align-self: start; }
.lineup-date span { color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.lineup-date strong { display: block; margin: 6px 0; font-family: var(--display); font-size: 74px; line-height: .82; }
.lineup-date small { color: var(--muted); font-weight: 700; }

.lineup-content h2 { margin: 0 0 26px; font-family: var(--display); font-size: clamp(42px, 6vw, 74px); line-height: .95; }
.film-list { display: grid; gap: 18px; }

.film-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
}
.film-card.with-image { display: grid; grid-template-columns: minmax(0, .9fr) minmax(260px, 1.1fr); gap: 28px; padding: 0; overflow: hidden; }
.film-card.with-image .film-card-body { padding: 30px 30px 30px 0; }
.film-image { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.film-card h3 { margin: 0 0 9px; font-family: var(--display); font-size: clamp(29px, 4vw, 46px); line-height: 1; }
.film-meta { margin-bottom: 14px; color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.film-card p { margin: 0; color: var(--muted); }
.film-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.text-link { color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.text-link:hover, .text-link:focus-visible { text-decoration: underline; }

.event-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.flow-step { padding: 20px; border-radius: 12px; background: var(--paper); }
.flow-step b { display: block; margin-bottom: 8px; color: var(--red); font-family: var(--display); font-size: 28px; }
.flow-step span { color: var(--muted); font-size: 13px; }

.content-note {
  margin-top: 18px;
  padding: 15px 18px;
  border-left: 3px solid var(--red);
  background: rgba(213,31,42,.07);
  color: var(--muted);
  font-size: 13px;
}

.featured-ticket {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  margin-bottom: 26px;
  padding: 42px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}
.featured-ticket h2 { margin: 0; font-family: var(--display); font-size: clamp(44px, 7vw, 78px); line-height: .95; }
.featured-ticket p { margin: 14px 0 0; color: #b7b9bd; }
.featured-price { text-align: right; }
.featured-price strong { display: block; color: var(--red); font-family: var(--display); font-size: 76px; line-height: .8; }
.featured-price span { font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.featured-price > small { display: block; margin-top: 7px; color: #c8c9cc; font-size: 12px; }

.ticket-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ticket-card { display: flex; min-width: 0; flex-direction: column; padding: 26px; }
.ticket-card h3 { margin: 0 0 6px; font-family: var(--display); font-size: 30px; }
.ticket-card .ticket-date { color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.ticket-card p { min-height: 78px; color: var(--muted); font-size: 14px; }
.ticket-card > strong { display: block; margin: 20px 0 3px; font-family: var(--display); font-size: 44px; line-height: 1; }
.price-note { display: block; min-height: 34px; color: var(--muted); font-size: 11px; line-height: 1.4; }
.checkout-form { display: grid; gap: 10px; margin-top: auto; padding-top: 18px; }
.featured-checkout { width: 240px; margin-left: auto; }
.quantity-control { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: inherit; font-size: 12px; font-weight: 800; }
.quantity-control select {
  width: 78px;
  min-height: 42px;
  padding: 8px 28px 8px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}
.checkout-form .button { width: 100%; padding-right: 12px; padding-left: 12px; font-size: 11px; }

.success-banner {
  display: none;
  margin-bottom: 26px;
  padding: 20px 24px;
  border: 1px solid #7ac996;
  border-radius: 12px;
  background: #e8f8ed;
  color: #205a35;
  font-weight: 700;
}
.success-banner.show { display: block; }
.checkout-notice {
  display: none;
  margin-bottom: 26px;
  padding: 20px 24px;
  border: 1px solid #e0b360;
  border-radius: 12px;
  background: #fff6df;
  color: #674a14;
  font-weight: 700;
}
.checkout-notice.show { display: block; }

.steps { counter-reset: steps; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step { position: relative; padding-top: 56px; }
.step::before { counter-increment: steps; content: "0" counter(steps); position: absolute; top: 0; left: 0; color: var(--red); font-family: var(--display); font-size: 42px; line-height: 1; }
.step h3 { margin: 0 0 8px; font-size: 16px; }
.step p { margin: 0; color: var(--muted); font-size: 14px; }

.deadline-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 32px 36px;
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
}
.deadline-banner h2 { margin: 0; font-family: var(--display); font-size: 42px; line-height: 1; }
.deadline-banner p { margin: 8px 0 0; color: #ffe1e3; }
.deadline-date { white-space: nowrap; font-family: var(--display); font-size: 42px; font-weight: 700; }

.prize-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.prize { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); text-align: center; }
.prize span { display: block; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.prize strong { display: block; margin-top: 8px; font-family: var(--display); font-size: 58px; line-height: 1; }
.prize:first-child { border-top: 5px solid var(--gold); }
.prize:nth-child(2) { border-top: 5px solid #a9adb2; }
.prize:nth-child(3) { border-top: 5px solid #b97449; }

.info-grid { align-items: start; }
.info-card { padding: 34px; }
.info-card h2, .info-card h3 { margin: 0 0 20px; font-family: var(--display); font-size: 34px; line-height: 1; }
.clean-list { margin: 0; padding: 0; list-style: none; }
.clean-list li { position: relative; padding: 14px 0 14px 24px; border-bottom: 1px solid var(--line); color: #45474b; }
.clean-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.clean-list li::before { content: ""; position: absolute; left: 0; top: 24px; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }

.theme-card {
  padding: 50px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}
.theme-card .theme-label { color: #f0aeb4; font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.theme-card h2 { margin: 16px 0; font-family: var(--display); font-size: clamp(46px, 7vw, 82px); font-style: italic; line-height: .95; }
.theme-card p { max-width: 760px; margin: 0; color: #bcbec2; font-size: 17px; }

.resource-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.resource { padding: 24px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.resource h3 { margin: 0 0 14px; color: var(--red); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.resource a { display: block; margin: 9px 0; font-weight: 800; text-decoration: none; }
.resource a:hover, .resource a:focus-visible { color: var(--red); }

.form-choice { padding: 40px; }
.form-choice h2 { margin: 18px 0 10px; font-family: var(--display); font-size: 44px; line-height: 1; }
.form-choice p { color: var(--muted); }

.form-shell {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 45px;
  align-items: start;
}
.form-aside { position: sticky; top: 120px; }
.form-aside h2 { margin: 0 0 16px; font-family: var(--display); font-size: 42px; line-height: 1; }
.form-aside p { color: var(--muted); font-size: 14px; }
.form-aside .aside-note { margin-top: 24px; padding: 20px; border-radius: 12px; background: var(--paper-deep); }

.submission-form { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.submission-form fieldset { margin: 0 0 34px; padding: 0; border: 0; }
.submission-form legend { width: 100%; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 28px; font-weight: 700; }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field { margin-bottom: 17px; }
.field label { display: block; margin-bottom: 7px; font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #c9c7c1;
  border-radius: 9px;
  background: #fdfcf9;
  color: var(--ink);
  outline: 0;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(213,31,42,.12); }
.field-help { display: block; margin-top: 6px; color: var(--muted); font-size: 12px; }
.checkbox { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; margin: 14px 0; color: #484a4e; font-size: 14px; }
.checkbox input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--red); }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.status-page { min-height: 68vh; display: grid; place-items: center; padding: 80px 20px; background: var(--ink); color: var(--white); text-align: center; }
.status-card { max-width: 680px; }
.status-card .status-mark { width: 72px; height: 72px; display: grid; place-items: center; margin: 0 auto 24px; border-radius: 50%; background: var(--red); font-size: 34px; font-weight: 800; }
.status-card h1 { margin: 0; font-family: var(--display); font-size: clamp(52px, 8vw, 86px); line-height: .95; }
.status-card p { color: #b9bbc0; font-size: 18px; }
.status-next {
  display: none;
  margin: 30px auto 0;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
}
.status-next.show { display: block; }
.status-next h2 { margin: 0 0 8px; font-family: var(--display); font-size: 34px; line-height: 1; }
.status-next p { margin: 0 0 18px; font-size: 15px; }

.site-footer { padding: 64px 0 28px; background: #050607; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.1fr .65fr .65fr; gap: 50px; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { width: 118px; padding: 8px; border-radius: 8px; background: var(--white); }
.footer-brand strong { font-family: var(--display); font-size: 28px; line-height: 1; }
.footer-copy { max-width: 440px; margin: 22px 0 0; color: #97999e; font-size: 14px; }
.footer-col h2 { margin: 0 0 16px; color: #c8c9cc; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.footer-col a { display: block; margin: 8px 0; color: var(--white); font-size: 14px; text-decoration: none; }
.footer-col a:hover, .footer-col a:focus-visible { color: #ff858d; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 54px; padding-top: 22px; border-top: 1px solid var(--line-dark); color: #777a80; font-size: 11px; }

/* 2026 visual refresh */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(227, 38, 54, .35);
  outline-offset: 3px;
}

.site-header { background: rgba(246, 243, 237, .94); }
.nav-wrap { min-height: 78px; }
.primary-nav { gap: 20px; }
.primary-nav a { letter-spacing: .045em; }
.primary-nav .nav-ticket { padding: 12px 18px; box-shadow: 0 8px 22px rgba(227, 38, 54, .2); }

.button {
  min-height: 50px;
  padding: 13px 22px;
  letter-spacing: .035em;
  text-transform: none;
  transition: transform .18s ease, background-color .18s ease, color .18s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }

.hero {
  min-height: 720px;
  place-items: stretch;
  background:
    radial-gradient(circle at 12% 15%, rgba(227, 38, 54, .26), transparent 30%),
    linear-gradient(130deg, #090a0d 0%, #11141a 58%, #090a0d 100%);
}
.hero::before {
  content: "2026";
  position: absolute;
  left: -2vw;
  bottom: -7vw;
  color: rgba(255, 255, 255, .025);
  font-family: var(--display);
  font-size: min(34vw, 520px);
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: .7;
}
.hero::after { display: none; }
.hero-layout {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 40px));
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: center;
  padding: 80px 0 88px;
}
.hero-layout > *,
.hero-inner,
.hero-reel,
.reel-card {
  min-width: 0;
  max-width: 100%;
}
.hero-inner { width: auto; padding: 0; }
.hero h1 { max-width: 720px; font-size: clamp(62px, 7vw, 104px); }
.hero-lead { max-width: 620px; font-size: clamp(18px, 1.6vw, 22px); }
.hero-reel {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, 220px);
  gap: 14px;
  transform: rotate(1deg);
}
.reel-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: #1a1d22;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .32);
}
.reel-card:first-child { grid-column: 1 / -1; }
.reel-card img { display: block; width: 100%; max-width: 100%; height: 100%; object-fit: cover; }
.reel-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(5, 6, 7, .88)); }
.reel-label { position: absolute; z-index: 1; left: 18px; right: 18px; bottom: 15px; color: var(--white); }
.reel-label small { display: block; color: #ff98a0; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.reel-label strong { display: block; margin-top: 3px; font-family: var(--display); font-size: 22px; line-height: 1.1; }

.date-rail { position: relative; z-index: 3; box-shadow: 0 12px 34px rgba(11, 13, 16, .06); }
.date-rail strong { font-size: 32px; font-weight: 800; }
.section-title,
.ticket-band h2,
.venue-copy h2,
.page-hero h1,
.lineup-content h2,
.film-card h3,
.competition-card h3,
.featured-ticket h2,
.form-choice h2,
.form-aside h2,
.status-card h1 { font-weight: 800; }

.section-head { align-items: center; }
.section-copy { max-width: 520px; line-height: 1.7; }
.program-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.program-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 45px rgba(11, 13, 16, .075);
}
.program-visual { position: relative; aspect-ratio: 16 / 8.2; overflow: hidden; background: var(--ink); }
.program-visual.film-art { min-height: 0; }
.program-visual.film-art::before { display: none; }
.program-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.program-card:hover .program-visual img { transform: scale(1.025); }
.program-number { position: absolute; z-index: 1; top: 16px; left: 16px; padding: 7px 10px; border-radius: 999px; background: rgba(5, 6, 7, .82); color: var(--white); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.program-body { display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: end; padding: 26px; }
.program-date { margin: 0 0 8px; color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.program-card h3 { margin: 0; font-family: var(--display); font-size: clamp(25px, 2.5vw, 36px); line-height: 1.1; }
.program-card p { margin: 10px 0 0; color: var(--muted); font-size: 14px; }
.program-price { text-align: right; }
.program-price strong { display: block; font-family: var(--display); font-size: 35px; line-height: 1; }
.program-price > span { display: block; margin-top: 4px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.program-price .night-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 13px;
  padding: 10px 13px;
  border: 1px solid rgba(227, 38, 54, .34);
  border-radius: 999px;
  background: #fff4f4;
  color: var(--red-dark);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.program-price .night-link::after { content: "\2192"; font-size: 15px; line-height: 1; transition: transform .2s ease; }
.program-price .night-link:hover,
.program-price .night-link:focus-visible { border-color: var(--red); background: var(--red); color: var(--white); }
.program-price .night-link:hover::after,
.program-price .night-link:focus-visible::after { transform: translateX(3px); }

.competition-card,
.info-card,
.ticket-card,
.form-card,
.submission-form { box-shadow: 0 14px 38px rgba(11, 13, 16, .055); }
.competition-card { min-height: 100%; display: flex; flex-direction: column; }
.competition-card .button-row,
.competition-card > .button { margin-top: auto; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 88px;
  background: linear-gradient(135deg, #090a0d, #171a21);
}
.page-hero::after { content: ""; position: absolute; top: 0; right: 7vw; width: 18px; height: 100%; background: var(--red); transform: skewX(-11deg); opacity: .85; }
.page-hero h1 { max-width: 1050px; line-height: .96; }
.page-hero p { line-height: 1.65; }

.lineup-night { grid-template-columns: 160px minmax(0, 1fr); gap: 52px; }
.lineup-date strong { font-size: 66px; font-weight: 800; }
.lineup-content h2 { font-size: clamp(38px, 5vw, 64px); letter-spacing: -.045em; }
.film-list { gap: 22px; }
.film-card { padding: 30px; box-shadow: 0 14px 38px rgba(11, 13, 16, .055); }
.film-card.with-image { grid-template-columns: minmax(300px, .92fr) minmax(0, 1.08fr); gap: 0; }
.film-card.with-image .film-card-body { display: flex; flex-direction: column; justify-content: center; padding: 34px; }
.film-image { min-height: 315px; }
.film-card h3 { letter-spacing: -.035em; }
.film-card p { line-height: 1.7; }
.film-card-body .event-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.film-art {
  min-height: 315px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(227, 38, 54, .9), rgba(102, 12, 25, .88)),
    repeating-linear-gradient(90deg, transparent 0 52px, rgba(255,255,255,.08) 52px 54px);
  color: var(--white);
}
.film-art.dark-art { background: linear-gradient(145deg, #0a0b0e, #242934); }
.film-art::before { content: "TVFF / 2026"; margin-bottom: auto; color: rgba(255,255,255,.68); font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.film-art small { color: #ffc4c9; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.film-art strong { max-width: 420px; margin-top: 8px; font-family: var(--display); font-size: clamp(34px, 4vw, 54px); line-height: .98; letter-spacing: -.045em; }

.fee-callout {
  margin: 0 0 28px;
  padding: 28px;
  border: 2px solid var(--red);
  border-radius: 16px;
  background: #fff4f4;
}
.fee-callout h2 { margin: 0 0 8px; font-family: var(--display); font-size: 28px; line-height: 1.15; }
.fee-callout p { margin: 0; color: #5c4144; }
.fee-callout .button-row { margin-top: 20px; }
.required-label { display: inline-flex; margin-bottom: 12px; color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.status-next.urgent { border: 2px solid #ff7d87; background: rgba(227, 38, 54, .18); }
.status-next .required-label { color: #ffd5d8; }

.ticket-page { min-height: 100vh; padding: 54px 20px; background: #090a0d; color: var(--white); }
.ticket-actions { width: min(920px, 100%); margin: 0 auto 20px; display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.ticket-actions a { color: var(--white); font-weight: 700; text-decoration: none; }
.print-ticket {
  width: min(920px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .42);
}
.ticket-top { display: grid; grid-template-columns: 1fr 230px; min-height: 390px; }
.ticket-main { padding: 50px; }
.ticket-kicker { color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.ticket-main h1 { margin: 12px 0 20px; font-family: var(--display); font-size: clamp(44px, 7vw, 76px); line-height: .94; letter-spacing: -.055em; }
.ticket-meta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: 34px; }
.ticket-meta span { display: block; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.ticket-meta strong { display: block; margin-top: 4px; font-size: 18px; }
.ticket-stub { position: relative; display: flex; flex-direction: column; justify-content: space-between; padding: 42px 28px; border-left: 2px dashed rgba(255,255,255,.42); background: var(--red); color: var(--white); }
.ticket-stub::before,
.ticket-stub::after { content: ""; position: absolute; left: -14px; width: 26px; height: 26px; border-radius: 50%; background: #090a0d; }
.ticket-stub::before { top: -13px; }
.ticket-stub::after { bottom: -13px; }
.ticket-stub img { width: 118px; padding: 8px; border-radius: 10px; background: var(--white); }
.ticket-code { margin-top: 26px; overflow-wrap: anywhere; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 12px; line-height: 1.5; }
.ticket-code span { display: block; margin-bottom: 7px; color: #ffd4d7; font-family: var(--sans); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.ticket-quantity { margin: auto 0; }
.ticket-quantity span { display: block; color: #ffd4d7; font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.ticket-quantity strong { display: block; margin-top: 2px; font-family: var(--display); font-size: 72px; line-height: 1; }
.ticket-bottom { display: flex; justify-content: space-between; gap: 30px; align-items: center; padding: 24px 50px; border-top: 1px solid var(--line); background: var(--white); }
.ticket-bottom p { margin: 0; color: var(--muted); font-size: 13px; }
.ticket-bottom strong { white-space: nowrap; }
.ticket-warning { width: min(920px, 100%); margin: 20px auto 0; color: #afb1b6; font-size: 13px; text-align: center; }

@media print {
  @page { margin: .35in; }
  body { background: var(--white) !important; }
  .ticket-page { min-height: auto; padding: 0; background: var(--white); color: var(--ink); }
  .ticket-actions, .ticket-warning { display: none !important; }
  .print-ticket { width: 100%; box-shadow: none; border: 1px solid #c9c9c9; }
  .ticket-stub::before, .ticket-stub::after { background: var(--white); }
}

@media (max-width: 1020px) {
  .primary-nav { gap: 15px; }
  .primary-nav a { font-size: 10px; }
  .ticket-grid { grid-template-columns: repeat(2, 1fr); }
  .event-flow, .resource-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-layout { grid-template-columns: minmax(0, 1fr) minmax(0, 420px); gap: 36px; }
  .hero-reel { grid-template-rows: repeat(2, 190px); }
}

@media (max-width: 820px) {
  .menu-toggle { display: grid; place-items: center; }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 22px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  .primary-nav.open { display: grid; }
  .primary-nav a { padding: 9px 4px; font-size: 12px; }
  .primary-nav .nav-ticket { text-align: center; }
  .section-head, .venue-grid, .featured-ticket, .deadline-banner, .form-shell { grid-template-columns: 1fr; }
  .form-aside { position: static; }
  .split-grid, .competition-grid, .info-grid { grid-template-columns: 1fr; }
  .night-row { grid-template-columns: 112px minmax(0, 1fr); }
  .night-row .price { grid-column: 2; text-align: left; }
  .lineup-night { grid-template-columns: 1fr; gap: 20px; }
  .lineup-date { position: static; display: flex; align-items: baseline; gap: 12px; }
  .lineup-date strong { font-size: 48px; }
  .featured-price { text-align: left; }
  .featured-checkout { margin-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .hero-layout { grid-template-columns: minmax(0, 1fr); padding: 74px 0; }
  .hero-reel { grid-template-rows: repeat(2, 210px); transform: none; }
  .program-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav-wrap, .container, .narrow, .hero-inner { width: min(100% - 28px, 1180px); }
  .brand { min-width: 0; }
  .brand img { width: 82px; height: 52px; }
  .brand-copy { display: none; }
  .announcement { font-size: 9px; letter-spacing: .1em; }
  .hero { min-height: 600px; }
  .hero-inner { padding: 74px 0 82px; }
  .hero h1 { font-size: clamp(52px, 17vw, 78px); }
  .hero-actions .button, .button-row .button { width: 100%; }
  .date-rail { grid-template-columns: repeat(2, 1fr); }
  .date-rail a:nth-child(2) { border-right: 0; }
  .date-rail a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section { padding: 76px 0; }
  .section-head { gap: 24px; }
  .night-row { grid-template-columns: 1fr; padding: 24px; }
  .night-date-block { padding: 0 0 18px; border-right: 0; border-bottom: 1px solid var(--line); }
  .night-row .price { grid-column: 1; }
  .ticket-band { grid-template-columns: 1fr; padding: 30px; }
  .ticket-band .button { width: 100%; }
  .ticket-grid, .prize-grid, .steps, .event-flow, .resource-grid { grid-template-columns: 1fr; }
  .film-card.with-image { grid-template-columns: 1fr; }
  .film-card.with-image .film-card-body { padding: 0 24px 26px; }
  .film-image { min-height: 240px; }
  .film-art { min-height: 240px; }
  .featured-ticket { padding: 30px; }
  .deadline-banner { padding: 28px; }
  .deadline-date { font-size: 34px; }
  .theme-card { padding: 32px; }
  .field-row { grid-template-columns: 1fr; }
  .submission-form { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .hero-layout { width: min(100% - 28px, 1180px); gap: 44px; }
  .hero h1 { font-size: clamp(50px, 15vw, 72px); }
  .hero-reel { grid-template-rows: 180px 155px; gap: 10px; }
  .reel-label strong { font-size: 17px; }
  .program-body { grid-template-columns: 1fr; }
  .program-price { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 6px 10px; text-align: left; }
  .program-price .night-link { width: 100%; justify-content: center; }
  .film-card.with-image { grid-template-columns: 1fr; }
  .ticket-top { grid-template-columns: 1fr; }
  .ticket-main { padding: 34px 26px; }
  .ticket-stub { min-height: 210px; border-left: 0; border-top: 2px dashed rgba(255,255,255,.42); }
  .ticket-stub::before, .ticket-stub::after { top: -14px; }
  .ticket-stub::before { left: -13px; }
  .ticket-stub::after { left: auto; right: -13px; bottom: auto; }
  .ticket-bottom { align-items: flex-start; flex-direction: column; padding: 24px 26px; }
  .film-card-body .event-flow { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
