/* ==========================================================================
   Odisea 2026
   ========================================================================== */

:root {
  --ink: #1F1A1C;
  --ink-2: #292325;
  --ink-3: #3a3336;
  --magenta: #B44198;
  --orange: #F15B2D;
  --paper: #F7F7F7;
  --merch-bg: #E7E7E6;
  --muted: #bdb4b7;
  --muted-dark: #6a6265;
  --line: rgba(247, 247, 247, .14);
  --grad: linear-gradient(90deg, var(--magenta), var(--orange));

  --font: "eurostile", "Eurostile", "Microgramma", "Helvetica Neue", Arial, system-ui, sans-serif;

  --maxw: 1280px;
  --gutter: clamp(16px, 4vw, 48px);
  --header-h: 88px;

  --fs-display: clamp(2.25rem, 6.2vw, 5.6rem);
  --fs-h1: clamp(2.4rem, 7vw, 5.4rem);
  --fs-h2: clamp(1.7rem, 3.4vw, 2.8rem);
}
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 140px; }
html.no-scroll { overflow: hidden; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 900; text-transform: uppercase; line-height: .98; letter-spacing: -.005em; }
p { margin: 0; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: 900px; }
.center { text-align: center; }
.mt { margin-top: 40px; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--paper); color: var(--ink); padding: 10px 16px; border-radius: 4px; font-weight: 700;
}
.skip-link:focus { top: 16px; }

:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

