/* =========================================================
   Northmost Events — Public Site CSS
   Design tokens — Light theme
========================================================= */
:root {
  /* Palette — light theme */
  --color-ink:        #1A1A1A;   /* near-black text */
  --color-stage:      #1A1A1A;   /* near-black — used for text, footer bg */
  --color-stage-2:    #2A2A2A;   /* slightly lighter dark */
  --color-gold:       #C8362A;   /* maple red accent */
  --color-terracotta: #6B6F75;   /* slate grey secondary */
  --color-cream:      #FFFFFF;   /* card / section bg */
  --color-cream-2:    #F4F1EC;   /* warm off-white band sections */
  --color-line:       #E0DBD3;   /* borders/dividers */
  --color-page-bg:    #F8F6F2;   /* page background */

  /* Type */
  --font-display: "Fraunces", serif;
  --font-body: "Work Sans", sans-serif;

  /* Layout */
  --max-width: 1200px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-page-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

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

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

/* =========================================================
   Buttons
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--color-gold);
  color: #ffffff;
}
.btn-primary:hover { background: #e04035; }

.btn-ghost {
  background: transparent;
  color: var(--color-ink);
}
.btn-ghost:hover { background: var(--color-cream-2); }

.btn-outline {
  background: transparent;
  border-color: var(--color-stage);
  color: var(--color-stage);
}
.btn-outline:hover { background: var(--color-stage); color: #ffffff; border-color: var(--color-stage); }

.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: #ffffff;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); }

.btn-small {
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
}

/* =========================================================
   Header
========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 246, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-line);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.85rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-ink);
}
.logo-mark {
  display: block;
  height: 100px;
  width: 100px;
}

.main-nav {
  display: flex;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-ink);
  position: relative;
  padding: 0.25rem 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--color-gold);
  transition: width 0.25s var(--ease);
}
.nav-link:hover::after { width: 100%; }

.header-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
}

/* =========================================================
   Marquee / Hero
========================================================= */
.marquee {
  position: relative;
  background: linear-gradient(155deg, var(--color-stage) 0%, var(--color-stage-2) 55%, #2a2a2a 100%);
  color: #F2EFE9;
  padding: 5.5rem 1.5rem 6rem;
  overflow: hidden;
}

.marquee-grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(200,54,42,0.07) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(0deg, rgba(200,54,42,0.07) 0 1px, transparent 1px 64px);
  mask-image: radial-gradient(circle at 75% 30%, rgba(0,0,0,0.9), transparent 65%);
}

.marquee-content {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  max-width: 760px;
}

.marquee-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  margin: 0 0 1.25rem;
}

.marquee-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  line-height: 1.05;
  margin: 0 0 1.25rem;
}
.marquee-title .line { display: block; }
.marquee-title .accent {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(95deg, var(--color-gold), #ef7c6e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.marquee-sub {
  font-size: 1.05rem;
  color: rgba(242,239,233,0.78);
  max-width: 540px;
  margin: 0 auto 2.25rem;
}

.search-bar {
  display: flex;
  gap: 0.6rem;
  background: rgba(242,239,233,0.08);
  border: 1px solid rgba(242,239,233,0.18);
  border-radius: 999px;
  padding: 0.4rem;
  max-width: 560px;
  margin: 0 auto 1.75rem;
}
.search-bar input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--color-cream);
  padding: 0.65rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.search-bar input::placeholder { color: rgba(242,239,233,0.55); }
.search-bar input:focus { outline: none; }

.marquee-meta {
  font-size: 0.9rem;
  color: rgba(242,239,233,0.7);
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.marquee-meta strong { color: var(--color-gold); }
.marquee-meta .divider { color: rgba(242,239,233,0.3); }

/* =========================================================
   Featured event — ticket stub card
========================================================= */
.featured {
  max-width: var(--max-width);
  margin: -3rem auto 0;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.featured-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px -24px rgba(0,0,0,0.15);
}

.featured-media {
  position: relative;
  background:
    linear-gradient(135deg, var(--color-gold), #8a2a22);
  min-height: 280px;
}
.featured-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.06) 0 12px, transparent 12px 24px);
}
.featured-media.has-image::after {
  background-image: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 100%);
}

