:root {
  --ink: #0a1730;
  --ink-deep: #060d1e;
  --navy: #10254a;
  --navy-light: #1a3363;
  --gold: #d9a441;
  --gold-bright: #f0c36b;
  --cream: #f3ecdd;
  --muted: #93a4c4;
  --line: rgba(243, 236, 221, 0.14);
  --radius-stub: 6px;
  --accent-normal: #3fc1b0;
  --accent-normal-bright: #6adfd0;
  --accent-vip: var(--gold-bright);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: "Work Sans", "Noto Sans Ethiopic", -apple-system,
    BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

a {
  color: inherit;
}

button {
  font-family: inherit;
}

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

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Language bar ---------- */

.lang-bar {
  position: sticky;
  top: 0;
  z-index: 15;
  background: var(--ink-deep);
  border-bottom: 1px solid var(--line);
  padding-top: env(safe-area-inset-top, 0);
}

.lang-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 24px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 0.78rem;
  font-family: "Noto Sans Ethiopic", "Work Sans", sans-serif;
  padding: 6px 8px;
  cursor: pointer;
  min-height: 32px;
}

.lang-btn--active {
  color: var(--gold-bright);
  font-weight: 600;
}

.lang-bar__sep {
  color: var(--line);
}

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

.hero {
  background: #040d2e;
  position: relative;
}

.hero__banner {
  display: block;
  width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 600px) {
  .hero__banner {
    max-height: none;
    object-fit: contain;
    background: #040d2e;
  }
}

/* Floating over the top of the hero image now, instead of sitting in
   a plain bar below it — visible the instant the page loads, no
   scrolling needed. */
.hero__cta-bar {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 5;
  background: none;
  border: none;
  padding: 0;
}

.hero__cta-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__countdown {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 8px 14px;
}

.hero__cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 32px;
}

.hero__cd-unit span {
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.hero__cd-unit small {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

.hero__cd-sep {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
}

@media (max-width: 480px) {
  .hero__countdown {
    padding: 6px 10px;
    gap: 4px;
  }
  .hero__cd-unit span {
    font-size: 1rem;
  }
  .hero__cd-unit {
    min-width: 24px;
  }
}

/* Pulsing red glow on the hero CTA so it draws the eye immediately. */
.hero__cta-bar .btn {
  background: #c0392b;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 16px 36px;
  animation: hero-cta-glow 2.4s ease-in-out infinite;
}

.hero__cta-bar .btn:hover {
  background: #e74c3c;
}

@keyframes hero-cta-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.5),
      0 0 10px 2px rgba(192, 57, 43, 0.35);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(192, 57, 43, 0),
      0 0 26px 8px rgba(192, 57, 43, 0.65);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(192, 57, 43, 0),
      0 0 10px 2px rgba(192, 57, 43, 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__cta-bar .btn {
    animation: none;
    box-shadow: 0 0 14px 3px rgba(192, 57, 43, 0.5);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  background: var(--gold);
  color: var(--ink-deep);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.btn:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line);
}

.btn--ghost:hover {
  background: rgba(243, 236, 221, 0.06);
  transform: none;
}

/* ---------- Section shell ---------- */

section {
  padding: 96px 0;
}

.section__label {
  font-size: 0.8rem;
  color: var(--gold);
  margin: 0 0 12px;
}

.section__heading {
  font-family: "Fraunces", "Noto Sans Ethiopic", serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  max-width: 20ch;
  margin: 0 0 48px;
}

/* ---------- Venue ---------- */

.venue {
  background: var(--navy);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.venue__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.venue__body p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 42ch;
}

.venue__facts {
  display: grid;
  gap: 20px;
  border-left: 1px solid var(--line);
  padding-left: 32px;
}

.fact dt {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.fact dd {
  margin: 0;
  font-family: "Fraunces", "Noto Sans Ethiopic", serif;
  font-size: 1.2rem;
}

.sponsor-row {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  color: var(--muted);
  font-size: 0.85rem;
}

/* ---------- Package / ticket stub ---------- */

.package {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto;
}

.stub {
  position: relative;
  background: var(--navy-light);
  border: 1px solid var(--line);
  border-radius: var(--radius-stub);
  padding: 40px 40px 32px;
}

.stub::before,
.stub::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--ink);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.stub::before {
  left: -11px;
}

.stub::after {
  right: -11px;
}

.stub__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--line);
  margin-bottom: 24px;
}

