/* ── Variables ── */
:root {
  --accent:       #670117;
  --accent-light: #cf110c;
  --paper:        #f4f6f9;
  --card:         #ffffff;
  --line:         #edf0f4;
  --ink:          #0c1222;
  --ink-soft:     #525866;
  --radius-lg:    20px;
  --radius-md:    12px;
  --radius-sm:    8px;
  --shadow-card:  0 2px 12px rgba(12, 18, 34, 0.07), 0 1px 3px rgba(12, 18, 34, 0.04);
  --shadow-modal: 0 24px 80px rgba(12, 18, 34, 0.24);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0;
}

button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; }
h1, h2, h3, h4 { margin: 0; }
p { margin: 0; }

/* ── Site Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark-wrap {
  position: relative;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  background: #fff;
}

.brand-mark-wrap img {
  height: 60px;
}

.brand-mark-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      to right,
      #fff 0,
      rgba(255, 255, 255, 0) 20px,
      rgba(255, 255, 255, 0) calc(100% - 12px),
      #fff 100%
    ),
    linear-gradient(
      to bottom,
      #fff 0,
      rgba(255, 255, 255, 0) 8px,
      rgba(255, 255, 255, 0) calc(100% - 8px),
      #fff 100%
    );
}

.header-nav {
  display: flex;
  gap: 2px;
  margin-left: 8px;
}

.nav-link {
  padding: 6px 13px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 560;
  color: var(--ink-soft);
  transition: background 0.15s, color 0.15s;
}

.nav-link:hover { background: var(--paper); color: var(--ink); }
.nav-link.active { color: var(--ink); font-weight: 680; }

.nav-link--reels {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--accent-light);
  font-weight: 680;
}

.nav-link--reels:hover { background: rgba(207, 17, 12, 0.06); color: var(--accent-light); }

.header-signin {
  margin-left: auto;
  height: 36px;
  padding: 0 20px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: #fff;
  font-size: 13.5px;
  font-weight: 660;
  cursor: pointer;
  transition: background 0.15s;
  flex-shrink: 0;
}

.header-signin:hover { background: #1c2840; }

#top-avatar {
  position: absolute;
  z-index: 0;
  height: 300px;
  top: 70px;
  right: 0px;
  opacity: 0.4;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(140deg, var(--accent) 0%, var(--accent-light) 100%);
  padding: 72px 40px 60px;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 14px;
}

.hero-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.6px;
  color: #fff;
}

/* ── Main wrap ── */
.main-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Filter bar ── */
.filter-bar {
  position: sticky;
  top: 64px;
  z-index: 3;
  background: rgba(244, 246, 249, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 14px max(40px, calc((100vw - 1280px) / 2 + 40px));
}

.filter-bar-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.search-wrap {
  position: relative;
  width: 230px;
  flex-shrink: 0;
}

.search-icon {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-soft);
  pointer-events: none;
}

.search-input {
  width: 100%;
  height: 38px;
  padding: 0 12px 0 36px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  font-size: 13.5px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.search-input:focus {
  border-color: var(--accent-light);
  box-shadow: 0 0 0 3px rgba(207, 17, 12, 0.1);
}

.search-input::placeholder { color: var(--ink-soft); opacity: 0.75; }
.search-input::-webkit-search-cancel-button { display: none; }

.filter-groups {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.chip-group {
  display: flex;
  gap: 4px;
}

.chip {
  height: 34px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--card);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 560;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.chip:hover { background: var(--paper); color: var(--ink); }

.chip.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  font-weight: 680;
}

.select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.select-wrap > svg {
  position: absolute;
  left: 11px;
  color: var(--ink-soft);
  pointer-events: none;
  z-index: 1;
}

.filter-select {
  height: 34px;
  padding: 0 32px 0 32px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 560;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.filter-select:focus {
  border-color: var(--accent-light);
  box-shadow: 0 0 0 3px rgba(207, 17, 12, 0.1);
}

.select-wrap::after {
  content: "";
  position: absolute;
  right: 11px;
  width: 10px;
  height: 6px;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23525866' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}

/* ── Results header ── */
.results-header {
  padding: 24px 0 18px;
}

.results-count {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ── Events grid ── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

/* Card wrapper link */
.card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  text-decoration: none;
}

/* ── Event card ── */
.event-card {
  background: transparent;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  cursor: pointer;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  outline: none;
}

.event-card:hover {
  transform: translateY(-4px);
}

.event-card:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 3px;
}

.event-card.is-past { opacity: 0.65; }
.event-card.is-past:hover { transform: none; }

/* Card image */
.card-image-wrap {
  position: relative;
  height: 500px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 16px 48px rgba(12, 18, 34, 0.13), 0 2px 8px rgba(12, 18, 34, 0.06);
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--flyer-position, center center);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.event-card:hover .card-image { transform: scale(1.05); }

/* Date badge */
.card-date-badge {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 2px solid #f5f5f5;
  border-radius: var(--radius-sm);
  padding: 6px 9px;
  text-align: center;
  min-width: 46px;
  flex-shrink: 0;
}

.card-date-month {
  display: block;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 2px;
}

.card-date-day {
  display: block;
  font-size: 21px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.card-past-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 34, 0.25);
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.card-past-badge {
  height: 22px;
  padding: 0 10px;
  background: rgba(12, 18, 34, 0.6);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
}

/* Card body */
.card-body {
  padding: 18px 30px 0;
  border-radius: 0 0 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: var(--card);
  z-index: 2;
}

.card-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.card-name {
  font-size: 17px;
  font-weight: 760;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.15px;
  min-width: 0;
}

.card-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 18px;
}

.card-meta-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.3;
}

