:root {
    --black: #050505;
    --panel: #111;
    --white: #fff;
    --orange: #f56516;
    --orange-dark: #ee4c28;
    --yellow: #ffd322;
    --pink: #ff00b8;
    --page-width: 1500px;
    --gutter: clamp(20px, 4vw, 64px);
    --header-height: 100px;
}

html {
    scroll-padding-top: var(--header-height);
}

body {
    overflow-x: hidden;
    background: var(--black);
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1.35;
}

.page-width {
    width: min(calc(100% - 2 * var(--gutter)), var(--page-width));
    margin-inline: auto;
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    translate: 0 -150%;
    background: var(--white);
    color: var(--black);
}

.skip-link:focus {
    translate: 0;
}

.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    height: var(--header-height);
    border-bottom: 1px solid #353535;
    background: rgb(5 5 5 / 96%);
}

.site-header__inner {
    display: flex;
    align-items: center;
    width: min(calc(100% - 2 * var(--gutter)), var(--page-width));
    height: 100%;
    margin-inline: auto;
}

.site-header__brand {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 28px;
    text-decoration: none;
}

.site-header__logo {
    width: 82px;
    height: auto;
}

.site-header__claim {
    color: var(--orange);
    font-size: 22px;
    letter-spacing: 0.02em;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.2vw, 42px);
    margin-left: auto;
}

.main-navigation a {
    color: #ddd;
    font-size: 16px;
    text-decoration: none;
    white-space: nowrap;
}

.main-navigation a:hover,
.main-navigation a:focus-visible {
    color: var(--orange);
}

.menu-toggle {
    display: none;
}

.hero {
    position: relative;
    min-height: min(100vh, 1080px);
    margin-top: var(--header-height);
    overflow: hidden;
    background: #23160e;
}

.hero-slider,
.hero-slider__slides,
.hero-slide,
.hero__picture,
.hero__image {
    width: 100%;
    height: 100%;
}

.hero-slider,
.hero-slide,
.hero__picture {
    position: absolute;
    inset: 0;
}

.hero-slide {
    visibility: hidden;
    opacity: 0;
    transition: opacity 900ms ease, visibility 900ms;
}

.hero-slide.is-active {
    visibility: visible;
    opacity: 1;
}

.hero__image {
    object-fit: cover;
    object-position: center;
}

.hero-slider__pagination {
    position: absolute;
    z-index: 3;
    bottom: 28px;
    left: 50%;
    display: flex;
    gap: 12px;
    translate: -50% 0;
}

.hero-slider__pagination button {
    width: 14px;
    height: 14px;
    padding: 0;
    border: 2px solid var(--white);
    border-radius: 50%;
    background: rgb(5 5 5 / 45%);
    cursor: pointer;
}

.hero-slider__pagination button:hover,
.hero-slider__pagination button:focus-visible,
.hero-slider__pagination button.is-active {
    border-color: var(--orange);
    background: var(--orange);
}

.hero-slider__pagination button:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 3px;
}

.hero::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgb(0 0 0 / 58%) 0%, transparent 54%);
}

.hero__content {
    position: relative;
    z-index: 1;
    padding-top: clamp(105px, 12vh, 170px);
}

.hero__location {
    margin-bottom: 22px;
    color: #ff9b00;
    font-size: clamp(18px, 1.6vw, 28px);
    text-transform: uppercase;
}

.hero h1 {
    max-width: 720px;
    font-size: clamp(44px, 4.3vw, 60px);
    line-height: 1.05;
    text-transform: uppercase;
}

.hero__intro {
    margin: 24px 0 38px;
    font-size: clamp(20px, 1.75vw, 30px);
    line-height: 1.18;
}

.button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 12px 34px;
    border: 0;
    background: var(--orange);
    color: var(--white);
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

.button:hover,
.button:focus-visible {
    filter: brightness(1.13);
}

.button--pink {
    background: var(--pink);
}

.button-note {
    margin-top: 8px;
    color: #aaa;
    font-size: 14px;
    font-style: italic;
}

