/**
Theme Name: London Oktoberfest Dev
Author: Local Dev
Description: Stable child theme for London Oktoberfest with a video-led homepage.
Template: oktoberfest-bwt
Version: 0.5.2
*/

:root {
    --okt-ink: #1E1D28;
    --okt-muted: #6f6f76;
    --okt-cream: #F4F4F4;
    --okt-paper: #ffffff;
    --okt-blue: #24B0E5;
    --okt-blue-dark: #168ec0;
    --okt-gold: #FF941F;
    --okt-red: #F04438;
    --okt-border: #DCDCDC;
    --okt-shadow: 0 18px 50px rgba(30, 29, 40, 0.12);
    --okt-radius: 8px;
    --okt-max: 1180px;
}

* {
    box-sizing: border-box;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--okt-ink);
    background: #fff;
    font-family: "Yellix-Regular", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

img,
video {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 76px;
    padding: 12px clamp(18px, 4vw, 56px);
    background: var(--okt-blue);
    border-bottom: 0;
    box-shadow: 0 8px 20px rgba(30, 29, 40, 0.08);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    text-decoration: none;
}

.site-brand__name {
    color: #fff;
    font-family: "Yellix-Bold", Arial, sans-serif;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.1;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(12px, 2vw, 28px);
    font-family: "Yellix-SemiBold", Arial, sans-serif;
    font-size: 15px;
}

.site-nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    padding: 0;
    appearance: none;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    cursor: pointer;
}

.site-nav-toggle span:not(.sr-only) {
    position: absolute;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav-toggle span:not(.sr-only):nth-of-type(2) {
    transform: translateY(-7px);
}

.site-nav-toggle span:not(.sr-only):nth-of-type(4) {
    transform: translateY(7px);
}

.site-nav a {
    flex: 0 0 auto;
    color: #fff;
    border-bottom: 2px solid transparent;
}

.site-nav__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 18px;
    background: var(--okt-gold);
    border: 2px solid var(--okt-gold) !important;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(255, 148, 31, 0.28);
    color: #fff !important;
    line-height: 1;
    text-align: center;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.site-nav a,
.text-link {
    text-decoration: none;
}

.site-nav a:hover,
.text-link:hover {
    color: var(--okt-gold);
}

.site-nav__cta:hover {
    background: #ffac47;
    border-color: #ffac47 !important;
    color: #fff;
    box-shadow: 0 10px 24px rgba(255, 148, 31, 0.36);
    transform: translateY(-1px);
}

.okt-page {
    overflow: hidden;
}

.okt-hero {
    position: relative;
    min-height: clamp(560px, 74vh, 760px);
    display: grid;
    align-items: end;
    color: #fff;
    background: var(--okt-blue);
}

.okt-hero__video,
.okt-hero__poster,
.okt-hero__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.okt-hero__video,
.okt-hero__poster {
    object-fit: cover;
}

.okt-hero__poster {
    z-index: 0;
}

.okt-hero__video {
    z-index: 1;
}

.okt-hero__shade {
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(36, 176, 229, 0.88), rgba(36, 176, 229, 0.42) 54%, rgba(36, 176, 229, 0.12)),
        linear-gradient(0deg, rgba(30, 29, 40, 0.58), rgba(30, 29, 40, 0));
}

.okt-hero__content {
    position: relative;
    z-index: 3;
    width: min(var(--okt-max), calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(44px, 7vw, 78px) 0 clamp(56px, 8vw, 92px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    background: var(--okt-blue);
    color: #fff;
    border-radius: 4px;
    margin: 0 0 10px;
    font-family: "Yellix-Bold", Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.okt-hero .eyebrow {
    background: #fff;
    color: var(--okt-blue);
}

.faq-hero {
    color: #fff;
    background: var(--okt-blue);
}

.faq-hero__inner {
    width: min(var(--okt-max), calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(36px, 5vw, 64px) 0 clamp(34px, 4vw, 52px);
}

.faq-hero .eyebrow {
    background: #fff;
    color: var(--okt-blue);
}

.faq-hero h1 {
    max-width: 780px;
    font-size: clamp(38px, 5vw, 58px);
}

.faq-hero__inner > p:not(.eyebrow) {
    max-width: 720px;
    margin: 14px 0 0;
    font-size: clamp(17px, 1.8vw, 20px);
    line-height: 1.45;
}

.faq-hero .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 660px;
    margin-top: 24px;
}

h1,
h2,
h3,
p,
span,
summary {
    overflow-wrap: anywhere;
}

h1,
h2,
h3 {
    word-break: normal;
    hyphens: auto;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Yellix-Bold", Arial, sans-serif;
    line-height: 1.05;
}

h1 {
    max-width: 860px;
    font-size: clamp(44px, 7vw, 84px);
}

h2 {
    font-size: clamp(34px, 5vw, 58px);
}

h3 {
    font-size: 22px;
}

.okt-hero__content p:not(.eyebrow) {
    max-width: 720px;
    margin: 22px 0 0;
    font-size: clamp(18px, 2.1vw, 23px);
    line-height: 1.45;
}

.okt-hero--compact {
    min-height: clamp(420px, 52vh, 560px);
}

.okt-hero--compact .okt-hero__content {
    padding-bottom: clamp(36px, 5vw, 64px);
}

.page-2022 .okt-hero--compact {
    min-height: 0;
    align-items: start;
    color: var(--okt-ink);
    background: var(--okt-cream);
    border-bottom: 1px solid var(--okt-border);
}

.page-2022 .okt-hero--compact .okt-hero__content {
    padding: clamp(40px, 6vw, 72px) 0 clamp(34px, 5vw, 56px);
}

.page-2022 .okt-hero--compact .eyebrow {
    background: var(--okt-blue);
    color: #fff;
}

.page-2022 .okt-hero__content p:not(.eyebrow) {
    max-width: 760px;
    margin-top: 14px;
    color: var(--okt-muted);
}

.contact-page .okt-hero--compact {
    min-height: clamp(520px, 68vh, 700px);
    align-items: end;
    isolation: isolate;
    overflow: hidden;
    color: #fff;
    background: var(--okt-blue);
    border-bottom: 0;
}

.contact-page .okt-hero__poster {
    object-position: center 42%;
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.01);
}

.contact-page .okt-hero__shade {
    background:
        linear-gradient(90deg, rgba(30, 29, 40, 0.88) 0%, rgba(30, 29, 40, 0.62) 40%, rgba(30, 29, 40, 0.2) 72%),
        linear-gradient(0deg, rgba(30, 29, 40, 0.72), rgba(30, 29, 40, 0.06) 52%),
        linear-gradient(90deg, rgba(36, 176, 229, 0.46), rgba(255, 148, 31, 0.22));
}

.contact-page .okt-hero--compact .okt-hero__content {
    width: min(var(--okt-max), calc(100% - 36px));
    padding: clamp(54px, 7vw, 84px) 0 clamp(58px, 8vw, 96px);
}

.contact-page .okt-hero--compact .okt-hero__content > * {
    max-width: 690px;
}

.contact-page .okt-hero--compact .eyebrow {
    background: #fff;
    color: var(--okt-blue);
}

.contact-page .okt-hero__content p:not(.eyebrow) {
    max-width: 660px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.92);
}

.contact-page .okt-hero--compact .button--ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.12);
}