.card-meta-row svg { flex-shrink: 0; opacity: 0.6; }

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  padding-bottom: 20px;
  border-top: 1px solid var(--line);
  gap: 12px;
}

.card-price { display: flex; flex-direction: column; gap: 1px; }

.card-price-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-soft);
}

.card-price-value {
  font-size: 20px;
  font-weight: 790;
  color: var(--ink);
  letter-spacing: -0.3px;
  line-height: 1.15;
}

.card-price-value.unavail {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 36px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  font-size: 13.5px;
  font-weight: 680;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.15s, transform 0.1s;
}

.card-cta:hover { opacity: 0.88; }
.card-cta:active { transform: scale(0.97); }

.card-cta.is-disabled {
  background: var(--line);
  color: var(--ink-soft);
  cursor: default;
  transform: none;
  opacity: 1;
}

/* ── Empty state ── */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 80px 20px 0px;
  color: var(--ink-soft);
  text-align: center;
}

/* ── Site footer ── */

#footer-logo {
  display: block;
  margin: 0;
  max-height: 50vh;
}
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--card);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-copy {
  font-size: 12.5px;
  color: var(--ink-soft);
}



/* ── Modal backdrop ── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(12, 18, 34, 0.52);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  padding: 20px;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

/* ── Ticket modal ── */
.ticket-modal {
  width: 540px;
  max-width: 100%;
  max-height: calc(100vh - 56px);
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-modal);
  display: flex;
  flex-direction: column;
  transform: translateY(16px) scale(0.97);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.modal-backdrop.open .ticket-modal { transform: translateY(0) scale(1); }

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 16px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
  background: var(--card);
}

.modal-header-left { display: flex; align-items: center; gap: 14px; }

/* Step indicator */
.modal-step-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
}

.modal-step {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 740;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}

.modal-step.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.modal-step.done {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-color: transparent;
  color: #fff;
}

.modal-step-line {
  width: 18px;
  height: 1.5px;
  background: var(--line);
  border-radius: 1px;
  flex-shrink: 0;
}

.modal-title {
  font-size: 15px;
  font-weight: 760;
  color: var(--ink);
}

.modal-close {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink-soft);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}

.modal-close:hover { background: var(--line); color: var(--ink); }

/* Modal body (scrollable) */
.modal-body {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

/* Event info strip */
.modal-event-strip {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  flex-shrink: 0;
}

.modal-event-thumb {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  object-fit: cover;
  object-position: var(--flyer-position, center center);
  flex-shrink: 0;
  border: 1px solid var(--line);
}

.modal-event-name {
  font-size: 14px;
  font-weight: 760;
  color: var(--ink);
  margin-bottom: 3px;
}

.modal-event-meta {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* Ticket section label */
.modal-section {
  padding: 20px 22px 0;
}

.modal-section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-soft);
  margin-bottom: 12px;
}

/* Ticket option cards */
.ticket-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ticket-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  background: var(--card);
  transition: border-color 0.15s, background 0.15s;
  outline: none;
}

.ticket-option:hover:not(.sold-out) { border-color: #c8d0dc; }

.ticket-option.selected {
  border-color: var(--accent-light);
  background: rgba(207, 17, 12, 0.03);
}

.ticket-option.sold-out {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Custom radio */
.ticket-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--line);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s;
}

.ticket-option.selected .ticket-radio { border-color: var(--accent-light); }

.ticket-radio-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-light);
  transform: scale(0);
  transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ticket-option.selected .ticket-radio-dot { transform: scale(1); }