.star { width: 1em; height: 1em; fill: currentColor; flex: none; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  padding: 14px 26px;
  border: 0; border-radius: 999px;
  font-size: 17px; font-weight: 500; line-height: 1.1;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, opacity .2s;
}
.btn .arrow { width: 34px; height: 12px; flex: none; transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-grad { background: var(--grad); color: #fff; }
.btn-grad:hover { transform: translateY(-2px); box-shadow: 0 12px 32px -12px rgba(241, 91, 45, .7); }

.btn-outline { background: transparent; color: var(--paper); box-shadow: inset 0 0 0 1px rgba(247, 247, 247, .5); }
.btn-outline:hover { box-shadow: inset 0 0 0 1px var(--paper); background: rgba(247, 247, 247, .06); }

.btn-dark { background: var(--ink); color: var(--paper); border-radius: 2px; padding: 16px 30px; }
.btn-dark:hover { background: #000; }

.btn-lg { padding: 18px 32px; font-size: 18px; }
.btn-xl { padding: 26px 46px; font-size: clamp(1.05rem, 1.6vw, 1.35rem); }
.btn-sm { padding: 10px 18px; font-size: 15px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; font-size: 18px;
}
.link-arrow .arrow { width: 34px; height: 12px; transition: transform .2s ease; }
.link-arrow:hover .arrow { transform: translateX(4px); }

/* ---------- Header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(31, 26, 28, .92);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
.site-header::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--grad);
}
.bar {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  height: var(--header-h);
  transition: height .25s ease;
}
.site-header.is-scrolled .bar { height: 68px; }

.bar-right { display: flex; align-items: center; justify-content: flex-end; gap: clamp(16px, 2.4vw, 36px); }
.nav { display: flex; align-items: center; gap: clamp(16px, 2.6vw, 44px); }

.nav-link {
  position: relative; text-decoration: none; font-size: 16px; opacity: .85; padding-block: 6px;
  transition: opacity .2s;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav-link:hover, .nav-link[aria-current="page"] { opacity: 1; }
.nav-link:hover::after, .nav-link[aria-current="page"]::after { transform: scaleX(1); }

.logo { display: block; }
.logo img { height: 38px; width: auto; transition: height .25s ease; }
.site-header.is-scrolled .logo img { height: 30px; }

.lang {
  display: inline-flex; padding: 3px; gap: 2px;
  border-radius: 999px; box-shadow: inset 0 0 0 1px rgba(247, 247, 247, .35);
}
.lang button {
  border: 0; background: none; cursor: pointer;
  padding: 5px 10px; border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: .08em; opacity: .65;
  transition: background-color .2s, color .2s, opacity .2s;
}
.lang button:hover { opacity: 1; }
.lang button[aria-pressed="true"] { background: var(--paper); color: var(--ink); opacity: 1; }

.btn-tickets {
  display: inline-flex; align-items: center;
  background: var(--grad); color: #fff; text-decoration: none;
  padding: 12px 22px; border-radius: 2px; font-size: 17px; white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-tickets:hover { transform: translateY(-1px); box-shadow: 0 10px 26px -12px rgba(241, 91, 45, .8); }
.btn-tickets .short { display: none; }

.burger {
  display: none; width: 44px; height: 44px; margin-right: -10px;
  border: 0; background: none; cursor: pointer; place-items: center;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--paper); border-radius: 2px; }
.burger span + span { margin-top: 6px; }
.burger > div { display: grid; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 70;
  background: var(--ink);
  display: flex; flex-direction: column;
  padding: 16px var(--gutter) 32px;
  overflow-y: auto;
}
.mm-top { display: flex; justify-content: space-between; align-items: center; height: 56px; }
.mm-top .logo img { height: 30px; }
.mm-nav { display: grid; gap: 4px; margin-top: 40px; }
.mm-nav a {
  font-size: clamp(2rem, 10vw, 3.2rem); font-weight: 900; text-transform: uppercase;
  text-decoration: none; line-height: 1.12;
}
.mm-nav a[aria-current="page"] { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.mm-foot { margin-top: auto; padding-top: 32px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }

.icon-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(247, 247, 247, .35); background: none; cursor: pointer;
  display: grid; place-items: center; flex: none;
}
.icon-btn svg { width: 18px; height: 18px; }

@media (max-width: 1000px) {
  .bar-right .nav, .bar-right .lang { display: none; }
  .burger { display: grid; }
  .btn-tickets .long { display: none; }
  .btn-tickets .short { display: inline; }
  .btn-tickets { padding: 10px 16px; font-size: 15px; }
  :root { --header-h: 72px; }
  .logo img { height: 30px; }
  .site-header.is-scrolled .logo img { height: 26px; }
  .site-header.is-scrolled .bar { height: 60px; }
}

/* ---------- Sections ---------- */

.section { padding-block: clamp(56px, 8vw, 112px); }
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 16px 32px; flex-wrap: wrap;
  margin-bottom: clamp(24px, 3vw, 40px);
}
.section-title { font-size: var(--fs-h2); }
.section-title.center { text-align: center; margin-bottom: clamp(24px, 3vw, 40px); }
.lead { margin-top: 16px; font-size: clamp(1.05rem, 1.5vw, 1.2rem); line-height: 1.5; opacity: .92; max-width: 34ch; }

.rule-title { font-size: var(--fs-h2); padding-bottom: 14px; border-bottom: 1px solid var(--paper); margin-bottom: 28px; }

.fine-note { margin-top: 36px; font-size: 14px; color: var(--muted); }
.fine-note a { color: var(--paper); }

/* ---------- Hero ---------- */

.hero { padding-block: clamp(40px, 6vw, 88px) clamp(56px, 7vw, 96px); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, .8fr);
  gap: clamp(32px, 5vw, 80px); align-items: center;
}
.hero-title { font-size: var(--fs-display); line-height: 1.02; }
.hero-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px;
  margin-top: clamp(20px, 2.4vw, 32px);
  font-size: clamp(1rem, 1.5vw, 1.25rem); font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
}
.hero-meta .star { width: .75em; height: .75em; fill: var(--orange); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(28px, 3vw, 40px); }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .poster { max-width: 460px; width: 100%; justify-self: center; }
}

/* ---------- Poster (built in CSS) ---------- */

