/* =============================================================================
   MESTO · Multi-Ethnic Star Orchestra
   One-page demo · Editorial concert-program × Ottoman manuscript folio
   ============================================================================= */

:root {
    --burgundy:        #5C0A1F;
    --burgundy-deep:   #3D0614;
    --burgundy-dark:   #2A0810;
    --crimson:         #990000;
    --crimson-bright:  #B81C2D;
    --gold:            #C9A961;
    --gold-pale:       #E8D9B0;
    --gold-deep:       #9A7E3D;
    --ivory:           #F5EDE0;
    --ivory-warm:      #EFE4D0;
    --ivory-soft:      #FAF5EC;
    --ink:             #1A1014;
    --ink-soft:        #2C1F22;
    --paper:           #FBF6EC;

    --serif:        "Cormorant Garamond", "EB Garamond", Georgia, serif;
    --serif-caps:   "Cormorant SC", "Cormorant Garamond", Georgia, serif;
    --sans:         "Inter", system-ui, -apple-system, sans-serif;

    --ease-out: cubic-bezier(.16,1,.3,1);
    --ease-in-out: cubic-bezier(.65,0,.35,1);

    --shadow-soft: 0 30px 60px -30px rgba(26,16,20,.25);
    --shadow-deep: 0 50px 100px -40px rgba(26,16,20,.35);
}

/* ----- RESET / BASE ----- */
* { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    width: 100%;
}
body.mesto-body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 400;
    line-height: 1.65;
    font-size: 17px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .35s var(--ease-out); }

::selection { background: var(--burgundy); color: var(--ivory); }

/* paper grain overlay for the whole page */
body.mesto-body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: .035;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    mix-blend-mode: multiply;
}

/* ============================================================================
   NAVIGATION
   ============================================================================ */
.m-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    padding: 22px 0;
    transition: background .5s var(--ease-out), padding .5s var(--ease-out), backdrop-filter .5s;
}
/* soft dark gradient at the top so nav links read on light hero photos — fades on scroll */
.m-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(26,16,20,.7) 0%,
        rgba(26,16,20,.45) 50%,
        rgba(26,16,20,.0) 100%);
    z-index: -1;
    pointer-events: none;
    transition: opacity .5s var(--ease-out);
}
.m-nav.is-scrolled::before { opacity: 0; }
.m-nav__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.m-nav__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ivory);
    transition: color .4s;
}
.m-nav__brand-mark {
    width: 36px; height: 36px;
    color: var(--gold);
    display: grid; place-items: center;
}
.m-nav__brand-mark svg { width: 100%; height: 100%; }
.m-nav__brand-word {
    font-family: var(--serif-caps);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: .18em;
    line-height: 1;
}
.m-nav__brand-sub {
    display: none;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: .25em;
    text-transform: uppercase;
    opacity: .7;
    border-left: 1px solid currentColor;
    padding-left: 12px;
    margin-left: 4px;
}
@media (min-width: 992px) {
    .m-nav__brand-sub { display: inline-block; }
}

.m-nav__menu {
    display: none;
    align-items: center;
    gap: 36px;
    color: var(--ivory);
}
@media (min-width: 992px) {
    .m-nav__menu { display: flex; }
}
.m-nav__menu a {
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
}
.m-nav__menu a:not(.m-nav__cta)::after {
    content: "";
    position: absolute;
    left: 50%; bottom: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width .4s var(--ease-out), left .4s var(--ease-out);
}
.m-nav__menu a:not(.m-nav__cta):hover::after { width: 100%; left: 0; }
.m-nav__menu a:not(.m-nav__cta):hover { color: var(--gold-pale); }
.m-nav__cta {
    background: var(--gold);
    color: var(--burgundy-deep) !important;
    padding: 10px 18px !important;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform .35s, background .35s;
}
.m-nav__cta:hover { background: var(--gold-pale); transform: translateY(-1px); }
.m-nav__cta i { font-size: 10px; }

/* burger */
.m-nav__burger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    padding: 0;
    background: rgba(26,16,20,.35);
    border: 1px solid rgba(201,169,97,.55);
    border-radius: 50%;
    cursor: pointer;
    color: var(--gold-pale);
    transition: border-color .35s, background .35s, color .35s;
}
@media (min-width: 992px) { .m-nav__burger { display: none; } }
.m-nav__burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform .35s, opacity .35s;
}
.m-nav__burger:hover { border-color: var(--gold); background: var(--gold); color: var(--burgundy-deep); }

