:root {
    --ink: #0b0909;
    --ink-soft: #151111;
    --paper: #eee9df;
    --paper-muted: #bdb4a5;
    --red: #a30f20;
    --red-bright: #d31c31;
    --red-dark: #4b0710;
    --gold: #bda46c;
    --line: rgba(238, 233, 223, 0.18);
    --serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
    --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
    --max: 1200px;
}

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

html {
    color-scheme: dark;
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--sans);
    line-height: 1.8;
    letter-spacing: 0.05em;
    overflow-x: hidden;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: radial-gradient(circle at 15% 20%, rgba(163, 15, 32, 0.11), transparent 32%),
        radial-gradient(circle at 90% 75%, rgba(163, 15, 32, 0.08), transparent 26%);
    content: "";
    pointer-events: none;
}

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

a {
    color: inherit;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 2px solid var(--paper);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1000;
    padding: 0.7rem 1rem;
    background: var(--paper);
    color: var(--ink);
    transform: translateY(-180%);
}

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

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    padding: 0.8rem clamp(1.2rem, 4vw, 4.5rem);
    border-bottom: 1px solid transparent;
    transition: background 250ms ease, border-color 250ms ease, min-height 250ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
    min-height: 66px;
    border-color: var(--line);
    background: rgba(11, 9, 9, 0.94);
    backdrop-filter: blur(14px);
}

.brand {
    display: flex;
    align-items: baseline;
    gap: 0.65rem;
    font-family: var(--serif);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    letter-spacing: 0.2em;
    text-decoration: none;
}

.brand-kicker {
    color: var(--red-bright);
    font-family: var(--sans);
    font-size: 0.55em;
    letter-spacing: 0.25em;
}

.global-nav {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.3vw, 2.5rem);
    font-size: 0.76rem;
    letter-spacing: 0.14em;
}

.global-nav a {
    position: relative;
    text-decoration: none;
}

.global-nav a:not(.nav-ticket)::after {
    position: absolute;
    right: 0;
    bottom: -0.4rem;
    left: 0;
    height: 1px;
    background: var(--red-bright);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms ease;
}

.global-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-ticket {
    padding: 0.65rem 1rem;
    border: 1px solid var(--red-bright);
    background: rgba(163, 15, 32, 0.2);
}

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--paper);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
}

.hero {
    position: relative;
    display: grid;
    min-height: 100svh;
    overflow: hidden;
    isolation: isolate;
}

.hero-media,
.hero-shade,
.hero-copy {
    grid-area: 1 / 1;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: var(--red-dark);
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 64% 24%;
    filter: contrast(1.04) saturate(0.92);
    transform: scale(1.01);
}

.hero-shade {
    z-index: -1;
    background: linear-gradient(90deg, rgba(5, 3, 3, 0.96) 0%, rgba(5, 3, 3, 0.82) 32%, rgba(5, 3, 3, 0.18) 67%, rgba(5, 3, 3, 0.42) 100%),
        linear-gradient(0deg, rgba(5, 3, 3, 0.82), transparent 35%);
}

.hero-copy {
    align-self: end;
    width: min(100%, 1500px);
    margin: 0 auto;
    padding: 9rem clamp(1.5rem, 8vw, 9rem) clamp(4.2rem, 8vh, 7rem);
}

