@font-face {
    font-family: "Livvic";
    src: url("../fonts/livvic-semibold.woff2") format("woff2");
    font-style: normal;
    font-weight: 500 700;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat BLF";
    src: url("../fonts/montserrat-black.woff2") format("woff2");
    font-style: normal;
    font-weight: 900;
    font-display: swap;
}

:root {
    --paper: #fff6e4;
    --paper-deep: #f4ead6;
    --white: #fffdf8;
    --ink: #231e20;
    --ink-soft: #5d5556;
    --night: #3d2938;
    --night-deep: #31212d;
    --red: #d92b1e;
    --red-dark: #c72419;
    --yellow: #ffcb05;
    --menu-yellow: #f6d03e;
    --orange: #f59b35;
    --teal: #0e7866;
    --teal-bright: #35bca3;
    --blue: #a7dcef;
    --line: rgba(35, 30, 32, 0.17);
    --shadow: 0 18px 50px rgba(35, 30, 32, 0.1);
    --shadow-small: 0 10px 24px rgba(35, 30, 32, 0.08);
    --radius: 24px;
    --radius-small: 14px;
    --container: 1240px;
    --focus: #231e20;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Livvic", Arial, sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

img {
    height: auto;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
}

button,
select,
summary {
    cursor: pointer;
}

[hidden] {
    display: none !important;
}

:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 2px;
    box-shadow: 0 0 0 6px var(--focus);
}

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.04;
}

h1,
h2 {
    font-family: "Montserrat BLF", Impact, sans-serif;
    font-weight: 900;
    letter-spacing: -0.045em;
}

h1 {
    margin-bottom: 26px;
    font-size: clamp(3.2rem, 7.2vw, 7rem);
    text-wrap: balance;
}

h2 {
    margin-bottom: 20px;
    font-size: clamp(2.45rem, 5vw, 4.9rem);
    text-wrap: balance;
}

h3 {
    margin-bottom: 12px;
    font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.section {
    padding-block: clamp(72px, 9vw, 120px);
}

.section--tight {
    padding-block: clamp(56px, 7vw, 88px);
}

.section--topless {
    padding-top: 12px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 12px 18px;
    transform: translateY(-160%);
    border-radius: 8px;
    background: var(--ink);
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
}

.skip-link:focus {
    transform: translateY(0);
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

.eyebrow {
    margin-bottom: 13px;
    color: var(--red-dark);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.25;
    text-transform: uppercase;
}

.page-lead,
.hero__lead {
    max-width: 650px;
    color: var(--ink-soft);
    font-size: clamp(1.15rem, 2vw, 1.38rem);
    line-height: 1.55;
}

.section-heading {
    margin-bottom: clamp(34px, 5vw, 58px);
}

.section-heading > p:not(.eyebrow) {
    max-width: 680px;
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 1.08rem;
}

.section-heading--compact {
    margin-bottom: 32px;
}

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.72fr);
    align-items: end;
    gap: 50px;
}

.section-heading--split h2 {
    margin-bottom: 0;
}

.section-heading--split > p,
.section-heading--split > a {
    justify-self: end;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border: 2px solid var(--red);
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button--secondary {
    border-color: var(--ink);
    background: transparent;
    color: var(--ink);
}

.button--secondary:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
}

.button--ink {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
}

.button--ink:hover {
    border-color: #000;
    background: #000;
}

.button--small {
    min-height: 46px;
    padding: 11px 20px;
    font-size: 0.85rem;
}

.button--block {
    width: 100%;
}

.text-link,
.back-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 9px;
    color: var(--ink);
    font-weight: 800;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.text-link:hover,
.back-link:hover {
    color: var(--red-dark);
}