.stub__name {
  font-family: "Fraunces", "Noto Sans Ethiopic", serif;
  font-size: 1.5rem;
}

.stub__price {
  font-family: "Fraunces", "Noto Sans Ethiopic", serif;
  font-size: 2.8rem;
  color: var(--gold-bright);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.stub__price small {
  font-size: 1rem;
  color: var(--muted);
  font-family: "Work Sans", sans-serif;
}

.stub ul {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
  color: var(--cream);
}

.stub li {
  display: flex;
  gap: 12px;
  font-size: 0.95rem;
}

.stub li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 8px;
  flex: none;
  background: var(--gold);
  border-radius: 50%;
}

.stub__note {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

.restrictions {
  margin-top: 24px;
  display: flex;
  gap: 18px;
  font-size: 0.78rem;
  color: var(--muted);
}

.restrictions span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
}

/* ---------- Countdown ---------- */

.countdown {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
  text-align: center;
}

.countdown__label {
  margin: 0 0 14px;
  font-size: 0.85rem;
  color: var(--muted);
}

.countdown__digits {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
}

.countdown__unit {
  min-width: 58px;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px 6px;
}

.countdown__unit span {
  display: block;
  font-family: "Fraunces", "Noto Sans Ethiopic", serif;
  font-size: 1.5rem;
  color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
}

.countdown__unit small {
  display: block;
  font-size: 0.65rem;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.countdown__target {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.btn--buy {
  display: block;
  width: 100%;
  margin-top: 28px;
  text-align: center;
  background: #c0392b;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 20px 28px;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(192, 57, 43, 0.45);
  animation: buy-pulse 2.2s ease-in-out infinite;
}

@keyframes buy-pulse {
  0% {
    box-shadow: 0 4px 24px rgba(192, 57, 43, 0.45);
  }
  50% {
    box-shadow: 0 4px 40px rgba(192, 57, 43, 0.75),
      0 0 0 8px rgba(192, 57, 43, 0.08);
  }
  100% {
    box-shadow: 0 4px 24px rgba(192, 57, 43, 0.45);
  }
}

.btn--buy:hover {
  background: #e74c3c;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(192, 57, 43, 0.6);
}

.btn--buy:disabled {
  background: var(--navy);
  color: var(--muted);
  cursor: not-allowed;
}

.btn--buy:disabled:hover {
  background: var(--navy);
  transform: none;
}

/* ---------- Modal ---------- */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 13, 30, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 20;
}

.modal-overlay[hidden] {
  display: none;
}

.modal {
  position: relative;
  width: min(560px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--navy-light);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 40px;
  box-shadow: 0 0 0 1px rgba(217, 164, 65, 0.15), 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(
    90deg,
    var(--accent-normal),
    var(--gold),
    var(--accent-vip)
  );
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.modal__close:hover {
  background: rgba(243, 236, 221, 0.06);
}

@media (max-width: 480px) {
  .countdown__digits {
    gap: 8px;
  }

  .countdown__unit {
    min-width: 50px;
  }

  .telebirr-box__label {
    font-size: 0.68rem;
  }

  .telebirr-box__value--number {
    font-size: 0.95rem;
    letter-spacing: 0.02em;
  }
}

/* ---------- Order form ---------- */

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.field label {
  font-size: 0.82rem;
  color: var(--muted);
}

.field input,
.field select {
  background: var(--navy);
  border: 1px solid var(--line);
  color: var(--cream);
  padding: 13px 14px;
  border-radius: 3px;
  font-size: 0.95rem;
  font-family: inherit;
}

.field input:focus,
.field select:focus {
  border-color: var(--gold);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ticket-picker {
  display: grid;
  gap: 10px;
}

.ticket-picker__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--navy);
  border: 1px solid var(--line);
  border-left: 4px solid var(--row-accent, var(--line));
  border-radius: 4px;
  padding: 12px 14px;
  transition: border-color 160ms ease, background 160ms ease,
    box-shadow 160ms ease;
}

.ticket-picker__row[data-package="normal"] {
  --row-accent: var(--accent-normal);
}

.ticket-picker__row[data-package="vip"] {
  --row-accent: var(--accent-vip);
}

.ticket-picker__row--active {
  background: rgba(243, 236, 221, 0.05);
  box-shadow: 0 0 0 1px var(--row-accent), 0 0 14px rgba(217, 164, 65, 0.12);
}

.ticket-picker__info {
  display: grid;
  gap: 2px;
}

.ticket-picker__name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cream);
}