.corporate-ticket-page > .corporate-section:first-child {
    padding-top: clamp(34px, 5vw, 64px);
    padding-bottom: clamp(28px, 4vw, 48px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 2px solid transparent;
    font-family: "Yellix-Bold", Arial, sans-serif;
    text-decoration: none;
    text-align: center;
}

.button--primary {
    background: var(--okt-gold);
    color: #fff;
    border-color: var(--okt-gold);
}

.button--ghost {
    border-color: #fff;
    color: #fff;
    background: rgba(36, 176, 229, 0.18);
}

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

.mobile-booking-card {
    display: none;
}

.mobile-hero-highlights {
    display: none;
}

.mobile-session-summary {
    display: none;
}

.mobile-hero-copy {
    display: none;
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 220px));
    gap: 16px;
    max-width: 560px;
    margin: 28px 0 0;
}

.hero-facts div {
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: var(--okt-radius);
    color: var(--okt-ink);
}

.hero-facts dt {
    color: var(--okt-blue);
    font-family: "Yellix-Bold", Arial, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
}

.hero-facts dd {
    margin: 3px 0 0;
    font-family: "Yellix-Bold", Arial, sans-serif;
    font-size: 24px;
    line-height: 1.1;
}

.proof-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    width: min(var(--okt-max), calc(100% - 36px));
    margin: -46px auto 0;
    position: relative;
    z-index: 4;
    overflow: hidden;
    border-radius: var(--okt-radius);
    box-shadow: var(--okt-shadow);
}

.proof-strip div {
    min-height: 124px;
    padding: 22px;
    background: #fff;
}

.proof-strip strong {
    display: block;
    color: var(--okt-blue);
    font-family: "Yellix-Bold", Arial, sans-serif;
    font-size: 20px;
    line-height: 1.15;
}

.proof-strip span {
    display: block;
    margin-top: 8px;
    color: var(--okt-muted);
    line-height: 1.5;
}

.section--sessions {
    padding-bottom: clamp(40px, 7vw, 78px);
}

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

.session-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 24px;
    color: inherit;
    background: #fff;
    border: 1px solid var(--okt-border);
    border-radius: var(--okt-radius);
    box-shadow: 0 8px 22px rgba(30, 29, 40, 0.06);
    text-decoration: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.session-card:hover,
.session-card:focus-visible {
    border-color: var(--okt-gold);
    box-shadow: 0 16px 38px rgba(255, 148, 31, 0.18);
    transform: translateY(-3px);
}

.session-card:focus-visible {
    outline: 3px solid rgba(36, 176, 229, 0.35);
    outline-offset: 3px;
}

.session-card__day {
    align-self: flex-start;
    margin: 0 0 18px;
    padding: 5px 9px;
    color: #fff;
    background: var(--okt-blue);
    border-radius: 4px;
    font-family: "Yellix-Bold", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.2;
    text-transform: uppercase;
}

.session-card__time {
    margin: 12px 0 0;
    color: var(--okt-red);
    font-family: "Yellix-Bold", Arial, sans-serif;
    font-size: 24px;
    line-height: 1.15;
}

.session-card p:last-child {
    margin: 14px 0 0;
    color: var(--okt-muted);
}

.session-card .text-link {
    margin-top: auto;
    padding-top: 18px;
}

.section {
    width: min(var(--okt-max), calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(54px, 8vw, 92px) 0;
    scroll-margin-top: 110px;
}

.section__header {
    max-width: 820px;
    margin-bottom: 34px;
}

.section__header p:not(.eyebrow) {
    margin: 16px 0 0;
    color: var(--okt-muted);
    font-size: 20px;
    line-height: 1.55;
}

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

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    font-size: 18px;
}

.intro-grid p {
    margin: 0;
}

.experience-grid article {
    min-height: 100%;
    padding: 26px;
    background: #fff;
    border: 1px solid var(--okt-border);
    border-radius: var(--okt-radius);
    box-shadow: 0 10px 28px rgba(30, 29, 40, 0.06);
}

.experience-grid img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin-bottom: 18px;
}

.experience-grid p {
    margin: 12px 0 0;
    color: var(--okt-muted);
}

.section__header--row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    max-width: none;
}

.section__header--row .button {
    flex: 0 0 auto;
}

.section--highlight {
    width: 100%;
    max-width: none;
    padding-inline: max(18px, calc((100vw - var(--okt-max)) / 2));
    background: var(--okt-cream);
    border-block: 1px solid var(--okt-border);
}

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

.ticket-grid--page {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.ticket-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 100%;
    padding: 24px;
    background: var(--okt-paper);
    border: 1px solid var(--okt-border);
    border-radius: var(--okt-radius);
    box-shadow: 0 8px 22px rgba(30, 29, 40, 0.06);
    color: inherit;
    text-decoration: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ticket-card:hover,
.ticket-card:focus-visible {
    border-color: var(--okt-gold);
    box-shadow: 0 16px 38px rgba(255, 148, 31, 0.18);
    transform: translateY(-3px);
}

.ticket-card:focus-visible {
    outline: 3px solid rgba(36, 176, 229, 0.35);
    outline-offset: 3px;
}

.ticket-card--corporate {
    padding: clamp(24px, 4vw, 34px);
}

.ticket-card--featured {
    border: 2px solid var(--okt-gold);
    box-shadow: 0 18px 44px rgba(255, 148, 31, 0.2);
    transform: translateY(-6px);
}

.ticket-card--featured .ticket-card__tag {
    background: var(--okt-gold);
}

.ticket-card--muted {
    background: #fafafa;
    box-shadow: 0 6px 18px rgba(30, 29, 40, 0.04);
    opacity: 0.86;
}

.ticket-card--muted .ticket-card__tag {
    background: var(--okt-muted);
}

.ticket-card__tag {
    align-self: flex-start;
    margin: 0;
    padding: 5px 9px;
    color: #fff;
    background: var(--okt-blue);
    border-radius: 4px;
    font-family: "Yellix-Bold", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.2;
    text-transform: uppercase;
}

.ticket-card__price {
    margin: 8px 0 0;
    color: var(--okt-red);
    font-family: "Yellix-Bold", Arial, sans-serif;
    font-size: 24px;
}

.ticket-card ul {
    flex: 1;
    margin: 0;
    padding-left: 20px;
    color: var(--okt-muted);
}

.ticket-card li + li {
    margin-top: 8px;
}

.text-link {
    color: var(--okt-blue);
    font-family: "Yellix-Bold", Arial, sans-serif;
}

.page-2022 .proof-strip {
    margin-bottom: clamp(28px, 5vw, 54px);
}

.faq-page .proof-strip {
    margin-top: -18px;
}

.corporate-explainer {
    padding-top: 0;
}

.page-card-band + .page-card-band {
    border-top: 0;
    padding-top: clamp(28px, 4vw, 46px);
}

.tickets-flow-page .okt-hero--compact {
    min-height: clamp(250px, 30vh, 350px);
}

.tickets-flow-page .okt-hero__content {
    padding: clamp(26px, 4vw, 42px) 0 clamp(34px, 5vw, 52px);
}

.tickets-flow-page .okt-hero h1 {
    max-width: 700px;
    font-size: clamp(32px, 4.6vw, 54px);
}

.tickets-flow-page .okt-hero__content > p:not(.eyebrow) {
    max-width: 620px;
    font-size: clamp(17px, 1.7vw, 20px);
    line-height: 1.42;
}

.proof-strip--steps strong {
    color: var(--okt-ink);
}

.proof-strip--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(980px, calc(100% - 36px));
    margin-top: -22px;
}

.proof-strip--compact div {
    min-height: 88px;
    padding: 16px 18px;
}

.proof-strip--compact strong {
    font-size: 18px;
}

.proof-strip--compact span {
    margin-top: 6px;
}

.booking-builder {
    padding-top: clamp(24px, 4vw, 44px);
}

.session-intro {
    margin: 0 0 14px;
    color: var(--okt-blue-dark);
    font-family: "Yellix-Bold", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.2;
    text-transform: uppercase;
}