.featured-tag {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  background: var(--color-cream);
  color: var(--color-stage);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  z-index: 1;
}

/* Ticket-stub notch motif */
.ticket-notch {
  position: absolute;
  width: 28px; height: 28px;
  background: var(--color-cream);
  border-radius: 50%;
  z-index: 1;
}
.ticket-notch-left { left: -14px; }
.ticket-notch-right { right: -14px; }
.ticket-notch.small { width: 18px; height: 18px; }
.ticket-notch.small.ticket-notch-left { left: -9px; }
.ticket-notch.small.ticket-notch-right { right: -9px; }
.featured-media .ticket-notch { top: 50%; transform: translateY(-50%); }

.featured-body {
  padding: 2.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  justify-content: center;
}

.event-type {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  font-weight: 700;
  margin: 0;
}

.featured-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  margin: 0;
  color: var(--color-stage);
}

.featured-desc {
  color: #55524c;
  margin: 0;
  max-width: 480px;
}

.show-times {
  list-style: none;
  margin: 0.5rem 0 0.75rem;
  padding: 0;
  border-top: 1px dashed var(--color-line);
}
.show-times li {
  display: flex;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--color-line);
  font-size: 0.9rem;
}
.show-times .date { font-weight: 700; color: var(--color-stage); min-width: 60px; }
.show-times .time { color: #76726a; min-width: 70px; }
.show-times .venue { color: #76726a; }

.featured-body .btn { align-self: flex-start; margin-top: 0.5rem; }

/* =========================================================
   Section shared
========================================================= */
.section-head {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.section-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  font-weight: 700;
  margin: 0 0 0.4rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--color-ink);
  margin: 0;
}

.section-footer {
  max-width: var(--max-width);
  margin: 2.5rem auto 0;
  padding: 0 1.5rem;
  text-align: center;
}

/* =========================================================
   Events grid
========================================================= */
.events {
  padding: 5.5rem 0;
}

.filter-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.filter-chip {
  border: 1.5px solid var(--color-line);
  background: var(--color-cream);
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-ink);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.filter-chip:hover { border-color: var(--color-gold); }
.filter-chip.is-active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #ffffff;
}

.event-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.event-card {
  background: var(--color-cream);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -16px rgba(0,0,0,0.14);
}

.event-card-media {
  position: relative;
  height: 150px;
  background: linear-gradient(135deg, #e8e0d5, #d8d0c5);
}
.event-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(200,54,42,0.08) 0 10px, transparent 10px 20px);
}
.event-card-media.has-image::after {
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.35) 100%);
}
.event-card-media .ticket-notch {
  top: auto;
  bottom: -9px;
}
.event-card-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(242,239,233,0.92);
  color: var(--color-stage);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  z-index: 1;
}

.event-card-body {
  padding: 1.4rem 1.4rem 1.6rem;
}
.event-card-date {
  font-size: 0.8rem;
  color: var(--color-terracotta);
  font-weight: 700;
  margin: 0 0 0.35rem;
}
.event-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--color-stage);
}
.event-card-venue {
  font-size: 0.88rem;
  color: #76726a;
  margin: 0 0 1.1rem;
}
.event-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed var(--color-line);
  padding-top: 1rem;
}
.price-from {
  font-weight: 700;
  color: var(--color-stage);
  font-size: 0.95rem;
}

/* =========================================================
   How it works
========================================================= */
.how-it-works {
  background: var(--color-cream-2);
  padding: 5.5rem 0;
  text-align: center;
}
.how-it-works .section-head {
  justify-content: center;
  text-align: center;
}
.how-it-works .section-head > div { text-align: center; }
.how-it-works .section-title,
.how-it-works .section-eyebrow {
  color: var(--color-stage);
}
.how-it-works .section-eyebrow {
  color: var(--color-gold);
}