.poster {
  position: relative; isolation: isolate; overflow: hidden;
  width: 100%; max-width: 440px; justify-self: end;
  aspect-ratio: 0.647;
  padding: 7% 6.5% 6%;
  display: flex; flex-direction: column;
  background: #3a1236;
  border-radius: 3px;
  container-type: inline-size;
  box-shadow: 0 50px 90px -40px rgba(180, 65, 152, .7), 0 30px 60px -30px rgba(241, 91, 45, .5);
  text-transform: uppercase;
}
.poster-glow {
  position: absolute; inset: -25%; z-index: -2;
  background:
    radial-gradient(28% 26% at 50% 12%, #ff8a4a 0%, transparent 70%),
    radial-gradient(30% 40% at 18% 52%, #f15b2d 0%, transparent 72%),
    radial-gradient(34% 34% at 84% 38%, #c44aa6 0%, transparent 72%),
    radial-gradient(40% 44% at 52% 66%, #5b1650 0%, transparent 75%),
    radial-gradient(44% 30% at 78% 92%, #f15b2d 0%, transparent 72%),
    radial-gradient(40% 30% at 12% 90%, #b44198 0%, transparent 72%),
    #3a1236;
  filter: blur(18px);
  animation: drift 16s ease-in-out infinite alternate;
}
.poster-grain {
  position: absolute; inset: 0; z-index: -1; opacity: .32; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.p-star { position: absolute; z-index: -1; fill: #fff; opacity: .75; animation: twinkle 3.6s ease-in-out infinite; }

.poster-top { display: flex; flex-direction: column; align-items: flex-end; font-weight: 900; line-height: .9; }
.poster-dates { font-size: 7.2cqw; }
.poster-year { font-size: 9.4cqw; color: transparent; -webkit-text-stroke: 1px var(--paper); }
.poster-logo { width: 100%; margin-top: 7cqw; }
.poster-handle { align-self: flex-end; margin-top: 1.4cqw; font-size: 3.3cqw; font-weight: 700; letter-spacing: .02em; }
.poster-days { margin-top: auto; display: grid; gap: 4.4cqw; }
.pd-head { display: flex; justify-content: space-between; align-items: baseline; gap: 2cqw; font-weight: 900; }
.pd-head strong { font-size: 6.2cqw; line-height: 1; }
.pd-head span { font-size: 3.2cqw; font-weight: 700; opacity: .85; white-space: nowrap; }
.pd p { margin-top: 1cqw; font-size: 2.85cqw; font-weight: 700; line-height: 1.4; opacity: .92; }
.pd i { font-style: normal; opacity: .7; padding-inline: .6cqw; }
.poster-box {
  display: flex; justify-content: space-between; gap: 3cqw;
  margin-top: 5.5cqw; padding: 2.4cqw 3cqw;
  border: 1px solid rgba(247, 247, 247, .75);
  font-size: 2.8cqw; font-weight: 700; line-height: 1.3;
}
.poster-box span:last-child { text-align: right; }

@keyframes drift { to { transform: translate3d(3%, -3%, 0) scale(1.08) rotate(2deg); } }
@keyframes twinkle { 0%, 100% { opacity: .8; transform: scale(1); } 50% { opacity: .25; transform: scale(.7); } }

/* ---------- Lineup cards (home) ---------- */

.day-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.day-card {
  display: flex; flex-direction: column;
  background: var(--ink-2); border-radius: 4px; overflow: hidden; text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.day-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -30px rgba(180, 65, 152, .8); }
.day-card .media { aspect-ratio: 4 / 3; background: #1b1617; overflow: hidden; }
.day-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.day-card:hover .media img { transform: scale(1.04); }
.day-card .body { padding: 22px 22px 26px; }
.day-label { font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.day-card h3 { font-size: clamp(1.7rem, 2.6vw, 2.4rem); margin: 10px 0 12px; }
.day-card p { font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: .03em; color: var(--muted); line-height: 1.65; }

@media (max-width: 860px) { .day-cards { grid-template-columns: 1fr; } }

/* ---------- Skyline band ---------- */

.band {
  position: relative; isolation: isolate;
  min-height: clamp(280px, 30vw, 420px);
  display: flex; align-items: center;
  background: #0d0b0c url("../assets/img/skyline-1.jpg") center 70% / cover no-repeat;
}
.band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(31, 26, 28, .85) 0%, rgba(31, 26, 28, .35) 60%, rgba(31, 26, 28, .2) 100%),
              linear-gradient(0deg, rgba(31, 26, 28, .3), transparent 40%);
}
.band-inner { display: flex; justify-content: space-between; align-items: center; gap: 28px 40px; flex-wrap: wrap; padding-block: 48px; }
.band-date { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; text-transform: uppercase; line-height: 1.05; }
.band-venue { margin-top: 8px; font-size: clamp(1rem, 1.4vw, 1.2rem); opacity: .88; }
.band-cta { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.replay { display: inline-flex; align-items: center; gap: 10px; font-size: 15px; text-decoration: none; opacity: .85; }
.replay:hover { opacity: 1; }
.replay svg { width: 26px; height: 26px; }

/* ---------- Quick facts ---------- */

.facts {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}
.fact { padding: clamp(24px, 3vw, 36px) clamp(16px, 2vw, 28px); }
.fact + .fact { border-left: 1px solid var(--line); }
.fact .star { width: 18px; height: 18px; fill: var(--orange); margin-bottom: 14px; }
.fact:nth-child(even) .star { fill: var(--magenta); }
.fact strong { display: block; font-size: clamp(1.15rem, 1.7vw, 1.45rem); font-weight: 900; text-transform: uppercase; line-height: 1.1; }
.fact span { display: block; margin-top: 6px; font-size: 15px; color: var(--muted); }

@media (max-width: 860px) {
  .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fact:nth-child(3) { border-left: 0; }
  .fact:nth-child(n + 3) { border-top: 1px solid var(--line); }
}
@media (max-width: 460px) {
  .facts { grid-template-columns: 1fr; }
  .fact + .fact { border-left: 0; border-top: 1px solid var(--line); }
}

/* ---------- Merch ---------- */

.merch-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 3vw, 40px); max-width: 1100px; margin-inline: auto; }
.merch-grid.merch-grid-4 { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); max-width: none; }
.merch-card .media {
  aspect-ratio: 5 / 4; background: var(--merch-bg); overflow: hidden;
  display: grid; place-items: center;
}
.merch-card .media img { width: 100%; height: 100%; object-fit: contain; padding: 6%; transition: transform .4s ease; }
.merch-card:hover .media img { transform: scale(1.05); }
.merch-info { margin-top: 14px; text-align: center; display: grid; justify-items: center; gap: 4px; }
.merch-info h3 { font-size: 1.1rem; font-weight: 500; letter-spacing: .01em; line-height: 1.2; }
.merch-price { font-weight: 700; font-size: 1.05rem; }
.merch-info .btn { margin-top: 10px; }

@media (max-width: 760px) {
  .merch-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .merch-grid:not(.merch-grid-4) .merch-card:nth-child(3) { display: none; }
}
@media (max-width: 420px) {
  .merch-grid.merch-grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Gradient band + forms ---------- */

.grad-band { background: var(--grad); }
.split {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 96px); align-items: center;
  padding-block: clamp(56px, 7vw, 96px);
}
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }

.form { display: grid; gap: 16px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 420px) { .row-2 { grid-template-columns: 1fr; } }

.field input, .field select, .field textarea, .waitlist input {
  width: 100%;
  background: var(--paper); color: var(--ink);
  border: 0; border-radius: 2px;
  padding: 17px 18px; font-size: 16px;
  transition: box-shadow .2s;
}
.field textarea { min-height: 160px; resize: vertical; }
.field select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%231F1A1C' stroke-width='1.6'/></svg>");
  background-repeat: no-repeat; background-position: right 18px center; background-size: 12px;
}
.field select:invalid { color: #8f8689; }
::placeholder { color: #8f8689; opacity: 1; }
.field input:focus, .field select:focus, .field textarea:focus, .waitlist input:focus { outline: none; box-shadow: inset 0 0 0 2px var(--ink); }
[aria-invalid="true"] { box-shadow: inset 0 0 0 2px var(--ink) !important; }
.field-error { margin-top: 6px; font-size: 13px; font-weight: 700; color: var(--ink); }
.field-error::before { content: "! "; }

.form-success {
  display: flex; align-items: center; gap: 14px;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem); font-weight: 700;
  outline: none;
}
.form-success .star { width: 28px; height: 28px; }

/* ---------- Footer ---------- */

.site-footer { padding-block: clamp(48px, 6vw, 72px) 28px; }
body[data-page="tickets"] .site-footer { background: var(--grad); }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-logo img { width: clamp(180px, 22vw, 260px); height: auto; }
.footer-brand .social { margin-top: 32px; }
.footer-cols { display: flex; gap: clamp(40px, 8vw, 120px); }
.footer-cols h2 { font-size: 18px; font-weight: 700; text-transform: none; letter-spacing: 0; margin-bottom: 18px; }
.footer-cols ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-cols a { text-decoration: none; opacity: .9; }
.footer-cols a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 8px 24px; flex-wrap: wrap;
  margin-top: 48px; padding-top: 18px; border-top: 1px solid rgba(247, 247, 247, .55);
  font-size: 13px;
}
.footer-bottom a { text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

.social { list-style: none; margin: 0; padding: 0; display: flex; gap: 12px; flex-wrap: wrap; }
.social a {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--paper); color: var(--ink);
  transition: transform .2s ease, background-color .2s;
}
.social a:hover { transform: translateY(-3px); }
.social svg { width: 22px; height: 22px; }
.social .knock { fill: var(--paper); }
.social .knock-s { fill: none; stroke: var(--paper); }

/* ---------- Page hero (skyline) ---------- */

.page-hero {
  position: relative; isolation: isolate;
  padding-block: clamp(56px, 9vw, 128px) clamp(48px, 7vw, 96px);
  background: #0d0b0c url("../assets/img/skyline-2.jpg") center 55% / cover no-repeat;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(31, 26, 28, .88) 0%, rgba(31, 26, 28, .45) 65%, rgba(31, 26, 28, .25) 100%);
}
.page-hero h1 { font-size: var(--fs-h1); }
.page-hero p { margin-top: 16px; font-size: clamp(1rem, 1.4vw, 1.2rem); opacity: .9; line-height: 1.55; }
.page-hero.plain { background: none; text-align: center; padding-block: clamp(48px, 7vw, 96px); }
.page-hero.plain::before { display: none; }
.page-hero.plain a { text-underline-offset: 3px; }

/* ---------- Sticky sub-nav / tabs ---------- */

.subnav {
  position: sticky; top: 67px; z-index: 40;
  background: rgba(31, 26, 28, .95);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding-block: 14px;
}
@media (max-width: 1000px) { .subnav { top: 59px; } }
.tabs { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tab {
  flex: none;
  border: 0; background: none; cursor: pointer; text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(247, 247, 247, .35);
  border-radius: 999px; padding: 10px 20px;
  font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  transition: box-shadow .2s, background-color .2s;
}
.tab:hover { box-shadow: inset 0 0 0 1px var(--paper); }
.tab[aria-pressed="true"], .tab[aria-current="true"] { background: var(--grad); box-shadow: none; color: #fff; }

/* ---------- Lineup page ---------- */

.day-block { padding-block: clamp(40px, 5vw, 64px); }
.day-block + .day-block { border-top: 1px solid var(--line); }
.day-block-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px 24px; flex-wrap: wrap; margin-bottom: 24px; }
.day-block-head h2 { font-size: var(--fs-h2); }

.headliner {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); align-items: stretch;
  background: #1b1617; border-radius: 4px; overflow: hidden; min-height: 340px;
}
.headliner-text { padding: clamp(24px, 4vw, 48px); display: flex; flex-direction: column; justify-content: flex-end; gap: 14px; align-items: flex-start; }
.headliner-text h3 { font-size: clamp(2.2rem, 4.8vw, 4.4rem); line-height: .95; }
.headliner-text p { font-size: 16px; color: var(--muted); }
.headliner-media { position: relative; min-height: 260px; }
.headliner-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.headliner-media::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, #1b1617 0%, transparent 30%);
}
@media (max-width: 760px) {
  .headliner { grid-template-columns: 1fr; }
  .headliner-media { order: -1; aspect-ratio: 4 / 3; }
  .headliner-media::before { background: linear-gradient(0deg, #1b1617 0%, transparent 35%); }
}

.chip {
  display: inline-block;
  background: var(--ink); color: var(--paper);
  border-radius: 999px; padding: 5px 16px;
  font-size: 14px; line-height: 1.3;
}
.chip-grad { background: var(--grad); color: #fff; font-weight: 700; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.chip-hot { background: var(--orange); color: #fff; font-weight: 700; }

.set-list {
  list-style: none; margin: 24px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(24px, 4vw, 56px);
}
.set-list li {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding-block: 16px; border-bottom: 1px solid var(--line);
}
.set-name { font-size: clamp(1.25rem, 2.3vw, 1.9rem); font-weight: 900; text-transform: uppercase; line-height: 1.05; }
.set-meta { font-size: 13.5px; color: var(--muted); text-align: right; white-space: nowrap; line-height: 1.4; }
@media (max-width: 760px) { .set-list { grid-template-columns: 1fr; } }

/* ---------- Tickets ---------- */

.tier-section { padding-top: clamp(40px, 5vw, 64px); scroll-margin-top: 150px; }
.tier-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 1100px) { .tier-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .tier-grid { grid-template-columns: 1fr; } }

.tier {
  position: relative;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: var(--paper); color: var(--ink);
  padding: 28px 22px 26px; border-radius: 2px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.tier:not(.is-soldout):hover { transform: translateY(-4px); box-shadow: 0 24px 50px -28px rgba(241, 91, 45, .7); }
.chips { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }
.tier-name { margin-top: 16px; font-size: clamp(1.3rem, 1.8vw, 1.55rem); font-weight: 800; line-height: 1.05; }
.tier-dur { margin-top: 6px; font-size: 13px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-dark); }
.tier-price { margin: 10px 0 2px; font-size: clamp(2.3rem, 3.4vw, 2.9rem); font-weight: 900; line-height: 1; }
.perks { list-style: none; margin: 16px 0 24px; padding: 0; width: 100%; display: grid; gap: 9px; text-align: left; font-size: 15px; line-height: 1.4; }
.perks li { display: flex; gap: 10px; align-items: flex-start; }
.perks .star { width: 12px; height: 12px; margin-top: 4px; fill: var(--magenta); }
.tier > .btn { margin-top: auto; }

.tier.is-soldout .tier-price { color: #a39b9e; text-decoration: line-through; text-decoration-thickness: 3px; }
.tier.is-soldout .tier-name, .tier.is-soldout .perks { opacity: .6; }
.waitlist { margin-top: auto; width: 100%; display: grid; gap: 10px; text-align: left; }
.waitlist-hint { font-size: 14px; font-weight: 700; }
.waitlist-row { display: flex; gap: 8px; }
.waitlist input { box-shadow: inset 0 0 0 1px #cfc9cb; padding: 13px 14px; font-size: 15px; min-width: 0; }
.waitlist .btn-dark { padding: 13px 16px; font-size: 15px; }
.waitlist .form-success { font-size: 1.05rem; }
.waitlist .form-success .star { fill: var(--magenta); width: 22px; height: 22px; }

/* ---------- Info ---------- */

.info-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.info-card { background: var(--ink-2); border-radius: 4px; padding: clamp(24px, 3vw, 40px); }
.info-card.span-2 { grid-column: 1 / -1; }
.info-card h2 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); margin-bottom: 22px; }
.info-card h2::after { content: ""; display: block; width: 48px; height: 3px; margin-top: 14px; background: var(--grad); }
.hours { display: flex; gap: clamp(24px, 5vw, 64px); flex-wrap: wrap; }
.hours span { display: block; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.hours strong { display: block; font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 900; line-height: 1; margin-top: 4px; }
.info-card .muted { margin-top: 20px; color: var(--muted); font-size: 15px; }
.star-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; font-size: 17px; }
.star-list li { display: flex; gap: 12px; align-items: flex-start; }
.star-list .star { width: 14px; height: 14px; margin-top: 4px; fill: var(--orange); }
.star-list .cross { width: 14px; height: 14px; margin-top: 4px; flex: none; stroke: var(--muted); }
.info-card.span-2 .star-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 760px) {
  .info-grid { grid-template-columns: 1fr; }
  .info-card.span-2 .star-list { grid-template-columns: 1fr; }
}

.faq-section { padding-top: 0; scroll-margin-top: 100px; }
.faq-section .section-title { margin-bottom: 16px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding-block: 22px; font-size: clamp(1.05rem, 1.6vw, 1.25rem); font-weight: 700;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 14px; height: 14px;
  background:
    linear-gradient(var(--paper), var(--paper)) center / 14px 2px no-repeat,
    linear-gradient(var(--paper), var(--paper)) center / 2px 14px no-repeat;
  transition: transform .25s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: 22px; color: var(--muted); max-width: 62ch; }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(32px, 6vw, 110px); align-items: start;
  padding-block: clamp(48px, 6vw, 80px);
}
.social-card { background: var(--ink); padding: clamp(32px, 4vw, 56px) 28px; text-align: center; border-radius: 2px; }
.social-card h2 { font-size: clamp(1.3rem, 2vw, 1.7rem); line-height: 1.1; margin-bottom: 28px; }
.social-card .social { justify-content: center; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Ticket drawer ---------- */

.drawer-root[hidden] { display: none !important; }
.drawer-overlay {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(10, 8, 9, .6);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .3s ease;
}
.drawer {
  position: fixed; top: 0; right: 0; z-index: 81;
  width: min(460px, 100%); height: 100%;
  display: flex; flex-direction: column;
  background: var(--paper); color: var(--ink);
  transform: translateX(100%); transition: transform .35s cubic-bezier(.2, .8, .2, 1);
}
.drawer-root.is-open .drawer-overlay { opacity: 1; }
.drawer-root.is-open .drawer { transform: none; }
@media (max-width: 600px) {
  .drawer { top: auto; bottom: 0; height: auto; max-height: 92vh; max-height: 92dvh; width: 100%; border-radius: 16px 16px 0 0; transform: translateY(100%); }
}

.drawer-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding: 24px; border-bottom: 1px solid #e0dcdd; }
.drawer-head .eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--magenta); margin-bottom: 6px; }
.drawer-head h2 { font-size: 1.8rem; line-height: 1; }
.drawer-price { margin-top: 8px; font-size: 1.1rem; font-weight: 700; }
.drawer-price small { font-weight: 500; color: var(--muted-dark); }
.drawer .icon-btn { border-color: #cfc9cb; }
.drawer .icon-btn svg { stroke: var(--ink); }

.drawer-body { flex: 1; overflow-y: auto; padding: 24px; display: grid; gap: 28px; align-content: start; }
.fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
.fieldset legend, .stepper-label { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; padding: 0; }
.day-pills { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.day-pill { position: relative; }
.day-pill input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.day-pill span {
  display: grid; gap: 3px; text-align: center;
  padding: 12px 6px; border-radius: 8px;
  box-shadow: inset 0 0 0 1.5px #cfc9cb; cursor: pointer;
  transition: box-shadow .2s, background-color .2s;
}
.day-pill b { font-weight: 900; font-size: 1.05rem; }
.day-pill small { font-size: 11.5px; color: var(--muted-dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.day-pill input:hover + span { box-shadow: inset 0 0 0 1.5px var(--ink); }
.day-pill input:checked + span { background: var(--grad); box-shadow: none; color: #fff; }
.day-pill input:checked + span small { color: rgba(255, 255, 255, .85); }
.day-pill input:focus-visible + span { outline: 2px solid var(--orange); outline-offset: 2px; }

.stepper { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.stepper .stepper-label { margin-bottom: 0; }
.stepper .fine-left { font-size: 13px; color: var(--muted-dark); margin-top: 4px; }
.stepper-ctrl { display: flex; align-items: center; border-radius: 999px; box-shadow: inset 0 0 0 1.5px #cfc9cb; }
.stepper-ctrl button { width: 46px; height: 46px; border: 0; background: none; cursor: pointer; font-size: 22px; line-height: 1; border-radius: 50%; }
.stepper-ctrl button:disabled { opacity: .3; cursor: not-allowed; }
.stepper-ctrl output { min-width: 36px; text-align: center; font-weight: 900; font-size: 1.2rem; }

.addon {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px; border-radius: 10px; cursor: pointer;
  box-shadow: inset 0 0 0 1.5px #cfc9cb;
  transition: box-shadow .2s;
}
.addon:has(input:checked) { box-shadow: inset 0 0 0 2px var(--magenta); }
.addon input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--magenta); flex: none; cursor: pointer; }
.addon b { display: block; font-weight: 700; }
.addon small { display: block; margin-top: 3px; font-size: 13.5px; color: var(--muted-dark); line-height: 1.4; }

.summary { display: grid; gap: 8px; padding-top: 16px; border-top: 1px solid #e0dcdd; font-size: 15px; }
.summary-row { display: flex; justify-content: space-between; gap: 16px; }
.summary-total { font-weight: 900; font-size: 1.3rem; text-transform: uppercase; margin-top: 4px; }

.drawer-foot { padding: 18px 24px 24px; border-top: 1px solid #e0dcdd; display: grid; gap: 10px; }
.fine { font-size: 12.5px; color: var(--muted-dark); text-align: center; }

.done { flex: 1; display: grid; align-content: center; justify-items: center; gap: 14px; text-align: center; padding: 40px 28px 48px; }
.done > .star { width: 64px; height: 64px; fill: var(--magenta); animation: pop .5s cubic-bezier(.2, 1.4, .4, 1) both; }
.done h2 { font-size: clamp(1.8rem, 5vw, 2.4rem); }
.done-summary { font-weight: 500; }
.done-total { font-size: 1.8rem; font-weight: 900; }
.done .fine { max-width: 30ch; }
.done .btn { margin-top: 10px; }
.drawer-head.bare { border-bottom: 0; justify-content: flex-end; padding-bottom: 0; }

@keyframes pop { from { transform: scale(.3) rotate(-45deg); opacity: 0; } }

/* ---------- Toast ---------- */

.toast {
  position: fixed; left: 50%; bottom: 24px; z-index: 90;
  display: flex; align-items: center; gap: 10px;
  max-width: calc(100% - 32px);
  background: var(--paper); color: var(--ink);
  padding: 14px 22px; border-radius: 999px;
  font-weight: 700; font-size: 15px;
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, .6);
  transform: translate(-50%, 20px); opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast .star { fill: var(--magenta); width: 16px; height: 16px; }

/* ---------- Motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