.session-picker {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}

.session-pill {
    display: grid;
    gap: 4px;
    min-height: 128px;
    padding: 18px;
    color: inherit;
    background: #fff;
    border: 1px solid var(--okt-border);
    border-radius: var(--okt-radius);
    box-shadow: 0 8px 22px rgba(30, 29, 40, 0.05);
    text-decoration: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.session-pill:hover,
.session-pill:focus-visible,
.session-pill--active {
    border-color: var(--okt-blue);
    box-shadow: 0 16px 36px rgba(36, 176, 229, 0.16);
    transform: translateY(-2px);
}

.session-pill:focus-visible {
    outline: 3px solid rgba(36, 176, 229, 0.35);
    outline-offset: 3px;
}

.session-pill span {
    color: var(--okt-blue-dark);
    font-family: "Yellix-Bold", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.2;
    text-transform: uppercase;
}

.session-pill strong {
    color: var(--okt-ink);
    font-family: "Yellix-Bold", Arial, sans-serif;
    font-size: 22px;
    line-height: 1.15;
}

.session-pill small {
    color: var(--okt-muted);
    font-family: "Yellix-SemiBold", Arial, sans-serif;
    font-size: 15px;
}

.session-pill--active {
    background: #eef9fd;
}

.selected-session-card {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 18px;
    align-items: center;
    margin: -8px 0 28px;
    padding: 18px 20px;
    background: #eef9fd;
    border: 1px solid rgba(36, 176, 229, 0.3);
    border-radius: var(--okt-radius);
}

.selected-session-card p {
    margin: 0;
}

.selected-session-card > div > p {
    color: var(--okt-blue-dark);
    font-family: "Yellix-Bold", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.2;
    text-transform: uppercase;
}

.selected-session-card h2 {
    margin-top: 5px;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.12;
}

.selected-session-card span {
    display: block;
    margin-top: 6px;
    color: var(--okt-red);
    font-family: "Yellix-Bold", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.2;
}

.selected-session-card > p {
    color: var(--okt-muted);
    line-height: 1.45;
}

.student-discount-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    width: min(980px, calc(100% - 36px));
    margin: 6px auto 0;
    padding: 10px 14px;
    background: #fff8ec;
    border: 1px solid rgba(255, 148, 31, 0.42);
    border-radius: var(--okt-radius);
    box-shadow: 0 8px 20px rgba(30, 29, 40, 0.05);
    text-align: center;
}

.student-discount-strip strong {
    color: var(--okt-ink);
    font-family: "Yellix-Bold", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.2;
}

.student-discount-strip span {
    color: var(--okt-muted);
    font-size: 15px;
    line-height: 1.3;
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: clamp(22px, 4vw, 42px);
    align-items: start;
}

.ticket-choice-panel {
    min-width: 0;
}

.ticket-stack {
    display: grid;
    gap: 14px;
}

.ticket-option {
    --ticket-area: var(--okt-blue);
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(240px, 1fr);
    gap: 22px;
    min-height: 100%;
    padding: 22px;
    overflow: hidden;
    color: inherit;
    background: #fff;
    border: 1px solid var(--okt-border);
    border-radius: var(--okt-radius);
    box-shadow: 0 8px 22px rgba(30, 29, 40, 0.06);
    text-decoration: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ticket-option[hidden] {
    display: none;
}

.ticket-option::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 7px;
    background: var(--ticket-area);
}

.ticket-option:hover,
.ticket-option:focus-visible {
    border-color: var(--ticket-area);
    box-shadow: 0 16px 38px rgba(30, 29, 40, 0.12);
    transform: translateY(-2px);
}

.ticket-option:focus-visible {
    outline: 3px solid rgba(36, 176, 229, 0.35);
    outline-offset: 3px;
}

.ticket-option--featured {
    border-color: var(--okt-gold);
    box-shadow: 0 16px 38px rgba(255, 148, 31, 0.16);
}

.ticket-option h3 {
    margin: 12px 0 10px;
    font-size: 26px;
    line-height: 1.12;
}

.ticket-option__main p:last-child {
    margin: 0;
    color: var(--okt-muted);
}

.ticket-option__details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ticket-option__price {
    margin: 0;
    color: var(--okt-red);
    font-family: "Yellix-Bold", Arial, sans-serif;
    font-size: 26px;
    line-height: 1.1;
}

.ticket-option__area {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    color: var(--okt-ink);
    font-family: "Yellix-SemiBold", Arial, sans-serif;
    line-height: 1.25;
}

.ticket-option__area span,
.tent-legend i {
    display: inline-block;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    background: var(--ticket-area);
    border-radius: 3px;
}

.ticket-option__includes {
    margin: 2px 0 -4px;
    color: var(--okt-blue-dark);
    font-family: "Yellix-Bold", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.1;
    text-transform: uppercase;
}

.ticket-option ul {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    color: var(--okt-ink);
    font-size: 15px;
    line-height: 1.45;
    list-style: none;
}

.ticket-option li {
    position: relative;
    padding-left: 22px;
}

.ticket-option li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.56em;
    width: 10px;
    height: 6px;
    border-left: 2px solid var(--ticket-area);
    border-bottom: 2px solid var(--ticket-area);
    transform: rotate(-45deg);
}

.ticket-option li + li {
    margin-top: 0;
}

.ticket-option .text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-top: auto;
    padding: 9px 14px;
    color: #fff;
    background: var(--okt-blue-dark);
    border-radius: 999px;
    line-height: 1.2;
    text-align: center;
}

.ticket-area--vip {
    --ticket-area: #ef3f35;
}

.ticket-area--oktoberfest {
    --ticket-area: #004b91;
}

.ticket-area--bavarian {
    --ticket-area: #83c5ee;
}

.ticket-area--unreserved {
    --ticket-area: #f0d277;
}

.ticket-area--bavarian .ticket-card__tag,
.ticket-area--unreserved .ticket-card__tag {
    color: var(--okt-ink);
    background: var(--ticket-area);
}

.ticket-area--vip .ticket-card__tag,
.ticket-area--oktoberfest .ticket-card__tag {
    background: var(--ticket-area);
}

.tent-plan-panel {
    min-width: 0;
}

.tent-plan-panel__sticky {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 16px;
}

.tent-plan-copy {
    padding: 24px;
    background: var(--okt-cream);
    border: 1px solid var(--okt-border);
    border-radius: var(--okt-radius);
}

.tent-plan-copy h2 {
    margin-top: 4px;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.12;
}

.tent-plan-copy p:last-child {
    margin-bottom: 0;
    color: var(--okt-muted);
}

.tent-plan {
    margin: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--okt-border);
    border-radius: var(--okt-radius);
    box-shadow: 0 10px 28px rgba(30, 29, 40, 0.08);
}

.tent-plan img {
    display: block;
    width: 100%;
}

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

.tent-legend span {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    gap: 9px;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid var(--okt-border);
    border-radius: var(--okt-radius);
    color: var(--okt-ink);
    font-family: "Yellix-SemiBold", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.2;
}

.student-ticket-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    gap: clamp(24px, 5vw, 56px);
    align-items: center;
}

.student-page .student-hero {
    overflow: visible;
    background:
        linear-gradient(120deg, rgba(255, 248, 236, 0.98) 0%, rgba(255, 248, 236, 0.94) 48%, rgba(238, 249, 253, 0.92) 100%),
        var(--okt-cream);
}

.student-page .student-hero .okt-hero__content {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
    gap: clamp(34px, 5vw, 70px);
    align-items: center;
    padding-top: clamp(44px, 5.6vw, 76px);
    padding-bottom: clamp(64px, 6vw, 90px);
}

.student-hero__copy {
    min-width: 0;
}