.steps-row {
  max-width: var(--max-width);
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step {
  background: var(--color-cream);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: left;
}
.step-mark {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-terracotta);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: var(--color-stage);
}
.step p {
  font-size: 0.92rem;
  color: #76726a;
  margin: 0;
}

/* =========================================================
   Newsletter
========================================================= */
.newsletter {
  background: linear-gradient(135deg, #2a2520, #1a1a1a);
  color: #F2EFE9;
  padding: 4rem 1.5rem;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.newsletter-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.newsletter-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
}
.newsletter-sub {
  margin: 0;
  color: rgba(242,239,233,0.75);
  font-size: 0.95rem;
}
.newsletter-form {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.newsletter-form input {
  border: 1px solid rgba(242,239,233,0.25);
  background: rgba(242,239,233,0.08);
  border-radius: 999px;
  padding: 0.85rem 1.3rem;
  color: var(--color-cream);
  font-family: var(--font-body);
  min-width: 220px;
}
.newsletter-form input::placeholder { color: rgba(242,239,233,0.5); }
.newsletter-form input:focus { outline: 2px solid var(--color-gold); }

/* =========================================================
   Footer
========================================================= */
.site-footer {
  background: var(--color-stage);
  color: rgba(242,239,233,0.8);
  padding: 4rem 1.5rem 1.5rem;
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(242,239,233,0.12);
}
.footer-brand .logo { color: var(--color-cream); margin-bottom: 0.75rem; }
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(242,239,233,0.6);
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin: 0 0 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(242,239,233,0.7);
  margin-bottom: 0.6rem;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--color-cream); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: rgba(242,239,233,0.5);
}

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 960px) {
  .featured-card { grid-template-columns: 1fr; }
  .featured-media { min-height: 180px; }
  .featured-media .ticket-notch { top: auto; bottom: -14px; transform: none; }
  .event-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-ghost { display: none; }
  .header-inner { gap: 0.6rem; padding: 0.6rem 1rem; }
  .logo { gap: 0.4rem; min-width: 0; }
  .logo-mark { height: 40px; width: 40px; }
  .logo-text { font-size: 1rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .header-actions .btn { padding: 0.6rem 1rem; font-size: 0.85rem; }
  .nav-toggle { padding: 0.35rem; }
  .event-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .marquee { padding: 3.5rem 1.25rem 5rem; }
  .featured { margin-top: -2.5rem; }
  .featured-body { padding: 1.75rem; }
}

@media (max-width: 420px) {
  .logo-text { display: none; }
}

/* =========================================================
   Inner pages — breadcrumb & page header
========================================================= */
.breadcrumb {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
  font-size: 0.85rem;
  color: var(--color-terracotta);
}
.breadcrumb a { color: var(--color-ink); }
.breadcrumb a:hover { color: var(--color-gold); }
.breadcrumb .sep { margin: 0 0.5rem; color: var(--color-line); }

.page-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
}

.empty-state {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
  color: var(--color-terracotta);
}
.empty-state h2 {
  font-family: var(--font-display);
  color: var(--color-ink);
  margin-bottom: 0.5rem;
}

/* =========================================================
   Event detail page
========================================================= */
.event-detail {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 5.5rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.event-detail-media {
  position: relative;
  border-radius: var(--radius-lg);
  min-height: 320px;
  background: linear-gradient(135deg, var(--color-gold), #8a2a22);
  overflow: hidden;
}
.event-detail-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.06) 0 12px, transparent 12px 24px);
}
.event-detail-media.has-image::after {
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.45) 100%);
}
.event-detail-media .event-card-tag {
  top: 1.5rem; left: 1.5rem;
}

.event-detail-body {
  margin-top: 1.75rem;
}

.event-detail-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  margin: 0.5rem 0 1rem;
  color: var(--color-ink);
}