.eyebrow {
    margin: 0 0 1.4rem;
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

.hero h1 {
    display: flex;
    flex-direction: column;
    width: max-content;
    margin: 0;
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.hero-type {
    margin-bottom: 0.65rem;
    color: var(--gold);
    font-family: var(--sans);
    font-size: clamp(0.75rem, 1vw, 1rem);
    letter-spacing: 0.5em;
}

.hero-title-main {
    font-size: clamp(4rem, 9.6vw, 9.5rem);
    letter-spacing: 0.1em;
}

.hero-subtitle {
    align-self: flex-end;
    margin-top: 1rem;
    font-size: clamp(1rem, 2vw, 1.65rem);
    letter-spacing: 0.24em;
}

.hero-date {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin: clamp(2.2rem, 6vh, 4rem) 0 0;
    font-family: var(--serif);
    line-height: 1;
}

.hero-date span {
    color: var(--paper-muted);
    font-size: 1rem;
    letter-spacing: 0.12em;
}

.hero-date strong {
    font-family: Georgia, serif;
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    font-weight: 400;
    letter-spacing: -0.04em;
}

.hero-date small {
    font-size: 0.82rem;
}

.hero-venue {
    margin: 0.7rem 0 0;
    font-family: var(--serif);
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    letter-spacing: 0.15em;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2.2rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    min-height: 58px;
    padding: 0.9rem 1.5rem;
    border: 1px solid transparent;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--red);
    color: #fff;
}

.button-primary:hover {
    background: var(--red-bright);
}

.button-outline {
    border-color: rgba(238, 233, 223, 0.65);
}

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

.text-link {
    display: inline-flex;
    gap: 1rem;
    align-items: center;
    padding-bottom: 0.15rem;
    border-bottom: 1px solid rgba(238, 233, 223, 0.5);
    font-size: 0.82rem;
    text-decoration: none;
}

.hero-scroll {
    position: absolute;
    right: clamp(1.2rem, 3vw, 3rem);
    bottom: 3rem;
    margin: 0;
    color: var(--paper-muted);
    font-size: 0.58rem;
    letter-spacing: 0.34em;
    writing-mode: vertical-rl;
}

.hero-scroll::after {
    display: block;
    width: 1px;
    height: 50px;
    margin: 0.8rem auto 0;
    background: linear-gradient(var(--red-bright), transparent);
    content: "";
}

.section {
    position: relative;
    width: min(calc(100% - 3rem), var(--max));
    margin: 0 auto;
    padding: clamp(6rem, 12vw, 10rem) 0;
}

.section-heading {
    margin-bottom: clamp(2.8rem, 6vw, 5rem);
}

.section-heading h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    font-weight: 400;
    letter-spacing: 0.12em;
    line-height: 1.2;
}

.section-heading > p:last-child {
    margin: 0.65rem 0 0;
    color: var(--paper-muted);
    font-size: 0.62rem;
    letter-spacing: 0.36em;
}

.section-number {
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    margin: 0 0 1.2rem;
    border: 1px solid var(--red-bright);
    border-radius: 50%;
    color: var(--red-bright);
    font-family: var(--serif);
    font-size: 0.74rem;
}

.story {
    display: grid;
    grid-template-columns: minmax(170px, 0.45fr) minmax(0, 1fr);
    gap: clamp(3rem, 10vw, 10rem);
    min-height: 100svh;
    align-items: start;
}