.section-action {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

.fine-print {
    max-width: 780px;
    margin: 24px auto 0;
    color: var(--ink-soft);
    font-size: 0.82rem;
    text-align: center;
}

.event-ribbon {
    position: relative;
    z-index: 60;
    background: var(--night-deep);
    color: #fff;
    font-size: 0.77rem;
    letter-spacing: 0.025em;
}

.event-ribbon__inner {
    display: flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.event-ribbon__inner > * {
    padding-inline: 18px;
}

.event-ribbon__inner > * + * {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.event-ribbon a {
    text-decoration: none;
}

.event-ribbon a:hover {
    text-decoration: underline;
}

.event-ribbon__inner > strong {
    color: var(--yellow);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.event-ribbon__inner > a {
    font-weight: 800;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(35, 30, 32, 0.18);
    background: var(--menu-yellow);
    box-shadow: 0 5px 16px rgba(35, 31, 32, 0.16);
}

.site-header__inner {
    display: grid;
    min-height: 100px;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 20px;
}

.breadcrumbs {
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink-soft);
    font-size: 0.74rem;
}

.breadcrumbs ol {
    display: flex;
    min-height: 44px;
    margin-block: 0;
    padding-block: 0;
    align-items: center;
    gap: 9px;
    list-style: none;
    white-space: nowrap;
}

.breadcrumbs li {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 9px;
}

.breadcrumbs li:last-child {
    overflow: hidden;
}

.breadcrumbs a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: var(--ink);
    font-weight: 800;
    text-underline-offset: 3px;
}

.breadcrumbs [aria-current="page"] {
    overflow: hidden;
    text-overflow: ellipsis;
}

.brand {
    display: block;
    width: 160px;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    gap: clamp(12px, 1.45vw, 24px);
}

.desktop-nav a {
    position: relative;
    padding-block: 12px;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 6px;
    left: 0;
    height: 3px;
    transform: scaleX(0);
    background: var(--red);
    content: "";
    transition: transform 160ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 0.78rem;
    font-weight: 800;
}

.menu-toggle__icon {
    display: grid;
    width: 22px;
    gap: 6px;
}

.menu-toggle__icon i {
    display: block;
    height: 2px;
    background: var(--ink);
    transition: transform 160ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
    transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: var(--mobile-menu-top, 91px);
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 28px 24px max(36px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: var(--paper);
}

.mobile-menu__nav {
    display: grid;
}

.mobile-menu__nav a {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    font-family: "Montserrat BLF", Impact, sans-serif;
    font-size: 1.4rem;
    text-decoration: none;
}

.mobile-menu__facts {
    margin-top: 32px;
    padding: 22px;
    border-radius: var(--radius-small);
    background: var(--yellow);
}

.mobile-menu__facts p:last-child {
    margin-bottom: 0;
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 15%, rgba(255, 203, 5, 0.34) 0 70px, transparent 71px),
        radial-gradient(circle at 96% 78%, rgba(53, 188, 163, 0.22) 0 145px, transparent 146px),
        var(--paper);
}

.hero__grid {
    display: grid;
    min-height: 680px;
    grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.9fr);
    align-items: center;
    gap: clamp(50px, 7vw, 100px);
}

.hero h1 {
    max-width: 820px;
    font-size: clamp(3.35rem, 6vw, 6.4rem);
}

.hero__event {
    display: grid;
    max-width: 700px;
    margin-top: 32px;
    grid-template-columns: repeat(3, 1fr);
    border-block: 1px solid var(--line);
}

.hero__event > div {
    padding: 17px 20px 17px 0;
}

.hero__event > div + div {
    padding-left: 20px;
    border-left: 1px solid var(--line);
}

.hero__event span,
.hero__event strong {
    display: block;
}

.hero__event span {
    margin-bottom: 4px;
    color: var(--ink-soft);
    font-size: 0.75rem;
    text-transform: uppercase;
}

.hero__event strong {
    font-size: 1rem;
}

.hero__visual {
    position: relative;
    min-height: 590px;
}

.hero-photo {
    position: absolute;
    margin: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-photo--main {
    top: 0;
    right: 0;
    width: 80%;
    height: 92%;
    border-radius: 46% 46% 24px 24px;
}

.hero-photo--small {
    bottom: -12px;
    left: 0;
    width: 48%;
    height: 38%;
    border: 8px solid var(--paper);
    border-radius: 24px 24px 50% 50%;
}

.hero-sticker {
    position: absolute;
    top: 8%;
    left: -4%;
    display: grid;
    width: 112px;
    height: 112px;
    place-items: center;
    transform: rotate(-9deg);
    border: 3px solid var(--ink);
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 6px 6px 0 var(--ink);
    font-family: "Montserrat BLF", Impact, sans-serif;
    font-size: 1.03rem;
    line-height: 1.05;
    text-align: center;
    text-transform: uppercase;
}

.quick-section {
    background: var(--white);
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.quick-card {
    position: relative;
    display: flex;
    min-height: 240px;
    flex-direction: column;
    padding: 24px;
    border: 2px solid var(--ink);
    border-radius: 18px;
    color: var(--ink);
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.quick-card:hover {
    transform: translateY(-5px);
    box-shadow: 7px 7px 0 var(--ink);
}

.quick-card--red {
    background: var(--red);
    color: #fff;
}

.quick-card--yellow {
    background: var(--yellow);
}

.quick-card--teal {
    background: var(--teal-bright);
}

.quick-card--cream {
    background: var(--paper);
}

.quick-card__number {
    margin-bottom: 32px;
    font-size: 0.75rem;
}

.quick-card strong {
    margin-bottom: 10px;
    font-family: "Montserrat BLF", Impact, sans-serif;
    font-size: 1.45rem;
    line-height: 1;
}

.quick-card > span:not(.quick-card__number) {
    font-size: 0.9rem;
    line-height: 1.4;
}

.quick-card i {
    margin-top: auto;
    align-self: flex-end;
    font-size: 1.6rem;
    font-style: normal;
}

.facts-band {
    background: var(--yellow);
}

.facts-band__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.facts-band__grid > div {
    display: flex;
    min-height: 122px;
    align-items: center;
    gap: 15px;
    padding: 22px;
}

.facts-band__grid > div + div {
    border-left: 1px solid rgba(35, 30, 32, 0.28);
}

.facts-band p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.42;
}

.fact-icon {
    display: grid;
    min-width: 48px;
    height: 48px;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 50%;
    font-family: "Montserrat BLF", Impact, sans-serif;
    font-size: 0.82rem;
}

.lineup {
    background: var(--paper);
}

.day-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.day-card {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    padding: 26px;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    box-shadow: 5px 5px 0 var(--ink);
}

.day-card::after {
    position: absolute;
    right: -55px;
    bottom: -60px;
    width: 180px;
    height: 180px;
    border: 3px solid currentColor;
    border-radius: 50%;
    content: "";
    opacity: 0.22;
}

.day-card--red {
    background: var(--red);
    color: #fff;
}

.day-card--teal {
    background: var(--teal-bright);
}

.day-card--orange {
    background: var(--orange);
}

.day-card header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid currentColor;
}

.day-card header span {
    font-family: "Montserrat BLF", Impact, sans-serif;
    font-size: 1.55rem;
    line-height: 1;
}

.day-card header strong {
    font-size: 0.83rem;
}

.day-card__artists {
    margin-top: 36px;
}

.day-card__artists p {
    margin-bottom: 8px;
    font-family: "Montserrat BLF", Impact, sans-serif;
    font-size: clamp(1.7rem, 3.4vw, 2.6rem);
    line-height: 1;
}

.day-card__guest {
    position: absolute;
    bottom: 24px;
    left: 26px;
    display: flex;
    flex-direction: column;
}

.day-card__guest span {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.day-card__guest strong {
    font-size: 0.92rem;
}

.ticket-section {
    background: var(--teal);
    color: #fff;
}

.ticket-section .eyebrow {
    color: #fff;
}

.ticket-section .section-heading > p:not(.eyebrow),
.ticket-section .fine-print {
    color: #fff;
}

.ticket-grid {
    display: grid;
    max-width: 1000px;
    margin-inline: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.ticket-card {
    position: relative;
    overflow: hidden;
    padding: clamp(26px, 4vw, 42px);
    border: 2px solid var(--ink);
    border-radius: 20px;
    background: var(--white);
    box-shadow: 8px 8px 0 var(--ink);
    color: var(--ink);
}

.ticket-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 10px;
    background: repeating-linear-gradient(90deg, var(--yellow) 0 30px, var(--red) 30px 60px, var(--teal-bright) 60px 90px);
    content: "";
}

.badge {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 6px 11px;
    border-radius: 999px;
    background: var(--yellow);
    color: var(--ink);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
}

.badge--free {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--yellow);
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15);
}

.ticket-card__top {
    margin-bottom: 26px;
}

.ticket-card__top > p {
    margin: 20px 0 4px;
    color: var(--ink-soft);
    font-size: 0.85rem;
}

.ticket-card h3 {
    font-family: "Montserrat BLF", Impact, sans-serif;
    font-size: clamp(2.3rem, 5vw, 4rem);
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.ticket-card__price {
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.ticket-card__price strong {
    font-family: "Montserrat BLF", Impact, sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: -0.05em;
    line-height: 1;
}

.ticket-card__price small {
    font-size: 1rem;
    letter-spacing: 0;
}

.ticket-card__price span {
    color: var(--ink-soft);
    font-size: 0.78rem;
}

.ticket-card__per-person {
    margin: 8px 0 20px;
    color: var(--red-dark);
    font-weight: 800;
}

.ticket-card > p:not(.ticket-card__per-person) {
    min-height: 78px;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.activity-section {
    background: var(--white);
}

.festival-zones {
    background: var(--paper);
}

.festival-zones__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.festival-zone-card {
    position: relative;
    display: flex;
    min-height: 370px;
    overflow: hidden;
    flex-direction: column;
    padding: 0 24px 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-small);
}

.legacy-fragment-target {
    position: absolute;
    inset: 0 auto auto 0;
    scroll-margin-top: 150px;
}

.festival-zone-card__art {
    position: relative;
    width: calc(100% + 48px);
    height: 112px;
    flex: 0 0 auto;
    overflow: hidden;
    margin: 0 -24px 22px;
    background: var(--paper-deep);
}

.festival-zone-card__art::after {
    position: absolute;
    inset: 0;
    background: rgba(255, 246, 228, 0.08);
    content: "";
    pointer-events: none;
}

.festival-zone-card__art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.92) contrast(0.98);
    transition: transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.festival-zone-card__index {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    min-width: 42px;
    padding: 8px 10px;
    border: 1px solid rgba(35, 30, 32, 0.2);
    border-radius: 999px;
    background: rgba(255, 246, 228, 0.94);
    color: var(--red-dark);
    font-family: "Montserrat BLF", Impact, sans-serif;
    font-size: 0.84rem;
    line-height: 1;
    text-align: center;
}

.festival-zone-card h3 {
    font-family: "Montserrat BLF", Impact, sans-serif;
    font-size: 1.3rem;
    letter-spacing: -0.025em;
}

.festival-zone-card p {
    color: var(--ink-soft);
    font-size: 0.88rem;
}

.festival-zone-card .text-link {
    margin-top: auto;
    padding-top: 18px;
    font-size: 0.78rem;
}

@media (hover: hover) and (pointer: fine) {
    .festival-zone-card:hover .festival-zone-card__art img,
    .festival-zone-card:focus-within .festival-zone-card__art img {
        transform: scale(1.035);
    }
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.activity-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    content-visibility: auto;
    contain-intrinsic-size: auto 560px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-small);
}

.legacy-card-anchor {
    position: absolute;
    top: -120px;
}

.activity-card__media {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--paper-deep);
}