/* nav scrolled state */
.m-nav.is-scrolled {
    background: rgba(26,16,20,.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 1px 0 rgba(201,169,97,.18);
}

/* mobile menu */
.m-nav__mobile {
    position: fixed;
    top: 76px; right: 24px; left: 24px;
    background: var(--burgundy-deep);
    border: 1px solid rgba(201,169,97,.3);
    border-radius: 6px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 49;
    box-shadow: 0 30px 80px rgba(0,0,0,.4);
}
.m-nav__mobile[hidden] { display: none; }
.m-nav__mobile a {
    padding: 14px 12px;
    color: var(--ivory);
    font-size: 13px;
    letter-spacing: .2em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(201,169,97,.15);
}
.m-nav__mobile a:last-child { border-bottom: none; }
.m-nav__mobile a.m-nav__cta {
    margin-top: 12px;
    border: none;
    text-align: center;
    color: var(--burgundy-deep) !important;
    border-radius: 999px;
}

/* ============================================================================
   HERO
   ============================================================================ */
.m-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    color: var(--ivory);
    display: flex;
    flex-direction: column;
    justify-content: center;
    isolation: isolate;
    padding: 120px 24px 100px;
}
.m-hero__media { position: absolute; inset: 0; z-index: -2; }
.m-hero__image {
    position: absolute;
    inset: -8% 0;
    background-size: cover;
    background-position: center 30%;
    will-change: transform;
    transform: scale(1.05);
}
/* hero overlay removed — image shows through; readability comes from text-shadow */
.m-hero__image::after { content: none; }
.m-hero__veil {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(26,16,20,.08) 0%, transparent 18%, transparent 100%);
    z-index: -1;
}
.m-hero__grain {
    position: absolute; inset: 0;
    opacity: .12;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    mix-blend-mode: overlay;
}

/* hero corner frame (proscenium hairlines) */
.m-hero__frame {
    position: absolute;
    inset: 100px 40px 80px;
    pointer-events: none;
}
.m-hero__corner {
    position: absolute;
    width: 80px; height: 80px;
    border: 1px solid rgba(201,169,97,.55);
}
.m-hero__corner--tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.m-hero__corner--tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.m-hero__corner--bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.m-hero__corner--br { bottom: 0; right: 0; border-left: none; border-top: none; }
@media (max-width: 768px) {
    .m-hero__frame { inset: 90px 20px 80px; }
    .m-hero__corner { width: 40px; height: 40px; }
}

.m-hero__content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
/* localized soft scrim — darkens only behind the text, image stays bright everywhere else */
.m-hero__content::before {
    content: "";
    position: absolute;
    inset: -120px -180px;
    background:
        radial-gradient(ellipse 65% 55% at 50% 50%,
            rgba(26,16,20,.55) 0%,
            rgba(26,16,20,.32) 40%,
            rgba(26,16,20,.10) 70%,
            transparent 100%);
    z-index: -1;
    pointer-events: none;
    filter: blur(24px);
}
@media (max-width: 768px) {
    .m-hero__content::before { inset: -80px -40px; }
}
.m-hero__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(40px, 7.5vw, 104px);
    line-height: 1.02;
    letter-spacing: -.02em;
    margin: 24px 0 28px;
    color: #FBF6EC;
    text-wrap: balance;
    text-shadow:
        0 1px 2px rgba(0,0,0,.9),
        0 4px 24px rgba(0,0,0,.7),
        0 0 60px rgba(0,0,0,.5);
}
.m-hero__title em {
    font-style: italic;
    color: var(--gold-pale);
}
.m-hero__title-line {
    font-style: normal;
    display: inline-block;
    position: relative;
}
.m-hero__title-line::before, .m-hero__title-line::after {
    content: "";
    display: inline-block;
    width: 60px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    vertical-align: middle;
    margin: 0 28px;
}
@media (max-width: 768px) {
    .m-hero__title-line::before, .m-hero__title-line::after { width: 24px; margin: 0 10px; }
}
@media (max-width: 480px) {
    .m-hero__title-line::before, .m-hero__title-line::after { display: none; }
}

.m-hero__sub {
    font-family: var(--serif);
    font-size: clamp(16px, 1.5vw, 21px);
    font-weight: 400;
    color: #FFFFFF;
    letter-spacing: .02em;
    margin: 0 auto 44px;
    font-style: italic;
    display: inline-block;
    padding: 10px 28px;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 999px;
    border: 1px solid rgba(201,169,97,.3);
    max-width: 100%;
}
@media (max-width: 500px) {
    .m-hero__sub {
        padding: 12px 20px;
        border-radius: 18px;
    }
}
.m-hero__name {
    font-style: normal;
    font-family: var(--serif-caps);
    letter-spacing: .15em;
    color: var(--gold-pale);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
    margin-left: 6px;
}

