:root {
--bg:        #070707;
--surface:   #0e0e0e;
--surface2:  #131313;
--red:       #c0392b;
--red-hot:   #ff2a1a;
--amber:     #e67e00;
--amber-dim: rgba(230,126,0,0.15);
--green:     #1db954;
--steel:     #272727;
--muted:     #555;
--off-white: #d4cfc9;
--cream:     #f0ebe4;
--font-display: 'Black Ops One', cursive;
--font-heading: 'Bebas Neue', cursive;
--font-anton:   'Anton', sans-serif;
--font-mono:    'Share Tech Mono', monospace;
--font-body:    'Barlow Condensed', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
background: var(--bg);
color: var(--off-white);
font-family: var(--font-body);
overflow-x: hidden;
}

/* NOISE */
body::before {
content: '';
position: fixed; inset: 0;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
opacity: 0.03; pointer-events: none; z-index: 9999;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red); }

/* ── HERO ── */
.hero {
position: relative;
min-height: 100vh;
display: flex; align-items: flex-end;
padding: 64px 0 0;
overflow: hidden;
}

/* Repeating diagonal stripes background */
.hero-stripes {
position: absolute; inset: 0;
background: repeating-linear-gradient(
-55deg,
transparent 0px,
transparent 40px,
rgba(192,57,43,0.028) 40px,
rgba(192,57,43,0.028) 42px
);
pointer-events: none;
}

/* Giant countdown-style number in bg */
.hero-bg-num {
position: absolute;
right: -0.05em; bottom: -0.15em;
font-family: var(--font-anton);
font-size: clamp(20rem, 50vw, 55rem);
line-height: 1;
color: transparent;
-webkit-text-stroke: 1px rgba(192,57,43,0.07);
pointer-events: none; user-select: none;
letter-spacing: -0.04em;
}

/* Top accent bar */
.hero-top-bar {
position: absolute; top: 64px; left: 0; right: 0;
height: 4px;
background: linear-gradient(90deg, var(--red) 0%, var(--amber) 50%, var(--red) 100%);
box-shadow: 0 0 30px 4px rgba(192,57,43,0.4);
}

/* Vertical text on right */
.hero-vert-text {
position: absolute; right: 2rem; top: 50%;
transform: translateY(-50%) rotate(90deg);
font-family: var(--font-mono); font-size: 0.62rem;
letter-spacing: 0.4em; color: var(--muted);
text-transform: uppercase; white-space: nowrap;
}

.hero-content {
position: relative; z-index: 2;
padding: 4rem 4rem 5rem;
max-width: 900px;
}

.hero-eyebrow {
font-family: var(--font-mono); font-size: 0.7rem;
letter-spacing: 0.4em; color: var(--red);
text-transform: uppercase; margin-bottom: 1.5rem;
display: flex; align-items: center; gap: 1rem;
opacity: 0; animation: fadeUp 0.6s 0.1s forwards;
}
.hero-eyebrow::before {
content:''; display:block; width:30px; height:1px; background:var(--red);
}

.hero-h1 {
font-family: var(--font-anton);
font-size: clamp(5rem, 16vw, 14rem);
line-height: 0.88; letter-spacing: -0.02em;
text-transform: uppercase;
opacity: 0; animation: fadeUp 0.8s 0.25s forwards;
}
.hero-h1 .line1 { color: var(--off-white); display: block; }
.hero-h1 .line2 {
color: transparent;
-webkit-text-stroke: 2px var(--red);
display: block;
}

.hero-meta {
display: flex; align-items: center; gap: 2rem;
margin-top: 2rem; flex-wrap: wrap;
opacity: 0; animation: fadeUp 0.7s 0.5s forwards;
}
.hero-meta-item {
display: flex; flex-direction: column; gap: 2px;
}
.hero-meta-label {
font-family: var(--font-mono); font-size: 0.58rem;
letter-spacing: 0.3em; color: var(--muted); text-transform: uppercase;
}
.hero-meta-val {
font-family: var(--font-heading); font-size: 1.1rem;
letter-spacing: 0.1em; color: var(--off-white);
}
.hero-meta-sep {
width: 1px; height: 36px; background: var(--steel);
}

.hero-cta {
display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap;
opacity: 0; animation: fadeUp 0.7s 0.65s forwards;
}