.activity-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 250ms ease;
}

.activity-card:hover .activity-card__media img {
    transform: scale(1.025);
}

.activity-card__placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    background:
        radial-gradient(circle at 22% 25%, var(--yellow) 0 38px, transparent 39px),
        radial-gradient(circle at 78% 72%, var(--teal-bright) 0 55px, transparent 56px),
        var(--orange);
}

.activity-card__placeholder span {
    transform: rotate(-8deg);
    font-family: "Montserrat BLF", Impact, sans-serif;
    font-size: 3.2rem;
}

.activity-card__body {
    padding: 22px;
}

.activity-card__zone {
    min-height: 2.5em;
    margin-bottom: 9px;
    color: var(--teal);
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.25;
    text-transform: uppercase;
}

.activity-card h3 {
    min-height: 2.1em;
    margin-bottom: 12px;
    font-family: "Montserrat BLF", Impact, sans-serif;
    font-size: 1.45rem;
    letter-spacing: -0.025em;
}

.activity-card__body > p:not(.activity-card__zone) {
    color: var(--ink-soft);
    font-size: 0.88rem;
}

.metadata {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 15px;
}

.metadata span {
    padding: 5px 9px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    font-size: 0.68rem;
}

.card-details {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
}

.card-details summary {
    min-height: 44px;
    padding-block: 10px;
    font-size: 0.78rem;
    font-weight: 800;
}

.card-details p {
    color: var(--ink-soft);
    font-size: 0.84rem;
}

.visit-preview {
    background: var(--paper);
}

.visit-preview__layout {
    display: grid;
    grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(46px, 7vw, 96px);
}

.visit-preview__image {
    position: relative;
}

.visit-preview__image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border: 2px solid var(--ink);
    border-radius: 48% 48% 24px 24px;
    box-shadow: 8px 8px 0 var(--ink);
}

.image-label {
    position: absolute;
    right: -18px;
    bottom: 28px;
    padding: 11px 16px;
    transform: rotate(-3deg);
    border: 2px solid var(--ink);
    background: var(--yellow);
    box-shadow: 4px 4px 0 var(--ink);
    font-size: 0.8rem;
}

.route-list {
    margin-bottom: 28px;
    border-top: 1px solid var(--line);
}