.m-hero__cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* kicker (small caps overline) */
.m-kicker {
    font-family: var(--serif-caps);
    font-size: 13px;
    letter-spacing: .35em;
    color: var(--gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    text-transform: uppercase;
}
.m-kicker--gold { color: var(--gold-pale); }
.m-kicker--centered { display: flex; justify-content: center; margin-bottom: 16px; }
.m-kicker__dot {
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
}

/* hero marquee (venue ticker) */
.m-hero__marquee {
    position: absolute;
    left: 0; right: 0;
    bottom: 0;
    border-top: 1px solid rgba(201,169,97,.25);
    border-bottom: 1px solid rgba(201,169,97,.25);
    padding: 16px 0;
    overflow: hidden;
    background: rgba(26,16,20,.4);
    backdrop-filter: blur(4px);
    z-index: 3;
}
.m-hero__marquee-track {
    display: flex;
    gap: 48px;
    align-items: center;
    white-space: nowrap;
    animation: marquee 60s linear infinite;
    width: max-content;
    color: var(--gold-pale);
    font-family: var(--serif-caps);
    font-size: 13px;
    letter-spacing: .28em;
    text-transform: uppercase;
}
.m-hero__marquee-track .dot { color: var(--gold); font-size: 10px; }
@keyframes marquee {
    to { transform: translateX(-50%); }
}

/* hero scroll cue */
.m-hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 76px;
    transform: translateX(-50%);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--gold-pale);
    z-index: 3;
}
@media (min-height: 760px) {
    .m-hero__scroll { display: flex; }
}
.m-hero__scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
    position: relative;
    overflow: hidden;
}
.m-hero__scroll-line::after {
    content: "";
    position: absolute;
    left: 0; top: -50%;
    width: 100%; height: 50%;
    background: var(--ivory-soft);
    animation: scrollLine 2s var(--ease-in-out) infinite;
}
@keyframes scrollLine {
    0% { top: -50%; } 60%,100% { top: 100%; }
}
.m-hero__scroll-label {
    font-family: var(--serif-caps);
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
}

/* ============================================================================
   SHARED — sections, marks, titles
   ============================================================================ */
.m-section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}
@media (max-width: 768px) {
    .m-section { padding: 80px 0; }
}

.m-section__mark {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}
.m-section__mark--centered { justify-content: center; }
.m-section__numeral { display: none; }
.m-section__rule {
    flex: 0 0 60px;
    height: 1px;
    background: var(--gold-deep);
    opacity: .6;
}
.m-section__mark--centered .m-section__rule { flex-basis: 100px; }
.m-section__kicker {
    font-family: var(--serif-caps);
    font-size: 12px;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold-deep);
}
.m-section__mark--light .m-section__numeral { color: var(--gold); }
.m-section__mark--light .m-section__kicker { color: var(--gold-pale); }
.m-section__mark--light .m-section__rule { background: var(--gold); opacity: .5; }

.m-section__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(34px, 4.5vw, 58px);
    line-height: 1.08;
    letter-spacing: -.015em;
    color: var(--burgundy-deep);
    margin: 0 0 32px;
    text-wrap: balance;
}
.m-section__title em { font-style: italic; color: var(--crimson); }
.m-section__title--centered { text-align: center; margin-left: auto; margin-right: auto; max-width: 820px; margin-bottom: 56px; }

.m-lead {
    font-family: var(--serif);
    font-size: clamp(19px, 1.6vw, 22px);
    line-height: 1.55;
    color: var(--ink);
    margin: 0 0 20px;
    font-weight: 400;
}
.m-lead em { color: var(--crimson); font-style: italic; }

/* ============================================================================
   BUTTONS
   ============================================================================ */
.m-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--serif-caps);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .25em;
    text-transform: uppercase;
    padding: 16px 30px;
    border-radius: 999px;
    transition: all .4s var(--ease-out);
    position: relative;
    cursor: pointer;
    border: 1px solid transparent;
    line-height: 1;
}
.m-btn--lg { padding: 20px 36px; font-size: 14px; }
.m-btn--gold {
    background: var(--gold);
    color: var(--burgundy-deep);
}
.m-btn--gold:hover { background: var(--ivory-soft); transform: translateY(-2px); box-shadow: 0 18px 40px -16px rgba(201,169,97,.6); color: var(--burgundy-deep); }
.m-btn--burgundy {
    background: var(--burgundy);
    color: var(--ivory-soft);
}
.m-btn--burgundy:hover { background: var(--burgundy-deep); color: var(--gold-pale); transform: translateY(-2px); }
.m-btn--ghost {
    background: transparent;
    color: var(--ivory);
    border-color: rgba(245,237,224,.5);
}
.m-btn--ghost:hover { border-color: var(--gold); color: var(--gold-pale); }
.m-btn--ghost-light {
    background: transparent;
    color: var(--ivory);
    border-color: var(--gold);
}
.m-btn--ghost-light:hover { background: var(--gold); color: var(--burgundy-deep); }
.m-btn--ghost-dark {
    background: transparent;
    color: var(--burgundy-deep);
    border-color: var(--burgundy-deep);
}
.m-btn--ghost-dark:hover { background: var(--burgundy-deep); color: var(--ivory-soft); }
.m-btn--link {
    background: transparent;
    color: var(--burgundy);
    padding: 16px 4px;
    letter-spacing: .25em;
}
.m-btn--link:hover { color: var(--crimson); }