.student-page .student-hero h1 {
    max-width: 760px;
    font-size: clamp(40px, 5vw, 68px);
}

.student-page .student-hero .student-hero__copy > p:not(.eyebrow) {
    max-width: 680px;
    margin-top: 16px;
    color: var(--okt-muted);
    font-size: clamp(17px, 1.8vw, 21px);
    line-height: 1.45;
}

.student-page .student-hero .button--ghost {
    color: var(--okt-blue);
    background: #fff;
    border-color: rgba(36, 176, 229, 0.22);
}

.student-hero__visual {
    position: relative;
    min-height: clamp(330px, 31vw, 430px);
    overflow: hidden;
    background: var(--okt-blue);
    border: 1px solid rgba(36, 176, 229, 0.18);
    border-radius: var(--okt-radius);
    box-shadow: 0 24px 58px rgba(30, 29, 40, 0.18);
}

.student-hero__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30, 29, 40, 0.02), rgba(30, 29, 40, 0.35));
}

.student-hero__visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
}

.student-hero__offer {
    position: absolute;
    z-index: 2;
    left: 22px;
    bottom: 22px;
    display: grid;
    gap: 2px;
    width: min(260px, calc(100% - 44px));
    padding: 18px 20px;
    background: #fff;
    border: 1px solid rgba(255, 148, 31, 0.42);
    border-radius: var(--okt-radius);
    box-shadow: 0 18px 34px rgba(30, 29, 40, 0.16);
}

.student-hero__offer span,
.student-hero__offer small {
    color: var(--okt-blue-dark);
    font-family: "Yellix-Bold", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.2;
    text-transform: uppercase;
}

.student-hero__offer strong {
    color: var(--okt-red);
    font-family: "Yellix-Bold", Arial, sans-serif;
    font-size: clamp(46px, 5vw, 64px);
    line-height: 0.95;
}

.student-hero__offer small {
    color: var(--okt-muted);
}

.student-ticket-feature > div:first-child p:not(.eyebrow) {
    max-width: 760px;
    margin-top: 16px;
    color: var(--okt-muted);
    font-size: 19px;
    line-height: 1.5;
}

.student-detail-list {
    display: grid;
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.student-detail-list li {
    position: relative;
    padding: 12px 14px 12px 42px;
    background: #fff;
    border: 1px solid var(--okt-border);
    border-radius: var(--okt-radius);
    color: var(--okt-ink);
    font-family: "Yellix-SemiBold", Arial, sans-serif;
    line-height: 1.35;
}

.student-detail-list li::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    width: 12px;
    height: 7px;
    border-left: 3px solid var(--okt-blue);
    border-bottom: 3px solid var(--okt-blue);
    transform: translateY(-62%) rotate(-45deg);
}

.student-price-card {
    padding: 26px;
    background: #fff8ec;
    border: 1px solid rgba(255, 148, 31, 0.42);
    border-radius: var(--okt-radius);
    box-shadow: 0 16px 36px rgba(255, 148, 31, 0.16);
}

.student-price-card p,
.student-price-card span {
    margin: 0;
}

.student-price-card p {
    color: var(--okt-blue-dark);
    font-family: "Yellix-Bold", Arial, sans-serif;
    text-transform: uppercase;
    font-size: 13px;
}

.student-price-card strong {
    display: block;
    margin: 10px 0 4px;
    color: var(--okt-red);
    font-family: "Yellix-Bold", Arial, sans-serif;
    font-size: clamp(42px, 6vw, 62px);
    line-height: 1;
}

.student-price-card span {
    display: block;
    color: var(--okt-muted);
}

.student-price-card .button {
    width: 100%;
    margin-top: 20px;
}

.student-society-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin-top: 8px;
    margin-bottom: 8px;
    padding: clamp(26px, 4vw, 42px);
    color: #fff;
    background:
        linear-gradient(135deg, rgba(36, 176, 229, 0.95), rgba(11, 77, 125, 0.96)),
        var(--okt-blue);
    border-radius: var(--okt-radius);
    box-shadow: var(--okt-shadow);
}

.student-society-band .eyebrow {
    background: #fff;
    color: var(--okt-blue);
}

.student-society-band h2 {
    max-width: 720px;
    font-size: clamp(30px, 4vw, 46px);
}

.student-society-band p:not(.eyebrow) {
    max-width: 820px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.5;
}

.student-society-band .button {
    white-space: nowrap;
}

.section--split {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(32px, 7vw, 80px);
    align-items: start;
}

.corporate-section {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(28px, 6vw, 72px);
    align-items: center;
}

.corporate-section--joined {
    grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
    gap: 0;
    align-items: stretch;
}

.corporate-section__media {
    min-height: 520px;
    overflow: hidden;
    border-radius: var(--okt-radius);
    box-shadow: var(--okt-shadow);
}

.corporate-section--joined .corporate-section__media {
    min-height: 0;
    border-radius: var(--okt-radius) 0 0 var(--okt-radius);
    box-shadow: none;
}

.corporate-section__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.corporate-section--joined .corporate-section__media img {
    height: auto;
    min-height: 0;
}

.corporate-section__content {
    padding: clamp(28px, 4vw, 44px);
    color: #fff;
    background: var(--okt-blue);
    border-radius: var(--okt-radius);
}

.corporate-section--joined .corporate-section__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(24px, 3vw, 34px);
    border-radius: 0 var(--okt-radius) var(--okt-radius) 0;
}

.corporate-section__content .eyebrow {
    background: #fff;
    color: var(--okt-blue);
}

.corporate-section--joined .corporate-section__content h1,
.corporate-section--joined .corporate-section__content h2 {
    font-size: clamp(30px, 3.2vw, 42px);
}

.corporate-section__content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 19px;
    line-height: 1.55;
}

.corporate-section--joined .corporate-section__content p {
    font-size: 17px;
    line-height: 1.45;
}

.check-list {
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.corporate-section--joined .check-list {
    gap: 8px;
    margin-top: 18px;
    line-height: 1.45;
}

.check-list li {
    position: relative;
    padding-left: 28px;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 4px solid var(--okt-gold);
    border-radius: 50%;
}

.trust-section {
    padding-top: clamp(54px, 8vw, 92px);
}

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

.testimonial-grid figure {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    margin: 0;
    padding: 26px;
    color: #fff;
    background: var(--okt-blue);
    border: 1px solid rgba(36, 176, 229, 0.25);
    border-radius: var(--okt-radius);
    box-shadow: 0 10px 28px rgba(30, 29, 40, 0.06);
}

.testimonial-grid blockquote {
    margin: 0;
    color: #fff;
    font-family: "Yellix-Bold", Arial, sans-serif;
    font-size: 22px;
    line-height: 1.3;
}

.testimonial-grid figcaption {
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.82);
    font-family: "Yellix-Bold", Arial, sans-serif;
}

.check-list--dark li {
    color: rgba(255, 255, 255, 0.9);
}

.gallery-band {
    width: 100%;
    padding: clamp(64px, 8vw, 100px) max(18px, calc((100vw - var(--okt-max)) / 2));
    background: var(--okt-cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr 0.9fr;
    grid-auto-rows: 220px;
    gap: 14px;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--okt-radius);
}

.gallery-grid img:nth-child(1) {
    grid-row: span 2;
}

.gallery-grid img:nth-child(4) {
    grid-column: span 2;
}

.section--split > div > p:not(.eyebrow) {
    color: var(--okt-muted);
    font-size: 19px;
}

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

.info-list article {
    padding: 22px;
    background: var(--okt-paper);
    border: 1px solid var(--okt-border);
    border-radius: var(--okt-radius);
}