.vertical-heading {
    position: sticky;
    top: 8rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.vertical-heading h2 {
    writing-mode: vertical-rl;
}

.vertical-heading > p:last-child {
    align-self: flex-end;
    writing-mode: vertical-rl;
}

.story-copy {
    max-width: 680px;
    padding-top: 5rem;
    font-family: var(--serif);
    font-size: clamp(1.03rem, 1.7vw, 1.28rem);
    letter-spacing: 0.12em;
    line-height: 2.25;
}

.story-copy p {
    margin: 0 0 2.6rem;
}

.story-lead {
    font-size: clamp(1.35rem, 2.6vw, 2rem);
}

.story-words {
    display: grid;
    margin: 4.5rem 0;
    padding: 2.4rem 0;
    border-block: 1px solid var(--line);
    color: var(--paper-muted);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    line-height: 2;
}

.story-closing strong {
    color: #fff;
    font-size: clamp(1.4rem, 2.7vw, 2.2rem);
    font-weight: 400;
}

.petal {
    position: absolute;
    z-index: -1;
    width: 35vw;
    height: 35vw;
    border: 1px solid rgba(163, 15, 32, 0.12);
    border-radius: 48% 52% 23% 77% / 55% 37% 63% 45%;
    transform: rotate(36deg);
}

.petal-one {
    top: 8%;
    right: -18vw;
}

.petal-two {
    bottom: 5%;
    left: -22vw;
    transform: rotate(-22deg);
}

.info {
    border-top: 1px solid var(--line);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.info-grid article {
    padding: clamp(2rem, 5vw, 4.5rem);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.date-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-label {
    margin: 0 0 3rem;
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.28em;
}

.large-date {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.55rem;
    font-family: Georgia, serif;
    line-height: 1;
}

.large-date span {
    font-size: clamp(1rem, 2vw, 1.6rem);
}

.large-date strong {
    font-size: clamp(3.3rem, 7vw, 6.5rem);
    font-weight: 400;
    letter-spacing: -0.06em;
}

.large-date small {
    font-family: var(--sans);
    font-size: 0.75rem;
}

.time-list {
    display: flex;
    gap: 2.5rem;
    margin: 3rem 0 0;
}

.time-list div {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
}

.time-list dt {
    color: var(--paper-muted);
    font-size: 0.7rem;
}

.time-list dd {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 1.6rem;
}

.venue-card h3 {
    margin: 0 0 1.5rem;
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    line-height: 1.5;
}

.venue-card h3 span {
    color: var(--gold);
}

.venue-card p {
    color: var(--paper-muted);
    font-size: 0.84rem;
}

.venue-card .access {
    max-width: 31rem;
    margin: 1.5rem 0 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.price-card {
    grid-column: 1 / -1;
}

.price-card .card-label {
    margin-bottom: 2rem;
}

.ticket-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.ticket-option {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 390px;
    padding: clamp(1.4rem, 3.2vw, 2.8rem);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.012);
}

.ticket-option-patronage {
    background: linear-gradient(145deg, rgba(163, 15, 32, 0.15), rgba(163, 15, 32, 0.025));
}

.ticket-number {
    margin: 0 0 2rem;
    color: var(--red-bright);
    font-family: Georgia, serif;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
}

.ticket-option h3 {
    min-height: 4.2rem;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(1.15rem, 2vw, 1.6rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.45;
}

.ticket-price {
    margin: 1rem 0 0;
    white-space: nowrap;
}

.ticket-price strong {
    font-family: Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
}

.ticket-caption {
    margin: 0.4rem 0 0;
    color: var(--paper-muted);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
}

.ticket-benefits {
    margin-top: auto;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(238, 233, 223, 0.18);
}

.ticket-benefits > p {
    margin: 0;
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.benefits {
    margin: 0;
    padding: 0.4rem 0 0;
    list-style: none;
}

.benefits li {
    position: relative;
    padding: 0.55rem 0 0.55rem 1.5rem;
}

.benefits li::before {
    position: absolute;
    left: 0;
    color: var(--red-bright);
    content: "◆";
    font-size: 0.55rem;
}

.price-card .button {
    margin: 2.5rem 0 0 auto;
    min-width: min(100%, 320px);
}

.cast {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: clamp(3rem, 8vw, 7rem);
    width: min(calc(100% - 3rem), 1400px);
    border-top: 1px solid var(--line);
}

.cast-image {
    position: relative;
    align-self: start;
    max-height: 880px;
    overflow: hidden;
}

.cast-image::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(238, 233, 223, 0.16);
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.5);
    content: "";
    pointer-events: none;
}

.cast-image img {
    width: 100%;
    filter: saturate(0.72) contrast(1.03);
}

.cast-content {
    align-self: center;
}

.cast-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.cast-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.cast-list li:nth-child(even) {
    padding-left: 1rem;
}

.staff {
    display: grid;
    grid-template-columns: 0.55fr 1fr;
    gap: clamp(3rem, 10vw, 9rem);
    border-top: 1px solid var(--line);
}

.staff-list {
    margin: 0;
}

.staff-list div {
    display: grid;
    grid-template-columns: 9rem 1fr;
    gap: 2rem;
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--line);
}

.staff-list dt {
    color: var(--paper-muted);
    font-size: 0.78rem;
}

.staff-list dd {
    margin: 0;
    font-family: var(--serif);
    font-size: 1.1rem;
}

.staff-list .organizer {
    margin-top: 1.5rem;
    border-color: var(--red);
}

.staff-list .organizer dd {
    color: var(--gold);
}

.support {
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    align-items: center;
    min-height: 640px;
    width: min(100%, 1500px);
    padding-inline: clamp(1.5rem, 8vw, 9rem);
    background: linear-gradient(120deg, rgba(75, 7, 16, 0.92), rgba(20, 11, 12, 0.7)),
        url("../images/manjushage-main.jpg") 30% 58% / cover;
    border-block: 1px solid rgba(211, 28, 49, 0.45);
}

.support-mark {
    color: rgba(238, 233, 223, 0.09);
    font-family: var(--serif);
    font-size: clamp(13rem, 28vw, 28rem);
    line-height: 1;
    text-align: center;
}

.support-copy {
    max-width: 620px;
}

.support-copy h2 {
    margin: 0 0 2rem;
    font-family: var(--serif);
    font-size: clamp(2.7rem, 6vw, 5.5rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.35;
}

.support-copy > p:not(.eyebrow) {
    margin-bottom: 2.5rem;
}

.contact {
    display: grid;
    grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1fr);
    gap: clamp(4rem, 10vw, 9rem);
}

.contact-cta {
    display: grid;
    grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
    gap: clamp(3rem, 10vw, 9rem);
    border-top: 1px solid var(--line);
}

.contact-cta .section-heading {
    margin-bottom: 0;
}

.contact-cta-body {
    align-self: center;
    max-width: 650px;
}

.contact-cta-body > p {
    margin: 0 0 2.2rem;
    color: var(--paper-muted);
    font-family: var(--serif);
    font-size: clamp(1rem, 1.7vw, 1.25rem);
}

.contact-cta-body .phone-contact {
    max-width: 480px;
}

.contact-page .site-header {
    border-color: var(--line);
    background: rgba(11, 9, 9, 0.96);
    backdrop-filter: blur(14px);
}

.subpage-hero {
    position: relative;
    display: grid;
    place-items: end start;
    min-height: 440px;
    padding: 9rem max(1.5rem, calc((100vw - var(--max)) / 2)) 4.5rem;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(7, 5, 5, 0.95), rgba(7, 5, 5, 0.45)),
        url("../images/manjushage-main.jpg") 58% 43% / cover;
    border-bottom: 1px solid rgba(211, 28, 49, 0.4);
}

.subpage-hero::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(11, 9, 9, 0.72), transparent 60%);
    content: "";
    pointer-events: none;
}