.route-row {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    padding-block: 20px;
    border-bottom: 1px solid var(--line);
}

.route-row > span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--white);
    font-size: 0.75rem;
}

.route-row h3 {
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.route-row p {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 0.86rem;
}

.passport-preview {
    overflow: hidden;
    background: var(--yellow);
}

.passport-preview__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.84fr);
    align-items: center;
    gap: clamp(50px, 8vw, 110px);
}

.passport-preview__copy .eyebrow {
    color: var(--ink);
}

.passport-preview__copy > p:not(.eyebrow) {
    max-width: 620px;
    font-size: 1.08rem;
}

.passport-reward {
    padding: 18px 20px;
    border: 2px solid var(--ink);
    border-radius: var(--radius-small);
    background: var(--white);
    box-shadow: 5px 5px 0 var(--ink);
    font-weight: 800;
}

.passport-preview__media {
    position: relative;
    min-height: 540px;
}

.passport-preview__media > img:first-child {
    position: absolute;
    top: 0;
    right: 8%;
    width: 60%;
    transform: rotate(7deg);
    border: 2px solid var(--ink);
    box-shadow: 11px 11px 0 var(--ink);
}

.passport-mascot {
    position: absolute;
    bottom: -17%;
    left: 0;
    width: 48%;
    filter: drop-shadow(8px 12px 0 rgba(35, 30, 32, 0.18));
}

.news-section {
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.news-grid--all {
    row-gap: 36px;
}

.news-card {
    min-width: 0;
}

.news-card__link {
    display: block;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.news-card__link:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-small);
}

.news-card__media {
    height: 230px;
    overflow: hidden;
    background: var(--paper-deep);
}

.news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card__placeholder {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, transparent 35%, rgba(255, 255, 255, 0.32) 35% 48%, transparent 48%),
        var(--orange);
}

.news-card__body {
    padding: 24px;
}

.news-card__body h3 {
    font-family: "Montserrat BLF", Impact, sans-serif;
    font-size: 1.36rem;
    letter-spacing: -0.025em;
}

.news-card__body > p:not(.eyebrow) {
    color: var(--ink-soft);
    font-size: 0.86rem;
}

.news-card .text-link {
    font-size: 0.82rem;
}

.closing-cta {
    background: var(--red);
    color: #fff;
}

.closing-cta .eyebrow,
.program-followup .eyebrow {
    color: currentColor;
}

.closing-cta__inner {
    display: flex;
    min-height: 270px;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-block: 50px;
}

.closing-cta .eyebrow {
    color: var(--yellow);
}

.closing-cta h2 {
    margin-bottom: 8px;
}

.closing-cta p:last-child {
    margin-bottom: 0;
}

.site-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-top: 72px;
    background: var(--night-deep);
    color: #fff;
}

.site-footer > .container {
    position: relative;
    z-index: 1;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 50px;
    padding-bottom: 70px;
}

.site-footer__brand img {
    width: 160px;
    margin-bottom: 24px;
}

.site-footer__brand p {
    color: rgba(255, 255, 255, 0.72);
}

.site-footer h2 {
    margin-bottom: 20px;
    font-family: "Livvic", Arial, sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li + li {
    margin-top: 9px;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.84rem;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.site-footer a:hover {
    color: var(--yellow);
}

.site-footer__consumer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-block: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer__consumer-copy {
    max-width: 590px;
}

.site-footer__consumer-copy h2 {
    margin-bottom: 7px;
}

.site-footer__consumer-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.78rem;
    line-height: 1.55;
}

.site-footer__anpc-link {
    display: block;
    width: 250px;
    height: 50px;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.site-footer__anpc-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 11px 28px rgba(0, 0, 0, 0.28);
}

.site-footer__anpc-link:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 4px;
}

.site-footer__anpc-link img {
    display: block;
    width: 250px;
    height: 50px;
}

.site-footer__legal {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    padding-block: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.site-footer__legal a,
.site-footer__legal p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.7rem;
}

.page-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 92% 18%, rgba(255, 203, 5, 0.38) 0 95px, transparent 96px),
        var(--paper);
}

.page-hero__grid {
    display: grid;
    min-height: 440px;
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.76fr);
    align-items: center;
    gap: clamp(46px, 8vw, 110px);
}

.page-hero h1 {
    max-width: 930px;
}

.page-hero__visual {
    position: relative;
}

.page-hero__visual img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border: 2px solid var(--ink);
    border-radius: 44% 44% 22px 22px;
    box-shadow: 7px 7px 0 var(--ink);
}

.page-hero--program {
    background: var(--yellow);
}

.page-hero--program .eyebrow,
.page-hero--tickets .eyebrow {
    color: var(--ink);
}

.info-note {
    padding: 28px;
    transform: rotate(1.5deg);
    border: 2px solid var(--ink);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 7px 7px 0 var(--ink);
}

.info-note strong {
    display: block;
    margin-bottom: 11px;
    font-family: "Montserrat BLF", Impact, sans-serif;
    font-size: 1.35rem;
}

.info-note p {
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.info-note span {
    font-size: 0.72rem;
}

.schedule-days {
    display: grid;
    gap: 26px;
}

.schedule-day {
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 7px 7px 0 var(--ink);
}

.schedule-day__header {
    display: flex;
    min-height: 92px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 22px 28px;
    border-bottom: 2px solid var(--ink);
}

.schedule-day--red .schedule-day__header {
    background: var(--red);
    color: #fff;
}

.schedule-day--teal .schedule-day__header {
    background: var(--teal-bright);
}

.schedule-day--orange .schedule-day__header {
    background: var(--orange);
}

.schedule-day__header > div {
    display: flex;
    align-items: baseline;
    gap: 18px;
}

.schedule-day__header div h3 {
    margin: 0;
    font-family: "Montserrat BLF", Impact, sans-serif;
    font-size: 2rem;
}

.schedule-day__header > span,
.schedule-day__header strong {
    font-size: 0.78rem;
}

.schedule-day__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 32px;
    padding: 30px;
}