.info-list p {
    margin: 12px 0 0;
    color: var(--okt-muted);
}

.faq-band {
    padding-top: clamp(48px, 6vw, 76px);
    padding-bottom: clamp(48px, 6vw, 76px);
}

.faq-band + .faq-band {
    border-top: 0;
}

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

.faq-item {
    background: var(--okt-paper);
    border: 1px solid var(--okt-border);
    border-radius: var(--okt-radius);
    box-shadow: 0 8px 22px rgba(30, 29, 40, 0.05);
}

.faq-item summary {
    position: relative;
    min-height: 76px;
    padding: 22px 58px 22px 24px;
    cursor: pointer;
    color: var(--okt-ink);
    font-family: "Yellix-Bold", Arial, sans-serif;
    font-size: 20px;
    line-height: 1.25;
    list-style: none;
}

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 20px;
    right: 22px;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    color: #fff;
    background: var(--okt-blue);
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "-";
    background: var(--okt-gold);
}

.faq-item__answer {
    padding: 0 24px 22px;
    color: var(--okt-muted);
    font-size: 17px;
    line-height: 1.6;
}

.faq-item__answer p {
    margin: 0;
}

.faq-help {
    border-top: 1px solid var(--okt-border);
}

.location-page .proof-strip {
    margin-top: 0;
}

.location-hero .faq-hero__inner {
    padding-top: clamp(26px, 4vw, 42px);
    padding-bottom: clamp(28px, 4vw, 46px);
}

.location-hero h1 {
    max-width: 880px;
    font-size: clamp(34px, 4.8vw, 56px);
}

.location-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    gap: 18px;
    align-items: stretch;
}

.map-frame {
    min-height: 520px;
    overflow: hidden;
    background: var(--okt-cream);
    border: 1px solid var(--okt-border);
    border-radius: var(--okt-radius);
    box-shadow: var(--okt-shadow);
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
}

.location-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100%;
    padding: clamp(22px, 3vw, 30px);
    color: #fff;
    background: var(--okt-blue);
    border-radius: var(--okt-radius);
}

.location-card .eyebrow {
    align-self: flex-start;
    background: #fff;
    color: var(--okt-blue);
    margin-bottom: 4px;
}

.location-card p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

.location-card .text-link {
    margin-top: 22px;
    color: #fff;
}

.schedule-section {
    padding-top: clamp(54px, 7vw, 86px);
    padding-bottom: clamp(54px, 7vw, 86px);
}

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

.schedule-card {
    min-height: 100%;
    padding: 24px;
    background: var(--okt-paper);
    border: 1px solid var(--okt-border);
    border-radius: var(--okt-radius);
    box-shadow: 0 8px 22px rgba(30, 29, 40, 0.06);
}

.schedule-card__date {
    display: inline-flex;
    margin: 0 0 12px;
    padding: 5px 9px;
    color: #fff;
    background: var(--okt-blue);
    border-radius: 4px;
    font-family: "Yellix-Bold", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.2;
    text-transform: uppercase;
}

.schedule-card__time {
    margin: 10px 0 0;
    color: var(--okt-red);
    font-family: "Yellix-Bold", Arial, sans-serif;
    font-size: 26px;
    line-height: 1.15;
}

.schedule-card p:last-child {
    margin: 12px 0 0;
    color: var(--okt-muted);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 22px;
    align-items: start;
}

.contact-panel {
    padding: clamp(24px, 4vw, 38px);
    background: var(--okt-paper);
    border: 1px solid var(--okt-border);
    border-radius: var(--okt-radius);
    box-shadow: 0 10px 28px rgba(30, 29, 40, 0.06);
}

.contact-panel > p:not(.eyebrow),
.contact-form,
.company-address p {
    color: var(--okt-muted);
    font-size: 18px;
}

.contact-form {
    margin-top: 24px;
}

.contact-form form {
    display: grid;
    gap: 16px;
}

.contact-form p {
    margin: 0;
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: var(--okt-ink);
    font-family: "Yellix-Bold", Arial, sans-serif;
    line-height: 1.25;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    color: var(--okt-ink);
    background: #fff;
    border: 1px solid var(--okt-border);
    border-radius: var(--okt-radius);
    font: inherit;
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form input[type="submit"] {
    width: auto;
    min-width: 160px;
    padding: 12px 22px;
    cursor: pointer;
    color: #fff;
    background: var(--okt-gold);
    border-color: var(--okt-gold);
    border-radius: 999px;
    font-family: "Yellix-Bold", Arial, sans-serif;
}

.contact-form .wpcf7-not-valid-tip,
.contact-form .wpcf7-response-output {
    color: var(--okt-red);
    font-size: 15px;
}

.contact-form .wpcf7-response-output {
    margin: 16px 0 0;
    padding: 12px 14px;
    border: 1px solid var(--okt-border);
    border-radius: var(--okt-radius);
}

.contact-methods {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.contact-methods article {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
    background: var(--okt-cream);
    border-radius: var(--okt-radius);
}

.contact-methods img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    margin-top: 2px;
}

.contact-methods h3,
.contact-methods p,
.company-address h3,
.company-address p {
    margin: 0;
}

.contact-methods p {
    color: var(--okt-muted);
}

.company-address {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--okt-border);
}

.company-address p {
    margin-top: 8px;
}

.contact-help {
    padding-top: clamp(48px, 6vw, 76px);
    padding-bottom: clamp(48px, 6vw, 76px);
}

.section--shop {
    border-top: 1px solid var(--okt-border);
}

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

.shop-grid a {
    display: grid;
    place-items: center;
    min-height: 96px;
    padding: 18px;
    color: #fff;
    background: var(--okt-blue);
    border-radius: var(--okt-radius);
    font-family: "Yellix-Bold", Arial, sans-serif;
    font-size: 20px;
    text-decoration: none;
}

.shop-grid a:hover {
    background: var(--okt-gold);
}

.final-cta {
    width: min(var(--okt-max), calc(100% - 36px));
    padding: clamp(48px, 7vw, 82px);
    color: #fff;
    background: var(--okt-blue);
    border-radius: var(--okt-radius);
    box-shadow: var(--okt-shadow);
}

.corporate-ticket-page .final-cta {
    margin-bottom: clamp(42px, 7vw, 86px);
}

.final-cta .eyebrow {
    background: #fff;
    color: var(--okt-blue);
}

.final-cta h2 {
    max-width: 900px;
    font-size: clamp(34px, 4.8vw, 62px);
}

.shop-grid a:nth-child(2) {
    background: var(--okt-blue);
}

.shop-grid a:nth-child(3) {
    background: var(--okt-blue);
    color: #fff;
}

.shop-grid a:nth-child(4) {
    background: var(--okt-blue);
}

.sponsor-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    justify-content: center;
    max-width: 680px;
    margin: 0 auto;
}

.sponsor-strip img {
    width: 230px;
    max-width: calc(50% - 9px);
    height: 92px;
    padding: 0;
    object-fit: contain;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.site-footer {
    color: #fff;
    background: var(--okt-blue);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
    width: min(var(--okt-max), calc(100% - 36px));
    margin: 0 auto;
    padding: 48px 0 42px;
}

.site-footer .eyebrow {
    min-height: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #fff;
}

.site-footer h2 {
    font-size: 30px;
}

.site-footer p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.82);
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.footer-socials img {
    width: 34px;
    height: 34px;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: min(var(--okt-max), calc(100% - 36px));
    margin: 0 auto;
    padding: 16px 0 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
}

.site-footer__bottom a + a {
    margin-left: 16px;
}

.legal-page {
    background: #fff;
}

.legal-hero .faq-hero__inner {
    max-width: 900px;
}