.ticket-picker__row[data-package="vip"] .ticket-picker__name {
  color: var(--accent-vip);
}

.ticket-picker__row[data-package="normal"] .ticket-picker__name {
  color: var(--accent-normal-bright);
}

.ticket-picker__price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-bright);
  font-family: "Fraunces", serif;
}

.seats-left {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #c0392b;
  background: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.25);
  border-radius: 20px;
  padding: 2px 8px;
  margin-top: 2px;
  letter-spacing: 0.02em;
}

.stepper {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}

.stepper__btn {
  background: var(--navy);
  border: none;
  color: var(--cream);
  font-size: 1.2rem;
  line-height: 1;
  padding: 10px 0;
  cursor: pointer;
}

.stepper__btn:hover {
  background: rgba(243, 236, 221, 0.06);
}

.stepper__btn:disabled {
  color: var(--muted);
  cursor: not-allowed;
  background: var(--navy);
}

.stepper__value {
  text-align: center;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: var(--navy);
  color: var(--cream);
  padding: 10px 0;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
}

.ticket-picker__hint {
  margin: 8px 2px 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.ticket-picker__hint--limit {
  color: var(--gold-bright);
}

.order__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 24px 0;
}

.order__total strong {
  font-family: "Fraunces", "Noto Sans Ethiopic", serif;
  font-size: 1.6rem;
  color: var(--gold-bright);
}

.order__disclaimer {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 16px;
}

.order__success {
  border: 1px solid var(--gold);
  background: rgba(217, 164, 65, 0.08);
  padding: 28px;
  border-radius: 4px;
}

.order__success h3 {
  font-family: "Fraunces", "Noto Sans Ethiopic", serif;
  margin: 0 0 10px;
  font-size: 1.4rem;
  color: var(--gold-bright);
}

.order__success p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 6px;
}