.event-detail-desc {
  color: var(--color-terracotta);
  font-size: 1.02rem;
  max-width: 620px;
  line-height: 1.7;
}

.event-detail-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  font-size: 0.9rem;
}
.event-detail-meta .meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.event-detail-meta .meta-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: var(--color-terracotta);
  font-weight: 700;
}
.event-detail-meta .meta-value {
  color: var(--color-ink);
  font-weight: 600;
}

/* Shows / showtime picker card */
.shows-card {
  background: var(--color-cream);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: sticky;
  top: 90px;
}
.shows-card h3 {
  font-family: var(--font-display);
  color: var(--color-stage);
  margin: 0 0 1.25rem;
  font-size: 1.25rem;
}
.show-option {
  display: block;
  border: 1.5px solid var(--color-line);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
  color: var(--color-stage);
}
.show-option:hover { border-color: var(--color-gold); }
.show-option input { display: none; }
.show-option.is-selected {
  border-color: var(--color-gold);
  background: rgba(200,54,42,0.06);
}
.show-option .show-date {
  font-weight: 700;
  font-size: 0.95rem;
}
.show-option .show-meta {
  font-size: 0.82rem;
  color: #76726a;
  margin-top: 0.2rem;
}
.shows-card .btn { width: 100%; margin-top: 0.5rem; }

/* =========================================================
   Seat selection page
========================================================= */
.seat-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 5.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.seat-map-card {
  background: var(--color-cream);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  overflow: auto;
}

.seat-map-inner {
  width: max-content;
  min-width: 100%;
}

.stage-label {
  text-align: center;
  background: var(--color-stage);
  color: var(--color-cream);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.7rem;
  border-radius: var(--radius-sm);
  margin-bottom: 2.5rem;
}

.seat-grid {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
  width: max-content;
  min-width: 100%;
}
.seat-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: nowrap;
}
.seat-row-label {
  position: sticky;
  left: 0;
  z-index: 2;
  background: var(--color-cream);
  box-shadow: 3px 0 6px var(--color-cream);
  width: 2.5rem;
  min-width: 2.5rem;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-stage);
  text-align: center;
}
.seat-aisle {
  width: 28px;
  min-width: 28px;
  flex-shrink: 0;
  align-self: stretch;
  margin: 0 4px;
}
.seat-gap {
  flex-shrink: 0;
  align-self: stretch;
  margin: 0 4px;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 5px,
    rgba(0,0,0,0.04) 5px,
    rgba(0,0,0,0.04) 10px
  );
  border-radius: 6px;
}

.seat {
  min-width: 36px;
  height: 36px;
  padding: 0 0.4rem;
  border-radius: 8px 8px 4px 4px;
  border: none;
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: transform 0.15s var(--ease), background 0.15s var(--ease);
  font-family: var(--font-body);
}
.seat:hover:not(:disabled) { transform: translateY(-2px); }