.subpage-hero > div {
    position: relative;
    z-index: 1;
}

.subpage-hero h1 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 400;
    letter-spacing: 0.14em;
    line-height: 1.2;
}

.subpage-hero div > p:last-child {
    margin: 1rem 0 0;
    color: var(--paper-muted);
    font-family: var(--serif);
}

.contact-page-section {
    padding-top: clamp(5rem, 10vw, 8rem);
}

.back-link {
    display: inline-block;
    margin-top: 2.5rem;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid var(--line);
    color: var(--paper-muted);
    font-size: 0.75rem;
    text-decoration: none;
}

.back-link:hover {
    color: var(--paper);
    border-color: var(--paper);
}

.compact-footer {
    padding-block: clamp(2.5rem, 5vw, 4rem);
}

.compact-footer .footer-title strong {
    font-size: clamp(2.2rem, 4vw, 4rem);
}

.contact-intro {
    align-self: start;
    position: sticky;
    top: 8rem;
}

.contact-intro > p {
    color: var(--paper-muted);
}

.phone-contact {
    display: flex;
    flex-direction: column;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.phone-contact span,
.phone-contact small {
    color: var(--paper-muted);
    font-size: 0.72rem;
}

.phone-contact a {
    margin: 0.45rem 0;
    font-family: Georgia, serif;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    letter-spacing: 0.02em;
    text-decoration: none;
}

.contact-form {
    padding: clamp(1.5rem, 4vw, 3.5rem);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.018);
}