.m-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--serif-caps);
    font-size: 12px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--burgundy);
    padding: 8px 0;
    border-bottom: 1px solid var(--burgundy);
    transition: all .4s var(--ease-out);
}
.m-link:hover { color: var(--crimson); border-color: var(--gold); gap: 18px; }

/* ============================================================================
   ABOUT
   ============================================================================ */
.m-about {
    background: linear-gradient(180deg, var(--paper) 0%, var(--ivory-warm) 100%);
}
.m-about__body p {
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.78;
    color: var(--ink-soft);
    margin-bottom: 22px;
}
.m-about__body .m-lead {
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.78;
    color: var(--ink-soft);
    margin: 0 0 22px;
}
.m-about__body p em,
.m-about__body .m-lead em { color: var(--crimson); font-style: italic; }
.m-about__body .m-link { margin-top: 10px; }

.m-about__quote-block {
    margin-top: 36px;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(92,10,31,.04), rgba(201,169,97,.05));
    border: 1px solid rgba(201,169,97,.3);
    position: relative;
}
.m-about__quote-block::before, .m-about__quote-block::after {
    content: "";
    position: absolute;
    width: 12px; height: 12px;
    border: 1px solid var(--gold);
}
.m-about__quote-block::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.m-about__quote-block::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.m-about__stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    gap: 16px;
}
.m-about__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.m-about__stat b {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(36px, 4vw, 52px);
    color: var(--crimson);
    line-height: 1;
    font-weight: 500;
}
.m-about__stat i {
    font-family: var(--serif-caps);
    font-style: normal;
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-top: 8px;
}
.m-about__stat-sep {
    width: 1px;
    height: 36px;
    background: var(--gold);
    opacity: .4;
}

.m-about__ornament {
    position: absolute;
    font-family: var(--serif);
    font-size: 240px;
    color: var(--burgundy);
    opacity: .04;
    line-height: 1;
    pointer-events: none;
}
.m-about__ornament--left { left: -20px; bottom: 40px; }
@media (max-width: 768px) {
    .m-about__ornament { display: none; }
}

/* ============================================================================
   CONCERTS — ticket stub
   ============================================================================ */
.m-concerts {
    background: var(--ivory-warm);
    overflow: hidden;
}

.m-ticket {
    display: grid;
    grid-template-columns: 320px 1fr;
    background: var(--ivory-soft);
    margin: 0 auto;
    max-width: 1100px;
    box-shadow: var(--shadow-deep);
    border: 1px solid rgba(201,169,97,.4);
    position: relative;
}
@media (max-width: 860px) {
    .m-ticket { grid-template-columns: 1fr; }
}

.m-ticket__stub {
    position: relative;
    background:
        radial-gradient(ellipse at top, var(--burgundy) 0%, var(--burgundy-deep) 60%, var(--burgundy-dark) 100%);
    color: var(--ivory-soft);
    padding: 56px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.m-ticket__stub::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(201,169,97,.35);
    pointer-events: none;
}
.m-ticket__stub::after {
    content: "M E S T O";
    position: absolute;
    top: 28px; left: 0; right: 0;
    text-align: center;
    font-family: var(--serif-caps);
    font-size: 10px;
    letter-spacing: .5em;
    color: var(--gold);
    opacity: .8;
}

.m-ticket__stub-frame {
    text-align: center;
    z-index: 1;
}
.m-ticket__stub-kicker {
    font-family: var(--serif-caps);
    font-size: 11px;
    letter-spacing: .35em;
    color: var(--gold);
    text-transform: uppercase;
    margin: 0 0 16px;
}
.m-ticket__date {
    margin: 0;
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 6px;
}
.m-ticket__month {
    font-family: var(--serif);
    font-style: italic;
    font-size: 26px;
    color: var(--gold-pale);
}
.m-ticket__day {
    font-family: var(--serif);
    font-size: 110px;
    font-weight: 300;
    color: var(--ivory-soft);
    line-height: 1;
    margin: 0;
}
.m-ticket__year {
    font-family: var(--serif-caps);
    font-size: 16px;
    letter-spacing: .25em;
    color: var(--gold-pale);
}
.m-ticket__time {
    margin: 18px 0 0;
    font-family: var(--serif);
    font-size: 18px;
    font-style: italic;
    color: var(--gold-pale);
}
.m-ticket__time i { margin-right: 8px; font-size: 13px; }

