:root {
  --jetwing-pink: #ec168c;
  --jetwing-orange: #ff671f;
  --jetwing-olive: #8f8a1f;
  --jetwing-gold: #b3a128;
  --cream: #fff8ef;
  --cream-2: #fff3df;
  --ink: #2c2825;
  --ink-soft: #5f554f;
  --muted: #7f746d;
  --line: rgba(34, 33, 31, 0.13);
  --card: rgba(255, 255, 255, 0.88);
  --dark: #211714;
  --shadow: 0 24px 70px rgba(52, 39, 30, 0.14);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(236, 22, 140, 0.12), transparent 32rem),
    radial-gradient(circle at 85% 20%, rgba(255, 103, 31, 0.12), transparent 24rem),
    linear-gradient(180deg, var(--cream) 0%, #fff 38%, #fff8ef 100%);
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  width: min(calc(100% - 28px), var(--max));
  position: sticky;
  top: 14px;
  z-index: 10;
  margin: 14px auto 0;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  background: rgba(255, 248, 239, .82);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 18px 50px rgba(43, 28, 22, .08);
}
.brand { display: inline-flex; align-items: center; min-width: 190px; }
.brand img { width: 172px; height: auto; max-height: 58px; object-fit: contain; }
.site-nav { display: flex; gap: 4px; align-items: center; }
.site-nav a {
  padding: 11px 15px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: .92rem;
}
.site-nav a:hover, .site-nav a:focus-visible { background: rgba(236, 22, 140, .09); color: var(--jetwing-pink); }
.nav-toggle { display: none; border: 0; background: var(--jetwing-pink); color: white; border-radius: 999px; width: 42px; height: 42px; }

.section-pad { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; padding: 78px 0; }
.section-pad.compact { padding: 44px 0; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--jetwing-pink);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .74rem;
  font-weight: 800;
}
h1, h2, h3 { line-height: 1.02; letter-spacing: -.04em; margin: 0; }
h1 { font-size: clamp(3rem, 8vw, 6.8rem); max-width: 920px; }
h2 { font-size: clamp(2rem, 4vw, 4rem); }
h3 { font-size: 1.25rem; letter-spacing: -.02em; }
p { line-height: 1.7; }