.eyebrow {
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
}

h2 {
    color: var(--orange);
    font-size: clamp(34px, 3vw, 54px);
    line-height: 1.08;
}

.section-heading {
    margin-bottom: 46px;
    text-align: center;
}

.section-heading .eyebrow {
    color: var(--white);
}

.split-section {
    position: relative;
    display: grid;
    grid-template-columns: 1.75fr 1fr;
    align-items: center;
    gap: clamp(42px, 5vw, 90px);
    padding-top: 94px;
}

.split-section__media {
    position: relative;
    margin-left: calc((100vw - min(100vw - 2 * var(--gutter), var(--page-width))) / -2);
}

.split-section__media > picture img {
    width: 100%;
    height: auto;
    aspect-ratio: 1175 / 920;
}

.split-section__content {
    max-width: 520px;
}

.split-section__content h2 {
    margin-bottom: 66px;
    text-transform: uppercase;
}

.split-section__content > p:not(.eyebrow, .button-note) {
    margin-bottom: 42px;
}

.dot-matrix {
    position: absolute;
    z-index: 2;
    width: 170px;
    height: auto;
    pointer-events: none;
    will-change: transform;
}

.dot-matrix[src$="dot-matrix-3x6.svg"] {
    width: 74px;
}

.section-divider-dots {
    display: none;
}

.dot-matrix--stagecoach {
    right: -76px;
    bottom: -28px;
}

.values-section {
    position: relative;
    padding-top: 150px;
}

.values-visual {
    position: relative;
    width: 88%;
    margin-inline: auto;
}

.values-visual__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1502 / 809;
}

.value-card {
    position: absolute;
    z-index: 2;
    width: 300px;
    min-height: 190px;
    padding: 38px 26px;
    background: linear-gradient(165deg, var(--orange) 45%, var(--yellow));
    text-align: center;
    clip-path: polygon(8% 0, 96% 0, 100% 100%, 0 84%);
    transition: transform 950ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 600ms ease;
}

.value-card h3 {
    margin-bottom: 10px;
    font-size: 26px;
    text-transform: uppercase;
}

.value-card--joy {
    top: 45px;
    left: -70px;
}

.value-card--community {
    top: -15px;
    right: -70px;
}

.value-card--confidence {
    right: 20%;
    bottom: -50px;
}

.js .value-card--joy {
    opacity: 0;
    transform: translateX(-45vw);
}

.js .value-card--community,
.js .value-card--confidence {
    opacity: 0;
    transform: translateX(45vw);
}

.js .value-card.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.dot-matrix--values {
    bottom: -245px;
    left: -50px;
}

.weekly-section,
.courses-section,
.workshops-section,
.locations-section {
    position: relative;
    padding-top: 210px;
}

.weekly-section__grid {
    display: grid;
    grid-template-columns: 1.9fr 1fr;
    align-items: center;
    gap: 52px;
}

.weekly-section__video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--panel);
}

.weekly-section__content p {
    margin-bottom: 34px;
}

.dot-matrix--weekly {
    right: -120px;
    bottom: -80px;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(46px, 8vw, 150px);
}

.course-card {
    border: 1px solid var(--orange-dark);
    background: var(--panel);
    text-align: center;
}

.course-card > img {
    width: calc(100% - 68px);
    height: auto;
    aspect-ratio: 536 / 424;
    margin: 62px auto 0;
}

.course-card__body {
    display: flex;
    min-height: 400px;
    flex-direction: column;
    align-items: center;
    padding: 38px 58px 50px;
}

.course-card__body .eyebrow {
    margin-bottom: 0;
    font-size: 17px;
}

.course-card h3,
.location-card h3 {
    margin-bottom: 28px;
    color: var(--orange);
    font-size: 34px;
}

.course-card__body > p:not(.eyebrow) {
    margin-bottom: 38px;
}

.course-card .button {
    width: 100%;
    margin-top: auto;
}

