@charset "UTF-8";

/* Zeytin Dalı / Gece Frekansları — public experience layer */
:root {
    --night: #090a10;
    --night-soft: #10121a;
    --panel: #141721;
    --panel-2: #1a1d28;
    --chalk: #f4f1e9;
    --chalk-dim: #b8b7bf;
    --paper: #ece9df;
    --paper-bright: #f7f4ed;
    --ink: #101117;
    --acid: #ddfd50;
    --acid-dark: #b7db18;
    --music: #ff654a;
    --psychology: #58d7c7;
    --theatre: #8e8998;
    --white-line: rgba(244, 241, 233, .16);
    --dark-line: rgba(16, 17, 23, .16);
    --display: "Arial Narrow", "Aptos Display", "Roboto Condensed", "Segoe UI", Arial, sans-serif;
    --sans: "Aptos", "Segoe UI", Arial, sans-serif;
    --mono: "Cascadia Mono", "IBM Plex Mono", Consolas, monospace;
    --container: min(1320px, calc(100% - 56px));
    --ease-out: cubic-bezier(.16, 1, .3, 1);
}

.experience-shell {
    min-width: 320px;
    color: var(--chalk);
    background: var(--night);
    font-family: var(--sans);
    letter-spacing: -.01em;
}

.experience-shell::before { display: none; }
.experience-shell main { overflow: clip; }
.experience-shell .container { width: var(--container); }
.experience-shell ::selection { color: var(--night); background: var(--acid); }
.experience-shell :focus-visible { outline: 3px solid var(--acid); outline-offset: 4px; }
.experience-shell a { text-decoration: none; }

.experience-shell .skip-link {
    color: var(--night);
    background: var(--acid);
    border-radius: 0;
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
}

.experience-shell .announcement {
    color: var(--chalk);
    background: #050609;
    border-bottom: 1px solid var(--white-line);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .12em;
}

.experience-shell .announcement__inner { min-height: 34px; }
.experience-shell .announcement__inner > span { gap: 9px; }
.experience-shell .announcement__inner b { opacity: .35; }
.experience-shell .announcement a { color: var(--acid); opacity: 1; }
.experience-shell .pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--acid);
    box-shadow: none;
}

@keyframes nightPulse {
    50% { opacity: .25; }
}

.experience-shell .pulse-dot { animation: nightPulse 1.6s steps(2, end) infinite; }

.experience-shell .site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    color: var(--chalk);
    background: rgba(9, 10, 16, .92);
    border-bottom: 1px solid var(--white-line);
    backdrop-filter: blur(20px);
    transition: background .2s, box-shadow .2s;
}

.experience-shell .site-header.is-scrolled {
    border-color: var(--white-line);
    background: rgba(9, 10, 16, .98);
    box-shadow: 0 16px 50px rgba(0, 0, 0, .28);
}

.experience-shell .header-inner { min-height: 78px; gap: 32px; }
.experience-shell .brand { gap: 11px; }
.experience-shell .brand-mark {
    position: relative;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--night);
    background: var(--acid);
    border: 1px solid var(--acid);
    border-radius: 0;
}

.experience-shell .brand-mark::after { display: none; }
.experience-shell .brand-mark span {
    position: relative;
    z-index: 2;
    font-family: var(--display);
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: -.08em;
}

.experience-shell .brand-mark i {
    position: absolute;
    right: 3px;
    top: -9px;
    color: rgba(9, 10, 16, .28);
    font-family: var(--display);
    font-size: 46px;
    font-style: normal;
    font-weight: 200;
    line-height: 1;
    transform: rotate(10deg);
}

.experience-shell .brand-copy strong {
    color: var(--chalk);
    font-family: var(--display);
    font-size: 18px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: -.04em;
    text-transform: uppercase;
}

.experience-shell .brand-copy small {
    margin-top: 5px;
    color: var(--chalk-dim);
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .16em;
}

.experience-shell .desktop-nav { gap: clamp(18px, 2.2vw, 34px); }
.experience-shell .desktop-nav a {
    color: var(--chalk-dim);
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.experience-shell .desktop-nav a::after {
    bottom: -13px;
    height: 2px;
    background: var(--acid);
}

.experience-shell .desktop-nav a:hover,
.experience-shell .desktop-nav a.is-active { color: var(--chalk); }
.experience-shell .header-actions { gap: 18px; }
.experience-shell .ticket-link {
    gap: 8px;
    color: var(--chalk-dim);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.experience-shell .ticket-link__dot {
    width: 6px;
    height: 6px;
    border: 0;
    background: var(--acid);
    border-radius: 0;
}

.experience-shell .button {
    min-height: 48px;
    padding: 0 21px;
    gap: 24px;
    color: var(--chalk);
    background: transparent;
    border: 1px solid var(--chalk);
    border-radius: 0;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: none;
    transition: color .22s, background .22s, border-color .22s, transform .22s var(--ease-out);
}

.experience-shell .button:hover {
    color: var(--night);
    background: var(--chalk);
    border-color: var(--chalk);
    box-shadow: none;
    transform: translate(-3px, -3px);
}

.experience-shell .button--small { min-height: 42px; padding-inline: 17px; }
.experience-shell .button--large { min-height: 58px; padding-inline: 25px; font-size: 11px; }
.experience-shell .button--full { width: 100%; }
.experience-shell .button--acid,
.experience-shell .button--clay {
    color: var(--night);
    background: var(--acid);
    border-color: var(--acid);
}

.experience-shell .button--acid:hover,
.experience-shell .button--clay:hover {
    color: var(--night);
    background: var(--acid-dark);
    border-color: var(--acid-dark);
    box-shadow: 6px 6px 0 rgba(221, 253, 80, .16);
}

.experience-shell .button--ghost-light {
    color: var(--chalk);
    background: transparent;
    border-color: rgba(244, 241, 233, .55);
}

.experience-shell .button--disabled {
    color: var(--chalk-dim);
    background: rgba(255, 255, 255, .05);
    border-color: var(--white-line);
    opacity: .65;
}

.experience-shell .menu-toggle {
    width: 44px;
    height: 44px;
    color: var(--night);
    background: var(--acid);
    border-radius: 0;
}

.experience-shell .menu-toggle > span:not(.sr-only) { background: var(--night); }
.experience-shell .mobile-menu {
    color: var(--chalk);
    background: var(--night);
    border-color: var(--white-line);
}

.experience-shell .mobile-menu a {
    border-color: var(--white-line);
    font-family: var(--display);
    font-size: 27px;
    font-weight: 800;
    letter-spacing: -.03em;
    text-transform: uppercase;
}

.experience-shell .mobile-menu a span {
    color: var(--acid);
    font-family: var(--mono);
}

.experience-shell .eyebrow {
    gap: 11px;
    margin-bottom: 24px;
    color: #747782;
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.experience-shell .eyebrow > span { width: 24px; background: currentColor; }
.experience-shell .eyebrow--light { color: rgba(244, 241, 233, .56); }
.experience-shell .text-link {
    gap: 14px;
    padding: 0 0 5px;
    color: inherit;
    border-bottom: 1px solid currentColor;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.experience-shell .text-link:hover span { transform: translate(4px, -2px); }

/* Hero */
.night-hero {
    position: relative;
    min-height: calc(100vh - 112px);
    overflow: hidden;
    padding: 0 0 38px;
    color: var(--chalk);
    background:
        linear-gradient(rgba(244, 241, 233, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(244, 241, 233, .045) 1px, transparent 1px),
        var(--night);
    background-size: 72px 72px;
}

.night-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 78% 42%, rgba(165, 120, 255, .12), transparent 27%);
}

.night-hero__meta {
    position: relative;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #888a94;
    border-bottom: 1px solid var(--white-line);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .11em;
}

.night-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, .62fr);
    gap: clamp(55px, 8vw, 120px);
    align-items: center;
    padding: clamp(68px, 8vw, 118px) 0 clamp(58px, 7vw, 94px);
}

.night-hero__copy { min-width: 0; }
.night-hero h1 {
    margin: 0 0 34px;
    font-family: var(--display);
    font-size: clamp(74px, 9.8vw, 150px);
    font-weight: 900;
    line-height: .76;
    letter-spacing: -.075em;
    text-transform: uppercase;
}

.night-hero h1 > span { display: block; }
.night-hero__accent {
    color: var(--theatre);
    -webkit-text-stroke: 1px var(--theatre);
}

.night-hero__lead {
    max-width: 680px;
    margin: 0 0 36px;
    color: var(--chalk-dim);
    font-size: clamp(17px, 1.7vw, 22px);
    line-height: 1.55;
}

.night-hero__actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.night-hero__ticker {
    position: relative;
    z-index: 2;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    overflow: hidden;
    color: #858792;
    border-top: 1px solid var(--white-line);
    border-bottom: 1px solid var(--white-line);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .13em;
    white-space: nowrap;
}

.night-hero__ticker i { color: var(--acid); font-size: 6px; font-style: normal; }

.hero-ticket {
    --event-color: var(--psychology);
    position: relative;
    min-height: 520px;
    padding: 27px;
    color: var(--chalk);
    background: var(--panel);
    border: 1px solid rgba(244, 241, 233, .24);
    box-shadow: 18px 18px 0 rgba(244, 241, 233, .035);
}

.hero-ticket--music { --event-color: var(--music); }
.hero-ticket--psychology { --event-color: var(--psychology); }
.hero-ticket--theatre { --event-color: var(--theatre); }
.hero-ticket::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--event-color);
}

.hero-ticket__signal {
    height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
    border: 1px solid var(--white-line);
}

.hero-ticket__signal > span {
    width: 2px;
    height: var(--bar, 50%);
    background: var(--event-color);
    box-shadow: 0 0 18px color-mix(in srgb, var(--event-color), transparent 60%);
}

.hero-ticket__signal > span:nth-child(1) { --bar: 24%; }
.hero-ticket__signal > span:nth-child(2) { --bar: 66%; }
.hero-ticket__signal > span:nth-child(3) { --bar: 38%; }
.hero-ticket__signal > span:nth-child(4) { --bar: 82%; }
.hero-ticket__signal > span:nth-child(5) { --bar: 47%; }
.hero-ticket__signal > i {
    position: absolute;
    top: 44px;
    right: 44px;
    width: 74px;
    height: 74px;
    border: 1px solid color-mix(in srgb, var(--event-color), transparent 25%);
    border-radius: 50%;
}

.hero-ticket__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 22px 0 25px;
    color: #8d8f98;
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.hero-ticket__head b { color: var(--event-color); font-weight: 600; }
.hero-ticket__title { display: block; min-height: 112px; }
.hero-ticket__title small {
    display: block;
    margin-bottom: 9px;
    color: var(--event-color);
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hero-ticket__title strong {
    display: block;
    font-family: var(--display);
    font-size: clamp(31px, 3vw, 44px);
    font-weight: 850;
    line-height: .95;
    letter-spacing: -.045em;
    text-transform: uppercase;
}

.hero-ticket__facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px dashed var(--white-line);
    border-bottom: 1px dashed var(--white-line);
}