.m-ticket__stub-divider {
    width: 60%;
    height: 1px;
    background: var(--gold);
    opacity: .4;
    margin: 24px auto;
}
.m-ticket__seat {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.m-ticket__seat span {
    font-family: var(--serif-caps);
    font-size: 10px;
    letter-spacing: .35em;
    color: var(--gold);
    text-transform: uppercase;
}
.m-ticket__seat strong {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 28px;
    color: var(--ivory-soft);
    letter-spacing: .1em;
}

/* perforated divider */
.m-ticket__perforations {
    position: absolute;
    top: 0; right: -8px; bottom: 0;
    width: 16px;
    background-image: radial-gradient(circle at 50% 0%, var(--ivory-warm) 7px, transparent 8px);
    background-size: 16px 22px;
    background-repeat: repeat-y;
    z-index: 2;
}
@media (max-width: 860px) {
    .m-ticket__perforations {
        top: auto; right: 0; left: 0; bottom: -8px;
        width: auto; height: 16px;
        background-image: radial-gradient(circle at 0% 50%, var(--ivory-warm) 7px, transparent 8px);
        background-size: 22px 16px;
        background-repeat: repeat-x;
    }
}

.m-ticket__body {
    padding: 56px 56px 56px 60px;
}
@media (max-width: 860px) {
    .m-ticket__body { padding: 40px 28px; }
}
.m-ticket__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.1;
    color: var(--burgundy-deep);
    margin: 14px 0 28px;
    letter-spacing: -.01em;
}
.m-ticket__title em { font-style: italic; color: var(--crimson); }

.m-ticket__meta {
    display: grid;
    gap: 18px;
    margin-bottom: 28px;
    padding: 24px 0;
    border-top: 1px solid rgba(201,169,97,.4);
    border-bottom: 1px solid rgba(201,169,97,.4);
}
.m-ticket__meta > div {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.m-ticket__meta i {
    color: var(--crimson);
    width: 20px;
    margin-top: 4px;
    font-size: 16px;
}
.m-ticket__meta strong {
    display: block;
    font-family: var(--serif);
    font-weight: 600;
    font-size: 16px;
    color: var(--ink);
    margin-bottom: 2px;
}
.m-ticket__meta span {
    font-size: 13px;
    color: var(--ink-soft);
    letter-spacing: .01em;
}

.m-ticket__copy {
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0 0 28px;
    font-style: italic;
}

.m-ticket__cta { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }

/* past performances */
.m-concerts__past { margin-top: 100px; }
.m-concerts__past .m-kicker { display: flex; justify-content: center; margin-bottom: 32px; color: var(--gold-deep); }

.m-past-card {
    background: var(--ivory-soft);
    border: 1px solid rgba(201,169,97,.35);
    overflow: hidden;
    transition: transform .5s var(--ease-out), box-shadow .5s;
    height: 100%;
}
.m-past-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.m-past-card__media {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s var(--ease-out);
    filter: saturate(.85);
}
.m-past-card:hover .m-past-card__media { transform: scale(1.05); filter: saturate(1); }
.m-past-card__body { padding: 24px 26px 28px; }
.m-past-card__date {
    font-family: var(--serif-caps);
    font-size: 11px;
    letter-spacing: .3em;
    color: var(--gold-deep);
    margin: 0 0 8px;
}
.m-past-card__body h4 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 22px;
    color: var(--burgundy-deep);
    margin: 0 0 6px;
    line-height: 1.2;
}
.m-past-card__body p {
    font-size: 13px;
    color: var(--ink-soft);
    margin: 0;
    font-style: italic;
}

/* ============================================================================
   CONDUCTOR
   ============================================================================ */
.m-conductor {
    background:
        linear-gradient(180deg, var(--ivory-warm) 0%, var(--paper) 100%);
    position: relative;
}
.m-conductor::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(201,169,97,.06), transparent 50%);
    pointer-events: none;
}

.m-portrait {
    margin: 0;
    position: relative;
    max-width: 460px;
}
.m-portrait__frame {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
    border: 1px solid rgba(201,169,97,.5);
}
.m-portrait__frame::before {
    content: "";
    position: absolute; inset: 10px;
    border: 1px solid rgba(201,169,97,.5);
    z-index: 2;
    pointer-events: none;
}
.m-portrait__frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: sepia(.08) contrast(1.02);
    transition: transform 1.4s var(--ease-out);
}
.m-portrait:hover .m-portrait__frame img { transform: scale(1.04); }
.m-portrait__veil {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(92,10,31,.1) 0%, transparent 30%, transparent 75%, rgba(26,16,20,.55) 100%);
    pointer-events: none;
}
.m-portrait__tape {
    position: absolute;
    width: 100px; height: 22px;
    background: linear-gradient(180deg, rgba(201,169,97,.85), rgba(201,169,97,.6));
    box-shadow: 0 6px 12px rgba(0,0,0,.18);
    z-index: 3;
}
.m-portrait__tape--tl { top: -10px; left: -20px; transform: rotate(-22deg); }
.m-portrait__tape--br { bottom: -10px; right: -20px; transform: rotate(-22deg); }
.m-portrait__caption {
    margin-top: 18px;
    font-family: var(--serif);
    font-size: 14px;
    letter-spacing: .02em;
    color: var(--ink-soft);
    text-align: center;
    font-style: italic;
}
.m-portrait__caption em { color: var(--crimson); }