.dot-matrix--courses-left {
    top: 110px;
    left: -145px;
}

.dot-matrix--courses-right {
    right: -155px;
    bottom: 60px;
}

.workshops-grid {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: 28px 76px;
}

.workshops-grid__hero {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
}

.workshops-grid__thumbs {
    display: grid;
    grid-column: 1;
    grid-row: 2;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.workshops-grid__thumbs img {
    width: 100%;
}

.workshop h3 {
    margin-bottom: 28px;
    color: var(--orange);
    font-size: 36px;
    line-height: 1.08;
}

.workshop p {
    margin-bottom: 26px;
}

.workshop .button {
    width: 100%;
}

.workshop--kpop {
    grid-column: 2;
    grid-row: 1;
}

.workshop--kpop h3 {
    color: var(--pink);
}

.workshops-grid__holiday-title {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    color: var(--orange);
    font-size: 36px;
    line-height: 1.08;
}

.workshops-grid__holiday-cta {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
}

.workshops-grid__holiday-cta .button {
    width: 100%;
}

.dot-matrix--workshops {
    bottom: -125px;
    left: -140px;
}

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

.location-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    border: 1px solid var(--orange-dark);
    background: var(--panel);
}

.location-card > img {
    width: 100%;
    aspect-ratio: 1.07 / 1;
    object-fit: cover;
}

.location-card__body {
    display: flex;
    flex: 1;
    min-height: 520px;
    flex-direction: column;
    padding: 30px 58px 42px;
}