.seat.tier-premium  { background: #e8c4bf; color: var(--color-stage); }
.seat.tier-standard { background: #b8d4f0; color: var(--color-stage); }
.seat.tier-value    { background: #b4d9b4; color: var(--color-stage); }
.seat.tier-free     { background: #f0f0f0; color: #aaa; border: 1px dashed #ccc; }

.seat.is-selected {
  background: var(--color-gold);
  color: var(--color-cream);
}

.seat.is-reserved {
  background: #c9c5bb;
  color: #a39e92;
  cursor: not-allowed;
  text-decoration: line-through;
}

.seat.is-vip {
  outline: 2px solid #b8962e;
  outline-offset: 2px;
}

.vip-badge {
  display: inline-block;
  background: #b8962e;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 1px 5px;
  border-radius: 3px;
  vertical-align: middle;
}

.pub-table-wrap.is-vip .pub-table-svg circle.pub-table-body {
  stroke: #b8962e;
  stroke-width: 3;
}

.seat-legend {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--color-stage);
  background: var(--color-cream);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
}
.seat-legend .legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.seat-legend .legend-swatch {
  width: 18px; height: 18px;
  border-radius: 4px;
  display: inline-block;
  flex-shrink: 0;
}
.legend-swatch.tier-premium  { background: #e8c4bf; }
.legend-swatch.tier-standard { background: #b8d4f0; }
.legend-swatch.tier-value    { background: #b4d9b4; }
.legend-swatch.tier-free     { background: #f0f0f0; border: 1px dashed #ccc; }
.legend-swatch.is-selected   { background: var(--color-gold); }
.legend-swatch.is-reserved   { background: #c9c5bb; }

/* Order summary */
.summary-card {
  background: var(--color-cream);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.summary-card h3 {
  font-family: var(--font-display);
  color: var(--color-stage);
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
}
.summary-event-name {
  color: #76726a;
  font-size: 0.88rem;
  margin: 0 0 1.25rem;
}
.summary-seats {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px dashed var(--color-line);
}
.summary-seats li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--color-line);
  font-size: 0.9rem;
  color: var(--color-stage);
}
.summary-seats li .seat-name-col {
  flex: 1;
}
.seat-remove {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #bbb;
  font-size: 1.25rem;
  line-height: 1;
  padding: 0.25rem 0.4rem;
  min-width: 2rem;
  min-height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  transition: color 0.15s, background 0.15s;
}
.seat-remove:hover {
  color: #c0392b;
  background: #fdf0ee;
}
.ticket-type-toggle {
  flex: 0 0 100%;
  display: flex;
  gap: 4px;
  padding-top: 0.35rem;
}
.ticket-type-toggle .type-btn {
  flex: 1;
  padding: 0.22rem 0.5rem;
  font-size: 0.73rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: #fff;
  cursor: pointer;
  color: var(--color-stage);
  font-family: inherit;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.ticket-type-toggle .type-btn.is-active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #fff;
  font-weight: 600;
}
.badge-child {
  display: inline-block;
  font-size: 0.68rem;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  background: var(--color-gold);
  color: #fff;
  font-weight: 600;
  margin-left: 0.3rem;
  vertical-align: middle;
}
.summary-empty {
  color: #76726a;
  font-size: 0.9rem;
  padding: 1rem 0;
  text-align: center;
}
.summary-totals {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-line);
  font-size: 0.9rem;
  color: var(--color-stage);
}
.summary-totals .row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.summary-totals .row.total {
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-line);
}
.checkout-promo { margin-top: 1rem; }
.checkout-promo-form {
  display: flex;
  gap: 0.5rem;
}
.checkout-promo-form input {
  flex: 1;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--color-line);
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.15s;
}
.checkout-promo-form input:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(184,150,46,0.15);
}
.checkout-promo-form .btn { padding: 0.6rem 1.1rem; font-size: 0.9rem; }
.checkout-promo-applied {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background: var(--color-cream-2);
  border: 1px solid var(--color-line);
  border-radius: 6px;
  padding: 0.6rem 0.85rem;
  font-size: 0.88rem;
  color: var(--color-stage);
}
.btn-link-remove {
  background: none;
  border: none;
  color: var(--color-terracotta);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}
.checkout-promo-error {
  color: #b91c1c;
  font-size: 0.82rem;
  margin: 0.4rem 0 0;
}
.summary-card .btn { width: auto; margin-top: 1.25rem; display: block; margin-left: auto; margin-right: auto; }
.summary-card .btn:disabled,
.summary-card .btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Collapse toggle */
.summary-toggle {
  position: absolute;
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 52px;
  background: var(--color-stage);
  color: var(--color-cream);
  border: none;
  border-radius: 6px 0 0 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: -2px 0 8px rgba(0,0,0,0.12);
  z-index: 5;
}
.summary-toggle span {
  display: inline-block;
  transition: transform 0.25s ease;
}
.summary-content {
  transition: opacity 0.2s ease;
}

@media (max-width: 960px) {
  .event-detail { grid-template-columns: 1fr; }
  .shows-card { position: static; }
}

@media (max-width: 540px) {
  .seat { width: 28px; height: 28px; font-size: 0.62rem; }
  .seat-row-label { width: 1.6rem; min-width: 1.6rem; }
}

/* =========================================================
   Checkout page
========================================================= */
.checkout-layout {
  grid-template-columns: 1.2fr 1fr;
}

.checkout-alert {
  background: #fde8e8;
  color: #b91c1c;
  border: 1px solid #fca5a5;
  border-radius: 6px;
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.checkout-form .checkout-field {
  margin-bottom: 1rem;
}
.checkout-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-stage);
  margin-bottom: 0.3rem;
}
.checkout-optional {
  font-weight: 400;
  color: #999;
  font-size: 0.8rem;
}
.checkout-form input {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--color-line);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.15s;
}
.checkout-form input:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(184,150,46,0.15);
}
.checkout-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.checkout-divider {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #999;
  margin: 1.5rem 0 1rem;
  position: relative;
}
.checkout-divider::before,
.checkout-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 25%;
  height: 1px;
  background: var(--color-line);
}
.checkout-divider::before { left: 0; }
.checkout-divider::after  { right: 0; }

.payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}
.payment-option {
  display: block;
  cursor: pointer;
  border: 2px solid var(--color-line);
  border-radius: var(--radius);
  padding: 1rem 1rem 1rem 1rem;
  position: relative;
  transition: border-color 0.15s, box-shadow 0.15s;
  user-select: none;
}
.payment-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.payment-option.is-selected {
  border-color: var(--color-stage);
  box-shadow: 0 0 0 3px rgba(30,30,30,0.07);
}
.payment-option-radio {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 2px solid #ccc;
  background: #fff;
  transition: all 0.15s;
}
.payment-option.is-selected .payment-option-radio {
  border-color: var(--color-stage);
  background: var(--color-stage);
  box-shadow: inset 0 0 0 3px #fff;
}
.payment-option-title {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  padding-right: 1.4rem;
  margin-bottom: 0.2rem;
}
.payment-option-sub {
  display: block;
  font-size: 0.76rem;
  color: #999;
}
.payment-note {
  font-size: 0.82rem;
  color: #d32f2f;
  font-weight: 700;
  margin-top: 0.6rem;
}

@media (max-width: 960px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-field-row { grid-template-columns: 1fr; }
}

/* =========================================================
   Order confirmation page
========================================================= */
.confirm-wrap {
  max-width: 600px;
  margin: 2.5rem auto 5rem;
  padding: 0 1.5rem;
}

.confirm-card {
  background: var(--color-cream);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  text-align: center;
}

.confirm-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
  font-size: 1.6rem;
  line-height: 56px;
  margin: 0 auto 1rem;
}

.confirm-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-stage);
  margin: 0 0 0.4rem;
}

.confirm-sub {
  color: #76726a;
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
}

.confirm-ref {
  display: inline-block;
  font-family: monospace;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-stage);
  background: var(--color-cream-2, #f5ede0);
  border: 1px dashed var(--color-line);
  border-radius: 6px;
  padding: 0.4rem 1.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.confirm-summary {
  text-align: left;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.confirm-event-name {
  color: #76726a;
  font-size: 0.88rem;
  line-height: 1.6;
}

.payment-instructions {
  text-align: left;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.5rem;
}

.etransfer-instructions {
  background: #f0fdf4;
  border: 1px solid #86efac;
}

.online-instructions {
  background: #eff6ff;
  border: 1px solid #93c5fd;
}

.pi-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-stage);
  margin: 0 0 0.85rem;
}

.pi-steps {
  margin: 0 0 1rem;
  padding-left: 1.4rem;
  font-size: 0.92rem;
  color: var(--color-ink);
  line-height: 1.8;
}

