/* Start custom CSS */:root {
  --ink: #14161A;
  --ink-soft: #4A4E57;
  --paper: #FAF7F2;
  --paper-dim: #F1ECE2;
  --card: #FFFFFF;
  --coral: #E8542E;
  --coral-dim: #FDE7DF;
  --teal: #1B6E68;
  --teal-dim: #E4F0EE;
  --gold: #C99A3F;
  --line: #E4DFD3;
  --line-dark: #2A2D33;
  --radius: 14px;
  --display: 'Fraunces', serif;
  --body: 'Inter', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
}

/* Base styles scoped safely for Elementor elements */
.sao-body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
.sao-body a { color: inherit; text-decoration: none; }
.sao-body img { max-width: 100%; display: block; }
.sao-body .wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .sao-body .wrap { padding: 0 20px; } }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(20,22,26,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-dark);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo {
  font-family: var(--display); font-weight: 600; font-size: 20px; color: #fff;
  letter-spacing: 0.2px;
}
.nav-logo span { color: var(--coral); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: #C9CBD1; font-size: 14px; font-weight: 500;
  transition: color .15s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a.current { color: #fff; }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; border-radius: 999px;
  font-size: 14px; font-weight: 600;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-coral { background: var(--coral); color: #fff; }
.btn-coral:hover { background: #D2461E; }
.btn-ghost-dark { border-color: #3A3D44; color: #fff; }
.btn-ghost-dark:hover { border-color: #5A5E66; }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.mobile-toggle { display: none; }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; }
}

/* ---------- HERO ---------- */
.hero {
  background:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(232,84,46,0.35), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 0%, rgba(27,110,104,0.35), transparent 55%),
    var(--ink);
  color: #fff;
  padding: 64px 0 40px;
  position: relative;
  overflow: hidden;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 7px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.2px;
  color: #EDEBE5; margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(36px,5.5vw,58px); line-height: 1.08;
  margin: 0 0 18px; max-width: 760px; letter-spacing: -0.5px;
}
.hero h1 em { font-style: italic; font-weight: 500; color: var(--coral); }
.hero p.sub { font-size: 18px; line-height: 1.6; color: #C9CBD1; max-width: 560px; margin: 0 0 28px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; margin-top: 8px; }
.hstat b { display: block; font-family: var(--display); font-size: 30px; font-weight: 600; color: #fff; }
.hstat span { font-size: 13px; color: #9EA1A8; }

/* ---------- FILTER BAR ---------- */
.filter-bar-shell {
  position: sticky; top: 65px; z-index: 40;
  background: var(--paper); border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 14px rgba(20,22,26,0.04);
}
.filter-bar { display: flex; gap: 12px; align-items: center; padding: 16px 0; flex-wrap: wrap; }
.filter-group { display: flex; flex-direction: column; gap: 4px; }
.filter-group label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.6px; color: var(--ink-soft); }
select, .search-input {
  font-family: var(--body); background: var(--card); border: 1.5px solid var(--line);
  border-radius: 10px; padding: 9px 34px 9px 12px; font-size: 14px; font-weight: 600; color: var(--ink);
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A4E57' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; min-width: 150px; transition: border-color .15s ease;
}
select:hover, select:focus { border-color: var(--ink); outline: none; }
.search-input { min-width: 200px; appearance: auto; background-image: none; padding: 9px 12px; }
.filter-count { margin-left: auto; font-size: 13px; color: var(--ink-soft); font-weight: 600; white-space: nowrap; }
.filter-count strong { color: var(--ink); }
.clear-filters { font-size: 13px; font-weight: 600; color: var(--coral); background: none; border: none; cursor: pointer; padding: 9px 4px; }
.clear-filters:hover { text-decoration: underline; }

/* ---------- GRID ---------- */
.grid-section { padding: 44px 0 90px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 980px) { .grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 660px) { .grid { grid-template-columns: 1fr; } }

.ticket {
  background: var(--card); border-radius: var(--radius); border: 1px solid var(--line);
  overflow: hidden; display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease; position: relative;
}
.ticket:hover { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(20,22,26,0.10); }
.ticket-main { padding: 22px 22px 20px; flex: 1; }
.ticket-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.flag-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--ink); }
.flag-badge .flag { font-size: 18px; }
.tag-exclusive { font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.5px; background: var(--gold); color: #fff; padding: 4px 8px; border-radius: 5px; text-transform: uppercase; }
.ticket h3 { font-family: var(--display); font-weight: 600; font-size: 20px; line-height: 1.25; margin: 0 0 8px; color: var(--ink); }
.ticket .inst { font-size: 13.5px; color: var(--ink-soft); margin: 0 0 14px; }
.subject-pill { display: inline-block; font-size: 12px; font-weight: 600; background: var(--teal-dim); color: var(--teal); padding: 5px 11px; border-radius: 999px; }
.ticket-stub { background: var(--paper-dim); border-top: 2px dashed var(--line); padding: 16px 22px; display: flex; justify-content: space-between; align-items: center; position: relative; }
.ticket-stub::before, .ticket-stub::after { content: ""; position: absolute; top: -11px; width: 22px; height: 22px; background: var(--paper); border-radius: 50%; }
.ticket-stub::before { left: -11px; }
.ticket-stub::after { right: -11px; }
.stub-item { display: flex; flex-direction: column; gap: 2px; }
.stub-item .k { font-family: var(--mono); font-size: 10px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.5px; }
.stub-item .v { font-family: var(--mono); font-size: 13.5px; font-weight: 600; color: var(--ink); }
.stub-cta { background: var(--ink); color: #fff; width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; transition: background .15s ease; }
.ticket:hover .stub-cta { background: var(--coral); }
.no-results { grid-column: 1/-1; text-align: center; padding: 70px 20px; color: var(--ink-soft); }
.no-results h3 { font-family: var(--display); font-size: 24px; color: var(--ink); margin-bottom: 8px; }
.load-more-wrap { text-align: center; margin-top: 44px; }

/* ---------- FOOTER ---------- */
footer { background: var(--ink); color: #C9CBD1; padding: 60px 0 28px; margin-top: 20px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--line-dark); }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-logo { font-family: var(--display); font-weight: 600; font-size: 20px; color: #fff; margin-bottom: 12px; }
.foot-logo span { color: var(--coral); }
.foot-grid p { font-size: 13.5px; line-height: 1.7; color: #9EA1A8; max-width: 280px; }
.foot-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.6px; color: #7D8087; margin: 0 0 14px; }
.foot-col a { display: block; font-size: 14px; color: #C9CBD1; margin-bottom: 10px; }
.foot-col a:hover { color: #fff; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; font-size: 13px; color: #7D8087; flex-wrap: wrap; gap: 12px; }
.foot-bottom a { color: #9EA1A8; margin-left: 18px; }/* End custom CSS */