.location-card__details,
.location-card__details-content {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.location-card__details > summary {
    list-style: none;
}

.location-card__details > summary::-webkit-details-marker {
    display: none;
}

.location-detail {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    margin-bottom: 24px;
}

.location-detail > img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.location-detail p {
    min-width: 0;
}

.location-card .button {
    width: 100%;
    margin-top: auto;
}

@media (min-width: 768px) {
    .location-card__body {
        --location-card-inline-padding: 58px;
        position: relative;
        padding-bottom: 120px;
    }

    .location-card__details > summary {
        pointer-events: none;
    }

    .location-card__details:not([open]) > .location-card__details-content {
        display: flex;
    }

    .location-card .button {
        position: absolute;
        right: var(--location-card-inline-padding);
        bottom: 42px;
        left: var(--location-card-inline-padding);
        width: auto;
        margin-top: 0;
    }
}

.dot-matrix--locations {
    right: -130px;
    bottom: -80px;
}

.contact-section {
    display: grid;
    grid-template-columns: 0.75fr 1.75fr;
    gap: 100px;
    margin-top: 180px;
    padding-top: 48px;
    border-top: 1px solid var(--orange-dark);
}

.contact-section__intro h2 {
    margin-bottom: 46px;
}

.contact-section__intro > p:not(.eyebrow) {
    margin-bottom: 26px;
}

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

.form-status {
    grid-column: 1 / -1;
    padding: 12px;
    border: 1px solid var(--orange);
}

.form-status--success {
    border-color: #69bd45;
}

.form-error {
    margin-top: 5px;
    color: #ff9b6d;
    font-size: 14px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    margin-bottom: 7px;
    color: var(--orange);
    font-size: 15px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 58px;
    border: 1px solid var(--orange);
    border-radius: 0;
    outline: 0;
    background: var(--black);
    color: var(--white);
}

.form-field input,
.form-field select {
    padding: 0 16px;
}

.form-field textarea {
    min-height: 125px;
    padding: 14px 16px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 1px var(--yellow);
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
    border-color: #ff9b6d;
    box-shadow: 0 0 0 1px #ff9b6d;
}

.privacy-field input[aria-invalid="true"] {
    outline: 2px solid #ff9b6d;
    outline-offset: 2px;
}

.form-field--message {
    grid-column: 2;
    grid-row: 4 / span 2;
}

.privacy-field {
    display: flex;
    grid-column: 1;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
}

.privacy-field input {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin: 3px 0 0;
    accent-color: var(--orange);
}

.contact-form__submit {
    grid-column: 2;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
}

.light-trail {
    margin-top: 30px;
    overflow: hidden;
}

.light-trail img {
    width: 100%;
    height: auto;
}

.site-footer {
    background: linear-gradient(110deg, var(--orange-dark), var(--orange));
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 1.3fr repeat(4, 1fr);
    gap: 55px;
    padding-block: 85px;
}

.site-footer__logo {
    width: 190px;
}

.site-footer h2 {
    margin-bottom: 28px;
    color: var(--white);
    font-size: 17px;
    text-transform: uppercase;
}

.site-footer a {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    text-decoration: underline;
}

@media (max-width: 1199px) {
    :root {
        --header-height: 82px;
    }

    .site-header__claim {
        display: none;
    }

    .site-header__logo {
        width: 66px;
    }

    .main-navigation {
        gap: 18px;
    }

    .main-navigation a {
        font-size: 14px;
    }

    .value-card {
        width: 250px;
        min-height: 165px;
        padding: 30px 20px;
        font-size: 15px;
    }

    .location-card__body {
        --location-card-inline-padding: 28px;
        padding-inline: 28px;
    }
}

@media (max-width: 767px) {
    :root {
        --header-height: 100px;
        --gutter: 20px;
    }

    html,
    body {
        max-width: 100%;
        overflow-x: clip;
    }

    body {
        font-size: 17px;
    }

    .site-header__logo {
        width: 82px;
    }

    .menu-toggle {
        display: grid;
        width: 42px;
        height: 42px;
        margin-left: auto;
        padding: 8px;
        border: 0;
        background: transparent;
    }

    .menu-toggle span:not(.visually-hidden) {
        display: block;
        height: 2px;
        background: #777;
    }

    .main-navigation {
        position: fixed;
        inset: var(--header-height) 0 auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 20px 24px;
        border-top: 1px solid #333;
        background: rgb(5 5 5 / 98%);
    }

    .main-navigation.is-open {
        display: flex;
    }

    .main-navigation a {
        padding: 12px 0;
        font-size: 16px;
    }

    .hero {
        min-height: auto;
        margin-top: var(--header-height);
        padding-top: 520px;
        overflow: visible;
        background: var(--black);
    }

    .hero-slider {
        height: 520px;
    }

    .hero__image {
        object-fit: cover;
        object-position: top center;
    }

    .hero-slider__pagination {
        bottom: 18px;
    }

    .hero::after {
        display: none;
    }

    .hero__content {
        padding-top: 20px;
    }

    .hero__location {
        margin-bottom: 8px;
        font-size: 17px;
    }

    .hero h1 {
        font-size: clamp(33px, 9.5vw, 42px);
    }

    .hero__intro {
        margin: 22px 0;
        font-size: 17px;
    }

    .hero .button,
    .split-section .button,
    .weekly-section .button {
        width: 100%;
    }

    .hero .button-note,
    .weekly-section .button-note {
        display: none;
    }

    h2 {
        font-size: 31px;
    }

    .eyebrow {
        font-size: 17px;
    }

    .section-heading {
        margin-bottom: 32px;
        text-align: left;
    }

    .split-section {
        display: flex;
        flex-direction: column;
        gap: 34px;
        padding-top: 105px;
    }

    .split-section__media {
        order: 2;
        margin-left: 0;
    }

    .split-section__media > picture img,
    .values-visual__image {
        aspect-ratio: auto;
    }

    .split-section__content {
        display: contents;
    }

    .split-section__content .eyebrow,
    .split-section__content h2 {
        order: 1;
    }

    .split-section__content h2 {
        margin: -38px 0 0;
    }

    .split-section__content > p:not(.eyebrow, .button-note),
    .split-section__content > .button,
    .split-section__content > .button-note {
        order: 3;
    }

    .split-section__content > p:not(.eyebrow, .button-note) {
        margin-bottom: 0;
    }

    .dot-matrix {
        display: none;
    }

    .section-divider-dots {
        display: block;
        width: 136px;
        height: auto;
        margin: 56px auto 0;
    }

    .values-section {
        padding-top: 120px;
    }

    .values-visual {
        display: grid;
        width: 100%;
        gap: 14px;
    }

    .value-card {
        position: static;
        width: 100%;
        min-height: 0;
        padding: 18px 14px;
        clip-path: none;
        text-align: left;
    }

    .value-card h3 {
        margin-bottom: 5px;
        font-size: 18px;
    }

    .js .value-card--joy,
    .js .value-card--community,
    .js .value-card--confidence {
        opacity: 1;
        transform: none;
    }

    .weekly-section,
    .courses-section,
    .workshops-section,
    .locations-section {
        padding-top: 120px;
    }

    .weekly-section__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .weekly-section__content p {
        margin-bottom: 26px;
    }

    .dot-matrix {
        width: 150px;
    }

    .course-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .course-card > img {
        width: calc(100% - 40px);
        height: auto;
        aspect-ratio: auto;
        margin-top: 28px;
    }

    .course-card__body {
        min-height: 0;
        align-items: flex-start;
        padding: 28px 40px 34px;
        text-align: left;
    }

    .course-card h3 {
        margin-bottom: 28px;
        font-size: 27px;
    }

    .course-card .button {
        margin-top: 8px;
        padding-inline: 10px;
        font-size: 14px;
    }

    .workshops-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .workshops-grid__hero,
    .workshop--kpop,
    .workshops-grid__holiday-title,
    .workshops-grid__thumbs,
    .workshops-grid__holiday-cta {
        grid-column: 1;
        grid-row: auto;
    }

    .workshops-grid__thumbs {
        display: block;
    }

    .workshops-grid__thumbs img:first-child {
        display: block;
        width: 100%;
    }

    .workshops-grid__thumbs img:last-child {
        display: none;
    }

    .workshop h3 {
        font-size: 29px;
    }

    .workshops-grid__holiday-title {
        margin-top: 8px;
        font-size: 29px;
    }

    .location-grid {
        display: block;
    }

    .location-card {
        border: 0;
        background: transparent;
    }

    .location-card > img {
        display: none;
    }

    .location-card__body {
        min-height: 0;
        padding: 0;
    }

    .location-card__details {
        display: block;
        border-bottom: 1px solid var(--orange-dark);
    }

    .location-card__details > summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 18px 0;
        cursor: pointer;
    }

    .location-card__details > summary::after {
        flex: 0 0 auto;
        color: var(--orange);
        content: "+";
        font-size: 28px;
        font-weight: 400;
        line-height: 1;
    }

    .location-card__details[open] > summary::after {
        content: "−";
    }

    .location-card h3 {
        margin: 0;
        font-size: 22px;
    }

    .location-card__details-content {
        display: block;
        padding: 8px 0 24px;
    }

    .location-detail {
        display: block;
        margin-bottom: 20px;
    }

    .location-detail > img {
        display: none;
    }

    .location-card .button {
        display: inline-flex;
        margin-top: 10px;
    }

    .contact-section {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 120px;
        padding-top: 0;
        border: 0;
    }

    .contact-section__intro h2 {
        margin-bottom: 24px;
    }

    .contact-form {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .form-field--message,
    .privacy-field,
    .contact-form__submit {
        grid-column: 1;
        grid-row: auto;
    }

    .privacy-field {
        order: 10;
        margin-top: 10px;
    }

    .contact-form__submit {
        order: 9;
    }

    .light-trail {
        display: none;
    }

    .site-footer {
        margin-top: 100px;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 70px 24px 100px;
    }

    .site-footer__logo {
        width: 220px;
        margin-bottom: 18px;
    }

    .site-footer h2 {
        margin-bottom: 10px;
    }
}

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

    .value-card {
        transition: none;
    }

    .js .value-card {
        opacity: 1;
        transform: none;
    }

    .hero-slide {
        transition: none;
    }
}