.hero-ticket__facts > div { padding: 17px 0; }
.hero-ticket__facts > div + div { padding-left: 20px; border-left: 1px dashed var(--white-line); }
.hero-ticket__facts span,
.hero-ticket__footer span,
.hero-ticket__facts small {
    display: block;
    color: #81838e;
    font-family: var(--mono);
    font-size: 8px;
    line-height: 1.45;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-ticket__facts strong {
    display: block;
    margin: 6px 0;
    font-family: var(--display);
    font-size: 25px;
    line-height: 1;
}

.hero-ticket__footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
}

.hero-ticket__footer > div strong {
    display: block;
    margin-top: 5px;
    font-family: var(--display);
    font-size: 24px;
}

.hero-ticket__tear {
    position: absolute;
    left: -9px;
    right: -9px;
    bottom: 68px;
    pointer-events: none;
}

.hero-ticket__tear::before,
.hero-ticket__tear::after {
    content: "";
    position: absolute;
    top: -8px;
    width: 16px;
    height: 16px;
    background: var(--night);
    border-radius: 50%;
}

.hero-ticket__tear::before { left: 0; }
.hero-ticket__tear::after { right: 0; }

/* Frequency worlds */
.frequency-section {
    padding: clamp(100px, 11vw, 160px) 0;
    color: var(--chalk);
    background: var(--night-soft);
    border-top: 1px solid var(--white-line);
}

.frequency-section__head,
.program-section__head {
    display: grid;
    grid-template-columns: 1fr minmax(260px, .35fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 54px;
}

.frequency-section__head h2,
.program-section__head h2,
.about-night h2,
.faq-preview h2,
.newsletter h2,
.night-poster h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(58px, 7.2vw, 105px);
    font-weight: 900;
    line-height: .82;
    letter-spacing: -.065em;
    text-transform: uppercase;
}

.frequency-section__head h2 em,
.program-section__head h2 em,
.about-night h2 em,
.faq-preview h2 em,
.newsletter h2 em,
.night-poster h2 em {
    color: var(--acid);
    font-style: normal;
    font-weight: inherit;
}

.frequency-section__head > p,
.program-section__aside > p {
    margin: 0;
    color: var(--chalk-dim);
    font-size: 14px;
    line-height: 1.75;
}

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

.frequency-card {
    --track: var(--music);
    position: relative;
    min-height: 590px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: 25px;
    overflow: hidden;
    color: var(--chalk);
    background: var(--panel);
    border-right: 1px solid var(--white-line);
    border-bottom: 1px solid var(--white-line);
    transition: background .28s, transform .28s var(--ease-out);
}

.frequency-card--psychology { --track: var(--psychology); }
.frequency-card--theatre { --track: var(--theatre); }
.frequency-card:hover { z-index: 2; background: #1c202a; transform: translateY(-8px); }
.frequency-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 5px;
    background: var(--track);
    transform: scaleX(.18);
    transform-origin: left;
    transition: transform .35s var(--ease-out);
}

.frequency-card:hover::after { transform: scaleX(1); }
.frequency-card__index {
    position: relative;
    z-index: 2;
    color: var(--track);
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
}

.frequency-card__art { position: relative; min-height: 300px; }
.frequency-card__art--music {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 1vw, 15px);
}

.frequency-card__art--music i {
    width: 2px;
    height: var(--height, 50%);
    background: var(--music);
    box-shadow: 0 0 24px rgba(255, 101, 74, .3);
    transition: height .35s var(--ease-out);
}

.frequency-card__art--music i:nth-child(1) { --height: 12%; }
.frequency-card__art--music i:nth-child(2) { --height: 42%; }
.frequency-card__art--music i:nth-child(3) { --height: 75%; }
.frequency-card__art--music i:nth-child(4) { --height: 34%; }
.frequency-card__art--music i:nth-child(5) { --height: 92%; }
.frequency-card__art--music i:nth-child(6) { --height: 58%; }
.frequency-card__art--music i:nth-child(7) { --height: 28%; }
.frequency-card__art--music i:nth-child(8) { --height: 69%; }
.frequency-card__art--music i:nth-child(9) { --height: 20%; }
.frequency-card--music:hover .frequency-card__art--music i:nth-child(odd) { height: calc(var(--height) + 10%); }
.frequency-card__copy { position: relative; z-index: 2; }
.frequency-card__copy h3 {
    margin: 0 0 14px;
    font-family: var(--display);
    font-size: clamp(39px, 4.2vw, 61px);
    font-weight: 900;
    line-height: .9;
    letter-spacing: -.055em;
}

.frequency-card__copy p {
    max-width: 340px;
    min-height: 68px;
    margin: 0 0 24px;
    color: var(--chalk-dim);
    font-size: 13px;
    line-height: 1.65;
}

.frequency-card__copy > span {
    color: var(--track);
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* Program rows */
.program-section,
.program-listing {
    padding: clamp(96px, 10vw, 145px) 0;
    color: var(--ink);
    background: var(--paper);
}

.program-section__head h2 em { color: #6a3fd1; }
.program-section .eyebrow,
.program-listing .eyebrow { color: #666873; }
.program-section__aside { display: grid; gap: 26px; align-content: end; }
.program-section__aside .text-link { justify-self: start; }
.experience-shell .category-tabs {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 0 0 32px;
    overflow-x: auto;
    border-top: 1px solid var(--dark-line);
    border-left: 1px solid var(--dark-line);
    scrollbar-width: none;
}

.experience-shell .category-tabs::-webkit-scrollbar { display: none; }
.experience-shell .category-tabs a {
    min-height: 50px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    color: #62636c;
    background: transparent;
    border: 0;
    border-right: 1px solid var(--dark-line);
    border-bottom: 1px solid var(--dark-line);
    border-radius: 0;
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    white-space: nowrap;
}

.experience-shell .category-tabs a:hover,
.experience-shell .category-tabs a.is-active {
    color: var(--night);
    background: var(--acid);
    border-color: var(--dark-line);
}

.experience-shell .category-tabs sup { margin-left: 8px; opacity: .55; }
.experience-shell .category-tabs a.category-tabs__secondary { margin-left: auto; color: #777780; }
.experience-shell .category-tabs a.category-tabs__secondary.is-active { color: var(--night); }
.experience-shell .event-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.experience-shell .event-card {
    --event-color: var(--psychology);
    position: relative;
    min-width: 0;
    display: grid;
    grid-template-columns: 112px 210px minmax(0, 1fr) 210px;
    min-height: 260px;
    color: var(--ink);
    background: var(--paper-bright);
    border-top: 1px solid var(--dark-line);
    border-left: 1px solid var(--dark-line);
    border-right: 1px solid var(--dark-line);
    transition: background .25s, transform .25s var(--ease-out);
}

.experience-shell .event-card:last-child { border-bottom: 1px solid var(--dark-line); }
.experience-shell .event-card--music { --event-color: var(--music); }
.experience-shell .event-card--psychology { --event-color: #159d8f; }
.experience-shell .event-card--theatre { --event-color: #777380; }
.experience-shell .event-card::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--event-color);
    transform: scaleY(.12);
    transform-origin: top;
    transition: transform .28s var(--ease-out);
}

.experience-shell .event-card:hover { z-index: 2; background: #fff; transform: translateX(5px); }
.experience-shell .event-card:hover::before { transform: scaleY(1); }
.experience-shell .event-card__date {
    position: static;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--ink);
    border-right: 1px solid var(--dark-line);
    font-family: var(--mono);
    line-height: 1;
    text-shadow: none;
}

.experience-shell .event-card__date > span {
    padding: 0;
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
}

.experience-shell .event-card__date strong {
    font-family: var(--display);
    font-size: 61px;
    font-weight: 900;
    letter-spacing: -.08em;
}

.experience-shell .event-card__date small {
    color: #7a7b82;
    font-size: 8px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.experience-shell .event-card__visual {
    position: relative;
    aspect-ratio: auto;
    min-height: 100%;
    display: block;
    overflow: hidden;
    color: var(--chalk);
    background:
        repeating-linear-gradient(90deg, transparent 0 20px, rgba(255, 255, 255, .06) 20px 21px),
        var(--event-color);
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.experience-shell .event-card__visual::before {
    z-index: 1;
    inset: 0;
    width: auto;
    aspect-ratio: auto;
    border: 0;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(8, 9, 13, .1), rgba(8, 9, 13, .58));
    box-shadow: none;
}

.experience-shell .event-card__visual::after {
    z-index: 1;
    inset: 0;
    width: auto;
    aspect-ratio: auto;
    border: 0;
    border-radius: 0;
    background: linear-gradient(90deg, rgba(8, 9, 13, .24), transparent);
}

.experience-shell .event-card:hover .event-card__visual { transform: none; box-shadow: none; }
.experience-shell .event-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.65) contrast(1.08);
    transition: transform .5s var(--ease-out), filter .3s;
}

.experience-shell .event-card:hover .event-card__image { transform: scale(1.025); filter: saturate(.9) contrast(1.04); }
.experience-shell .event-card__signal {
    position: absolute;
    z-index: 3;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    opacity: .75;
}

.experience-shell .event-card__visual--image .event-card__signal { opacity: .35; }
.experience-shell .event-card__signal i { width: 2px; height: 40%; background: #fff; }
.experience-shell .event-card__signal i:nth-child(2) { height: 72%; }
.experience-shell .event-card__signal i:nth-child(3) { height: 24%; }
.experience-shell .event-card__signal i:nth-child(4) { height: 56%; }
.experience-shell .event-card__number {
    position: absolute;
    z-index: 4;
    top: auto;
    right: 13px;
    bottom: 12px;
    color: #fff;
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .08em;
}

.experience-shell .event-card__body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 31px 34px;
    border-right: 1px solid var(--dark-line);
}

.experience-shell .event-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 15px;
    color: #70717a;
    font-family: var(--mono);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.experience-shell .event-card__meta span:first-child { color: var(--event-color); }
.experience-shell .event-card__meta span + span::before {
    width: 3px;
    height: 3px;
    margin-right: 12px;
    background: #95969d;
}

.experience-shell .event-card h3 {
    min-height: 0;
    margin: 0 0 12px;
    font-family: var(--display);
    font-size: clamp(29px, 3vw, 42px);
    font-weight: 900;
    line-height: .92;
    letter-spacing: -.05em;
    text-transform: uppercase;
}

.experience-shell .event-card h3 a:hover { color: var(--event-color); }
.experience-shell .event-card__body > p {
    min-height: 0;
    max-width: 650px;
    margin: 0 0 17px;
    color: #61636b;
    font-size: 12px;
    line-height: 1.62;
    -webkit-line-clamp: 2;
}

.experience-shell .event-card__artist {
    color: #777982;
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.experience-shell .event-card__purchase {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 16px;
    padding: 27px;
}

.experience-shell .event-card__availability { min-height: 23px; }
.experience-shell .availability {
    display: inline-flex;
    padding: 5px 7px;
    color: #2a5800;
    background: rgba(183, 219, 24, .22);
    border-radius: 0;
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .07em;
}

.experience-shell .availability--low { color: #8f2415; background: rgba(255, 101, 74, .17); }
.experience-shell .event-card__price span {
    display: block;
    color: #7b7c84;
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.experience-shell .event-card__price strong {
    display: block;
    margin-top: 3px;
    font-family: var(--display);
    font-size: 25px;
    font-weight: 850;
}

.experience-shell .event-card__buy { min-height: 45px; }
.experience-shell .event-card__detail {
    align-self: flex-start;
    color: #5d5f67;
    border-bottom: 1px solid #5d5f67;
    font-family: var(--mono);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

/* Large night image */
.night-poster {
    position: relative;
    min-height: 780px;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: var(--chalk);
    background: #08090d;
}

.night-poster__image { position: absolute; inset: 0; }
.night-poster__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 9, 13, .22), rgba(8, 9, 13, .92)),
        linear-gradient(90deg, rgba(53, 29, 100, .48), transparent 60%);
}

.night-poster__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.5) contrast(1.1);
}

.night-poster__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr .4fr;
    gap: 60px;
    align-items: end;
    padding-bottom: clamp(70px, 9vw, 120px);
}

.night-poster__content > .eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.night-poster h2 { font-size: clamp(61px, 8vw, 120px); }
.night-poster h2 em { color: var(--theatre); }
.night-poster__content > div:last-child { padding-bottom: 9px; }
.night-poster__content > div:last-child p { margin-bottom: 28px; color: rgba(244, 241, 233, .7); line-height: 1.7; }
.trust-band {
    color: var(--night);
    background: var(--acid);
    border-top: 1px solid var(--night);
    border-bottom: 1px solid var(--night);
}

.trust-band .container {
    min-height: 88px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-band span {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 0 22px;
    border-right: 1px solid rgba(9, 10, 16, .25);
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.trust-band span:first-child { border-left: 1px solid rgba(9, 10, 16, .25); }
.trust-band b { color: rgba(9, 10, 16, .45); font-weight: 600; }

/* About */
.about-night {
    padding: clamp(100px, 11vw, 160px) 0;
    color: var(--ink);
    background: var(--paper-bright);
}

.about-night__grid {
    display: grid;
    grid-template-columns: minmax(330px, .72fr) 1fr;
    gap: clamp(65px, 10vw, 150px);
    align-items: center;
}

.about-night__portrait {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    background: var(--night);
}

.about-night__portrait::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(9, 10, 16, .82));
}

.about-night__portrait img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    filter: saturate(.72) contrast(1.06);
}