.m-conductor__role {
    font-family: var(--serif-caps);
    font-size: 13px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin: -22px 0 28px;
}

.m-quote {
    margin: 32px 0;
    padding: 28px 36px;
    position: relative;
    border-left: 2px solid var(--gold);
    background: linear-gradient(90deg, rgba(201,169,97,.06), transparent);
}
.m-quote__mark {
    position: absolute;
    top: -10px; left: 16px;
    font-family: var(--serif);
    font-size: 80px;
    color: var(--crimson);
    line-height: 1;
    font-style: italic;
}
.m-quote p {
    font-family: var(--serif);
    font-size: clamp(20px, 1.8vw, 24px);
    line-height: 1.5;
    font-style: italic;
    color: var(--burgundy-deep);
    margin: 0 0 14px;
    padding-left: 32px;
}
.m-quote footer {
    font-family: var(--serif-caps);
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-deep);
    padding-left: 32px;
}
.m-quote footer small {
    display: block;
    font-family: var(--serif);
    font-style: italic;
    font-size: 13px;
    letter-spacing: .02em;
    text-transform: none;
    color: var(--ink-soft);
    margin-top: 6px;
}

.m-conductor__honors {
    display: grid;
    gap: 18px;
    margin: 36px 0 32px;
}
@media (min-width: 600px) {
    .m-conductor__honors { grid-template-columns: 1fr 1fr; }
}
.m-honor {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 22px;
    background: var(--ivory-soft);
    border: 1px solid rgba(201,169,97,.35);
    position: relative;
    transition: border-color .4s, transform .4s;
}
.m-honor:hover { border-color: var(--gold); transform: translateY(-2px); }
.m-honor__icon {
    display: grid; place-items: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: var(--burgundy-deep);
    font-size: 16px;
    flex-shrink: 0;
}
.m-honor strong {
    display: block;
    font-family: var(--serif);
    font-weight: 600;
    font-size: 15px;
    color: var(--burgundy-deep);
    margin-bottom: 4px;
    line-height: 1.25;
}
.m-honor span {
    font-size: 12px;
    color: var(--ink-soft);
    letter-spacing: .02em;
}

/* ============================================================================
   GALLERY — polaroid masonry
   ============================================================================ */
.m-gallery {
    background: var(--paper);
    overflow: hidden;
}
.m-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 36px 28px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 20px 0;
}
@media (max-width: 600px) {
    .m-gallery__grid { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
}

.m-polaroid {
    display: block;
    perspective: 1000px;
}
.m-polaroid--1 .m-polaroid__inner { transform: rotate(-1.5deg); }
.m-polaroid--2 .m-polaroid__inner { transform: rotate(.8deg); margin-top: 30px; }
.m-polaroid--3 .m-polaroid__inner { transform: rotate(-.6deg); margin-top: 12px; }
.m-polaroid--4 .m-polaroid__inner { transform: rotate(1.3deg); margin-top: 4px; }

.m-polaroid__inner {
    background: var(--ivory-soft);
    padding: 14px 14px 36px;
    box-shadow: 0 18px 40px -16px rgba(26,16,20,.3);
    transition: transform .6s var(--ease-out), box-shadow .6s, z-index 0s .6s;
    position: relative;
    z-index: 1;
}
.m-polaroid:hover .m-polaroid__inner {
    transform: rotate(0) scale(1.04);
    box-shadow: 0 35px 70px -20px rgba(26,16,20,.5);
    z-index: 3;
    transition-delay: 0s;
}
.m-polaroid__tape {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    width: 80px; height: 22px;
    background: linear-gradient(180deg, rgba(201,169,97,.85), rgba(201,169,97,.55));
    box-shadow: 0 4px 8px rgba(0,0,0,.15);
    opacity: .9;
}
.m-polaroid__media {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    filter: saturate(.92) contrast(1.02);
    transition: filter .6s;
}
.m-polaroid:hover .m-polaroid__media { filter: saturate(1.05) contrast(1.05); }
.m-polaroid__caption {
    margin-top: 14px;
    text-align: center;
    font-family: var(--serif);
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.2;
    padding: 0 4px;
}
.m-polaroid__caption em { color: var(--crimson); }

/* lightbox */
.m-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(26,16,20,.95);
    display: grid;
    place-items: center;
    padding: 24px;
    cursor: zoom-out;
    backdrop-filter: blur(6px);
    animation: lbFade .35s var(--ease-out);
}
.m-lightbox[hidden] { display: none; }
.m-lightbox figure {
    margin: 0;
    max-width: 90vw;
    max-height: 86vh;
    text-align: center;
}
.m-lightbox img {
    max-width: 100%;
    max-height: 80vh;
    border: 8px solid var(--ivory-soft);
    box-shadow: 0 50px 100px rgba(0,0,0,.6);
    cursor: default;
}
.m-lightbox figcaption {
    color: var(--gold-pale);
    font-family: var(--serif);
    font-style: italic;
    margin-top: 18px;
    letter-spacing: .02em;
}
.m-lightbox__close {
    position: absolute;
    top: 24px; right: 28px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold-pale);
    width: 48px; height: 48px;
    border-radius: 50%;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    transition: all .35s;
}
.m-lightbox__close:hover { background: var(--gold); color: var(--burgundy-deep); }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }

/* ============================================================================
   DISCOGRAPHY
   ============================================================================ */
.m-discog {
    background: linear-gradient(180deg, var(--paper) 0%, var(--ivory-warm) 100%);
    overflow: hidden;
}
.m-discog__swiper { padding: 20px 4px 80px; overflow: visible; }
.m-album {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
}
.m-album__case {
    position: relative;
    width: 260px; height: 260px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow:
        0 30px 60px -20px rgba(26,16,20,.4),
        inset 0 0 0 1px rgba(255,255,255,.1);
    transform: perspective(1000px) rotateY(-8deg);
    transition: transform .8s var(--ease-out), box-shadow .8s;
    background: var(--burgundy-dark);
}
.m-album:hover .m-album__case {
    transform: perspective(1000px) rotateY(0deg) translateY(-8px);
    box-shadow: 0 50px 90px -30px rgba(26,16,20,.6);
}
.m-album__cover {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--burgundy-dark);
}
.m-album__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.15) 50%, transparent 70%);
    pointer-events: none;
    transition: transform .8s;
}
.m-album:hover .m-album__shine { transform: translateX(20%); }

.m-album__meta {
    font-family: var(--serif-caps);
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin: 28px 0 6px;
}
.m-album__title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 28px;
    color: var(--burgundy-deep);
    margin: 0 0 14px;
    letter-spacing: -.01em;
}
.m-album__desc {
    font-family: var(--serif);
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin: 0 auto 18px;
    max-width: 320px;
    font-style: italic;
}

.m-discog__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 36px;
}
.m-discog__btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1px solid var(--burgundy);
    background: transparent;
    color: var(--burgundy);
    cursor: pointer;
    transition: all .4s;
    display: grid;
    place-items: center;
}
.m-discog__btn:hover { background: var(--burgundy); color: var(--ivory-soft); }
.m-discog__pagination {
    display: flex;
    gap: 8px;
    align-items: center;
    width: auto !important;
    position: static !important;
}
.m-discog__pagination .swiper-pagination-bullet {
    width: 26px; height: 2px;
    background: var(--burgundy-deep);
    opacity: .25;
    border-radius: 0;
    transition: all .4s;
}
.m-discog__pagination .swiper-pagination-bullet-active {
    background: var(--crimson);
    opacity: 1;
    width: 40px;
}

/* ============================================================================
   PATRONAGE
   ============================================================================ */
.m-patronage {
    color: var(--ivory-soft);
    overflow: hidden;
    position: relative;
    padding: 140px 0;
}
.m-patronage__bg { position: absolute; inset: 0; z-index: -1; }
.m-patronage__bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
}
/* veil reduced to a soft focused scrim — image is the hero of this section */
.m-patronage__bg-veil {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 75% 60% at 50% 50%, rgba(26,16,20,.35) 0%, rgba(26,16,20,.12) 55%, rgba(26,16,20,.05) 100%);
}
.m-patronage__bg-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    opacity: .15;
    mix-blend-mode: overlay;
}

.m-patronage__title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(40px, 5.5vw, 76px);
    line-height: 1.05;
    text-align: center;
    margin: 0 0 28px;
    color: var(--ivory-soft);
    letter-spacing: -.015em;
    text-wrap: balance;
    text-shadow: 0 4px 30px rgba(0,0,0,.75), 0 0 100px rgba(0,0,0,.5);
}
.m-patronage__title em { font-style: italic; color: var(--gold-pale); }