.form-row {
    margin-bottom: 2rem;
}

.form-row.two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.form-row label,
.label-line label {
    display: block;
    margin-bottom: 0.55rem;
    font-size: 0.82rem;
    font-weight: 700;
}

.form-row label span,
.check-label strong {
    margin-left: 0.5rem;
    color: var(--red-bright);
    font-size: 0.65rem;
}

.form-row label small {
    margin-left: 0.5rem;
    color: var(--paper-muted);
    font-weight: 400;
}

.label-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.label-line output {
    color: var(--paper-muted);
    font-size: 0.68rem;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(238, 233, 223, 0.27);
    border-radius: 0;
    background: #100d0d;
    color: var(--paper);
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

input,
select {
    min-height: 52px;
    padding: 0.7rem 0.85rem;
}

textarea {
    min-height: 180px;
    padding: 0.85rem;
    line-height: 1.7;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--red-bright);
    box-shadow: 0 0 0 3px rgba(211, 28, 49, 0.15);
    outline: none;
}

[aria-invalid="true"] {
    border-color: var(--red-bright);
}

.field-error,
.field-help {
    min-height: 1.35em;
    margin: 0.35rem 0 0;
    font-size: 0.7rem;
}

.field-error {
    color: #ff8a99;
}

.field-help {
    color: var(--paper-muted);
}

.privacy-box {
    margin: 2.5rem 0;
    padding: 1.25rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
}

.privacy-box h3 {
    margin: 0 0 0.5rem;
    font-family: var(--serif);
    font-size: 1rem;
}

.privacy-box > p {
    margin: 0 0 1rem;
    color: var(--paper-muted);
    font-size: 0.72rem;
}

.check-label {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    cursor: pointer;
    font-size: 0.78rem;
}

.check-label input {
    width: 1rem;
    min-height: 1rem;
    accent-color: var(--red-bright);
}

.submit-button {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.submit-button:disabled {
    cursor: wait;
    opacity: 0.65;
}

.form-note {
    margin: 1rem 0 0;
    color: var(--paper-muted);
    font-size: 0.68rem;
    text-align: center;
}

.form-status {
    margin-bottom: 2rem;
    padding: 1rem 1.2rem;
    border-left: 3px solid;
    font-size: 0.82rem;
}

.form-status.success {
    border-color: #6fb889;
    background: rgba(70, 140, 95, 0.12);
}

.form-status.error {
    border-color: var(--red-bright);
    background: rgba(163, 15, 32, 0.13);
}

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

.site-footer {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
    padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 7vw, 7rem);
    border-top: 1px solid var(--line);
    background: #070606;
}

.footer-title {
    display: flex;
    flex-direction: column;
    font-family: var(--serif);
}

.footer-title span {
    color: var(--red-bright);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
}

.footer-title strong {
    font-size: clamp(2.6rem, 6vw, 5.5rem);
    font-weight: 400;
    letter-spacing: 0.12em;
    line-height: 1.35;
}

.footer-title small {
    letter-spacing: 0.18em;
}

.footer-meta {
    color: var(--paper-muted);
    font-size: 0.68rem;
    text-align: right;
}

.back-top {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    text-decoration: none;
}