.hero {
  position: relative;
  margin-top: -22px;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr minmax(240px, 330px);
  align-items: end;
  gap: 28px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(33, 23, 20, .84), rgba(33, 23, 20, .34) 54%, rgba(33, 23, 20, .74)),
    var(--hero-image) center/cover no-repeat;
  box-shadow: var(--shadow);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(180deg, transparent, rgba(33,23,20,.88));
}
.hero-content, .stat-panel { position: relative; z-index: 1; color: white; }
.hero-content { padding: 56px; align-self: end; }
.hero-copy { max-width: 700px; font-size: clamp(1.05rem, 2vw, 1.35rem); color: rgba(255,255,255,.86); }
.hero-actions, .planner-actions, .mini-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn {
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  cursor: pointer;
  min-height: 46px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { color: #fff; background: linear-gradient(135deg, var(--jetwing-pink), var(--jetwing-orange)); box-shadow: 0 14px 30px rgba(236, 22, 140, .24); }
.btn.ghost { color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); }
.btn.soft { color: var(--ink); background: #fff; border: 1px solid var(--line); }
.text-btn { border: 0; background: transparent; color: var(--jetwing-pink); font-weight: 800; cursor: pointer; padding: 8px; }
.text-btn:hover { text-decoration: underline; }

.stat-panel {
  align-self: end;
  margin: 0 28px 42px 0;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: grid;
  gap: 12px;
}
.stat-panel div { background: rgba(255,255,255,.11); padding: 18px; border-radius: 18px; }
.stat-panel strong { display: block; font-size: 2rem; }
.stat-panel span { color: rgba(255,255,255,.72); font-weight: 700; }

.intro-band {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, .72fr);
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.intro-band p:last-child { margin: 0; color: var(--muted); font-size: 1.05rem; }
.section-heading { max-width: 780px; margin-bottom: 24px; }
.section-heading p:last-child { color: var(--muted); font-size: 1.05rem; }

.filters {
  padding: 18px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(260px, 520px) minmax(180px, 280px) auto;
  gap: 12px;
  align-items: end;
  justify-content: start;
  position: relative;
  z-index: 1000;
  overflow: visible;
}
.filters label { display: grid; gap: 8px; font-weight: 800; color: #4a403b; font-size: .86rem; }
.filters input, .filters select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 13px 16px;
  background: #fff;
  color: var(--ink);
  outline: none;
}
.filters input:focus, .filters select:focus { border-color: rgba(236, 22, 140, .5); box-shadow: 0 0 0 4px rgba(236, 22, 140, .08); }
.filters input[type="search"] {
  min-height: 56px;
}
.filters label:first-child { max-width: 520px; }
.filters label:nth-child(2) { max-width: 280px; }
.month-filter-group { position: relative; }
.select-wrap { position: relative; }
.custom-select-trigger {
  width: 100%;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 58px 14px 18px;
  border-radius: 20px;
  border: 1.5px solid rgba(236, 22, 140, .35);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,248,239,.98)),
    linear-gradient(120deg, rgba(236,22,140,.16), rgba(255,103,31,.12), rgba(179,161,40,.12));
  color: var(--ink);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(52, 39, 30, .08);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.custom-select-trigger::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2.4px solid var(--jetwing-pink);
  border-bottom: 2.4px solid var(--jetwing-orange);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
  transition: transform .18s ease;
}
.custom-select-trigger:hover {
  border-color: rgba(236, 22, 140, .5);
  box-shadow: 0 18px 36px rgba(52, 39, 30, .11);
}
.custom-select-trigger:focus-visible,
.custom-select-trigger.open {
  border-color: rgba(236, 22, 140, .72);
  box-shadow: 0 0 0 4px rgba(236, 22, 140, .10), 0 18px 36px rgba(52, 39, 30, .11);
}
.custom-select-trigger.open::after {
  transform: translateY(-35%) rotate(225deg);
}
.custom-select-menu {
  list-style: none;
  margin: 0;
  padding: 8px;
  position: fixed;
  z-index: 999999;
  border-radius: 22px;
  border: 1px solid rgba(236, 22, 140, .22);
  background: #fffaf4;
  box-shadow: 0 28px 70px rgba(33, 23, 20, .26);
  max-height: min(320px, calc(100vh - 140px));
  overflow-y: auto;
  display: none;
}
.custom-select-menu.open { display: block; }
.custom-select-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.custom-select-option:hover,
.custom-select-option:focus-visible {
  background: rgba(236, 22, 140, .08);
  color: var(--jetwing-pink);
  outline: none;
}
.custom-select-option.active {
  background: linear-gradient(120deg, var(--jetwing-pink), var(--jetwing-orange));
  color: #fff;
  box-shadow: 0 12px 24px rgba(236, 22, 140, .24);
}
.custom-select-option .month-count {
  font-size: .82rem;
  opacity: .72;
  font-weight: 800;
}
.custom-select-option.active .month-count { opacity: 1; }
.native-select-fallback {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.month-strip {
  margin: 22px 0 12px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 6px 2px 12px;
}
.month-chip {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}
.month-chip.active, .month-chip:hover { background: var(--ink); color: #fff; }
.month-chip.current { border-color: var(--jetwing-pink); box-shadow: 0 0 0 3px rgba(236, 22, 140, .10); }

.results-bar { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin: 12px 0 20px; color: var(--muted); }
.results-bar p { margin: 0; font-weight: 700; color: var(--ink-soft); }

.month-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 22px;
}
.month-note {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px;
}
.month-note summary { cursor: pointer; font-weight: 800; color: var(--ink); }
.month-note p { margin: 10px 0 0; color: var(--muted); font-size: .95rem; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.event-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.74);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(52, 39, 30, .10);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transform: translateY(0);
  transition: transform .24s ease, box-shadow .24s ease;
}
.event-card:hover { transform: translateY(-5px); box-shadow: 0 28px 70px rgba(52, 39, 30, .16); }
.card-image {
  height: 180px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--jetwing-pink), var(--jetwing-orange));
}
.card-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.04) contrast(1.03); }
.card-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.38)); }
.card-month {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 18px;
  color: white;
  background: rgba(33, 23, 20, .72);
  backdrop-filter: blur(10px);
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  min-width: 88px;
}
.card-month strong {
  font-size: .8rem;
  line-height: 1;
  font-weight: 800;
}
.card-month small {
  font-size: .67rem;
  line-height: 1.2;
  color: rgba(255,255,255,.88);
  font-weight: 700;
}