.m-patronage__lead {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
    font-family: var(--serif);
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.6;
    color: rgba(245,237,224,.95);
    text-shadow: 0 2px 16px rgba(0,0,0,.75), 0 0 40px rgba(0,0,0,.5);
}

.m-patronage__cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 90px;
}

.m-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}
.m-tier {
    background: rgba(245,237,224,.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(201,169,97,.3);
    padding: 36px 32px 32px;
    text-align: center;
    position: relative;
    transition: transform .5s, border-color .5s, background .5s;
}
.m-tier:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    background: rgba(245,237,224,.09);
}
.m-tier--featured {
    background: rgba(201,169,97,.12);
    border-color: var(--gold);
    transform: translateY(-12px);
}
.m-tier__ribbon {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--burgundy-deep);
    font-family: var(--serif-caps);
    font-size: 10px;
    letter-spacing: .3em;
    padding: 6px 16px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}
.m-tier__name {
    font-family: var(--serif-caps);
    font-size: 13px;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold-pale);
    margin: 0 0 14px;
}
.m-tier__amount {
    font-family: var(--serif);
    font-size: 60px;
    line-height: 1;
    color: var(--ivory-soft);
    margin: 0 0 24px;
    font-weight: 300;
    font-style: italic;
}
.m-tier__amount span {
    font-size: 28px;
    vertical-align: top;
    margin-right: 4px;
    color: var(--gold);
    font-style: normal;
}
.m-tier__list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.m-tier__list li {
    padding: 10px 0;
    border-top: 1px solid rgba(201,169,97,.2);
    font-family: var(--serif);
    font-size: 15px;
    color: rgba(245,237,224,.85);
    font-style: italic;
}
.m-tier__list li:first-child { border-top: none; }

/* ============================================================================
   FOOTER
   ============================================================================ */
.m-foot {
    background: var(--ink);
    color: rgba(245,237,224,.55);
    padding: 90px 0 40px;
    position: relative;
}
.m-foot::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.m-foot__brand {
    display: inline-block;
    color: var(--ivory-soft);
    margin-bottom: 18px;
}
.m-foot__brand-word {
    font-family: var(--serif-caps);
    font-size: 36px;
    font-weight: 600;
    letter-spacing: .22em;
    color: var(--ivory-soft);
}
.m-foot__tag {
    font-family: var(--serif);
    font-size: 16px;
    color: var(--gold-pale);
    margin: 0 0 18px;
    line-height: 1.5;
}
.m-foot__tag em { color: var(--gold); font-style: italic; }
.m-foot__copy {
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 24px;
    color: rgba(245,237,224,.55);
}
.m-foot__copy--small { font-size: 13px; margin-top: 8px; }

.m-foot__social {
    display: flex;
    gap: 12px;
    margin-top: 6px;
}
.m-foot__social a {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(201,169,97,.4);
    color: var(--gold-pale);
    display: grid; place-items: center;
    font-size: 14px;
    transition: all .35s;
}
.m-foot__social a:hover { background: var(--gold); color: var(--burgundy-deep); border-color: var(--gold); transform: translateY(-2px); }

.m-foot__title {
    font-family: var(--serif-caps);
    font-size: 12px;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 22px;
    font-weight: 600;
}
.m-foot__title--small { margin-top: 28px; font-size: 11px; }

.m-foot__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.m-foot__list a {
    font-family: var(--serif);
    font-size: 16px;
    color: rgba(245,237,224,.6);
    font-style: italic;
    transition: color .35s, letter-spacing .35s;
    display: inline-block;
}
.m-foot__list a:hover { color: var(--gold-pale); letter-spacing: .03em; }

.m-foot__form {
    display: flex;
    gap: 0;
    background: rgba(245,237,224,.06);
    border: 1px solid rgba(201,169,97,.3);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 8px;
}
.m-foot__form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 22px;
    color: var(--ivory-soft);
    font-family: var(--serif);
    font-size: 15px;
    font-style: italic;
    outline: none;
}
.m-foot__form input::placeholder { color: rgba(245,237,224,.4); }
.m-foot__form button {
    background: var(--gold);
    border: none;
    color: var(--burgundy-deep);
    padding: 0 22px;
    cursor: pointer;
    transition: background .35s;
}
.m-foot__form button:hover { background: var(--gold-pale); }

.m-foot__rule {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,169,97,.5), transparent);
    margin: 70px 0 30px;
}
.m-foot__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    letter-spacing: .04em;
    color: rgba(245,237,224,.55);
}
.m-foot__creds { display: inline-flex; align-items: center; gap: 10px; margin: 0; }
.m-foot__creds .dot { color: var(--gold); }

/* ============================================================================
   AOS subtle overrides for character
   ============================================================================ */
[data-aos] { transition-timing-function: cubic-bezier(.16,1,.3,1); }

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .m-hero__marquee-track { animation: none; }
}