.legal-content {
    max-width: 920px;
    color: var(--okt-ink);
}

.legal-content h2,
.legal-content h3,
.legal-content h4 {
    margin: 34px 0 14px;
    font-family: "Yellix-Bold", Arial, sans-serif;
    line-height: 1.2;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p,
.legal-content div,
.legal-content li {
    color: #35343d;
}

.legal-content ol,
.legal-content ul {
    padding-left: 24px;
}

.legal-content li + li {
    margin-top: 12px;
}

.legal-content a {
    color: var(--okt-blue-dark);
    font-family: "Yellix-SemiBold", Arial, sans-serif;
}

@media (max-width: 1100px) {
    .site-header {
        position: sticky;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 14px;
    }

    .site-brand {
        flex: 1 1 auto;
    }

    .site-nav-toggle {
        display: inline-flex;
        position: relative;
    }

    .site-header.is-nav-open .site-nav-toggle span:not(.sr-only):nth-of-type(2) {
        transform: rotate(45deg);
    }

    .site-header.is-nav-open .site-nav-toggle span:not(.sr-only):nth-of-type(3) {
        opacity: 0;
    }

    .site-header.is-nav-open .site-nav-toggle span:not(.sr-only):nth-of-type(4) {
        transform: rotate(-45deg);
    }

    .site-nav {
        display: none;
        flex: 0 0 100%;
        order: 3;
        width: 100%;
        align-items: stretch;
        justify-content: flex-start;
        flex-direction: column;
        gap: 0;
        padding: 8px 0 2px;
        border-top: 1px solid rgba(255, 255, 255, 0.28);
        font-size: 16px;
    }

    .site-header.is-nav-open .site-nav {
        display: flex;
    }

    .site-nav a {
        padding: 11px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        white-space: normal;
    }

    .site-nav__cta {
        align-self: stretch;
        margin: 14px 0 6px;
        min-height: 50px;
        padding: 13px 18px;
        border-bottom: 2px solid var(--okt-gold) !important;
    }

    .intro-grid,
    .experience-grid,
    .section--split,
    .corporate-section,
    .contact-layout,
    .location-layout,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .ticket-grid,
    .session-grid,
    .schedule-grid,
    .session-picker {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .booking-layout,
    .selected-session-card,
    .ticket-option,
    .student-ticket-feature,
    .student-society-band {
        grid-template-columns: 1fr;
    }

    .student-page .student-hero .okt-hero__content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .student-hero__visual {
        max-width: 620px;
        min-height: 320px;
    }

    .tent-plan-panel__sticky {
        position: static;
    }

    .map-frame,
    .map-frame iframe {
        min-height: 420px;
    }

    .faq-page h1 {
        font-size: clamp(38px, 6vw, 58px);
    }

    .proof-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 0;
        width: 100%;
        border-radius: 0;
    }

    .proof-strip--compact {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
        margin-top: 0;
    }

    .section__header--row {
        align-items: start;
        flex-direction: column;
    }

    .corporate-section--joined .corporate-section__media {
        border-radius: var(--okt-radius) var(--okt-radius) 0 0;
    }

    .corporate-section--joined .corporate-section__content {
        border-radius: 0 0 var(--okt-radius) var(--okt-radius);
    }

    .corporate-section__media,
    .corporate-section__media img {
        min-height: 380px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 190px;
    }

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

@media (max-width: 640px) {
    .site-header {
        gap: 14px;
        padding: 16px 18px;
    }

    .site-brand__name {
        font-size: 21px;
    }

    .site-nav {
        width: 100%;
    }

    .okt-hero {
        min-height: min(680px, calc(100svh - 96px));
        align-items: end;
    }

    .okt-hero__shade {
        background:
            linear-gradient(180deg, rgba(36, 176, 229, 0.48), rgba(30, 29, 40, 0.82)),
            linear-gradient(90deg, rgba(36, 176, 229, 0.74), rgba(36, 176, 229, 0.18));
    }

    .okt-hero__content,
    .faq-hero__inner,
    .section,
    .final-cta,
    .site-footer__grid,
    .site-footer__bottom {
        width: min(calc(100vw - 28px), var(--okt-max));
        max-width: calc(100vw - 28px);
    }

    .okt-hero__content > *,
    .section__header,
    .corporate-section__content > *,
    .final-cta > * {
        max-width: 100%;
    }

    .okt-hero__content {
        width: min(346px, calc(100vw - 44px));
        max-width: calc(100vw - 44px);
        margin-left: 22px;
        margin-right: auto;
        padding: 34px 0 38px;
    }

    h1 {
        font-size: clamp(32px, 9.8vw, 40px);
        line-height: 1.08;
    }

    h2,
    .final-cta h2 {
        font-size: clamp(30px, 10vw, 42px);
    }

    .okt-hero__content p:not(.eyebrow),
    .section__header p:not(.eyebrow),
    .section--split > div > p:not(.eyebrow),
    .corporate-section__content p {
        font-size: 17px;
        line-height: 1.5;
    }

    .hero-actions,
    .final-cta .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .button {
        width: 100%;
        min-height: 50px;
        padding-inline: 16px;
    }

    .hero-facts {
        gap: 10px;
        margin-top: 20px;
    }

    .hero-facts div {
        padding: 14px 16px;
    }

    .hero-facts dd {
        font-size: 20px;
    }

    .faq-page h1 {
        font-size: 38px;
    }

    .faq-page .faq-hero__inner {
        padding: 28px 0 24px;
    }

    .faq-page .faq-hero h1 {
        font-size: clamp(30px, 8.6vw, 34px);
        line-height: 1.06;
    }

    .faq-page .faq-hero__inner > p:not(.eyebrow) {
        margin-top: 10px;
        font-size: 15px;
        line-height: 1.42;
    }

    .faq-page .faq-hero .hero-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-top: 16px;
    }

    .faq-page .faq-hero .button {
        min-height: 44px;
        padding: 10px 12px;
        font-size: 14px;
    }

    .faq-page .faq-hero .hero-facts {
        display: none;
    }

    .tickets-flow-page .okt-hero--compact {
        min-height: 0;
    }

    .tickets-flow-page .okt-hero__content {
        width: min(calc(100dvw - 28px), var(--okt-max));
        max-width: calc(100dvw - 28px);
        margin: 0 auto;
        padding: 28px 0 34px;
    }

    .tickets-flow-page .okt-hero h1 {
        font-size: clamp(31px, 9vw, 38px);
        line-height: 1.06;
        max-width: 100%;
        overflow-wrap: break-word;
        word-break: normal;
    }

    .tickets-flow-page .okt-hero__content > p:not(.eyebrow) {
        font-size: 16px;
        line-height: 1.42;
        max-width: 100%;
        overflow-wrap: break-word;
        word-break: normal;
    }

    .hero-facts,
    .proof-strip {
        grid-template-columns: 1fr;
    }

    .tickets-flow-page .proof-strip--compact {
        gap: 0;
        width: calc(100dvw - 28px);
        max-width: calc(100dvw - 28px);
        margin-top: -12px;
        border-radius: var(--okt-radius);
        box-shadow: 0 10px 26px rgba(30, 29, 40, 0.1);
    }

    .tickets-flow-page .proof-strip--compact div {
        display: grid;
        gap: 3px;
        min-width: 0;
        min-height: 0;
        padding: 12px 14px;
    }

    .tickets-flow-page .proof-strip--compact strong {
        font-size: 16px;
    }

    .tickets-flow-page .proof-strip--compact span {
        margin-top: 0;
        font-size: 14px;
        line-height: 1.35;
    }

    .student-discount-strip {
        justify-content: flex-start;
        min-width: 0;
        width: calc(100dvw - 28px);
        max-width: calc(100dvw - 28px);
        margin-top: 6px;
        padding: 10px 12px;
        text-align: left;
    }

    .student-discount-strip strong,
    .student-discount-strip span {
        font-size: 14px;
    }

    .student-discount-strip .text-link {
        width: 100%;
    }

    .proof-strip div {
        min-height: auto;
        padding: 16px 18px;
    }

    .ticket-grid,
    .session-grid,
    .testimonial-grid,
    .info-list,
    .faq-list,
    .schedule-grid,
    .shop-grid,
    .session-picker,
    .tent-legend,
    .student-ticket-feature,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-auto-rows: auto;
    }

    .section {
        padding-block: 44px;
        scroll-margin-top: 130px;
    }

    .booking-builder {
        width: 100%;
        max-width: 100%;
        padding-top: 30px;
    }

    .session-intro {
        width: calc(100% - 28px);
        margin: 0 auto 10px;
    }

    .tickets-flow-page .session-picker {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        width: calc(100dvw - 28px);
        max-width: calc(100dvw - 28px);
        margin: 0 auto 14px;
        padding: 0;
    }

    .tickets-flow-page .session-pill {
        min-width: 0;
        max-width: none;
        min-height: 116px;
        padding: 14px;
    }

    .tickets-flow-page .booking-layout {
        width: calc(100dvw - 28px);
        max-width: calc(100dvw - 28px);
        margin: 0 auto;
        overflow: visible;
    }

    .tickets-flow-page .okt-hero__content,
    .tickets-flow-page .proof-strip--compact,
    .student-discount-strip,
    .selected-session-card,
    .tickets-flow-page .booking-layout {
        width: calc(100dvw - 28px);
        max-width: calc(100dvw - 28px);
        margin-left: auto;
        margin-right: auto;
    }

    .tickets-flow-page .okt-hero__content {
        margin-left: auto;
        margin-right: auto;
    }

    .selected-session-card {
        gap: 12px;
        margin-top: 0;
        margin-bottom: 18px;
        padding: 16px;
    }

    .selected-session-card h2 {
        font-size: 24px;
    }

    .selected-session-card > p {
        font-size: 15px;
        line-height: 1.4;
    }

    .section--highlight,
    .gallery-band {
        padding-inline: 14px;
    }

    .ticket-card,
    .ticket-option,
    .session-card,
    .session-pill,
    .experience-grid article,
    .testimonial-grid figure,
    .schedule-card,
    .info-list article,
    .contact-panel {
        padding: 20px;
    }

    .tickets-flow-page .ticket-stack {
        gap: 12px;
    }

    .tickets-flow-page .ticket-option {
        gap: 14px;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        padding: 18px;
    }

    .tickets-flow-page .ticket-option__main,
    .tickets-flow-page .ticket-option__details {
        min-width: 0;
    }

    .tickets-flow-page .ticket-option__main p,
    .tickets-flow-page .ticket-option li,
    .tickets-flow-page .ticket-option__area,
    .tickets-flow-page .tent-plan-copy p,
    .tickets-flow-page .proof-strip--compact span,
    .student-discount-strip span {
        overflow-wrap: break-word;
        word-break: normal;
    }

    .tickets-flow-page .ticket-option h3 {
        margin: 8px 0 8px;
        font-size: 23px;
    }

    .tickets-flow-page .ticket-option__details {
        gap: 10px;
    }

    .tickets-flow-page .ticket-option__price {
        font-size: 28px;
    }

    .tickets-flow-page .ticket-option ul {
        font-size: 14px;
        line-height: 1.4;
    }

    .tickets-flow-page .ticket-option .text-link {
        width: 100%;
        min-height: 46px;
    }

    .tickets-flow-page .tent-plan-panel {
        margin-top: 10px;
    }

    .tickets-flow-page .tent-plan-copy {
        padding: 18px;
    }

    .tickets-flow-page .tent-plan-copy h2 {
        font-size: 23px;
    }

    .tickets-flow-page .tent-legend {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .tickets-flow-page .tent-legend span {
        min-height: 42px;
        padding: 9px 10px;
        font-size: 12px;
    }

    .tent-plan-copy,
    .student-price-card {
        padding: 20px;
    }

    .session-pill {
        min-height: 0;
    }

    .ticket-option h3 {
        font-size: 24px;
    }

    .ticket-option__price {
        font-size: 24px;
    }

    .student-page .student-hero .okt-hero__content {
        padding-top: 30px;
        padding-bottom: 46px;
    }

    .student-page .student-hero h1 {
        font-size: clamp(30px, 9vw, 38px);
    }

    .student-page .student-hero .student-hero__copy > p:not(.eyebrow) {
        font-size: 17px;
        line-height: 1.5;
    }

    .student-hero__visual {
        min-height: 250px;
    }

    .student-hero__offer {
        left: 14px;
        bottom: 14px;
        width: min(230px, calc(100% - 28px));
        padding: 14px 16px;
    }

    .student-hero__offer strong {
        font-size: 44px;
    }

    .student-page .proof-strip {
        width: min(354px, calc(100dvw - 36px));
        max-width: calc(100dvw - 36px);
        margin-left: 18px;
        margin-right: auto;
    }

    .student-detail-list li {
        padding: 11px 12px 11px 38px;
    }

    .student-detail-list li::before {
        left: 14px;
    }

    .student-society-band {
        padding: 22px;
    }

    .student-society-band h2 {
        font-size: clamp(28px, 8.8vw, 38px);
    }

    .student-society-band .button {
        width: 100%;
        white-space: normal;
    }

    .corporate-section__media,
    .corporate-section__media img {
        min-height: 280px;
    }

    .corporate-section__content,
    .final-cta {
        padding: 24px 20px;
    }

    .map-frame,
    .map-frame iframe {
        min-height: 360px;
    }

    .faq-item summary {
        min-height: auto;
        padding: 18px 54px 18px 18px;
        font-size: 18px;
    }

    .faq-item summary::after {
        top: 16px;
        right: 16px;
    }

    .faq-item__answer {
        padding: 0 18px 18px;
    }

    .gallery-grid img,
    .gallery-grid img:nth-child(1),
    .gallery-grid img:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
        height: auto;
        min-height: 0;
        object-fit: contain;
    }

    .site-footer__bottom {
        flex-direction: column;
    }

    .site-footer__bottom a + a {
        display: inline-block;
        margin-left: 0;
        margin-top: 8px;
    }
}