@media (max-width: 960px) {
    .nav-toggle {
        display: block;
        z-index: 2;
        cursor: pointer;
    }

    .global-nav {
        position: fixed;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 1.6rem;
        padding: 6rem 12vw;
        background: rgba(11, 9, 9, 0.98);
        font-family: var(--serif);
        font-size: 1.35rem;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 250ms ease, visibility 250ms;
    }

    .global-nav.is-open {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-ticket {
        margin-top: 1rem;
        font-family: var(--sans);
        font-size: 0.85rem;
    }

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

    .cast-image {
        width: min(100%, 700px);
        margin: 0 auto;
    }

    .cast-content {
        width: min(100%, 700px);
        margin: 0 auto;
    }

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

    .contact-cta {
        grid-template-columns: 1fr;
    }

    .contact-intro {
        position: static;
    }
}

@media (max-width: 680px) {
    body {
        letter-spacing: 0.035em;
    }

    .site-header {
        min-height: 64px;
        padding-inline: 1.1rem;
    }

    .hero {
        min-height: 820px;
    }

    .hero-media img {
        object-position: 64% center;
    }

    .hero-shade {
        background: linear-gradient(0deg, rgba(5, 3, 3, 0.97) 0%, rgba(5, 3, 3, 0.72) 47%, rgba(5, 3, 3, 0.08) 78%);
    }

    .hero-copy {
        padding: 7rem 1.2rem 3.2rem;
    }

    .hero-title-main {
        font-size: clamp(3.6rem, 19vw, 5.8rem);
        letter-spacing: 0.05em;
    }

    .hero-subtitle {
        font-size: 0.98rem;
        letter-spacing: 0.13em;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 1.2rem;
        max-width: 330px;
    }

    .hero-scroll {
        display: none;
    }

    .section {
        width: min(calc(100% - 2.4rem), var(--max));
        padding-block: 5.5rem;
    }

    .section-heading h2 {
        font-size: clamp(2.25rem, 12vw, 3.2rem);
    }

    .story {
        display: block;
    }

    .vertical-heading {
        position: static;
        display: block;
    }

    .vertical-heading h2,
    .vertical-heading > p:last-child {
        writing-mode: horizontal-tb;
    }

    .story-copy {
        padding-top: 0;
        font-size: 1rem;
        line-height: 2.1;
    }

    .story-copy br {
        display: none;
    }

    .story-words {
        margin-block: 3rem;
    }

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

    .price-card {
        grid-column: auto;
    }

    .ticket-options {
        grid-template-columns: 1fr;
    }

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

    .ticket-benefits {
        margin-top: 2rem;
    }

    .info-grid article {
        padding: 2rem 1.3rem;
    }

    .card-label {
        margin-bottom: 2rem;
    }

    .large-date strong {
        font-size: 4.2rem;
    }

    .staff {
        display: block;
    }

    .staff-list div {
        grid-template-columns: 6.5rem 1fr;
        gap: 1.2rem;
    }

    .support {
        display: block;
        min-height: 620px;
        width: 100%;
        padding-inline: 1.2rem;
        background-position: 61% center;
    }

    .support-mark {
        position: absolute;
        top: 2rem;
        right: -0.3rem;
        z-index: 0;
        font-size: 14rem;
    }

    .support-copy {
        position: relative;
        z-index: 1;
        padding-top: 7rem;
    }

    .support-copy h2 {
        font-size: 2.8rem;
    }

    .contact-form {
        margin-inline: -0.3rem;
        padding: 1.3rem;
    }

    .subpage-hero {
        min-height: 380px;
        padding: 8rem 1.2rem 3rem;
        background-position: 64% 36%;
    }

    .subpage-hero h1 {
        font-size: clamp(2.7rem, 14vw, 4rem);
        letter-spacing: 0.08em;
    }

    .form-row.two-column {
        grid-template-columns: 1fr;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
        padding: 3rem 1.2rem;
    }

    .footer-meta {
        text-align: left;
    }

    .back-top {
        position: absolute;
        right: 1.2rem;
        bottom: 3rem;
    }
}

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

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

@media print {
    .site-header,
    .hero-actions,
    .hero-scroll,
    .contact-form,
    .back-top {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .section {
        padding-block: 2rem;
    }
}