.ticket-info { flex: 1; min-width: 0; }

.ticket-type-name {
  font-size: 14px;
  font-weight: 680;
  color: var(--ink);
}

.ticket-avail {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 2px;
}

.ticket-avail.low { color: #c8760f; font-weight: 640; }

.ticket-price {
  font-size: 16px;
  font-weight: 760;
  color: var(--ink);
  letter-spacing: -0.2px;
  flex-shrink: 0;
}

/* Quantity row */
.qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 0;
}

.qty-label {
  font-size: 13.5px;
  font-weight: 660;
  color: var(--ink);
}

.qty-ctrl {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.qty-btn {
  width: 40px;
  height: 40px;
  border: 0;
  background: var(--card);
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.qty-btn:hover:not(:disabled) { background: var(--paper); }
.qty-btn:disabled { color: var(--line); cursor: default; }

.qty-value {
  width: 46px;
  text-align: center;
  font-size: 15px;
  font-weight: 720;
  color: var(--ink);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  height: 40px;
  line-height: 40px;
}

/* Modal footer (inside scrollable body, sticky) */
.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  background: var(--card);
  margin-top: 24px;
  position: sticky;
  bottom: 0;
}

.modal-total { display: flex; flex-direction: column; gap: 1px; }

.modal-total-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-soft);
}

.modal-total-value {
  font-size: 23px;
  font-weight: 790;
  color: var(--ink);
  letter-spacing: -0.4px;
}

.modal-footer-btns { display: flex; gap: 10px; align-items: center; }

.btn-back {
  height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.btn-back:hover { background: var(--paper); color: var(--ink); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 22px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
  white-space: nowrap;
}

.btn-primary:hover { opacity: 0.88; }
.btn-primary:active { transform: scale(0.97); }
.btn-primary:disabled { opacity: 0.4; cursor: default; transform: none; }

/* ── Step 2: Order summary ── */
.order-summary {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.order-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  color: var(--ink);
}

.order-row-label { font-weight: 600; }
.order-row-value { font-weight: 720; }
.order-row-sub { font-size: 12.5px; color: var(--ink-soft); margin-top: 1px; margin-bottom: 4px; }

.order-divider { height: 1px; background: var(--line); margin: 6px 0; }

.checkout-section {
  padding: 4px 22px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.checkout-fields {
  padding: 0 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.checkout-field { display: flex; flex-direction: column; gap: 6px; }

.checkout-label {
  font-size: 12.5px;
  font-weight: 650;
  color: var(--ink);
}

.checkout-label .req { color: var(--accent-light); }

.checkout-input {
  height: 40px;
  padding: 0 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.checkout-input:focus {
  border-color: var(--accent-light);
  box-shadow: 0 0 0 3px rgba(207, 17, 12, 0.1);
}

.checkout-input.error { border-color: #e05252; }

.checkout-error {
  font-size: 11.5px;
  color: #e05252;
  display: none;
}

.checkout-error.visible { display: block; }

/* ── Step 3: Success ── */
.success-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 32px 36px;
  text-align: center;
}

.success-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(207, 17, 12, 0.28);
  margin-bottom: 22px;
}

.success-title {
  font-size: 22px;
  font-weight: 790;
  color: var(--ink);
  letter-spacing: -0.2px;
  margin-bottom: 10px;
}

.success-sub {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 28px;
}

.booking-code {
  font-family: "SF Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-light);
  background: rgba(207, 17, 12, 0.08);
  padding: 3px 10px;
  border-radius: 6px;
}

.success-card {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  text-align: left;
  margin-bottom: 32px;
}

.success-card-name {
  font-size: 14.5px;
  font-weight: 720;
  color: var(--ink);
  margin-bottom: 6px;
}

.success-card-meta {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}


/* ── Responsive ── */
@media (max-width: 1100px) {
  .events-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .header-inner { padding: 0 20px; gap: 16px; }
  .header-nav { display: none; }
  .hero { padding: 48px 20px 40px; }
  .main-wrap { padding: 0 20px; }
  .filter-bar {
    margin-left: calc(50% - 50vw);
    padding: 12px 20px;
  }
  .filter-bar-inner { gap: 10px; }
  .search-wrap { width: 100%; max-width: 100%; }
  .filter-groups { width: 100%; }
  .chip-group { flex-wrap: wrap; }
  .events-grid { grid-template-columns: 1fr; gap: 16px; }
  .card-image-wrap { height: 240px; }
  .footer-inner { flex-direction: column; gap: 10px; padding: 20px; }
}