.pi-highlight {
  display: inline-block;
  font-family: monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-stage);
  background: rgba(255,255,255,0.7);
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0 0.4rem;
  margin-top: 0.15rem;
}

.pi-note {
  font-size: 0.85rem;
  color: #555;
  margin: 0;
  border-top: 1px solid rgba(0,0,0,0.07);
  padding-top: 0.75rem;
}

/* =========================================================
   Auth pages (login)
========================================================= */
.auth-layout {
  max-width: 480px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}

.auth-card {
  background: var(--color-cream);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.auth-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-stage);
  margin: 0 0 0.5rem;
}

.auth-sub {
  color: #76726a;
  font-size: 0.92rem;
  margin: 0 0 1.5rem;
}

.auth-error {
  background: rgba(200,54,42,0.1);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-stage);
}

.auth-field input {
  border: 1.5px solid var(--color-line);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-stage);
  background: var(--color-cream);
}
.auth-field input:focus {
  outline: 2px solid var(--color-gold);
  border-color: var(--color-gold);
}

.auth-card .btn { width: 100%; margin-top: 0.5rem; }

/* =========================================================
   My tickets / order list
========================================================= */
.orders-list {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 5.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.order-card {
  background: var(--color-cream);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.order-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-bottom: 1px dashed var(--color-line);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.order-ref {
  font-weight: 700;
  color: var(--color-stage);
  font-size: 0.95rem;
}
.order-date {
  color: #76726a;
  font-size: 0.85rem;
  margin-left: 0.75rem;
}

.order-status {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}
.order-status-completed { background: rgba(60,140,80,0.15); color: #2f6b40; }
.order-status-pending   { background: rgba(200,54,42,0.12); color: var(--color-gold); }
.order-status-cancelled,
.order-status-refunded  { background: rgba(120,120,120,0.15); color: #76726a; }

.order-event h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.25rem;
  color: var(--color-stage);
}
.order-event h3 a { color: var(--color-stage); }
.order-event h3 a:hover { color: var(--color-gold); }

.order-event-meta {
  font-size: 0.85rem;
  color: #76726a;
  margin: 0 0 1rem;
}

.order-seats {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}
.order-seats li {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
  border-bottom: 1px dashed var(--color-line);
  font-size: 0.88rem;
  color: var(--color-stage);
}
.order-seats li:last-child { border-bottom: none; }
.seat-checkin {
  font-size: 0.78rem;
  color: #76726a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.order-totals {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #76726a;
  padding-top: 1rem;
  border-top: 1px solid var(--color-line);
}
.order-totals .order-net {
  font-weight: 700;
  color: var(--color-stage);
  margin-left: auto;
}


/* =========================================================
   Round tables — public seat map
========================================================= */
.tables-pub-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  padding: .5rem 0;
  width: 100%;
}
.pub-table-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: .4rem;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: border-color .2s, background .2s;
}
.pub-table-wrap:hover:not(.is-all-reserved) { background: rgba(200,54,42,.05); border-color: rgba(200,54,42,.2); }
.pub-table-wrap.is-selected { border-color: var(--color-gold); background: rgba(200,54,42,.07); }
.pub-table-wrap.is-all-reserved { opacity: .55; cursor: not-allowed; }
.pub-table-label { font-size: .72rem; color: var(--color-terracotta); font-weight: 600; margin-top: .3rem; text-align: center; }
.pub-table-body { fill: #e8ddd0; stroke: #c4b4a0; stroke-width: 2; transition: fill .15s; }
.pub-table-wrap.is-selected .pub-table-body { fill: rgba(200,54,42,.15); }
.pub-seat-circle { fill: #d6e4f0; stroke: #a0b8c8; stroke-width: 1.5; transition: fill .15s, stroke .15s; }
.pub-seat-circle.is-selected-seat { fill: var(--color-gold); stroke: #8a2a22; }
.pub-seat-circle.is-reserved { fill: #c9c5bb; stroke: #b0aba3; }