.order__ref {
  font-family: "Fraunces", "Noto Sans Ethiopic", serif;
  color: var(--cream);
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

.order__error {
  color: #e39b9b;
  font-size: 0.85rem;
  margin-top: 4px;
}

/* ── Telebirr deposit box ── */
.telebirr-box {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid #e8420a;
}

.telebirr-box__header {
  background: linear-gradient(135deg, #e8420a 0%, #ff6b35 100%);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.telebirr-box__logo {
  width: 80px;
  height: 40px;
  border-radius: 6px;
  background: #fff;
  flex-shrink: 0;
  object-fit: contain;
  padding: 4px 6px;
  display: block;
}

.telebirr-box__header-text {
  color: #fff;
}

.telebirr-box__header-title {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.telebirr-box__header-sub {
  font-size: 0.75rem;
  opacity: 0.85;
  margin-top: 1px;
}

.telebirr-box__body {
  background: #fff8f6;
  padding: 16px 18px;
  display: grid;
  gap: 10px;
}

.telebirr-box__row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.telebirr-box__label {
  font-size: 0.78rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
}

.telebirr-box__value {
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a1a1a;
  white-space: nowrap;
}

.telebirr-box__value--number {
  font-family: monospace;
  font-size: 1.1rem;
  color: #e8420a;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.telebirr-box__amount {
  background: rgba(232, 66, 10, 0.08);
  border: 1px dashed #e8420a;
  border-radius: 6px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}

.telebirr-box__amount-label {
  font-size: 0.8rem;
  color: #e8420a;
  font-weight: 600;
}

.telebirr-box__amount-value {
  font-weight: 800;
  font-size: 1.15rem;
  color: #e8420a;
}

/* ── Screenshot upload (below Telebirr box) ── */
.screenshot-upload {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  display: grid;
  gap: 10px;
}

.screenshot-upload label {
  font-size: 0.82rem;
  color: var(--muted);
}

.screenshot-upload input[type="file"] {
  color: var(--muted);
  font-size: 0.85rem;
}

.screenshot-upload__drop {
  border: 1.5px dashed var(--line);
  border-radius: 8px;
  padding: 16px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  background: transparent;
}

.screenshot-upload__drop:hover {
  border-color: var(--gold);
  background: rgba(217, 164, 65, 0.04);
}

.screenshot-upload__drop--chosen {
  border-color: #4caf50;
  background: rgba(76, 175, 80, 0.06);
}

.screenshot-upload__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.screenshot-upload__text {
  font-size: 0.85rem;
  color: var(--muted);
  word-break: break-all;
}

.screenshot-upload__drop--chosen .screenshot-upload__text {
  color: #4caf50;
  font-weight: 600;
}

.screenshot-done {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
  color: #7fd39a;
  font-size: 0.9rem;
}

/* ---------- Waiting / ticket ---------- */

.order__waiting {
  text-align: center;
}

.spinner {
  width: 32px;
  height: 32px;
  margin: 0 auto 16px;
  border: 3px solid var(--line);
  border-top-color: var(--gold-bright);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.tickets-result__heading {
  margin: 0 0 16px;
  font-family: "Fraunces", "Noto Sans Ethiopic", serif;
  font-size: 1.3rem;
  color: var(--cream);
}

.tickets-result__list {
  display: grid;
  gap: 18px;
}

.ticket {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gold);
  background: var(--navy);
  min-width: 0;
}

.ticket__main {
  position: relative;
  min-height: 260px;
  background: var(--ink-deep);
  overflow: hidden;
}

.ticket__poster {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 8% 12%;
}

.ticket__stub {
  background: linear-gradient(
    165deg,
    var(--navy-light),
    var(--navy) 60%,
    var(--ink-deep)
  );
  border-left: 2px dashed rgba(217, 164, 65, 0.5);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.ticket__eyebrow {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.ticket__heading {
  margin: 2px 0 12px;
  font-family: "Fraunces", "Noto Sans Ethiopic", serif;
  font-size: 1.15rem;
  line-height: 1.25;
  color: var(--cream);
}

.ticket__badge {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ticket__badge--normal {
  background: rgba(147, 164, 196, 0.16);
  color: var(--cream);
}

.ticket__badge--vip {
  background: rgba(217, 164, 65, 0.2);
  color: var(--gold-bright);
  border: 1px solid var(--gold);
}

.ticket__fields {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
  padding-top: 14px;
  border-top: 1px dotted var(--line);
}

.ticket__fields dt {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 2px;
}

.ticket__fields dd {
  margin: 0;
  color: var(--cream);
  font-size: 0.98rem;
}

.ticket__fields dd.ticket__id {
  font-family: "Fraunces", "Noto Sans Ethiopic", serif;
  color: var(--gold-bright);
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.ticket__qr {
  background: var(--cream);
  padding: 10px;
  border-radius: 6px;
  line-height: 0;
  width: fit-content;
  margin-top: auto;
}

.ticket__qr svg {
  display: block;
  width: 160px;
  height: 160px;
}

.ticket__scan-label {
  margin: 8px 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.ticket__save-hint {
  margin: 14px 0 0;
  font-size: 0.82rem;
  color: var(--gold-bright);
  text-align: center;
  line-height: 1.5;
}

.ticket__download-btn {
  margin-top: 10px;
}

/* Below this width, the poster + stub no longer fit side by side
   without crushing the poster into an unreadable sliver — stack them
   instead: poster as a short banner on top, stub below. */
@media (max-width: 640px) {
  .ticket {
    grid-template-columns: 1fr;
  }

  .ticket__main {
    min-height: 0;
    height: 34vw;
    max-height: 170px;
  }

  .ticket__stub {
    border-left: none;
    border-top: 2px dashed rgba(217, 164, 65, 0.5);
    padding: 18px 16px;
  }

  .ticket__qr svg {
    width: 140px;
    height: 140px;
  }
}

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

footer {
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.footer__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.82rem;
}

/* ---------- Responsive ---------- */

@media (max-width: 820px) {
  .venue__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .venue__facts {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 24px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .wrap {
    padding: 0 18px;
  }

  section {
    padding: 56px 0;
  }

  .section__heading {
    margin-bottom: 32px;
  }

  .stub {
    padding: 28px 22px 26px;
  }

  .stub::before,
  .stub::after {
    display: none;
  }

  .stub__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .package .btn--buy {
    width: 100%;
  }

  .hero__cta-bar-inner {
    padding: 0;
  }

  .btn {
    padding: 14px 20px;
    font-size: 0.9rem;
  }

  .restrictions {
    flex-wrap: wrap;
    gap: 10px;
  }

  .sponsor-row {
    gap: 10px 20px;
    font-size: 0.78rem;
  }

  .modal {
    width: 100%;
    max-height: 100dvh;
    height: 100dvh;
    border-radius: 0;
    padding: 24px 18px;
    padding-top: calc(24px + env(safe-area-inset-top, 0));
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0));
  }

  .modal-overlay {
    padding: 0;
  }

  .field input,
  .field select {
    font-size: 16px; /* prevents iOS auto-zoom on focus */
  }
}