.save-btn {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  color: white;
  background: rgba(33, 23, 20, .64);
  backdrop-filter: blur(10px);
  font-size: 1.2rem;
}
.save-btn.saved { background: var(--jetwing-pink); }
.card-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: 7px; }
.tagline { margin: 0 0 14px; color: var(--jetwing-pink); font-weight: 700; line-height: 1.45; }
.meta-list { display: grid; gap: 8px; margin: 0 0 14px; }
.meta-line { display: grid; grid-template-columns: 72px 1fr; gap: 8px; font-size: .9rem; color: var(--muted); }
.meta-line strong { color: var(--ink-soft); font-weight: 700; }
.tag-list { display: flex; gap: 7px; flex-wrap: wrap; margin-top: auto; }
.tag {
  font-size: .76rem;
  font-weight: 800;
  color: #4d4038;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(179,161,40,.13);
}
.card-actions { display: flex; gap: 10px; margin-top: 16px; }
.card-actions .btn { flex: 1; padding: 11px 14px; min-height: 42px; }
.no-results {
  grid-column: 1 / -1;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: 38px;
  text-align: center;
  color: var(--muted);
  background: rgba(255,255,255,.52);
}

.planner { padding-top: 40px; transition: filter .3s ease, transform .3s ease; }
.planner.planner-highlight { filter: drop-shadow(0 0 28px rgba(236, 22, 140, .42)); transform: translateY(-4px); }
.planner-box {
  display: grid;
  gap: 18px;
  background: linear-gradient(135deg, #2b1a18, #3d2720);
  color: white;
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow);
}
.saved-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.saved-item {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 132px 1fr;
  min-height: 132px;
}
.saved-item img { width: 100%; height: 100%; object-fit: cover; }
.saved-copy { padding: 14px; display: grid; gap: 5px; align-content: start; }
.saved-item strong { display: block; margin-bottom: 2px; }
.saved-item span { color: rgba(255,255,255,.78); font-size: .9rem; line-height: 1.45; }
.saved-item small { color: rgba(255,255,255,.58); line-height: 1.45; }
.saved-item-actions { display: flex; gap: 12px; margin-top: 8px; }
.text-btn.light { color: #fff; }
.text-btn.danger { color: #ffb2b2; }
.empty-state { color: rgba(255,255,255,.7); margin: 0; }

.company-card {
  border-radius: var(--radius-xl);
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(236,22,140,.18), transparent 28rem),
    #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
}
.company-card p { color: var(--muted); }
.company-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.company-detail { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 16px; background: rgba(255,248,239,.64); }
.company-detail strong { display: block; margin-bottom: 6px; font-weight: 700; color: var(--ink-soft); }
.company-detail span { color: var(--muted); font-size: .95rem; line-height: 1.55; }

.source-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.source-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px;
  background: rgba(255,255,255,.66);
  color: var(--muted);
  font-size: .9rem;
}
.source-item strong { display: block; color: var(--ink); margin-bottom: 4px; }
.source-item a { color: var(--jetwing-pink); font-weight: 800; }

.source-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}


.event-dialog {
  width: min(760px, calc(100% - 32px));
  border: 0;
  border-radius: 28px;
  padding: 0;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 40px 90px rgba(0,0,0,.28);
}
.event-dialog::backdrop { background: rgba(20,12,10,.56); backdrop-filter: blur(3px); }
.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  background: rgba(33,23,20,.78);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}
.dialog-hero { height: 260px; position: relative; overflow: hidden; }
.dialog-hero img { width: 100%; height: 100%; object-fit: cover; }
.dialog-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(0,0,0,.58)); }
.dialog-body { padding: 26px; }
.dialog-body .eyebrow { margin-bottom: 8px; }
.dialog-body h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); }
.dialog-body p { color: var(--muted); }
.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 20px 0; }
.detail-box { background: var(--cream); border: 1px solid var(--line); border-radius: 16px; padding: 14px; }
.detail-box strong { display: block; margin-bottom: 5px; }
.detail-box span { color: var(--muted); }
.description-text { white-space: pre-line; }