.schedule-label {
    margin-bottom: 18px;
    color: var(--ink-soft);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.schedule-artists {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.schedule-artist {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 13px;
    min-height: 82px;
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
}

.schedule-artist img {
    width: 58px;
    height: 58px;
    grid-row: 1 / 3;
    object-fit: cover;
    border-radius: 50%;
}

.schedule-artist strong {
    align-self: end;
    font-size: 0.9rem;
    line-height: 1.15;
}

.schedule-artist span {
    align-self: start;
    color: var(--ink-soft);
    font-size: 0.68rem;
}

.schedule-guest {
    display: grid;
    grid-template-columns: 74px 1fr;
    align-content: end;
    align-items: center;
    gap: 12px;
    padding-left: 26px;
    border-left: 1px solid var(--line);
}

.schedule-guest .schedule-label {
    grid-column: 1 / -1;
}

.schedule-guest img {
    width: 74px;
    height: 74px;
    object-fit: cover;
    border-radius: 50%;
}

.schedule-guest strong,
.schedule-guest span {
    display: block;
}

.schedule-guest span {
    color: var(--ink-soft);
    font-size: 0.68rem;
}

.program-followup {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 36px;
    margin-top: 64px;
    padding: 34px;
    border-radius: 18px;
    background: var(--blue);
}

.program-followup h2 {
    max-width: 720px;
    margin-bottom: 0;
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.artist-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.artist-card {
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: 20px;
    background: var(--white);
    box-shadow: 6px 6px 0 var(--ink);
}

.artist-card__media {
    height: 420px;
    overflow: hidden;
    background: var(--paper-deep);
}

.artist-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-card__placeholder {
    width: 100%;
    height: 100%;
    background: var(--orange);
}

.artist-card__body {
    padding: 22px;
}

.artist-card__body p {
    margin-bottom: 7px;
    color: var(--red-dark);
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.artist-card__body h3 {
    margin-bottom: 0;
    font-family: "Montserrat BLF", Impact, sans-serif;
    font-size: 1.62rem;
}

.inline-notice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 58px;
    padding: 28px;
    border: 2px solid var(--ink);
    border-radius: 16px;
    background: var(--yellow);
}

.inline-notice p {
    margin: 0;
}

.page-hero--activities {
    background: var(--teal-bright);
}

.page-hero--activities .eyebrow {
    color: var(--ink);
}

.page-hero--activities .page-lead,
.page-hero--tickets .page-lead {
    color: var(--ink);
}

.activity-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    transform: rotate(1.5deg);
    border: 2px solid var(--ink);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 7px 7px 0 var(--ink);
}

.activity-stats > div {
    display: flex;
    min-height: 150px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    text-align: center;
}

.activity-stats > div + div {
    border-left: 1px solid var(--line);
}

.activity-stats strong {
    font-family: "Montserrat BLF", Impact, sans-serif;
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: 1;
}

.activity-stats span {
    margin-top: 7px;
    color: var(--ink-soft);
    font-size: 0.7rem;
    line-height: 1.25;
}

.activity-directory {
    background: var(--white);
}

.page-hero--visit {
    background: var(--blue);
}

.page-hero--visit .eyebrow {
    color: var(--ink);
}

.venue-address {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 24px;
    color: var(--ink-soft);
    font-size: 0.98rem;
    font-style: normal;
    line-height: 1.5;
}

.venue-address strong {
    color: var(--ink);
}

.location-pin {
    position: absolute;
    right: -15px;
    bottom: 24px;
    padding: 13px 17px;
    transform: rotate(-3deg);
    border: 2px solid var(--ink);
    background: var(--yellow);
    box-shadow: 5px 5px 0 var(--ink);
    font-family: monospace;
    font-size: 0.76rem;
    line-height: 1.3;
}

.route-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.route-card {
    display: flex;
    overflow: hidden;
    flex-direction: column;
    border: 2px solid var(--ink);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 5px 5px 0 var(--ink);
}

.route-card__media {
    overflow: hidden;
    margin: 0;
    aspect-ratio: 740 / 780;
    border-bottom: 2px solid var(--ink);
    background: #e7f4ee;
}

.route-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.route-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(24px, 3vw, 34px);
}

.route-card__heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.route-card__icon {
    display: grid;
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--yellow);
    font-family: "Montserrat BLF", Impact, sans-serif;
    font-size: 0.8rem;
}

.route-card h3 {
    margin: 0;
    font-family: "Montserrat BLF", Impact, sans-serif;
    font-size: 1.45rem;
}