.btn {
font-family: var(--font-heading); font-size: 1rem;
letter-spacing: 0.18em; text-decoration: none;
padding: 0.75rem 2.2rem; display: inline-flex;
align-items: center; gap: 0.5rem; transition: all 0.25s;
position: relative; overflow: hidden; cursor: pointer; border: none;
}
.btn::before {
content:''; position:absolute; inset:0;
background:rgba(255,255,255,0.08);
transform:translateX(-100%); transition:transform 0.3s;
}
.btn:hover::before { transform:translateX(0); }
.btn-primary {
background: var(--red); color:#fff;
clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-primary:hover { background:var(--red-hot); box-shadow:0 0 24px rgba(255,42,26,0.5); }
.btn-ghost {
background:transparent; color:var(--off-white);
border:1px solid var(--steel);
clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-ghost:hover { border-color:var(--off-white); }

.hero-bottom {
position: absolute; bottom: 0; left: 0; right: 0;
height: 3px;
background: linear-gradient(90deg, var(--red), transparent);
}

/* ── FILTER BAR ── */
.filter-bar {
background: var(--surface);
border-bottom: 1px solid var(--steel);
padding: 0 4rem;
display: flex; align-items: center; gap: 0;
overflow-x: auto;
}
.filter-bar::-webkit-scrollbar { height: 0; }
.filter-label {
font-family: var(--font-mono); font-size: 0.6rem;
letter-spacing: 0.3em; color: var(--muted);
text-transform: uppercase; padding-right: 2rem;
border-right: 1px solid var(--steel); margin-right: 1.5rem;
white-space: nowrap; flex-shrink: 0;
}
.filter-btn {
font-family: var(--font-heading); font-size: 0.95rem;
letter-spacing: 0.12em; color: var(--muted);
background: none; border: none; cursor: pointer;
padding: 1rem 1.2rem; position: relative;
transition: color 0.2s; white-space: nowrap; flex-shrink: 0;
}
.filter-btn::after {
content:''; position:absolute; bottom:0; left:1.2rem; right:1.2rem;
height:2px; background:var(--red);
transform:scaleX(0); transform-origin:left;
transition:transform 0.25s;
}
.filter-btn.active, .filter-btn:hover { color: var(--off-white); }
.filter-btn.active::after, .filter-btn:hover::after { transform:scaleX(1); }

/* ── NEXT SHOW FEATURED ── */
.next-show-wrap {
max-width: 1300px; margin: 0 auto;
padding: 5rem 4rem 3rem;
}

.next-show-label {
font-family: var(--font-mono); font-size: 0.65rem;
letter-spacing: 0.4em; color: var(--red);
text-transform: uppercase; margin-bottom: 1.5rem;
display: flex; align-items: center; gap: 0.8rem;
}
.next-show-label .dot {
width: 8px; height: 8px; background: var(--red); border-radius: 50%;
animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }

/* Featured ticket card */
.featured-ticket {
position: relative;
background: var(--surface);
border: 1px solid var(--steel);
display: grid;
grid-template-columns: 140px 1fr auto;
overflow: hidden;
transition: border-color 0.3s;
}
.featured-ticket:hover { border-color: rgba(192,57,43,0.6); }

/* Red left strip */
.ticket-strip {
background: var(--red);
display: flex; flex-direction: column;
align-items: center; justify-content: center;
padding: 2.5rem 1rem;
gap: 0.5rem; position: relative; overflow: hidden;
}
.ticket-strip::before {
content: 'NEXT SHOW';
position: absolute;
font-family: var(--font-anton);
font-size: 5rem; color: rgba(255,255,255,0.06);
transform: rotate(-90deg); white-space: nowrap;
pointer-events: none;
}
.ticket-strip .t-day {
font-family: var(--font-anton); font-size: 4.5rem;
color: #fff; line-height: 1; position: relative;
}
.ticket-strip .t-month {
font-family: var(--font-mono); font-size: 0.65rem;
letter-spacing: 0.3em; color: rgba(255,255,255,0.8);
text-transform: uppercase; position: relative;
}
.ticket-strip .t-year {
font-family: var(--font-mono); font-size: 0.55rem;
letter-spacing: 0.2em; color: rgba(255,255,255,0.5);
position: relative;
}

/* Perforated edge */
.ticket-perf {
position: relative;
width: 18px; flex-shrink: 0;
background: var(--surface);
border-left: 1px dashed var(--steel);
display: flex; flex-direction: column;
justify-content: space-between;
padding: 10px 0;
}
.ticket-perf::before,
.ticket-perf::after {
content:''; display:block;
width:18px; height:18px;
background:var(--bg);
border-radius:50%;
position:absolute;
left:-9px;
}
.ticket-perf::before { top:-9px; }
.ticket-perf::after  { bottom:-9px; }

.ticket-main {
padding: 2.5rem 2rem 2.5rem 2.5rem;
display: flex; flex-direction: column; justify-content: center; gap: 0.6rem;
}
.ticket-city {
font-family: var(--font-mono); font-size: 0.62rem;
letter-spacing: 0.35em; color: var(--amber);
text-transform: uppercase;
}
.ticket-venue {
font-family: var(--font-anton);
font-size: clamp(1.8rem, 3vw, 2.8rem);
line-height: 1; color: var(--off-white);
letter-spacing: 0.01em;
}
.ticket-address {
font-family: var(--font-body); font-size: 0.85rem;
font-weight: 300; color: var(--muted);
}
.ticket-tags { display:flex; gap:0.5rem; flex-wrap:wrap; margin-top:0.4rem; }
.tag {
font-family: var(--font-mono); font-size: 0.58rem;
letter-spacing: 0.2em; padding: 3px 8px;
text-transform: uppercase; border: 1px solid;
}
.tag-headliner { color: var(--red); border-color: rgba(192,57,43,0.4); }
.tag-support   { color: var(--amber); border-color: rgba(230,126,0,0.35); }
.tag-festival  { color: #a0c0ff; border-color: rgba(160,192,255,0.3); }
.tag-free      { color: var(--green); border-color: rgba(29,185,84,0.35); }
.tag-soldout   { color: var(--muted); border-color: var(--steel); }
.tag-intl      { color: #d0a0ff; border-color: rgba(208,160,255,0.3); }

.ticket-support-acts {
font-family: var(--font-body); font-size: 0.82rem;
font-weight: 300; color: var(--muted);
}
.ticket-support-acts strong { color: var(--off-white); font-weight: 600; }

.ticket-action {
padding: 1.5rem;
display: flex; flex-direction: column;
align-items: flex-end; justify-content: center;
gap: 1rem; flex-shrink: 0;
}
.ticket-price {
text-align: right;
}
.ticket-price .price-label {
font-family: var(--font-mono); font-size: 0.58rem;
letter-spacing: 0.25em; color: var(--muted);
text-transform: uppercase;
}
.ticket-price .price-val {
font-family: var(--font-anton); font-size: 2.2rem;
color: var(--off-white); line-height: 1;
}
.ticket-price .price-val span {
font-size: 1rem; color: var(--muted);
}
.ticket-time {
font-family: var(--font-mono); font-size: 0.65rem;
letter-spacing: 0.2em; color: var(--muted);
text-align: right;
}

.btn-ticket {
font-family: var(--font-heading); font-size: 1rem;
letter-spacing: 0.15em; color: #fff;
background: var(--red); border: none; cursor: pointer;
padding: 0.85rem 2rem; transition: all 0.25s;
clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
text-decoration: none; display: inline-block;
}
.btn-ticket:hover { background: var(--red-hot); box-shadow: 0 0 20px rgba(255,42,26,0.5); }
.btn-ticket.sold { background: var(--steel); cursor: not-allowed; color: var(--muted); }
.btn-ticket.sold:hover { background: var(--steel); box-shadow: none; }

/* ── EVENTS GRID ── */
.events-wrap {
max-width: 1300px; margin: 0 auto;
padding: 1rem 4rem 6rem;
}

.events-section-label {
font-family: var(--font-mono); font-size: 0.62rem;
letter-spacing: 0.35em; color: var(--muted);
text-transform: uppercase;
padding: 2rem 0 1.5rem;
display: flex; align-items: center; gap: 1.5rem;
}
.events-section-label::after {
content:''; flex:1; height:1px;
background: linear-gradient(90deg, var(--steel), transparent);
}

.events-list {
display: flex; flex-direction: column; gap: 1px;
}

.event-row {
display: grid;
grid-template-columns: 100px 1fr auto;
align-items: center;
background: var(--surface);
border: 1px solid var(--steel);
border-bottom: none;
padding: 0;
position: relative;
overflow: hidden;
transition: background 0.25s, border-color 0.25s;
cursor: pointer;
}
.event-row:last-child { border-bottom: 1px solid var(--steel); }
.event-row::before {
content:''; position:absolute;
left:0; top:0; bottom:0; width:0;
background:var(--red);
transition:width 0.35s cubic-bezier(0.4,0,0.2,1);
}
.event-row:hover { background: var(--surface2); border-color: rgba(192,57,43,0.35); }
.event-row:hover::before { width:3px; }

.event-date-col {
padding: 1.8rem 1.5rem;
border-right: 1px solid var(--steel);
text-align: center;
position: relative; z-index: 1;
}
.ev-day {
font-family: var(--font-anton); font-size: 2.2rem;
color: var(--off-white); line-height: 1;
}
.event-row:hover .ev-day { color: var(--red); }
.ev-month {
font-family: var(--font-mono); font-size: 0.6rem;
letter-spacing: 0.2em; color: var(--muted);
text-transform: uppercase; margin-top: 2px;
}

.event-info-col {
padding: 1.8rem 2rem;
display: flex; flex-direction: column; gap: 0.35rem;
position: relative; z-index: 1;
}
.ev-venue {
font-family: var(--font-heading); font-size: 1.35rem;
letter-spacing: 0.06em; color: var(--off-white); line-height: 1;
}
.ev-city {
font-family: var(--font-body); font-size: 0.85rem;
font-weight: 300; color: var(--muted);
display: flex; align-items: center; gap: 0.4rem;
}
.ev-city svg { width: 11px; opacity: 0.5; }
.ev-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 0.2rem; }

.event-action-col {
padding: 1.8rem 2rem;
display: flex; flex-direction: column;
align-items: flex-end; gap: 0.5rem;
position: relative; z-index: 1; flex-shrink: 0;
}
.ev-price {
font-family: var(--font-anton); font-size: 1.5rem;
color: var(--off-white); line-height: 1;
}
.ev-price.free { color: var(--green); }
.ev-price-note {
font-family: var(--font-mono); font-size: 0.58rem;
letter-spacing: 0.15em; color: var(--muted);
text-align: right;
}

/* ── PAST SHOWS ── */
.past-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 1px;
background: var(--steel);
border: 1px solid var(--steel);
}

.past-card {
background: var(--surface);
padding: 1.5rem 1.8rem;
position: relative; overflow: hidden;
transition: background 0.25s;
}
.past-card:hover { background: var(--surface2); }
.past-card::after {
content:''; position:absolute; inset:0;
background:linear-gradient(135deg, rgba(192,57,43,0.04) 0%, transparent 60%);
opacity:0; transition:opacity 0.3s;
}
.past-card:hover::after { opacity:1; }

.past-date {
font-family: var(--font-mono); font-size: 0.62rem;
letter-spacing: 0.2em; color: var(--muted);
text-transform: uppercase; margin-bottom: 0.5rem;
}
.past-venue {
font-family: var(--font-heading); font-size: 1.2rem;
letter-spacing: 0.06em; color: rgba(212,207,201,0.5);
}
.past-city {
font-family: var(--font-body); font-size: 0.8rem;
font-weight: 300; color: var(--muted); margin-top: 2px;
}
.past-sold {
display: inline-block; margin-top: 0.7rem;
font-family: var(--font-mono); font-size: 0.58rem;
letter-spacing: 0.25em; color: var(--green);
text-transform: uppercase;
}

/* ── MAILING STRIP ── */
.mailing-strip {
background: var(--red);
padding: 3rem 4rem;
display: flex; align-items: center;
justify-content: space-between; gap: 2rem;
flex-wrap: wrap;
}
.mailing-text h3 {
font-family: var(--font-anton); font-size: clamp(1.8rem, 4vw, 2.8rem);
color: #fff; line-height: 1;
}
.mailing-text p {
font-family: var(--font-body); font-size: 0.95rem;
font-weight: 300; color: rgba(255,255,255,0.75);
margin-top: 4px;
}
.mailing-form {
display: flex; gap: 0; flex-shrink: 0;
}
.mailing-input {
background: rgba(0,0,0,0.3);
border: 1px solid rgba(255,255,255,0.25);
border-right: none;
color: #fff; font-family: var(--font-mono);
font-size: 0.8rem; letter-spacing: 0.1em;
padding: 0.85rem 1.5rem;
outline: none; width: 260px;
}
.mailing-input::placeholder { color: rgba(255,255,255,0.4); }
.mailing-submit {
background: #000; color: #fff;
font-family: var(--font-heading); font-size: 0.95rem;
letter-spacing: 0.15em; border: 1px solid rgba(255,255,255,0.25);
padding: 0.85rem 1.8rem; cursor: pointer; transition: background 0.25s;
}
.mailing-submit:hover { background: rgba(0,0,0,0.7); }

/* ── FOOTER ── */
footer {
border-top: 1px solid var(--steel);
padding: 3rem;
display: grid; grid-template-columns: 1fr auto;
gap: 2rem; align-items: center;
max-width: 1200px; margin: 0 auto;
}
.footer-brand {
font-family: var(--font-display); font-size: 1.2rem;
letter-spacing: 0.05em; color: var(--off-white);
}
.footer-brand span { color: var(--red); }
.footer-copy {
font-family: var(--font-mono); font-size: 0.65rem;
letter-spacing: 0.15em; color: var(--muted); margin-top: 6px;
}
.footer-socials { display: flex; gap: 1rem; }
.social-link {
width:38px; height:38px; border:1px solid var(--steel);
display:flex; align-items:center; justify-content:center;
text-decoration:none; transition:all 0.25s;
clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}
.social-link:hover { border-color:var(--red); background:rgba(192,57,43,0.15); }
.social-link svg { width:16px; fill:var(--off-white); }

/* ── FLYER BUTTON ── */
.btn-flyer {
font-family: var(--font-mono); font-size: 0.68rem;
letter-spacing: 0.18em; color: var(--amber);
background: transparent; border: 1px solid rgba(230,126,0,0.35);
padding: 0.5rem 1rem; cursor: pointer;
transition: all 0.25s; white-space: nowrap;
display: inline-flex; align-items: center; gap: 0.4rem;
clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
text-transform: uppercase;
}
.btn-flyer:hover {
background: rgba(230,126,0,0.12);
border-color: var(--amber);
box-shadow: 0 0 14px rgba(230,126,0,0.2);
}
.btn-flyer svg { width: 12px; fill: var(--amber); flex-shrink: 0; }

/* btn-flyer inside event-action-col — smaller */
.event-action-col .btn-flyer {
font-size: 0.6rem; padding: 0.4rem 0.8rem;
}

/* ── FLYER MODAL ── */
.flyer-modal {
position: fixed; inset: 0; z-index: 1000;
display: flex; align-items: center; justify-content: center;
padding: 1.5rem;
opacity: 0; pointer-events: none;
transition: opacity 0.3s;
}
.flyer-modal.open { opacity: 1; pointer-events: all; }

.flyer-backdrop {
position: absolute; inset: 0;
background: rgba(0,0,0,0.88);
backdrop-filter: blur(8px);
}

.flyer-box {
position: relative; z-index: 1;
display: grid;
grid-template-columns: auto 360px;
gap: 0;
max-height: 92vh;
border: 1px solid var(--steel);
overflow: hidden;
transform: scale(0.93) translateY(16px);
transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}
.flyer-modal.open .flyer-box {
transform: scale(1) translateY(0);
}

/* Flyer image panel */
.flyer-image-panel {
width: clamp(280px, 38vw, 520px);
position: relative; overflow: hidden;
background: #0a0a0a;
}
.flyer-svg-wrap {
width: 100%; height: 100%;
display: flex; align-items: stretch;
}
.flyer-svg-wrap svg { width: 100%; height: 100%; display: block; }

/* Info panel */
.flyer-info-panel {
background: var(--surface);
display: flex; flex-direction: column;
overflow-y: auto;
}
.flyer-info-panel::-webkit-scrollbar { width: 3px; }
.flyer-info-panel::-webkit-scrollbar-thumb { background: var(--red); }

.flyer-info-header {
padding: 2rem 2rem 1.5rem;
border-bottom: 1px solid var(--steel);
position: relative;
}
.flyer-info-pre {
font-family: var(--font-mono); font-size: 0.6rem;
letter-spacing: 0.3em; color: var(--red);
text-transform: uppercase; margin-bottom: 0.6rem;
}
.flyer-info-title {
font-family: var(--font-anton); font-size: 1.8rem;
line-height: 1; color: var(--off-white);
}
.flyer-info-city {
font-family: var(--font-mono); font-size: 0.65rem;
letter-spacing: 0.2em; color: var(--amber);
margin-top: 0.5rem;
}
.flyer-close {
position: absolute; top: 1.2rem; right: 1.2rem;
width: 32px; height: 32px;
background: var(--steel); border: none; cursor: pointer;
display: flex; align-items: center; justify-content: center;
transition: background 0.2s;
clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
}
.flyer-close:hover { background: var(--red); }
.flyer-close svg { width: 14px; stroke: var(--off-white); }

.flyer-info-body {
padding: 1.5rem 2rem;
flex: 1;
display: flex; flex-direction: column; gap: 1.2rem;
}

.flyer-detail-row {
display: flex; flex-direction: column; gap: 3px;
}
.flyer-detail-label {
font-family: var(--font-mono); font-size: 0.58rem;
letter-spacing: 0.25em; color: var(--muted);
text-transform: uppercase;
}
.flyer-detail-val {
font-family: var(--font-body); font-weight: 400;
font-size: 0.95rem; color: var(--off-white);
}
.flyer-divider {
height: 1px; background: var(--steel);
}
.flyer-acts {
display: flex; flex-direction: column; gap: 0.5rem;
}
.flyer-act-item {
display: flex; align-items: center; gap: 0.6rem;
font-family: var(--font-body); font-size: 0.9rem;
font-weight: 300; color: var(--off-white);
}
.flyer-act-badge {
font-family: var(--font-mono); font-size: 0.52rem;
letter-spacing: 0.15em; padding: 2px 6px; border: 1px solid;
flex-shrink: 0; text-transform: uppercase;
}
.badge-main { color: var(--red); border-color: rgba(192,57,43,0.4); }
.badge-sup  { color: var(--muted); border-color: var(--steel); }

.flyer-info-footer {
padding: 1.5rem 2rem;
border-top: 1px solid var(--steel);
display: flex; gap: 0.75rem; flex-wrap: wrap;
}

.flyer-btn-primary {
flex: 1;
font-family: var(--font-heading); font-size: 1rem;
letter-spacing: 0.15em; color: #fff;
background: var(--red); border: none; cursor: pointer;
padding: 0.85rem 1.5rem; transition: all 0.25s;
clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
text-align: center; text-decoration: none; display: block;
}
.flyer-btn-primary:hover { background: var(--red-hot); }
.flyer-btn-primary.sold {
background: var(--steel); color: var(--muted); cursor: not-allowed;
}
.flyer-btn-primary.sold:hover { background: var(--steel); }

.flyer-btn-share {
font-family: var(--font-mono); font-size: 0.65rem;
letter-spacing: 0.15em; color: var(--off-white);
background: transparent; border: 1px solid var(--steel);
padding: 0.85rem 1.2rem; cursor: pointer; transition: all 0.25s;
display: flex; align-items: center; gap: 0.4rem;
clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.flyer-btn-share:hover { border-color: var(--off-white); }
.flyer-btn-share svg { width: 13px; fill: var(--off-white); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
from { opacity:0; transform:translateY(20px); }
to   { opacity:1; transform:translateY(0); }
}
.reveal { opacity:0; transform:translateY(24px); transition:opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
nav { padding: 0 1.5rem; }
.nav-links { display: none; }
.hero-content { padding: 3rem 1.5rem 4rem; }
.hero-bg-num { font-size: 40vw; }
.featured-ticket { grid-template-columns: 1fr; }
.ticket-strip { flex-direction: row; padding: 1.5rem; gap: 1rem; }
.ticket-strip::before { display: none; }
.ticket-perf { display: none; }
.ticket-action { align-items: flex-start; padding: 0 2rem 2rem; }
.ticket-price { text-align: left; }
.next-show-wrap, .events-wrap { padding: 3rem 1.5rem; }
.event-row { grid-template-columns: 80px 1fr; }
.event-action-col { display: none; }
.mailing-strip { padding: 2rem 1.5rem; }
.mailing-input { width: 180px; }
footer { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
.filter-bar { padding: 0 1.5rem; }
}