.about-night__portrait > span {
    position: absolute;
    z-index: 2;
    left: 25px;
    right: 25px;
    bottom: 22px;
    color: var(--chalk);
    border-top: 1px solid rgba(244, 241, 233, .4);
    padding-top: 13px;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.about-night h2 { margin-bottom: 34px; }
.about-night h2 em { color: #7448dc; }
.about-night__lead {
    max-width: 700px;
    color: #292a31;
    font-size: clamp(19px, 2vw, 25px);
    line-height: 1.55;
}

.about-night__notes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 33px 0 34px;
    border-top: 1px solid var(--dark-line);
    border-left: 1px solid var(--dark-line);
}

.about-night__notes p {
    margin: 0;
    padding: 22px;
    color: #62636b;
    border-right: 1px solid var(--dark-line);
    border-bottom: 1px solid var(--dark-line);
    font-size: 12px;
    line-height: 1.65;
}

.about-night__notes b { color: var(--ink); }

/* FAQ + newsletter */
.experience-shell .faq-preview {
    padding: clamp(100px, 11vw, 150px) 0;
    color: var(--chalk);
    background: var(--panel);
}

.experience-shell .faq-grid {
    display: grid;
    grid-template-columns: .55fr 1fr;
    gap: clamp(65px, 10vw, 150px);
}

.experience-shell .faq-preview h2 { margin-bottom: 24px; }
.experience-shell .faq-preview h2 em { color: var(--psychology); }
.experience-shell .faq-grid > div:first-child > p:last-child { color: var(--chalk-dim); }
.experience-shell .accordion { border-color: var(--white-line); }
.experience-shell .accordion__item { border-color: var(--white-line); }
.experience-shell .accordion__item button {
    min-height: 90px;
    color: var(--chalk);
}

.experience-shell .accordion__item button > span {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 750;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

.experience-shell .accordion__item button small {
    color: var(--psychology);
    font-family: var(--mono);
    font-size: 8px;
}

.experience-shell .accordion__item button i {
    border-color: var(--white-line);
    border-radius: 0;
    font-family: var(--mono);
}

.experience-shell .accordion__item.is-open button i { color: var(--night); background: var(--acid); }
.experience-shell .accordion__content > p {
    color: var(--chalk-dim);
    font-size: 13px;
}

.experience-shell .newsletter {
    padding: clamp(80px, 8vw, 115px) 0;
    color: var(--chalk);
    background: #321f59;
    border-top: 1px solid rgba(244, 241, 233, .15);
}

.experience-shell .newsletter__inner {
    display: grid;
    grid-template-columns: 1fr .65fr;
    gap: clamp(65px, 10vw, 140px);
    align-items: end;
}

.experience-shell .newsletter h2 { font-size: clamp(49px, 5.8vw, 84px); }
.experience-shell .newsletter h2 em { color: var(--acid); }
.experience-shell .newsletter-form label {
    color: rgba(244, 241, 233, .65);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.experience-shell .newsletter-form > div {
    border-color: rgba(244, 241, 233, .5);
}

.experience-shell .newsletter-form input {
    min-height: 58px;
    color: var(--chalk);
    background: transparent;
    font-family: var(--mono);
    font-size: 13px;
}

.experience-shell .newsletter-form input::placeholder { color: rgba(244, 241, 233, .4); }
.experience-shell .newsletter-form button {
    width: 58px;
    height: 58px;
    color: var(--night);
    background: var(--acid);
    border: 0;
    border-radius: 0;
}

.experience-shell .newsletter-form > p {
    color: rgba(244, 241, 233, .48);
    font-family: var(--mono);
    font-size: 8px;
}

/* Footer */
.experience-shell .site-footer {
    padding: 80px 0 26px;
    color: var(--chalk);
    background: #050609;
    border-top: 1px solid var(--white-line);
}

.experience-shell .footer-main {
    display: grid;
    grid-template-columns: .8fr 1fr .7fr;
    gap: 70px;
    align-items: start;
    padding-bottom: 70px;
}

.experience-shell .footer-brand p {
    margin: 30px 0 0;
    color: #8c8e97;
    font-size: 13px;
    line-height: 1.7;
}

.footer-frequency {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 1px solid var(--white-line);
}

.footer-frequency span {
    width: 2px;
    height: var(--h, 30%);
    background: var(--acid);
}

.footer-frequency span:nth-child(1) { --h: 20%; }
.footer-frequency span:nth-child(2) { --h: 64%; }
.footer-frequency span:nth-child(3) { --h: 35%; }
.footer-frequency span:nth-child(4) { --h: 82%; }
.footer-frequency span:nth-child(5) { --h: 44%; }
.footer-frequency span:nth-child(6) { --h: 70%; }
.footer-frequency span:nth-child(7) { --h: 25%; }
.experience-shell .footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.experience-shell .footer-links h2 {
    margin: 0 0 20px;
    color: var(--acid);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.experience-shell .footer-links a {
    margin: 0 0 10px;
    color: #a8a9b0;
    font-size: 12px;
}

.experience-shell .footer-links a:hover { color: var(--chalk); }
.experience-shell .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    color: #70717a;
    border-top: 1px solid var(--white-line);
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

/* Program listing */
.program-hero {
    position: relative;
    min-height: 565px;
    padding-bottom: 75px;
    overflow: hidden;
    color: var(--chalk);
    background:
        linear-gradient(rgba(244, 241, 233, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(244, 241, 233, .04) 1px, transparent 1px),
        var(--night);
    background-size: 72px 72px;
}

.program-hero__meta {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #858792;
    border-bottom: 1px solid var(--white-line);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .1em;
}

.program-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr .42fr;
    gap: 80px;
    align-items: end;
    padding-top: 95px;
}

.program-hero h1 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(85px, 11vw, 160px);
    font-weight: 900;
    line-height: .72;
    letter-spacing: -.075em;
    text-transform: uppercase;
}

.program-hero h1 em { color: var(--acid); font-style: normal; font-weight: inherit; }
.program-hero__grid > p {
    max-width: 430px;
    margin: 0 0 9px;
    color: var(--chalk-dim);
    font-size: 16px;
    line-height: 1.75;
}

.program-listing { padding-top: 45px; }
.listing-note {
    color: var(--chalk);
    background: var(--panel);
    border-top: 1px solid var(--white-line);
}

.listing-note .container {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.listing-note span::before { content: "◆"; margin-right: 10px; color: var(--acid); font-size: 6px; }
.listing-note a { color: var(--acid); border-bottom: 1px solid currentColor; }
.experience-shell .empty-state {
    padding: 90px 25px;
    color: var(--ink);
    background: var(--paper-bright);
    border: 1px solid var(--dark-line);
    border-radius: 0;
}

.experience-shell .empty-state > span { color: #7448dc; }
.experience-shell .empty-state h2 {
    font-family: var(--display);
    font-size: clamp(35px, 5vw, 62px);
    font-weight: 900;
    letter-spacing: -.05em;
    text-transform: uppercase;
}

/* Event detail */
.experience-shell .event-hero {
    --event-color: var(--psychology);
    padding: 0 0 clamp(80px, 9vw, 125px);
    color: var(--chalk);
    background:
        linear-gradient(rgba(244, 241, 233, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(244, 241, 233, .04) 1px, transparent 1px),
        var(--night);
    background-size: 72px 72px;
}

.experience-shell .event-hero--music { --event-color: var(--music); }
.experience-shell .event-hero--psychology { --event-color: var(--psychology); }
.experience-shell .event-hero--theatre { --event-color: var(--theatre); }
.experience-shell .event-hero__topline {
    min-height: 53px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #858792;
    border-bottom: 1px solid var(--white-line);
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.experience-shell .event-hero__topline .back-link {
    margin: 0;
    color: var(--chalk);
}

.experience-shell .back-link {
    color: inherit;
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.experience-shell .event-hero__grid {
    display: grid;
    grid-template-columns: 1.05fr minmax(400px, .65fr);
    gap: clamp(65px, 10vw, 145px);
    align-items: center;
    padding-top: clamp(68px, 8vw, 110px);
}

.experience-shell .event-hero__copy { padding: 0; }
.experience-shell .event-hero__tags { display: flex; gap: 7px; margin-bottom: 28px; }
.experience-shell .event-hero__tags span {
    padding: 7px 9px;
    color: var(--event-color);
    background: rgba(255, 255, 255, .035);
    border: 1px solid color-mix(in srgb, var(--event-color), transparent 50%);
    border-radius: 0;
    font-family: var(--mono);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.experience-shell .event-hero h1 {
    max-width: 820px;
    margin: 0 0 28px;
    font-family: var(--display);
    font-size: clamp(64px, 8vw, 120px);
    font-weight: 900;
    line-height: .8;
    letter-spacing: -.07em;
    text-transform: uppercase;
}

.experience-shell .event-hero__copy > p {
    max-width: 700px;
    margin-bottom: 42px;
    color: var(--chalk-dim);
    font-size: clamp(17px, 1.6vw, 21px);
    line-height: 1.62;
}

.experience-shell .event-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
    border-top: 1px solid var(--white-line);
    border-left: 1px solid var(--white-line);
}

.experience-shell .event-facts > div {
    padding: 17px;
    border-right: 1px solid var(--white-line);
    border-bottom: 1px solid var(--white-line);
}

.experience-shell .event-facts dt {
    margin-bottom: 6px;
    color: #80828c;
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.experience-shell .event-facts dd {
    margin: 0;
    color: var(--chalk);
    font-family: var(--display);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
}

.experience-shell .event-poster {
    position: relative;
    min-height: 630px;
    overflow: hidden;
    color: var(--chalk);
    background: var(--event-color);
    border-radius: 0;
    box-shadow: 18px 18px 0 rgba(244, 241, 233, .04);
}

.experience-shell .event-poster::before,
.experience-shell .event-poster::after { display: none; }
.experience-shell .event-poster__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.6) contrast(1.1);
}

.experience-shell .event-poster__wash {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 10, 16, .18), rgba(9, 10, 16, .82));
}

.experience-shell .event-poster__type {
    position: absolute;
    z-index: 2;
    left: 25px;
    top: 24px;
    padding: 0;
    color: var(--chalk);
    background: transparent;
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .12em;
}

.experience-shell .event-poster__date {
    position: absolute;
    z-index: 2;
    left: 25px;
    top: 64px;
    display: flex;
    align-items: end;
    gap: 12px;
    font-family: var(--display);
}

.experience-shell .event-poster__date strong {
    font-size: clamp(98px, 10vw, 145px);
    font-weight: 900;
    line-height: .72;
    letter-spacing: -.08em;
}

.experience-shell .event-poster__date small {
    padding-bottom: 5px;
    font-family: var(--mono);
    font-size: 9px;
    line-height: 1.45;
    letter-spacing: .1em;
}

.experience-shell .event-poster__title {
    position: absolute;
    z-index: 2;
    left: 25px;
    right: 25px;
    bottom: 28px;
    max-width: none;
    font-family: var(--display);
    font-size: clamp(39px, 4vw, 59px);
    font-style: normal;
    font-weight: 900;
    line-height: .86;
    letter-spacing: -.055em;
    text-transform: uppercase;
}

.experience-shell .event-poster__signal {
    position: absolute;
    z-index: 2;
    right: 25px;
    top: 24px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.experience-shell .event-poster__signal i { width: 2px; height: 18px; background: var(--chalk); }
.experience-shell .event-poster__signal i:nth-child(2) { height: 34px; }
.experience-shell .event-poster__signal i:nth-child(3) { height: 11px; }
.experience-shell .event-poster__signal i:nth-child(4) { height: 26px; }
.experience-shell .event-content {
    padding: clamp(90px, 10vw, 145px) 0;
    color: var(--ink);
    background: var(--paper);
}

.experience-shell .event-content__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: clamp(70px, 10vw, 140px);
    align-items: start;
}

.experience-shell .event-story h2 {
    margin: 0 0 34px;
    font-family: var(--display);
    font-size: clamp(54px, 6.2vw, 88px);
    font-weight: 900;
    line-height: .83;
    letter-spacing: -.06em;
    text-transform: uppercase;
}

.experience-shell .event-story h2 em { color: #7448dc; font-style: normal; font-weight: inherit; }
.experience-shell .event-story__lead {
    max-width: 800px;
    margin-bottom: 70px;
    color: #31323a;
    font-size: clamp(19px, 2vw, 25px);
    line-height: 1.65;
}

.experience-shell .event-detail-block { margin: 0 0 70px; }
.experience-shell .event-detail-block h3,
.experience-shell .event-detail-columns h3 {
    margin: 0 0 22px;
    color: var(--ink);
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.experience-shell .timeline { margin: 0; padding: 0; border-top: 1px solid var(--dark-line); }
.experience-shell .timeline li {
    min-height: 64px;
    display: grid;
    grid-template-columns: 55px 1fr;
    align-items: center;
    border-bottom: 1px solid var(--dark-line);
}

.experience-shell .timeline li span {
    align-self: stretch;
    display: grid;
    place-items: center;
    color: #7448dc;
    border-right: 1px solid var(--dark-line);
    font-family: var(--mono);
    font-size: 8px;
}

.experience-shell .timeline li p { margin: 0; padding-left: 20px; color: #4f5058; font-size: 13px; }
.experience-shell .event-detail-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 0 0 60px;
    border-top: 1px solid var(--dark-line);
    border-left: 1px solid var(--dark-line);
}

.experience-shell .event-detail-columns > div {
    min-height: 210px;
    padding: 24px;
    border-right: 1px solid var(--dark-line);
    border-bottom: 1px solid var(--dark-line);
}

.experience-shell .event-detail-columns > div > span {
    display: block;
    margin-bottom: 34px;
    color: #7448dc;
    font-family: var(--mono);
    font-size: 9px;
}

.experience-shell .event-detail-columns p,
.experience-shell .event-detail-block--venue p {
    color: #585961;
    font-size: 13px;
    line-height: 1.75;
}

.experience-shell .notice-box {
    gap: 20px;
    margin-bottom: 70px;
    padding: 24px;
    color: var(--ink);
    background: #ded8ca;
    border: 1px solid var(--dark-line);
    border-radius: 0;
}

.experience-shell .notice-box > span {
    color: var(--night);
    background: var(--acid);
    border: 0;
    border-radius: 0;
    font-family: var(--mono);
}

.experience-shell .notice-box p { color: #55565e; }
.experience-shell .buy-panel {
    position: sticky;
    top: 115px;
    padding: 0 28px 30px;
    color: var(--chalk);
    background: var(--panel);
    border: 1px solid rgba(244, 241, 233, .25);
    border-radius: 0;
    box-shadow: 14px 14px 0 rgba(16, 17, 23, .1);
}

.experience-shell .buy-panel__code {
    margin: 0 -28px 27px;
    padding: 13px 28px;
    color: var(--acid);
    background: #0d0f15;
    border-bottom: 1px dashed var(--white-line);
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .1em;
}

.experience-shell .buy-panel__top {
    padding: 0 0 24px;
    border-bottom: 1px solid var(--white-line);
}

.experience-shell .buy-panel__top span,
.experience-shell .buy-panel__top small {
    color: #858792;
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.experience-shell .buy-panel__top strong {
    margin: 5px 0;
    color: var(--chalk);
    font-family: var(--display);
    font-size: 52px;
    font-weight: 900;
    letter-spacing: -.055em;
}

.experience-shell .buy-panel__availability {
    gap: 15px;
    padding: 23px 0;
}

.experience-shell .seat-meter { background: rgba(244, 241, 233, .13); }
.experience-shell .seat-meter i { background: var(--acid); }
.experience-shell .buy-panel__availability strong { color: var(--chalk); }
.experience-shell .buy-panel__availability small { color: #858792; }
.experience-shell .buy-panel__notes {
    margin: 27px 0;
    padding: 0;
    border-top: 1px dashed var(--white-line);
}

.experience-shell .buy-panel__notes li {
    min-height: 49px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--chalk-dim);
    border-bottom: 1px dashed var(--white-line);
    font-size: 11px;
}

.experience-shell .buy-panel__notes li span {
    width: auto;
    color: var(--acid);
    background: transparent;
    border: 0;
    font-family: var(--mono);
    font-size: 8px;
}

.experience-shell .buy-panel__legal { color: #777984; font-size: 9px; line-height: 1.65; }
.experience-shell .buy-panel__legal a { color: var(--chalk-dim); }
.experience-shell .buy-panel__tear {
    position: absolute;
    left: -8px;
    right: -8px;
    top: 112px;
}

.experience-shell .buy-panel__tear::before,
.experience-shell .buy-panel__tear::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--paper);
    border-radius: 50%;
}

.experience-shell .buy-panel__tear::before { left: 0; }
.experience-shell .buy-panel__tear::after { right: 0; }
.experience-shell .mobile-buy-bar {
    color: var(--chalk);
    background: rgba(9, 10, 16, .97);
    border-color: var(--white-line);
}

/* Checkout and supporting product pages */
.experience-shell .checkout-page,
.experience-shell .success-page,
.experience-shell .lookup-page,
.experience-shell .lookup-result,
.experience-shell .status-page,
.experience-shell .provider-page,
.experience-shell .legal-page,
.experience-shell .editorial-page,
.experience-shell .error-page {
    color: var(--ink);
    background: var(--paper);
}

.experience-shell .checkout-page { padding: 45px 0 110px; }
.experience-shell .checkout-steps {
    max-width: none;
    margin: 0 0 68px;
    padding: 0;
    border: 1px solid var(--dark-line);
    background: var(--paper-bright);
}

.experience-shell .checkout-steps span {
    min-height: 51px;
    color: #777982;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.experience-shell .checkout-steps span.is-active { color: var(--ink); background: var(--acid); }
.experience-shell .checkout-steps span i {
    color: inherit;
    background: transparent;
    border: 1px solid currentColor;
    border-radius: 0;
    font-family: var(--mono);
}

.experience-shell .checkout-steps b { background: var(--dark-line); }
.experience-shell .checkout-heading { max-width: 800px; margin-bottom: 60px; }
.experience-shell .checkout-heading h1,
.experience-shell .success-copy h1,
.experience-shell .lookup-copy h1,
.experience-shell .editorial-page__hero h1,
.experience-shell .legal-grid h1 {
    color: var(--ink);
    font-family: var(--display);
    font-size: clamp(56px, 7vw, 100px);
    font-weight: 900;
    line-height: .82;
    letter-spacing: -.065em;
    text-transform: uppercase;
}

.experience-shell .checkout-heading h1 em,
.experience-shell .success-copy h1 em,
.experience-shell .lookup-copy h1 em {
    color: #7448dc;
    font-style: normal;
    font-weight: inherit;
}

.experience-shell .checkout-heading > p:last-child { color: #62636b; }
.experience-shell .checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 60px;
    align-items: start;
}

.experience-shell .checkout-form {
    color: var(--ink);
    background: var(--paper-bright);
    border: 1px solid var(--dark-line);
    border-radius: 0;
    box-shadow: none;
}

.experience-shell .form-section { border-color: var(--dark-line); }
.experience-shell .form-section__number {
    color: #7448dc;
    border-color: var(--dark-line);
    font-family: var(--mono);
}

.experience-shell .form-section h2 {
    color: var(--ink);
    font-family: var(--display);
    font-size: 28px;
    font-weight: 850;
    letter-spacing: -.03em;
    text-transform: uppercase;
}

.experience-shell .form-section p { color: #71727a; }
.experience-shell .field > span {
    color: #494a52;
    font-family: var(--mono);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.experience-shell .field input,
.experience-shell .field textarea,
.experience-shell .field select {
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--dark-line);
    border-radius: 0;
}

.experience-shell .field input:focus,
.experience-shell .field textarea:focus,
.experience-shell .field select:focus { border-color: #7448dc; box-shadow: 0 0 0 3px rgba(116, 72, 220, .12); }
.experience-shell .quantity-control { border-color: var(--dark-line); border-radius: 0; }
.experience-shell .quantity-control button {
    color: var(--ink);
    background: var(--paper);
    border-color: var(--dark-line);
}

.experience-shell .quantity-control button:hover:not(:disabled) { background: var(--acid); }
.experience-shell .quantity-control input { color: var(--ink); background: #fff; }
.experience-shell .quantity-control span strong { color: var(--ink); }
.experience-shell .quantity-control span small { color: #62636b; }
.experience-shell .agreements { border-color: var(--dark-line); }
.experience-shell .check-field { color: #585960; }
.experience-shell .check-field input + span {
    border-color: #777982;
    border-radius: 0;
}

.experience-shell .check-field input:checked + span { background: #7448dc; border-color: #7448dc; }
.experience-shell .payment-assurance { color: #666770; }
.experience-shell .payment-assurance > span { color: #2f7d00; }
.experience-shell .order-summary {
    position: sticky;
    top: 115px;
    color: var(--chalk);
    background: var(--panel);
    border: 1px solid var(--white-line);
    border-radius: 0;
    box-shadow: 13px 13px 0 rgba(16, 17, 23, .09);
}

.experience-shell .order-summary__eyebrow { color: var(--acid); font-family: var(--mono); }
.experience-shell .order-summary__poster { border-radius: 0; }
.experience-shell .order-summary__poster--violet {
    color: var(--chalk);
    background:
        radial-gradient(circle at 65% 30%, rgba(255, 255, 255, .22) 0 3px, transparent 4px),
        radial-gradient(circle at 32% 68%, rgba(255, 255, 255, .16) 0 2px, transparent 3px),
        #6940bd;
}
.experience-shell .order-summary h2 { color: var(--chalk); font-family: var(--display); font-weight: 850; text-transform: uppercase; }
.experience-shell .order-summary dl,
.experience-shell .order-summary dl > div,
.experience-shell .order-summary__total { border-color: var(--white-line); }
.experience-shell .order-summary dt,
.experience-shell .order-summary__note { color: #858792; }
.experience-shell .order-summary dd,
.experience-shell .order-summary__total { color: var(--chalk); }
.experience-shell .order-summary__total strong { color: var(--acid); }

/* Generic support pages retain functionality while sharing the new system */
.experience-shell .editorial-page,
.experience-shell .legal-page,
.experience-shell .lookup-page,
.experience-shell .success-page { padding-top: clamp(70px, 8vw, 110px); }
.experience-shell .editorial-rule { color: var(--ink); background: var(--acid); border-color: var(--ink); }
.experience-shell .editorial-sections,
.experience-shell .legal-grid article { color: #55565e; }
.experience-shell .editorial-sections h2,
.experience-shell .legal-grid h2 {
    color: var(--ink);
    font-family: var(--display);
    font-weight: 850;
    text-transform: uppercase;
}

.experience-shell .legal-notice { background: #ded8ca; border-color: var(--dark-line); border-radius: 0; }
.experience-shell .lookup-form,
.experience-shell .lookup-result__card,
.experience-shell .status-card {
    color: var(--ink);
    background: var(--paper-bright);
    border: 1px solid var(--dark-line);
    border-radius: 0;
    box-shadow: 12px 12px 0 rgba(16, 17, 23, .08);
}

.experience-shell .lookup-art,
.experience-shell .ticket-card { border-radius: 0; }
.experience-shell .provider-page { min-height: calc(100vh - 82px); }
.experience-shell .provider-card {
    color: var(--ink);
    background: var(--paper-bright);
    border: 1px solid var(--dark-line);
    border-radius: 0;
    box-shadow: 14px 14px 0 rgba(16, 17, 23, .09);
}

.experience-shell .demo-badge { color: var(--night); background: var(--acid); border-radius: 0; font-family: var(--mono); }
.experience-shell .mock-card-fields { color: var(--chalk); background: #332159; border-radius: 0; }
.experience-shell .error-page__art { color: var(--chalk); background: var(--panel); }
.experience-shell .error-page__copy { color: var(--ink); }
.experience-shell .error-page__copy h1 { font-family: var(--display); font-weight: 900; text-transform: uppercase; }
.experience-shell .toast {
    color: var(--chalk);
    background: var(--panel);
    border: 1px solid var(--white-line);
    border-radius: 0;
    box-shadow: 12px 12px 0 rgba(0, 0, 0, .3);
}

.experience-shell .toast__mark { color: var(--night); background: var(--acid); border-radius: 0; }
.experience-shell .minimal-header {
    color: var(--chalk);
    background: var(--night);
    border-color: var(--white-line);
}

.experience-shell .minimal-header .container { min-height: 76px; }
.experience-shell .secure-label { color: var(--chalk-dim); font-family: var(--mono); font-size: 8px; letter-spacing: .08em; }
.experience-shell .secure-label span { color: var(--acid); }
.table-category--violet { background: #a578ff; }

/* Motion */
.experience-shell .reveal { animation: nightReveal .72s var(--ease-out) both; }
.experience-shell .reveal--delay { animation-delay: .12s; }

@keyframes nightReveal {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1180px) {
    :root { --container: min(100% - 42px, 1200px); }
    .experience-shell .desktop-nav { display: none; }
    .experience-shell .menu-toggle { display: inline-block; }
    .night-hero__grid { grid-template-columns: 1fr minmax(330px, .55fr); gap: 50px; }
    .night-hero h1 { font-size: clamp(72px, 10vw, 118px); }
    .frequency-card { min-height: 530px; }
    .experience-shell .event-card { grid-template-columns: 92px 170px minmax(0, 1fr) 190px; }
    .experience-shell .event-card__body { padding-inline: 26px; }
    .experience-shell .event-hero__grid { grid-template-columns: 1fr 380px; gap: 55px; }
    .experience-shell .event-facts { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
    .night-hero { min-height: auto; }
    .night-hero__grid {
        grid-template-columns: 1fr;
        gap: 65px;
        padding-top: 70px;
    }
    .night-hero__copy { max-width: 850px; }
    .night-hero h1 { font-size: clamp(78px, 15vw, 132px); }
    .hero-ticket { width: min(100%, 560px); min-height: 500px; justify-self: end; }
    .frequency-grid { grid-template-columns: 1fr; }
    .frequency-card { min-height: 420px; grid-template-columns: .7fr 1fr; grid-template-rows: auto 1fr; }
    .frequency-card__index { grid-column: 1 / -1; }
    .frequency-card__art { min-height: 280px; grid-column: 1; }
    .frequency-card__copy { grid-column: 2; align-self: center; }
    .experience-shell .event-card { grid-template-columns: 90px 155px minmax(0, 1fr); }
    .experience-shell .event-card__purchase {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr auto auto auto;
        align-items: center;
        padding: 18px 25px;
        border-top: 1px solid var(--dark-line);
    }
    .experience-shell .event-card__detail { align-self: center; }
    .night-poster__content { grid-template-columns: 1fr; }
    .night-poster__content > .eyebrow { grid-column: 1; }
    .night-poster__content > div:last-child { max-width: 500px; }
    .trust-band .container { grid-template-columns: 1fr 1fr; }
    .trust-band span:nth-child(2) { border-right: 1px solid rgba(9, 10, 16, .25); }
    .trust-band span:nth-child(-n+2) { border-bottom: 1px solid rgba(9, 10, 16, .25); }
    .about-night__grid { grid-template-columns: .7fr 1fr; gap: 55px; }
    .about-night__portrait { min-height: 520px; }
    .experience-shell .footer-main { grid-template-columns: 1fr 1fr; }
    .footer-frequency { display: none; }
    .program-hero__grid { grid-template-columns: 1fr .6fr; gap: 45px; }
    .experience-shell .event-hero__grid { grid-template-columns: 1fr; }
    .experience-shell .event-poster { min-height: 690px; width: min(100%, 590px); justify-self: end; }
    .experience-shell .event-content__grid,
    .experience-shell .checkout-grid { grid-template-columns: 1fr; }
    .experience-shell .buy-panel,
    .experience-shell .order-summary { position: relative; top: auto; width: min(100%, 520px); }
    .experience-shell .buy-panel { justify-self: end; }
    .experience-shell .order-summary { grid-row: 1; }
}

@media (max-width: 740px) {
    :root { --container: calc(100% - 30px); }
    .experience-shell .announcement__inner > span b,
    .experience-shell .announcement__inner > span { font-size: 8px; }
    .experience-shell .announcement a { display: none; }
    .experience-shell .header-inner { min-height: 68px; }
    .experience-shell .brand-mark { width: 40px; height: 40px; }
    .experience-shell .brand-copy strong { font-size: 16px; }
    .experience-shell .ticket-link,
    .experience-shell .header-actions > .button { display: none; }
    .night-hero { background-size: 44px 44px; }
    .night-hero__meta { min-height: 44px; font-size: 7px; }
    .night-hero__meta span:nth-child(2) { display: none; }
    .night-hero__grid { padding: 57px 0 65px; }
    .night-hero h1 { font-size: clamp(60px, 20vw, 96px); line-height: .78; }
    .night-hero__lead { font-size: 16px; }
    .night-hero__actions { align-items: stretch; flex-direction: column; }
    .night-hero__actions .button { width: 100%; }
    .night-hero__actions .text-link { align-self: flex-start; }
    .hero-ticket { min-height: 510px; padding: 21px; }
    .hero-ticket__signal { height: 112px; }
    .hero-ticket__title strong { font-size: 34px; }
    .hero-ticket__footer { align-items: stretch; flex-direction: column; }
    .hero-ticket__footer .button { width: 100%; }
    .night-hero__ticker { justify-content: flex-start; gap: 16px; }
    .night-hero__ticker span:nth-of-type(4),
    .night-hero__ticker i:nth-of-type(3) { display: none; }
    .frequency-section,
    .program-section,
    .about-night,
    .experience-shell .faq-preview { padding-block: 82px; }
    .frequency-section__head,
    .program-section__head { grid-template-columns: 1fr; gap: 25px; margin-bottom: 38px; }
    .frequency-section__head h2,
    .program-section__head h2,
    .about-night h2,
    .faq-preview h2,
    .newsletter h2 { font-size: clamp(48px, 15vw, 75px); }
    .frequency-card {
        min-height: 520px;
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr auto;
        padding: 21px;
    }
    .frequency-card__index { grid-column: 1; }
    .frequency-card__art { grid-column: 1; min-height: 280px; }
    .frequency-card__copy { grid-column: 1; }
    .frequency-card__copy h3 { font-size: 46px; }
    .experience-shell .category-tabs a { min-height: 46px; padding-inline: 16px; }
    .experience-shell .category-tabs a.category-tabs__secondary { margin-left: 0; }
    .experience-shell .event-card {
        display: grid;
        grid-template-columns: 82px minmax(0, 1fr);
        min-height: 0;
    }
    .experience-shell .event-card:hover { transform: none; }
    .experience-shell .event-card__date { grid-column: 1; grid-row: 1; min-height: 150px; }
    .experience-shell .event-card__date strong { font-size: 52px; }
    .experience-shell .event-card__visual { grid-column: 2; grid-row: 1; min-height: 150px; }
    .experience-shell .event-card__body {
        grid-column: 1 / -1;
        padding: 25px 21px;
        border-top: 1px solid var(--dark-line);
        border-right: 0;
    }
    .experience-shell .event-card h3 { font-size: 33px; }
    .experience-shell .event-card__body > p { -webkit-line-clamp: 3; }
    .experience-shell .event-card__purchase {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding: 20px;
    }
    .experience-shell .event-card__availability { align-self: center; }
    .experience-shell .event-card__price { text-align: right; }
    .experience-shell .event-card__buy { grid-column: 1 / -1; width: 100%; }
    .experience-shell .event-card__detail { grid-column: 1 / -1; justify-self: center; }
    .night-poster { min-height: 650px; }
    .night-poster__content { padding-bottom: 65px; }
    .night-poster h2 { font-size: clamp(52px, 16vw, 82px); }
    .trust-band .container { width: 100%; grid-template-columns: 1fr; }
    .trust-band span { min-height: 56px; border-bottom: 1px solid rgba(9, 10, 16, .25); }
    .trust-band span:last-child { border-bottom: 0; }
    .about-night__grid { grid-template-columns: 1fr; }
    .about-night__portrait { min-height: 480px; }
    .about-night__notes { grid-template-columns: 1fr; }
    .experience-shell .faq-grid,
    .experience-shell .newsletter__inner { grid-template-columns: 1fr; gap: 52px; }
    .experience-shell .accordion__item button > span { font-size: 18px; }
    .experience-shell .accordion__item button > span { gap: 14px; }
    .experience-shell .accordion__content > p { padding-inline: 0 38px; }
    .experience-shell .newsletter { padding-block: 72px; }
    .experience-shell .footer-main { grid-template-columns: 1fr; gap: 50px; }
    .experience-shell .footer-links { max-width: 420px; }
    .experience-shell .footer-bottom { align-items: flex-start; flex-direction: column; }
    .program-hero { min-height: 500px; padding-bottom: 60px; background-size: 44px 44px; }
    .program-hero__meta { font-size: 7px; }
    .program-hero__grid { grid-template-columns: 1fr; padding-top: 70px; }
    .program-hero h1 { font-size: clamp(74px, 23vw, 118px); }
    .program-hero__grid > p { font-size: 14px; }
    .program-listing { padding: 25px 0 80px; }
    .listing-note .container { align-items: flex-start; flex-direction: column; padding-block: 24px; }
    .experience-shell .event-hero { background-size: 44px 44px; }
    .experience-shell .event-hero__topline { font-size: 7px; }
    .experience-shell .event-hero__topline > span:last-child { display: none; }
    .experience-shell .event-hero__grid { padding-top: 60px; }
    .experience-shell .event-hero h1 { font-size: clamp(58px, 17vw, 90px); }
    .experience-shell .event-facts { grid-template-columns: 1fr 1fr; }
    .experience-shell .event-poster { min-height: 560px; width: 100%; }
    .experience-shell .event-poster__date strong { font-size: 105px; }
    .experience-shell .event-poster__title { font-size: 43px; }
    .experience-shell .event-content { padding-block: 80px; }
    .experience-shell .event-story h2 { font-size: clamp(48px, 15vw, 75px); }
    .experience-shell .event-story__lead { font-size: 18px; margin-bottom: 55px; }
    .experience-shell .event-detail-columns { grid-template-columns: 1fr; }
    .experience-shell .buy-panel { width: 100%; }
    .experience-shell .checkout-page { padding-top: 25px; }
    .experience-shell .checkout-steps { overflow-x: auto; }
    .experience-shell .checkout-steps span { min-width: 108px; padding-inline: 10px; }
    .experience-shell .checkout-heading h1 { font-size: clamp(53px, 16vw, 78px); }
    .experience-shell .checkout-grid { gap: 35px; }
    .experience-shell .form-section { grid-template-columns: 42px 1fr; }
    .experience-shell .form-section__content { padding-inline: 19px; }
    .experience-shell .field-grid { grid-template-columns: 1fr; }
    .experience-shell .field--full { grid-column: auto; }
    .experience-shell .quantity-control { grid-template-columns: 46px 55px 46px; }
    .experience-shell .quantity-control > span { grid-column: 1 / -1; border-top: 1px solid var(--dark-line); border-left: 0; }
    .experience-shell .mobile-buy-bar { display: flex; }
}

@media (max-width: 430px) {
    .night-hero h1 { font-size: clamp(55px, 19vw, 78px); }
    .experience-shell .brand-copy small { display: none; }
    .experience-shell .event-hero__tags { flex-wrap: wrap; }
    .experience-shell .event-facts { grid-template-columns: 1fr; }
    .experience-shell .event-poster { min-height: 490px; }
    .experience-shell .event-poster__date strong { font-size: 88px; }
    .experience-shell .event-poster__title { font-size: 37px; }
}

@media (prefers-reduced-motion: reduce) {
    .experience-shell *,
    .experience-shell *::before,
    .experience-shell *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* --------------------------------------------------------------------------
   Sakin renk yönü / Temmuz 2026
   Koyu festival estetiğini lavanta ve adaçayı tonlarına taşır.
   -------------------------------------------------------------------------- */
:root {
    --calm-ink: #494354;
    --calm-muted: #777181;
    --calm-bg: #f7f4f7;
    --calm-paper: #fffdfb;
    --calm-lilac: #e9e2ef;
    --calm-lilac-deep: #8c7fa3;
    --calm-sage: #dfe9df;
    --calm-rose: #efdeda;
    --calm-dusk: #625b73;
    --calm-line: rgba(73, 67, 84, .14);
    --calm-shadow: 0 22px 70px rgba(75, 64, 88, .10);
    --acid: #8c7fa3;
    --acid-dark: #716381;
    --music: #b97069;
    --psychology: #739487;
    --theatre: #91878a;
    --display: "Iowan Old Style", "Baskerville", "Georgia", "Times New Roman", serif;
}

.experience-shell {
    color: var(--calm-ink);
    background: var(--calm-bg);
    letter-spacing: 0;
}

.experience-shell .announcement {
    color: #665f72;
    background: #eee8f2;
    border-color: var(--calm-line);
    letter-spacing: .08em;
    text-transform: none;
}

.experience-shell .announcement a { color: #75688d; }
.experience-shell .pulse-dot {
    background: #9989b2;
    border-radius: 50%;
    animation: none;
}

.experience-shell .site-header {
    color: var(--calm-ink);
    background: rgba(250, 247, 250, .91);
    border-color: var(--calm-line);
    box-shadow: none;
}

.experience-shell .site-header.is-scrolled {
    background: rgba(250, 247, 250, .97);
    border-color: var(--calm-line);
    box-shadow: 0 12px 40px rgba(73, 67, 84, .07);
}

.experience-shell .brand-mark {
    color: #fff;
    background: #8c7fa3;
    border-color: #8c7fa3;
    border-radius: 50%;
}

.experience-shell .brand-mark i { color: rgba(255, 255, 255, .25); }
.experience-shell .brand-copy strong {
    color: var(--calm-ink);
    font-family: var(--display);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -.025em;
    text-transform: none;
}

.experience-shell .brand-copy small { color: #817a88; }
.experience-shell .desktop-nav a,
.experience-shell .ticket-link {
    color: #6f6978;
    font-family: var(--sans);
}
.experience-shell .desktop-nav a:hover,
.experience-shell .desktop-nav a.is-active { color: var(--calm-ink); }
.experience-shell .desktop-nav a::after { background: #9788ae; }
.experience-shell .ticket-link__dot {
    background: #9d8eb4;
    border-radius: 50%;
}

.experience-shell .button {
    color: #62596f;
    background: rgba(255, 255, 255, .42);
    border-color: rgba(98, 89, 111, .42);
    border-radius: 999px;
    letter-spacing: .05em;
    text-transform: none;
    box-shadow: none;
    font-family: var(--sans);
}

.experience-shell .button:hover {
    color: #fff;
    background: #7f7195;
    border-color: #7f7195;
    box-shadow: 0 10px 28px rgba(89, 76, 107, .15);
    transform: translateY(-2px);
}

.experience-shell .button--acid,
.experience-shell .button--clay {
    color: #fff;
    background: #84759b;
    border-color: #84759b;
}

.experience-shell .button--acid:hover,
.experience-shell .button--clay:hover {
    color: #fff;
    background: #716381;
    border-color: #716381;
    box-shadow: 0 12px 30px rgba(89, 76, 107, .18);
}

.experience-shell .button--ghost-light {
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .55);
}

.experience-shell .button--ghost-light:hover {
    color: #5d566a;
    background: rgba(255, 255, 255, .94);
    border-color: rgba(255, 255, 255, .94);
}

.experience-shell .menu-toggle {
    color: #fff;
    background: #8c7fa3;
    border-radius: 50%;
}

.experience-shell .menu-toggle > span:not(.sr-only) { background: #fff; }
.experience-shell .mobile-menu {
    color: var(--calm-ink);
    background: #faf7fa;
    border-color: var(--calm-line);
}

.experience-shell .mobile-menu a {
    border-color: var(--calm-line);
    font-family: var(--display);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -.02em;
    text-transform: none;
}

.experience-shell .mobile-menu a span { color: #8c7fa3; }
.experience-shell .eyebrow {
    color: #8c8592;
    letter-spacing: .12em;
    text-transform: none;
}

.experience-shell .eyebrow--light { color: rgba(255, 255, 255, .7); }
.experience-shell .text-link {
    letter-spacing: .04em;
    text-transform: none;
}

/* Açık ve dingin ilk ekran */
.night-hero {
    min-height: auto;
    color: var(--calm-ink);
    background:
        radial-gradient(circle at 82% 27%, rgba(181, 163, 208, .28), transparent 25%),
        radial-gradient(circle at 16% 78%, rgba(174, 200, 179, .22), transparent 29%),
        linear-gradient(135deg, #fbf8f8 0%, #f3eff7 54%, #f8f5f1 100%);
}

.night-hero::before {
    opacity: .55;
    background: radial-gradient(circle at 76% 43%, rgba(165, 145, 193, .18), transparent 30%);
}

.night-hero__meta {
    color: #958e9e;
    border-color: var(--calm-line);
    letter-spacing: .06em;
    text-transform: none;
}

.night-hero__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(350px, .6fr);
    gap: clamp(50px, 7vw, 105px);
    padding: clamp(72px, 8vw, 112px) 0 clamp(68px, 8vw, 108px);
}

.night-hero h1 {
    max-width: 790px;
    margin-bottom: 32px;
    font-family: var(--display);
    font-size: clamp(68px, 8.2vw, 118px);
    font-weight: 400;
    line-height: .86;
    letter-spacing: -.055em;
    text-transform: none;
}

.night-hero__accent {
    color: #8b79a5;
    -webkit-text-stroke: 0;
}

.night-hero__lead {
    max-width: 620px;
    color: #6d6677;
    font-size: clamp(16px, 1.45vw, 19px);
    line-height: 1.75;
}

.night-hero__ticker {
    min-height: 50px;
    justify-content: center;
    gap: clamp(18px, 4vw, 56px);
    color: #827b89;
    border-color: var(--calm-line);
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: .03em;
    text-transform: none;
}

.night-hero__ticker i {
    color: #a394b9;
    font-size: 8px;
}

.hero-ticket {
    --event-color: #8fa99c;
    min-height: 510px;
    padding: 28px;
    color: var(--calm-ink);
    background: rgba(255, 253, 251, .86);
    border: 1px solid rgba(111, 99, 126, .16);
    border-radius: 28px;
    box-shadow: var(--calm-shadow);
    backdrop-filter: blur(14px);
}

.hero-ticket--music { --event-color: #d19082; }
.hero-ticket--psychology { --event-color: #7fa899; }
.hero-ticket--theatre { --event-color: #9993a0; }
.hero-ticket::before {
    width: 3px;
    inset: 28px auto 28px 0;
    border-radius: 0 4px 4px 0;
}

.hero-ticket__signal {
    border-color: rgba(73, 67, 84, .11);
    border-radius: 19px;
    background: linear-gradient(135deg, rgba(233, 226, 239, .65), rgba(223, 233, 223, .55));
}

.hero-ticket__signal > span {
    width: 1px;
    box-shadow: none;
    opacity: .75;
}

.hero-ticket__signal > i { opacity: .5; }
.hero-ticket__head,
.hero-ticket__facts span,
.hero-ticket__footer span,
.hero-ticket__facts small { color: #8b8491; }
.hero-ticket__title strong {
    font-family: var(--display);
    font-size: clamp(30px, 2.65vw, 40px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -.035em;
    text-transform: none;
}

.hero-ticket__facts {
    border-color: var(--calm-line);
}

.hero-ticket__facts > div + div { border-color: var(--calm-line); }
.hero-ticket__facts strong,
.hero-ticket__footer > div strong {
    font-family: var(--display);
    font-weight: 500;
}

.hero-ticket__tear { display: none; }

/* Üç temayı açık, pastel ve nefes alan kartlara çevir */
.frequency-section {
    color: var(--calm-ink);
    background: #eee9f1;
    border-color: var(--calm-line);
}

.frequency-section__head h2,
.program-section__head h2,
.about-night h2,
.faq-preview h2,
.newsletter h2,
.night-poster h2 {
    font-family: var(--display);
    font-size: clamp(50px, 6vw, 84px);
    font-weight: 400;
    line-height: .94;
    letter-spacing: -.045em;
    text-transform: none;
}

.frequency-section__head h2 em,
.program-section__head h2 em,
.about-night h2 em,
.faq-preview h2 em,
.newsletter h2 em,
.night-poster h2 em {
    color: #85739e;
    font-style: italic;
    font-weight: 400;
}

.frequency-section__head > p,
.program-section__aside > p { color: #777080; }
.frequency-grid {
    gap: 18px;
    border: 0;
}

.frequency-card {
    min-height: 530px;
    padding: 28px;
    color: var(--calm-ink);
    background: rgba(255, 253, 251, .72);
    border: 1px solid rgba(73, 67, 84, .10);
    border-radius: 26px;
    box-shadow: 0 12px 40px rgba(77, 65, 89, .055);
}

.frequency-card--music { background: #f4e5e2; }
.frequency-card--psychology { background: #e1ece6; }
.frequency-card--theatre { background: #ebe4e6; }
.frequency-card:hover {
    background: var(--calm-paper);
    box-shadow: var(--calm-shadow);
    transform: translateY(-4px);
}

.frequency-card::after {
    left: 28px;
    right: 28px;
    bottom: 18px;
    width: auto;
    height: 2px;
    opacity: .7;
}

.frequency-card__index { letter-spacing: .08em; text-transform: none; }
.frequency-card__art { opacity: .6; }
.frequency-card__copy h3 {
    font-family: var(--display);
    font-size: clamp(38px, 3.7vw, 53px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -.035em;
    text-transform: none;
}

.frequency-card__copy p { color: #6f6877; }
.frequency-card__copy > span { letter-spacing: .04em; text-transform: none; }

/* Program ve bilet kartları */
.program-section,
.program-listing,
.about-night,
.experience-shell .event-content,
.experience-shell .checkout-page,
.experience-shell .success-page,
.experience-shell .lookup-page,
.experience-shell .lookup-result,
.experience-shell .status-page,
.experience-shell .provider-page,
.experience-shell .legal-page,
.experience-shell .editorial-page,
.experience-shell .error-page {
    color: var(--calm-ink);
    background: #f8f5f1;
}

.program-section__head h2 em { color: #85739e; }
.experience-shell .category-tabs {
    gap: 8px;
    border: 0;
}

.experience-shell .category-tabs a {
    min-height: 44px;
    padding: 0 18px;
    color: #756e7d;
    background: rgba(255, 255, 255, .6);
    border: 1px solid var(--calm-line);
    border-radius: 999px;
    letter-spacing: .04em;
    text-transform: none;
}

.experience-shell .category-tabs a:hover,
.experience-shell .category-tabs a.is-active {
    color: #fff;
    background: #897b9f;
    border-color: #897b9f;
}

.experience-shell .event-grid { gap: 16px; }
.experience-shell .event-card {
    min-height: 248px;
    color: var(--calm-ink);
    background: rgba(255, 253, 251, .96);
    border: 1px solid rgba(73, 67, 84, .11);
    border-radius: 22px;
    box-shadow: 0 12px 38px rgba(76, 65, 89, .055);
    overflow: hidden;
}

.experience-shell .event-card--music { --event-color: #9e574f; }
.experience-shell .event-card--psychology { --event-color: #50786c; }
.experience-shell .event-card--theatre { --event-color: #6d656e; }
.experience-shell .event-card:last-child { border-bottom: 1px solid rgba(73, 67, 84, .11); }
.experience-shell .event-card::before {
    width: 3px;
    opacity: .65;
}

.experience-shell .event-card:hover {
    background: #fff;
    box-shadow: 0 20px 55px rgba(76, 65, 89, .09);
    transform: translateY(-3px);
}

.experience-shell .event-card__date {
    color: var(--calm-ink);
    background: rgba(239, 234, 241, .54);
    border-color: var(--calm-line);
}

.experience-shell .event-card__date strong {
    font-family: var(--display);
    font-size: 56px;
    font-weight: 500;
    letter-spacing: -.055em;
}

.experience-shell .event-card__visual {
    border-radius: 0;
    filter: saturate(.82);
}

.experience-shell .event-card__body { border-color: var(--calm-line); }
.experience-shell .event-card__meta {
    color: #706a77;
    letter-spacing: .04em;
    text-transform: none;
}
.experience-shell .event-card h3 {
    font-family: var(--display);
    font-size: clamp(27px, 2.7vw, 38px);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -.035em;
    text-transform: none;
}

.experience-shell .event-card__body > p { color: #6c6673; }
.experience-shell .event-card__artist,
.experience-shell .event-card__price span,
.experience-shell .event-card__detail { color: #817a88; }
.experience-shell .event-card__price strong {
    font-family: var(--display);
    font-weight: 500;
}

.experience-shell .availability {
    color: #58705f;
    background: #e2ede3;
}

.experience-shell .availability--low {
    color: #95685f;
    background: #f1e2de;
}

/* Mekân fotoğrafında alacakaranlık; siyah kaplama yerine yumuşak mor */
.night-poster {
    min-height: 680px;
    background: #665e75;
}

.night-poster__image::after {
    background:
        linear-gradient(180deg, rgba(82, 71, 98, .12), rgba(77, 67, 91, .70)),
        linear-gradient(90deg, rgba(119, 98, 145, .30), transparent 64%);
}

.night-poster__image img {
    filter: saturate(.72) brightness(1.04) contrast(.98);
}

.night-poster h2 {
    font-size: clamp(53px, 7vw, 96px);
    text-shadow: 0 3px 30px rgba(54, 45, 66, .16);
}

.night-poster h2 em { color: #eee4f7; }
.trust-band {
    color: #4f594f;
    background: #dfe8dc;
    border-color: rgba(73, 82, 73, .13);
}

.trust-band span,
.trust-band span:first-child,
.trust-band span:nth-child(2),
.trust-band span:nth-child(-n+2) { border-color: rgba(73, 82, 73, .13); }
.trust-band b { color: rgba(73, 82, 73, .46); }

.about-night__portrait {
    border-radius: 220px 220px 24px 24px;
    background: #6f6879;
    box-shadow: var(--calm-shadow);
}

.about-night h2 em { color: #85739e; }
.about-night__lead { color: #5f5967; }
.about-night__notes {
    border-color: var(--calm-line);
    border-radius: 18px;
    overflow: hidden;
}

.about-night__notes p {
    color: #6e6875;
    background: rgba(255, 255, 255, .48);
    border-color: var(--calm-line);
}

/* Alacakaranlık yalnızca kısa vurgu alanlarında */
.experience-shell .faq-preview {
    color: #fff;
    background:
        radial-gradient(circle at 18% 20%, rgba(214, 201, 231, .18), transparent 28%),
        #6b647c;
}

.experience-shell .faq-preview h2 em { color: #e6dcef; }
.experience-shell .faq-grid > div:first-child > p:last-child,
.experience-shell .accordion__content > p { color: rgba(255, 255, 255, .72); }
.experience-shell .accordion,
.experience-shell .accordion__item { border-color: rgba(255, 255, 255, .20); }
.experience-shell .accordion__item button { color: #fff; }
.experience-shell .accordion__item button > span {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -.015em;
    text-transform: none;
}

.experience-shell .accordion__item button small { color: #d8c9e8; }
.experience-shell .accordion__item button i {
    border-color: rgba(255, 255, 255, .28);
    border-radius: 50%;
}

.experience-shell .accordion__item.is-open button i {
    color: #665e75;
    background: #eee8f3;
}

.experience-shell .newsletter {
    color: var(--calm-ink);
    background: #ddd4e7;
    border-color: var(--calm-line);
}

.experience-shell .newsletter h2 em { color: #78688f; }
.experience-shell .newsletter .eyebrow--light,
.experience-shell .newsletter-form label,
.experience-shell .newsletter-form > p { color: #736b7c; }
.experience-shell .newsletter-form > div { border-color: rgba(73, 67, 84, .35); }
.experience-shell .newsletter-form input { color: var(--calm-ink); }
.experience-shell .newsletter-form input::placeholder { color: rgba(73, 67, 84, .48); }
.experience-shell .newsletter-form button {
    color: #fff;
    background: #88799e;
    border-radius: 50%;
}

.experience-shell .site-footer {
    color: #f7f3f8;
    background: #565064;
    border-color: rgba(255, 255, 255, .14);
}

.experience-shell .site-footer .brand-copy strong { color: #fff; }
.experience-shell .site-footer .brand-copy small,
.experience-shell .footer-brand p,
.experience-shell .footer-links a,
.experience-shell .footer-bottom { color: rgba(255, 255, 255, .68); }
.experience-shell .footer-links h2 { color: #d9cce6; }
.experience-shell .footer-bottom,
.footer-frequency { border-color: rgba(255, 255, 255, .15); }
.footer-frequency span { background: #d8cbe4; border-radius: 999px; }

/* Program sayfası */
.program-hero {
    min-height: 510px;
    color: var(--calm-ink);
    background:
        radial-gradient(circle at 82% 36%, rgba(176, 158, 203, .28), transparent 28%),
        linear-gradient(145deg, #faf7f6, #eee9f3);
}

.program-hero__meta {
    color: #908998;
    border-color: var(--calm-line);
    letter-spacing: .05em;
    text-transform: none;
}

.program-hero h1 {
    font-family: var(--display);
    font-size: clamp(68px, 9vw, 124px);
    font-weight: 400;
    line-height: .82;
    letter-spacing: -.055em;
    text-transform: none;
}

.program-hero h1 em {
    color: #87759f;
    font-style: italic;
    font-weight: 400;
}

.program-hero__grid > p { color: #716b79; }
.listing-note {
    color: #5f5967;
    background: #e6e0eb;
    border-color: var(--calm-line);
}

.listing-note span::before,
.listing-note a { color: #85769d; }

/* Etkinlik detayı */
.experience-shell .event-hero {
    color: var(--calm-ink);
    background:
        radial-gradient(circle at 82% 28%, rgba(183, 165, 207, .26), transparent 26%),
        linear-gradient(145deg, #fbf8f7, #eeeaf3);
}

.experience-shell .event-hero__topline {
    color: #8d8794;
    border-color: var(--calm-line);
    text-transform: none;
}

.experience-shell .event-hero__topline .back-link { color: #625c6a; }
.experience-shell .event-hero__tags span {
    color: #756789;
    background: rgba(255, 255, 255, .52);
    border-color: rgba(117, 103, 137, .25);
    border-radius: 999px;
    letter-spacing: .04em;
    text-transform: none;
}

.experience-shell .event-hero h1 {
    font-family: var(--display);
    font-size: clamp(57px, 7vw, 102px);
    font-weight: 400;
    line-height: .88;
    letter-spacing: -.05em;
    text-transform: none;
}

.experience-shell .event-hero__copy > p { color: #706978; }
.experience-shell .event-facts {
    border-color: var(--calm-line);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, .42);
}

.experience-shell .event-facts > div { border-color: var(--calm-line); }
.experience-shell .event-facts dt { color: #8d8794; text-transform: none; }
.experience-shell .event-facts dd {
    color: var(--calm-ink);
    font-family: var(--display);
    font-size: 16px;
    font-weight: 500;
}

.experience-shell .event-poster {
    min-height: 610px;
    border-radius: 260px 260px 28px 28px;
    box-shadow: var(--calm-shadow);
}

.experience-shell .event-poster__wash {
    background: linear-gradient(180deg, rgba(69, 57, 81, .06), rgba(73, 59, 86, .60));
}

.experience-shell .event-poster__type {
    text-transform: none;
    letter-spacing: .07em;
}

.experience-shell .event-poster__date strong,
.experience-shell .event-poster__title {
    font-family: var(--display);
    font-weight: 500;
    letter-spacing: -.04em;
    text-transform: none;
}

.experience-shell .event-story h2,
.experience-shell .checkout-heading h1,
.experience-shell .success-copy h1,
.experience-shell .lookup-copy h1,
.experience-shell .editorial-page__hero h1,
.experience-shell .legal-grid h1 {
    font-family: var(--display);
    font-weight: 400;
    line-height: .93;
    letter-spacing: -.045em;
    text-transform: none;
}

.experience-shell .event-story h2 em,
.experience-shell .checkout-heading h1 em,
.experience-shell .success-copy h1 em,
.experience-shell .lookup-copy h1 em { color: #85739e; font-style: italic; }
.experience-shell .event-story__lead { color: #5f5966; }
.experience-shell .event-detail-block h3,
.experience-shell .event-detail-columns h3 { text-transform: none; }
.experience-shell .event-detail-columns {
    border-color: var(--calm-line);
    border-radius: 18px;
    overflow: hidden;
}

.experience-shell .event-detail-columns > div,
.experience-shell .timeline,
.experience-shell .timeline li,
.experience-shell .timeline li span { border-color: var(--calm-line); }
.experience-shell .notice-box {
    background: #e7e1eb;
    border-color: var(--calm-line);
    border-radius: 18px;
}

.experience-shell .notice-box > span {
    color: #fff;
    background: #8b7ca1;
    border-radius: 50%;
}

.experience-shell .buy-panel {
    color: var(--calm-ink);
    background: rgba(255, 253, 251, .96);
    border-color: rgba(73, 67, 84, .13);
    border-radius: 24px;
    box-shadow: var(--calm-shadow);
}

.experience-shell .buy-panel__code {
    color: #7d708f;
    background: #eee8f2;
    border-color: var(--calm-line);
    border-radius: 24px 24px 0 0;
    letter-spacing: .06em;
    text-transform: none;
}

.experience-shell .buy-panel__top { border-color: var(--calm-line); }
.experience-shell .buy-panel__top span,
.experience-shell .buy-panel__top small,
.experience-shell .buy-panel__availability small { color: #8c8592; text-transform: none; }
.experience-shell .buy-panel__top strong,
.experience-shell .buy-panel__availability strong { color: var(--calm-ink); }
.experience-shell .buy-panel__top strong {
    font-family: var(--display);
    font-weight: 500;
}

.experience-shell .seat-meter { background: #e7e1eb; }
.experience-shell .seat-meter i { background: #8d7da3; }
.experience-shell .buy-panel__notes { border-color: var(--calm-line); }
.experience-shell .buy-panel__notes li {
    color: #6f6977;
    border-color: var(--calm-line);
}

.experience-shell .buy-panel__notes li span { color: #8c7ca2; }
.experience-shell .buy-panel__legal { color: #817a88; }
.experience-shell .buy-panel__legal a { color: #665d73; }
.experience-shell .buy-panel__tear { display: none; }
.experience-shell .mobile-buy-bar {
    color: #fff;
    background: rgba(92, 84, 106, .96);
    border-color: rgba(255, 255, 255, .15);
}

/* Satın alma ve destek sayfaları */
.experience-shell .checkout-steps,
.experience-shell .checkout-form,
.experience-shell .lookup-form,
.experience-shell .lookup-result__card,
.experience-shell .status-card,
.experience-shell .provider-card {
    border-color: var(--calm-line);
    border-radius: 22px;
    box-shadow: var(--calm-shadow);
}

.experience-shell .checkout-steps span.is-active {
    color: #fff;
    background: #88799e;
}

.experience-shell .form-section h2 {
    font-family: var(--display);
    font-weight: 500;
    text-transform: none;
}

.experience-shell .field > span { text-transform: none; }
.experience-shell .field input,
.experience-shell .field textarea,
.experience-shell .field select {
    border-color: var(--calm-line);
    border-radius: 12px;
}

.experience-shell .quantity-control { border-color: var(--calm-line); border-radius: 14px; overflow: hidden; }
.experience-shell .quantity-control button:hover:not(:disabled) { background: #e6deec; }
.experience-shell .check-field input + span { border-radius: 5px; }
.experience-shell .check-field input:checked + span {
    background: #8b7da0;
    border-color: #8b7da0;
}

.experience-shell .order-summary {
    color: var(--calm-ink);
    background: #eee8f2;
    border-color: var(--calm-line);
    border-radius: 22px;
    box-shadow: var(--calm-shadow);
}

.experience-shell .order-summary__eyebrow { color: #796b8e; }
.experience-shell .order-summary h2 {
    color: var(--calm-ink);
    font-family: var(--display);
    font-weight: 500;
    text-transform: none;
}

.experience-shell .order-summary dl,
.experience-shell .order-summary dl > div,
.experience-shell .order-summary__total { border-color: var(--calm-line); }
.experience-shell .order-summary dt,
.experience-shell .order-summary__note { color: #857f8b; }
.experience-shell .order-summary dd,
.experience-shell .order-summary__total { color: var(--calm-ink); }
.experience-shell .order-summary__total strong { color: #746587; }
.experience-shell .demo-badge {
    color: #fff;
    background: #88799e;
    border-radius: 999px;
}

.experience-shell .mock-card-fields {
    background: #756a88;
    border-radius: 18px;
}

.experience-shell .toast {
    color: var(--calm-ink);
    background: #fffdfb;
    border-color: var(--calm-line);
    border-radius: 18px;
    box-shadow: var(--calm-shadow);
}

.experience-shell .toast__mark {
    color: #fff;
    background: #88799e;
    border-radius: 50%;
}

.experience-shell .minimal-header {
    color: var(--calm-ink);
    background: #faf7fa;
    border-color: var(--calm-line);
}

.experience-shell .secure-label { color: #7d7684; }
.experience-shell .secure-label span { color: #8d7da3; }

@media (max-width: 960px) {
    .night-hero__grid { grid-template-columns: 1fr; }
    .hero-ticket { width: min(100%, 560px); }
    .frequency-card { min-height: 430px; }
}

@media (max-width: 740px) {
    .night-hero h1 { font-size: clamp(56px, 18vw, 82px); }
    .night-hero__grid { padding-block: 60px 72px; }
    .frequency-section__head h2,
    .program-section__head h2,
    .about-night h2,
    .faq-preview h2,
    .newsletter h2 { font-size: clamp(43px, 13vw, 66px); }
    .frequency-card { min-height: 490px; }
    .experience-shell .event-card:hover { transform: none; }
    .night-poster h2 { font-size: clamp(46px, 14vw, 70px); }
    .program-hero h1 { font-size: clamp(62px, 19vw, 92px); }
    .experience-shell .event-hero h1 { font-size: clamp(49px, 15vw, 76px); }
    .experience-shell .event-poster { min-height: 530px; border-radius: 190px 190px 24px 24px; }
    .experience-shell .event-story h2 { font-size: clamp(44px, 13vw, 65px); }
}