.route-card p {
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.route-card strong {
    margin-top: auto;
    padding-top: 18px;
    font-size: 0.76rem;
}

.route-card__steps {
    display: grid;
    margin: 20px 0 0;
    padding-left: 1.35rem;
    gap: 12px;
    color: var(--ink);
    font-size: 0.9rem;
    line-height: 1.55;
}

.route-card__steps li::marker {
    color: var(--red);
    font-weight: 900;
}

.route-card--wide {
    grid-column: 1 / -1;
    background: var(--yellow);
}

.route-card--wide .route-card__body {
    min-height: 260px;
}

.route-card--wide p {
    max-width: 920px;
    color: var(--ink);
    font-size: 1rem;
}

.route-card--wide .button {
    margin-top: 24px;
}

.access-section {
    background: var(--yellow);
}

.access-section .eyebrow {
    color: var(--ink);
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.access-grid--two {
    max-width: 900px;
    margin-inline: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.access-grid article {
    padding: 24px;
    border: 2px solid var(--ink);
    border-radius: 14px;
    background: var(--white);
}

.access-grid article > span {
    display: grid;
    width: 44px;
    height: 44px;
    margin-bottom: 28px;
    place-items: center;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    font-size: 0.8rem;
}

.access-grid h3 {
    font-size: 1.05rem;
}

.access-grid p {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 0.83rem;
}

.rules-panel {
    display: grid;
    margin-top: 24px;
    padding: 28px;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 50px;
    border: 2px solid var(--ink);
    border-radius: 18px;
    background: var(--night);
    color: #fff;
}

.rules-panel h3 {
    color: var(--yellow);
}

.rules-panel ul {
    margin: 0;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.86rem;
}

.rules-panel > p {
    grid-column: 1 / -1;
    margin: 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.85rem;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.facility-card {
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 6px 6px 0 var(--ink);
}

.facility-card img {
    width: 100%;
    height: 290px;
    object-fit: cover;
}

.facility-card > div {
    padding: 26px;
}

.facility-card h3 {
    font-family: "Montserrat BLF", Impact, sans-serif;
    font-size: 1.55rem;
}

.facility-card p {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 0.88rem;
}

.facility-grid--single .facility-card {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
    align-items: stretch;
}

.facility-grid--single .facility-card img {
    height: 100%;
    min-height: 320px;
}

.facility-grid--single .facility-card > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.passport-detail {
    background: var(--teal);
    color: #fff;
}

.passport-detail .eyebrow {
    color: #fff;
}

.passport-detail__grid {
    display: grid;
    grid-template-columns: minmax(380px, 0.88fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(50px, 8vw, 100px);
}

.passport-detail__media {
    position: relative;
    min-height: 650px;
}

.passport-detail__media img:first-child {
    position: absolute;
    top: 20px;
    left: 0;
    z-index: 1;
    width: 53%;
    transform: rotate(-7deg);
    border: 2px solid var(--ink);
    box-shadow: 8px 8px 0 var(--ink);
}

.passport-detail__media img:last-child {
    position: absolute;
    right: 0;
    bottom: 20px;
    width: 68%;
    transform: rotate(5deg);
    border: 2px solid var(--ink);
    box-shadow: 8px 8px 0 var(--ink);
}

.station-list {
    display: grid;
    margin: 28px 0;
    padding: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 20px;
    list-style: none;
}

.station-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 0.8rem;
}

.station-list span {
    display: grid;
    min-width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 50%;
    font-size: 0.67rem;
}

.passport-detail .passport-reward {
    background: var(--yellow);
    color: var(--ink);
}

.faq-section {
    background: var(--white);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
    gap: clamp(40px, 8vw, 100px);
}

.faq-list {
    border-top: 2px solid var(--ink);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-block: 18px;
    font-size: 1rem;
    list-style: none;
}

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

.faq-list summary span {
    font-size: 1.5rem;
    transition: transform 160ms ease;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 720px;
    padding: 0 40px 22px 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.page-hero--tickets {
    background: var(--orange);
}

.ticket-stamp,
.contest-mark {
    display: grid;
    width: 260px;
    height: 260px;
    margin-inline: auto;
    place-content: center;
    transform: rotate(7deg);
    border: 4px solid var(--ink);
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 11px 11px 0 var(--ink);
    font-family: "Montserrat BLF", Impact, sans-serif;
    text-align: center;
}

.ticket-stamp span,
.ticket-stamp strong,
.ticket-stamp small {
    display: block;
}

.ticket-stamp span {
    font-size: 2.8rem;
    line-height: 0.9;
}

.ticket-stamp strong {
    font-size: 4.5rem;
    line-height: 0.95;
}

.ticket-stamp small {
    margin-top: 6px;
    font-size: 0.8rem;
}

.page-tickets .ticket-section {
    background: var(--paper);
    color: var(--ink);
}

.page-tickets .ticket-section .fine-print {
    color: var(--ink-soft);
}

.page-hero__visual--news img {
    border-radius: 24px 50% 24px 50%;
}

.article-page {
    padding-top: 70px;
    background: var(--white);
}

.article-header {
    max-width: 940px;
    text-align: center;
}

.article-header .back-link {
    margin-bottom: 40px;
    font-size: 0.78rem;
}

.article-header h1 {
    font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.article-header__subtitle {
    color: var(--red-dark);
    font-size: 1.25rem;
}

.article-header__description {
    max-width: 700px;
    margin-inline: auto;
    color: var(--ink-soft);
    font-size: 1.05rem;
}

.article-byline {
    display: flex;
    margin: -6px 0 20px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    color: var(--ink-soft);
    font-size: 0.78rem;
}

.article-byline > span:first-child {
    color: var(--ink);
    font-weight: 800;
}

.article-context {
    display: flex;
    max-width: 760px;
    margin: 28px auto 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 5px 14px;
    padding: 18px 22px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--paper);
    font-size: 0.82rem;
}

.article-context strong,
.article-context span {
    width: 100%;
}

.article-context a {
    font-weight: 800;
    text-underline-offset: 3px;
}

.archive-news {
    background: var(--paper-deep);
}

.article-cover {
    margin-top: 54px;
}

.article-cover img {
    width: 100%;
    max-height: 700px;
    object-fit: cover;
    border-radius: 24px;
}

.article-layout {
    display: grid;
    margin-top: 64px;
    grid-template-columns: minmax(0, 720px) 240px;
    justify-content: center;
    gap: 80px;
}

.article-content {
    color: #393233;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.09rem;
    font-weight: 400;
    line-height: 1.78;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    margin: 2em 0 0.7em;
    color: var(--ink);
    font-family: "Livvic", Arial, sans-serif;
    letter-spacing: -0.02em;
}

.article-content h2 {
    font-size: 2rem;
}

.article-content h3 {
    font-size: 1.45rem;
}

.article-content img {
    width: 100%;
    margin-block: 26px;
    border-radius: 14px;
}

.article-content a {
    color: var(--red-dark);
    text-underline-offset: 3px;
}

.article-content blockquote {
    margin: 30px 0;
    padding: 20px 24px;
    border-left: 5px solid var(--yellow);
    background: var(--paper);
}

.article-aside {
    position: sticky;
    top: 130px;
    display: flex;
    height: max-content;
    flex-direction: column;
    gap: 7px;
    padding: 22px;
    border: 2px solid var(--ink);
    border-radius: 14px;
    background: var(--yellow);
    box-shadow: 5px 5px 0 var(--ink);
}

.article-aside .eyebrow {
    color: var(--ink);
}

.article-aside span {
    font-size: 0.8rem;
}

.article-aside .button {
    margin-top: 14px;
}

.article-related {
    margin-top: clamp(72px, 9vw, 120px);
    padding-top: clamp(54px, 7vw, 84px);
    border-top: 1px solid var(--line);
}

.contest-mark {
    font-size: 8rem;
}

.contest-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.contest-card {
    min-height: 380px;
    padding: 38px;
    border: 2px solid var(--ink);
    border-radius: 20px;
    box-shadow: 7px 7px 0 var(--ink);
}

.contest-card--red {
    background: var(--red);
    color: #fff;
}

.contest-card--yellow {
    background: var(--yellow);
}

.contest-card--teal {
    background: var(--teal-bright);
}

.contest-card .eyebrow {
    color: currentColor;
}

.contest-card h2 {
    font-size: clamp(2.2rem, 3.8vw, 3.7rem);
}

.contest-card p:not(.eyebrow) {
    max-width: 450px;
}

.contest-card .button {
    margin-top: 44px;
}

.ticket-catalog {
    background: var(--paper);
}

.ticket-catalog__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.ticket-option {
    display: flex;
    min-height: 280px;
    flex-direction: column;
    padding: 26px;
    border: 2px solid var(--ink);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 5px 5px 0 var(--ink);
}

.ticket-option > p {
    min-height: 2.8em;
    margin-bottom: 14px;
    font-weight: 800;
}

.ticket-option > strong {
    margin-bottom: 18px;
    font-family: "Montserrat BLF", Impact, sans-serif;
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    letter-spacing: -0.04em;
    line-height: 1;
}

.ticket-option > span {
    color: var(--ink-soft);
    font-size: 0.85rem;
}

.ticket-option .text-link {
    margin-top: auto;
    padding-top: 20px;
    font-size: 0.78rem;
}

.legacy-anchor-handoff {
    display: none;
    padding-block: 18px;
    background: var(--yellow);
}

.legacy-anchor-handoff:target {
    display: block;
}

.legacy-anchor-handoff .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.legacy-anchor-handoff p {
    margin: 0;
}

.rules-panel > p + p {
    padding-top: 0;
    border-top: 0;
}

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

    .header-ticket {
        justify-self: end;
    }

    .menu-toggle {
        display: flex;
    }
}

.not-found__inner {
    max-width: 820px;
    text-align: center;
}

.not-found__inner > span {
    display: block;
    color: var(--yellow);
    font-family: "Montserrat BLF", Impact, sans-serif;
    font-size: clamp(7rem, 20vw, 16rem);
    line-height: 0.8;
    -webkit-text-stroke: 3px var(--ink);
}

.not-found .button-row {
    justify-content: center;
}

@media (max-width: 1080px) {
    .desktop-nav {
        gap: 16px;
    }

    .desktop-nav a {
        font-size: 0.8rem;
    }

    .quick-grid,
    .facts-band__grid,
    .access-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .facts-band__grid > div:nth-child(3) {
        border-left: 0;
        border-top: 1px solid rgba(35, 30, 32, 0.28);
    }

    .facts-band__grid > div:nth-child(4) {
        border-top: 1px solid rgba(35, 30, 32, 0.28);
    }

    .contest-grid,
    .ticket-catalog__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .event-ribbon__inner {
        display: grid;
        min-height: 52px;
        grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.25fr) auto;
        justify-content: stretch;
        line-height: 1.15;
        text-align: center;
    }

    .event-ribbon__inner > * {
        display: grid;
        min-width: 0;
        min-height: 34px;
        padding: 6px 9px;
        place-items: center;
        white-space: normal;
    }

    .event-ribbon__inner > .event-ribbon__price {
        display: none;
    }

    .event-ribbon__inner > *:first-child {
        padding-left: 4px;
    }

    .site-header__inner {
        min-height: 82px;
        grid-template-columns: auto 1fr auto auto;
        gap: 12px;
    }

    .brand {
        width: 132px;
    }

    .desktop-nav {
        display: none;
    }

    .header-ticket {
        justify-self: end;
    }

    .menu-toggle {
        display: flex;
    }

    .hero__grid,
    .page-hero__grid,
    .visit-preview__layout,
    .passport-preview__inner,
    .passport-detail__grid,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .hero__grid {
        min-height: auto;
    }

    .hero__visual {
        min-height: 540px;
    }

    .section-heading--split {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 18px;
    }

    .section-heading--split > p,
    .section-heading--split > a {
        justify-self: start;
    }

    .day-grid,
    .activity-grid,
    .news-grid,
    .artist-grid,
    .route-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .day-card:last-child {
        grid-column: 1 / -1;
    }

    .visit-preview__image img {
        height: 520px;
    }

    .passport-preview__inner {
        gap: 20px;
    }

    .passport-preview__media {
        min-height: 480px;
    }

    .site-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-hero__grid {
        min-height: auto;
    }

    .page-hero__visual,
    .activity-stats,
    .info-note,
    .ticket-stamp,
    .contest-mark {
        max-width: 560px;
    }

    .schedule-day__content {
        grid-template-columns: 1fr;
    }

    .schedule-guest {
        padding: 24px 0 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .article-layout {
        grid-template-columns: minmax(0, 720px);
        gap: 40px;
    }

    .festival-zones__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-aside {
        position: static;
        order: -1;
    }
}

@media (max-width: 680px) {
    body {
        font-size: 16px;
    }

    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .section {
        padding-block: 66px;
    }

    .section--tight {
        padding-block: 52px;
    }

    .section--topless {
        padding-top: 4px;
    }

    h1 {
        font-size: clamp(3rem, 15vw, 4.6rem);
    }

    h2 {
        font-size: clamp(2.25rem, 11vw, 3.6rem);
    }

    .event-ribbon__inner {
        font-size: 0.66rem;
    }

    .site-header__inner {
        grid-template-columns: auto 1fr auto;
    }

    .brand {
        width: 132px;
    }

    .header-ticket {
        min-height: 42px;
        padding: 10px 14px;
    }

    .menu-toggle {
        min-width: 44px;
    }

    .menu-toggle__label {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
    }

    .hero {
        padding-top: 54px;
    }

    .hero h1 {
        font-size: clamp(3rem, 14.4vw, 4.4rem);
    }

    .page-activities .page-hero {
        padding-block: 44px 30px;
    }

    .page-activities .page-hero__grid {
        gap: 24px;
    }

    .page-activities .page-hero h1 {
        font-size: clamp(2.65rem, 12vw, 3.35rem);
    }

    .page-activities .page-lead {
        font-size: 1rem;
    }

    .page-activities .activity-stats > div {
        min-height: 80px;
    }

    .page-activities .activity-stats {
        display: none;
    }

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

    .hero__event > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        padding: 12px 0;
    }

    .hero__event > div + div {
        padding-left: 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .hero__event span {
        margin: 0;
    }

    .button-row .button {
        width: 100%;
    }

    .hero__visual {
        min-height: 470px;
    }

    .hero-photo--main {
        width: 88%;
        height: 90%;
    }

    .hero-photo--small {
        width: 55%;
        height: 34%;
    }

    .hero-sticker {
        top: 4%;
        left: 0;
        width: 92px;
        height: 92px;
        font-size: 0.85rem;
    }

    .quick-grid,
    .facts-band__grid,
    .day-grid,
    .ticket-grid,
    .activity-grid,
    .news-grid,
    .artist-grid,
    .route-grid,
    .access-grid,
    .access-grid--two,
    .facility-grid,
    .contest-grid,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .facility-grid--single .facility-card {
        display: block;
    }

    .facility-grid--single .facility-card img {
        height: 290px;
        min-height: 0;
    }

    .quick-card {
        min-height: 200px;
    }

    .facts-band__grid > div,
    .facts-band__grid > div:nth-child(3),
    .facts-band__grid > div:nth-child(4) {
        min-height: 100px;
        border-top: 1px solid rgba(35, 30, 32, 0.28);
        border-left: 0;
    }

    .facts-band__grid > div:first-child {
        border-top: 0;
    }

    .day-card,
    .day-card:last-child {
        min-height: 360px;
        grid-column: auto;
    }

    .ticket-card h3 {
        font-size: 2.65rem;
    }

    .ticket-card > p:not(.ticket-card__per-person) {
        min-height: 0;
    }

    .activity-card__media,
    .news-card__media {
        height: 210px;
    }

    .activity-card h3,
    .activity-card__zone {
        min-height: 0;
    }

    .visit-preview__image img {
        height: 430px;
    }

    .image-label,
    .location-pin {
        right: 8px;
    }

    .passport-preview__media {
        min-height: 390px;
    }

    .passport-preview__media > img:first-child {
        width: 57%;
    }

    .passport-mascot {
        bottom: -8%;
        width: 54%;
    }

    .closing-cta__inner,
    .site-footer__consumer,
    .site-footer__legal,
    .program-followup,
    .inline-notice {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer__grid {
        gap: 36px;
    }

    .contest-grid,
    .ticket-catalog__grid {
        grid-template-columns: 1fr;
    }

    .ticket-option {
        min-height: 0;
    }

    .legacy-anchor-handoff .container {
        align-items: flex-start;
        flex-direction: column;
    }

    .page-hero__visual img {
        height: 330px;
    }

    .activity-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .activity-stats > div {
        min-height: 80px;
        padding: 10px;
    }

    .activity-stats strong {
        font-size: 2.3rem;
    }

    .schedule-day__header {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .schedule-day__header div h3 {
        font-size: 1.65rem;
    }

    .schedule-artists {
        grid-template-columns: 1fr;
    }

    .schedule-day__content {
        padding: 22px;
    }

    .rules-panel,
    .station-list {
        grid-template-columns: 1fr;
    }

    .passport-detail__grid {
        gap: 20px;
    }

    .passport-detail__media {
        min-height: 480px;
    }

    .ticket-stamp,
    .contest-mark {
        width: 220px;
        height: 220px;
    }

    .ticket-stamp strong {
        font-size: 3.8rem;
    }

    .article-page {
        padding-top: 48px;
    }

    .article-layout {
        margin-top: 42px;
    }

    .article-content {
        font-size: 1rem;
    }

    .festival-zones__grid {
        grid-template-columns: 1fr;
    }

    .festival-zone-card {
        min-height: 0;
        padding-inline: 22px;
        padding-bottom: 22px;
    }

    .festival-zone-card__art {
        width: calc(100% + 44px);
        height: auto;
        aspect-ratio: 800 / 333;
        margin-right: -22px;
        margin-bottom: 20px;
        margin-left: -22px;
    }

    .breadcrumbs ol {
        overflow: hidden;
    }

    .site-footer li a {
        min-height: 44px;
        align-items: center;
    }
}

@media (max-width: 360px) {
    .brand {
        width: 116px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .festival-zone-card__art img {
        transition: none;
    }

    .festival-zone-card:hover .festival-zone-card__art img,
    .festival-zone-card:focus-within .festival-zone-card__art img {
        transform: none;
    }
}

.tracking-frame {
    display: none;
    visibility: hidden;
}

@media print {
    .event-ribbon,
    .site-header,
    .closing-cta,
    .site-footer,
    .button {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
        font-size: 11pt;
    }

    .section {
        padding-block: 24px;
    }

    .schedule-day,
    .activity-card {
        break-inside: avoid;
        box-shadow: none;
    }
}