.btn.inquiry {
  color: var(--jetwing-pink);
  background: #fff;
  border: 1px solid rgba(236, 22, 140, .32);
  box-shadow: 0 12px 26px rgba(236, 22, 140, .10);
}
.dialog-actions { grid-template-columns: 1fr 1fr; }
.dialog-actions .btn { flex: 1; }
.inquiry-dialog { width: min(620px, calc(100% - 32px)); }
.inquiry-form { padding: 30px; display: grid; gap: 16px; }
.inquiry-form h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.form-help, .form-note { color: var(--muted); margin: 0; }
.form-note { font-size: .88rem; }
.inquiry-form label { display: grid; gap: 8px; color: var(--ink-soft); font-weight: 700; }
.inquiry-form input, .inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cream);
  color: var(--ink);
  padding: 13px 15px;
  outline: none;
  resize: vertical;
}
.inquiry-form input:focus, .inquiry-form textarea:focus {
  border-color: rgba(236, 22, 140, .5);
  box-shadow: 0 0 0 4px rgba(236, 22, 140, .08);
}
.inquiry-actions { margin-top: 4px; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translate(-50%, 140%);
  background: var(--ink);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  z-index: 30;
  transition: transform .24s ease;
  font-weight: 800;
}
.toast.show { transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 140px; }
  .hero-content { padding: 36px; }
  .stat-panel { margin: 0 24px 28px; grid-template-columns: repeat(2,1fr); }
  .filters { grid-template-columns: 1fr 1fr; }
  .filters .btn { grid-column: span 2; }
  .select-wrap { min-width: 0; }
  .cards-grid, .month-summary-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-band, .company-card { grid-template-columns: 1fr; }
  .source-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .site-header { border-radius: 24px; align-items: flex-start; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .site-nav { display: none; position: absolute; top: 64px; left: 0; right: 0; margin: 8px 0 0; padding: 10px; border-radius: 24px; background: rgba(255,248,239,.96); box-shadow: var(--shadow); }
  .site-nav.open { display: grid; }
  .site-nav a { text-align: center; }
  .section-pad { width: min(calc(100% - 22px), var(--max)); padding: 54px 0; }
  .hero-content { padding: 28px; }
  .hero { padding-top: 110px; }
  .stat-panel { grid-template-columns: 1fr; }
  .filters, .cards-grid, .month-summary-grid, .saved-list, .company-grid, .source-list, .detail-grid { grid-template-columns: 1fr; }
  .filters label:first-child, .filters label:nth-child(2) { max-width: 100%; }
  .filters input[type="search"], .custom-select-trigger { min-height: 52px; }
  .custom-select-menu { max-height: 260px; }
  .dialog-actions { flex-direction: column; }
  .saved-item { grid-template-columns: 1fr; }
  .saved-item img { height: 180px; }
  .filters .btn { grid-column: auto; }
  .results-bar { display: grid; }
  h1 { font-size: clamp(2.6rem, 18vw, 4.8rem); }
}

@media print {
  .site-header, .filters, .month-strip, .mini-actions, .planner-actions, .save-btn, .card-actions, .sources, .inquiry-dialog { display: none !important; }
  body { background: white; }
  .hero, .company-card, .planner-box, .event-card { box-shadow: none; border: 1px solid #ddd; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.filters input::placeholder { color: #8d8179; font-weight: 600; }
.month-chip span { color: var(--muted); font-weight: 600; }
.month-chip.active, .month-chip:hover { background: rgba(236,22,140,.08); color: var(--jetwing-pink); }
.month-chip.active span, .month-chip:hover span { color: var(--jetwing-pink); }
.month-note summary::-webkit-details-marker { color: var(--ink-soft); }

.hidden-submit-frame { display: none; width: 0; height: 0; border: 0; visibility: hidden; }


body.month-dropdown-open .custom-select-menu.open {
  pointer-events: auto;
}
body.month-dropdown-open .month-strip,
body.month-dropdown-open .results-bar,
body.month-dropdown-open .month-summary-grid,
body.month-dropdown-open .cards-grid {
  position: relative;
  z-index: 0;
}
.month-strip,
.results-bar,
.month-summary-grid,
.cards-grid {
  position: relative;
}