@media (max-width: 420px) {
    body {
        font-size: 15px;
    }

    h1 {
        font-size: clamp(30px, 8.1vw, 32px);
    }

    .site-header {
        padding-inline: 14px;
    }

    .site-nav {
        font-size: 14px;
    }

    .okt-hero__content,
    .faq-hero__inner,
    .section,
    .final-cta,
    .site-footer__grid,
    .site-footer__bottom {
        width: calc(100vw - 24px);
        max-width: calc(100vw - 24px);
    }

    .okt-hero__content {
        width: min(350px, calc(100vw - 40px));
        max-width: calc(100vw - 40px);
        margin-left: 20px;
        margin-right: auto;
    }

    .tickets-flow-page .okt-hero__content,
    .tickets-flow-page .proof-strip--compact,
    .student-discount-strip,
    .selected-session-card,
    .tickets-flow-page .booking-layout {
        width: calc(100dvw - 24px);
        max-width: calc(100dvw - 24px);
    }

    .tickets-flow-page .okt-hero__content {
        margin-left: auto;
        margin-right: auto;
    }

    .tickets-flow-page .session-picker {
        width: calc(100dvw - 24px);
        max-width: calc(100dvw - 24px);
    }

    .tickets-flow-page .session-pill {
        min-height: 112px;
        padding: 12px;
    }

    .eyebrow,
    .ticket-card__tag,
    .session-card__day,
    .schedule-card__date {
        font-size: 11px;
    }

    .gallery-grid {
        grid-auto-rows: auto;
    }

    .sponsor-strip {
        gap: 12px;
    }

    .sponsor-strip img {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: 10px 14px 9px;
    }

    .site-brand__name {
        font-size: 20px;
    }

    .site-nav {
        padding-top: 7px;
        font-size: 15px;
    }

    .site-nav a {
        padding: 10px 0;
    }

    .okt-hero {
        min-height: min(560px, calc(100svh - 84px));
    }

    .okt-hero__content {
        width: min(360px, calc(100vw - 28px));
        max-width: calc(100vw - 28px);
        margin-left: 14px;
        padding: 26px 0 26px;
    }

    h1 {
        font-size: clamp(31px, 9.2vw, 38px);
        line-height: 1.03;
    }

    .okt-hero__content p:not(.eyebrow) {
        margin-top: 14px;
        font-size: 16px;
        line-height: 1.42;
    }

    .desktop-hero-copy {
        display: none;
    }

    .mobile-hero-copy {
        display: inline;
    }

    .okt-hero .hero-actions {
        display: none;
    }

    .mobile-hero-highlights {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
        margin: 13px 0 0;
        padding: 0;
        list-style: none;
    }

    .mobile-hero-highlights li {
        min-height: 54px;
        padding: 9px 10px;
        color: #fff;
        background: rgba(30, 29, 40, 0.36);
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: var(--okt-radius);
        box-shadow: 0 10px 24px rgba(30, 29, 40, 0.1);
        backdrop-filter: blur(8px);
    }

    .mobile-hero-highlights strong,
    .mobile-hero-highlights span {
        display: block;
        line-height: 1.12;
    }

    .mobile-hero-highlights strong {
        color: #fff;
        font-family: "Yellix-Bold", Arial, sans-serif;
        font-size: 14px;
    }

    .mobile-hero-highlights span {
        margin-top: 3px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 11px;
    }

    .mobile-booking-card {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px;
        align-items: center;
        margin-top: 9px;
        padding: 10px;
        color: var(--okt-ink);
        background: rgba(255, 255, 255, 0.94);
        border: 1px solid rgba(255, 255, 255, 0.52);
        border-radius: var(--okt-radius);
        box-shadow: 0 16px 36px rgba(30, 29, 40, 0.18);
    }

    .mobile-booking-card span,
    .mobile-booking-card strong {
        display: block;
        line-height: 1.12;
    }

    .mobile-booking-card span {
        color: var(--okt-red);
        font-family: "Yellix-Bold", Arial, sans-serif;
        font-size: 12px;
        text-transform: uppercase;
    }

    .mobile-booking-card strong {
        margin-top: 3px;
        font-family: "Yellix-Bold", Arial, sans-serif;
        font-size: 17px;
    }

    .mobile-booking-card .button {
        width: auto;
        min-height: 42px;
        padding: 9px 15px;
    }

    .hero-facts {
        display: none;
    }

    .proof-strip {
        box-shadow: 0 10px 24px rgba(30, 29, 40, 0.1);
    }

    .proof-strip div {
        padding: 14px 16px;
    }

    .proof-strip div:nth-child(n + 3) {
        display: none;
    }

    .proof-strip strong {
        font-size: 17px;
    }

    .proof-strip span {
        margin-top: 5px;
        font-size: 14px;
        line-height: 1.35;
    }

    .section {
        padding-block: 38px;
    }

    .section__header {
        margin-bottom: 22px;
    }

    .section__header p:not(.eyebrow),
    .section--split > div > p:not(.eyebrow),
    .corporate-section__content p {
        font-size: 16px;
        line-height: 1.45;
    }

    .section--highlight {
        padding-top: 34px;
        padding-bottom: 36px;
    }

    .section--highlight .section__header {
        margin-bottom: 18px;
    }

    .section--highlight .section__header p:not(.eyebrow) {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .ticket-grid,
    .session-grid {
        gap: 12px;
    }

    .ticket-card {
        gap: 11px;
        padding: 18px;
    }

    .ticket-card h3 {
        font-size: 21px;
        line-height: 1.12;
    }

    .ticket-card__price {
        margin-top: 5px;
        font-size: 27px;
        line-height: 1;
    }

    .ticket-card ul {
        display: grid;
        gap: 6px;
        padding-left: 18px;
        font-size: 14px;
        line-height: 1.35;
    }

    .ticket-card li + li {
        margin-top: 0;
    }

    .ticket-card .text-link,
    .session-card .text-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 42px;
        margin-top: 4px;
        padding: 9px 12px;
        color: #fff;
        background: var(--okt-blue-dark);
        border-radius: 999px;
        line-height: 1.2;
        text-align: center;
    }

    .section--sessions {
        padding-top: 34px;
        padding-bottom: 34px;
    }

    .section--sessions .section__header {
        margin-bottom: 14px;
    }

    .section--sessions .section__header p:not(.eyebrow),
    .section--sessions .session-grid {
        display: none;
    }

    .mobile-session-summary {
        display: grid;
        gap: 12px;
        padding: 18px;
        background: #fff;
        border: 1px solid var(--okt-border);
        border-radius: var(--okt-radius);
        box-shadow: 0 10px 26px rgba(30, 29, 40, 0.08);
    }

    .mobile-session-summary strong,
    .mobile-session-summary span {
        display: block;
        line-height: 1.25;
    }

    .mobile-session-summary strong {
        color: var(--okt-ink);
        font-family: "Yellix-Bold", Arial, sans-serif;
        font-size: 21px;
    }

    .mobile-session-summary span {
        margin-top: 5px;
        color: var(--okt-muted);
        font-size: 15px;
    }

    .mobile-session-summary .button {
        width: 100%;
    }

    .section--experience .section__header p:not(.eyebrow),
    .trust-section .section__header p:not(.eyebrow),
    .section--shop .section__header p:not(.eyebrow) {
        display: none;
    }

    .experience-grid {
        gap: 10px;
    }

    .experience-grid article {
        display: grid;
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 10px 14px;
        align-items: center;
        padding: 16px;
    }

    .experience-grid img {
        grid-row: span 2;
        width: 48px;
        height: 48px;
        margin: 0;
    }

    .experience-grid h3 {
        font-size: 18px;
        line-height: 1.12;
    }

    .experience-grid p {
        display: -webkit-box;
        margin-top: 0;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        font-size: 14px;
        line-height: 1.35;
    }

    .corporate-section {
        gap: 0;
    }

    .corporate-section__media {
        border-radius: var(--okt-radius) var(--okt-radius) 0 0;
        box-shadow: none;
    }

    .corporate-section__content {
        border-radius: 0 0 var(--okt-radius) var(--okt-radius);
    }

    .corporate-section__content .check-list li:nth-child(n + 3) {
        display: none;
    }

    .gallery-grid img:nth-child(n + 4),
    .testimonial-grid figure:nth-child(n + 3),
    .info-list article:nth-child(n + 3),
    .section--shop,
    .section--sponsors {
        display: none;
    }

    .final-cta {
        margin-bottom: 28px;
    }

    .final-cta h2 {
        font-size: clamp(28px, 8vw, 34px);
        line-height: 1.08;
    }
}

@media (max-width: 420px) {
    .okt-hero__content {
        width: calc(100vw - 24px);
        max-width: calc(100vw - 24px);
        margin-left: 12px;
    }

    .mobile-booking-card {
        grid-template-columns: 1fr;
    }

    .mobile-booking-card .button {
        width: 100%;
    }
}
