@font-face {
  font-family: "RF Shell Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/montserrat-400.woff2") format("woff2");
}
@font-face {
  font-family: "RF Shell Montserrat";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/montserrat-500.woff2") format("woff2");
}
@font-face {
  font-family: "RF Shell Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/montserrat-600.woff2") format("woff2");
}
@font-face {
  font-family: "RF Shell Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/montserrat-700.woff2") format("woff2");
}
@font-face {
  font-family: "RF Shell Montserrat";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/montserrat-800.woff2") format("woff2");
}

body.rf-global-shell-active {
  --rf-shell-paper: #f7f4ee;
  --rf-shell-paper-soft: #fbfaf7;
  --rf-shell-ink: #161916;
  --rf-shell-ink-soft: #555a54;
  --rf-shell-coral: #ff5a36;
  --rf-shell-berry: #c92d5b;
  --rf-shell-gold: #f5b83b;
  --rf-shell-cyan: #4ec5d3;
  --rf-shell-leaf: #2d6a45;
  --rf-shell-gradient: linear-gradient(
    135deg,
    #ff5a36 0%,
    #f5b83b 40%,
    #c92d5b 72%,
    #4ec5d3 100%
  );
}

body.rf-global-shell-active.rf-shell-is-locked {
  overflow: hidden !important;
}

.rf-shell-header,
.rf-shell-footer,
.rf-shell-dialog,
.rf-shell-skip-link {
  box-sizing: border-box;
  color: var(--rf-shell-ink);
  font-family: "RF Shell Montserrat", Montserrat, Arial, sans-serif;
}

.rf-shell-header *,
.rf-shell-footer *,
.rf-shell-dialog * {
  box-sizing: border-box;
}

.rf-shell-header button,
.rf-shell-footer button,
.rf-shell-dialog button {
  color: inherit;
  font: inherit;
  text-transform: none;
}

.rf-shell-header a,
.rf-shell-footer a,
.rf-shell-dialog a {
  color: inherit;
  text-decoration: none;
}

.rf-shell-header img,
.rf-shell-footer img,
.rf-shell-dialog img {
  box-shadow: none;
  display: block;
  max-width: 100%;
}

.rf-shell-header svg,
.rf-shell-footer svg,
.rf-shell-dialog svg {
  display: block;
  height: 1.25em;
  width: 1.25em;
}

.rf-shell-header :focus-visible,
.rf-shell-footer :focus-visible,
.rf-shell-dialog :focus-visible,
.rf-shell-skip-link:focus-visible {
  outline: 3px solid var(--rf-shell-cyan);
  outline-offset: 4px;
}

.rf-shell-skip-link {
  z-index: 2000;
  color: #fff;
  background: var(--rf-shell-ink);
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  transition: transform 0.16s;
  position: fixed;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
}

.rf-shell-skip-link:focus {
  transform: translateY(0);
}

.rf-shell-header {
  z-index: 980;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  height: 108px;
  padding: 0 42px;
  display: grid;
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  transition:
    height 0.3s,
    padding 0.3s,
    background 0.3s,
    box-shadow 0.3s;
}

.rf-shell-header::before {
  z-index: -1;
  content: "";
  pointer-events: none;
  background: #f7f4ee00;
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
  position: absolute;
  inset: 0;
}

.rf-shell-header.is-condensed {
  height: 78px;
}

.rf-shell-header.is-condensed::before {
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  backdrop-filter: blur(24px) saturate(145%);
  background: #f7f4eed1;
  border-color: #1619161a;
  box-shadow: 0 15px 45px #1619161a;
}

.rf-shell-wordmark {
  justify-self: start;
  align-items: center;
  width: clamp(154px, 14vw, 206px);
  display: inline-flex;
  transition: width 0.3s;
}

.rf-shell-wordmark picture,
.rf-shell-wordmark img {
  width: 100%;
}

.rf-shell-wordmark img {
  object-fit: contain;
  height: auto;
}

.rf-shell-header.is-condensed .rf-shell-wordmark {
  width: clamp(132px, 11vw, 172px);
}

.rf-shell-primary-nav {
  align-items: center;
  gap: clamp(20px, 2.5vw, 46px);
  display: flex;
}

.rf-shell-primary-nav a {
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 0.74rem;
  font-weight: 700;
  position: relative;
}

.rf-shell-primary-nav a::after {
  background: var(--rf-shell-coral);
  content: "";
  height: 2px;
  transition: right 0.28s;
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 100%;
}

.rf-shell-primary-nav a:hover::after,
.rf-shell-primary-nav a:focus-visible::after {
  right: 0;
}

.rf-shell-header-actions {
  justify-self: end;
  align-items: center;
  gap: 9px;
  display: flex;
}

.rf-shell-header-tool,
.rf-shell-ticket-button,
.rf-shell-sound-toggle,
.rf-shell-menu-button {
  -webkit-tap-highlight-color: transparent;
}

.rf-shell-header-tool {
  min-height: 48px;
  color: var(--rf-shell-ink);
  cursor: pointer;
  letter-spacing: 0.07em;
  text-transform: uppercase !important;
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
  background: #ffffff80;
  border: 1px solid #ffffffb8;
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  font-size: 0.68rem;
  font-weight: 700;
  transition:
    transform 0.22s,
    background 0.22s;
  display: inline-flex;
  box-shadow:
    inset 0 1px #fffffff2,
    0 12px 32px #16191617;
}

.rf-shell-header-tool:hover {
  background: #ffffffdb;
  transform: translateY(-2px);
}

.rf-shell-header-tool > svg,
.rf-shell-header-tool > span > svg {
  width: 18px;
  height: 18px;
}

.rf-shell-calendar-pill > svg {
  color: var(--rf-shell-berry);
}

.rf-shell-weather-pill > span:first-child {
  color: #c47c12;
}

.rf-shell-sound-toggle,
.rf-shell-menu-button {
  cursor: pointer;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  background: #ffffff8c;
  border: 1px solid #1619162e;
  border-radius: 50%;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  transition:
    transform 0.22s,
    background 0.22s;
  display: grid;
}

.rf-shell-sound-toggle:hover,
.rf-shell-menu-button:hover {
  background: #fff;
  transform: translateY(-2px);
}

.rf-shell-menu-button {
  display: none;
}

.rf-shell-header.is-page-menu-available .rf-shell-menu-button {
  display: grid;
}

.rf-shell-ticket-button {
  letter-spacing: 0.12em;
  text-transform: uppercase !important;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  cursor: pointer;
  background: #ffffffa8;
  border: 1px solid #ffffffb8;
  border-radius: 18px;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
}

.rf-shell-header.is-condensed .rf-shell-header-tool,
.rf-shell-header.is-condensed .rf-shell-ticket-button,
.rf-shell-header.is-condensed .rf-shell-sound-toggle,
.rf-shell-header.is-condensed .rf-shell-menu-button {
  height: 44px;
  min-height: 44px;
}

.rf-shell-glow-target {
  --rf-shell-colors:
    #ff3d6e, #ff9a3d, #ffe14d, #4dff88, #3dd0ff, #7c4dff, #ff3d6e;
  isolation: isolate;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 12px 34px #1619161f,
    0 0 25px #4ec5d31f;
}

.rf-shell-glow-target::before {
  z-index: 0;
  aspect-ratio: 1;
  background: conic-gradient(from 0deg, var(--rf-shell-colors));
  content: "";
  opacity: 0.22;
  pointer-events: none;
  width: max(180%, 560px);
  animation: rf-shell-glow-spin 7s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.rf-shell-glow-target > span,
.rf-shell-glow-target > svg {
  z-index: 1;
  position: relative;
}

@keyframes rf-shell-glow-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rf-shell-menu-arrive {
  from {
    opacity: 0;
    transform: translateX(10px) scale(0.9);
  }
}

.rf-shell-section-shell {
  width: min(1420px, calc(100% - 64px));
  margin-inline: auto;
}

.rf-shell-footer {
  color: #f4f2ec;
  background: #121713;
  border-radius: 50px 50px 0 0;
}

.rf-shell-footer-top {
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  padding-block: 90px;
  display: grid;
}

.rf-shell-wordmark--footer {
  color: #fff;
  background: #ffffffeb;
  border-radius: 22px;
  width: min(230px, 75%);
  padding: 8px;
}

.rf-shell-footer-brand p,
.rf-shell-footer-brand address {
  color: #ffffff8c;
  max-width: 330px;
  margin: 30px 0 0;
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.7;
}

.rf-shell-footer-brand address {
  margin-top: 12px;
}

.rf-shell-footer-socials,
.rf-shell-menu-socials {
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  display: flex;
}

.rf-shell-footer-socials a,
.rf-shell-menu-socials a {
  background: #ffffffed;
  border: 1px solid #ffffff4d;
  border-radius: 13px;
  place-items: center;
  width: 42px;
  height: 42px;
  display: grid;
}

.rf-shell-footer-socials img,
.rf-shell-menu-socials img {
  object-fit: contain;
  width: 21px;
  height: 21px;
}

.rf-shell-footer-links {
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  display: grid;
}

.rf-shell-footer-links > div {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.rf-shell-footer-links small {
  color: #ffffff59;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 7px;
  font-size: 0.66rem;
  font-weight: 700;
}

.rf-shell-footer-links a,
.rf-shell-footer-action {
  width: max-content;
  color: inherit;
  cursor: pointer;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 0;
  font-size: 0.86rem;
  font-weight: 600;
  transition: color 0.18s;
}

.rf-shell-footer-links a:hover,
.rf-shell-footer-action:hover {
  color: var(--rf-shell-gold);
}

.rf-shell-footer-bottom {
  color: #ffffff57;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-top: 1px solid #ffffff1f;
  justify-content: space-between;
  gap: 20px;
  padding-block: 23px 30px;
  font-size: 0.65rem;
  font-weight: 500;
  display: flex;
}

.rf-shell-dialog[hidden] {
  display: none !important;
}

.rf-shell-dialog {
  z-index: 1400;
  position: fixed;
  inset: 0;
  animation: 0.34s both rf-shell-modal-fade;
}

.rf-shell-dialog-backdrop {
  -webkit-backdrop-filter: blur(18px) saturate(80%);
  backdrop-filter: blur(18px) saturate(80%);
  cursor: default;
  background: #080c0ab8;
  border: 0;
  width: 100%;
  position: absolute;
  inset: 0;
}

.rf-shell-menu-dialog {
  background:
    radial-gradient(circle at 20% 15%, #4ec5d345, transparent 32%),
    radial-gradient(circle at 80% 80%, #c92d5b33, transparent 36%),
    var(--rf-shell-paper);
  place-items: center;
  display: grid;
}

.rf-shell-menu-inner {
  overscroll-behavior: contain;
  width: min(760px, calc(100% - 42px));
  max-height: calc(100svh - 42px);
  padding: 34px 8px 26px;
  overflow-y: auto;
  animation: 0.46s cubic-bezier(0.2, 0.8, 0.2, 1) both rf-shell-modal-shell;
}

.rf-shell-eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 22px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.4;
}

.rf-shell-menu-ticket {
  color: #fff !important;
  letter-spacing: 0.08em;
  text-transform: uppercase !important;
  background: linear-gradient(135deg, #f07827 0%, #ff5a36 58%, #f5b83b 100%)
    0/160% 160%;
  border: 1px solid #ffffff7a;
  border-radius: 18px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 58px;
  margin: 0 0 12px;
  padding-inline: 22px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  box-shadow: 0 18px 46px #e05b2a4d;
}

.rf-shell-menu-groups {
  border-top: 1px solid #16191629;
}

.rf-shell-menu-group {
  border-bottom: 1px solid #16191629;
}

.rf-shell-menu-group summary {
  cursor: pointer;
  list-style: none;
  letter-spacing: -0.04em;
  justify-content: space-between;
  align-items: center;
  min-height: 66px;
  font-size: clamp(1.2rem, 4vw, 2.1rem);
  font-weight: 700;
  display: flex;
}

.rf-shell-menu-group summary::-webkit-details-marker {
  display: none;
}

.rf-shell-menu-group summary svg {
  width: 22px;
  height: 22px;
  transition: transform 0.22s;
}

.rf-shell-menu-group[open] summary svg {
  transform: rotate(180deg);
}

.rf-shell-menu-group-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 20px;
  padding: 0 4px 24px;
  display: grid;
}

.rf-shell-menu-group-links a {
  color: var(--rf-shell-ink-soft);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.84rem;
  font-weight: 600;
}

.rf-shell-menu-group-links a:hover,
.rf-shell-menu-group-links a:focus-visible {
  color: var(--rf-shell-ink);
  background: #ffffffa3;
}

.rf-shell-menu-group-links .rf-shell-menu-page-link {
  color: var(--rf-shell-berry);
  grid-column: 1 / -1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  font-weight: 800;
}

.rf-shell-menu-socials {
  justify-content: center;
  margin-top: 22px;
  padding-bottom: 8px;
}

.rf-shell-dialog-close,
.rf-shell-info-close,
.rf-shell-ticket-close {
  z-index: 4;
  cursor: pointer;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: #ffffffbf;
  border: 1px solid #1619162e;
  border-radius: 50%;
  place-items: center;
  width: 50px;
  height: 50px;
  padding: 0;
  display: grid;
}

.rf-shell-dialog-close {
  position: absolute;
  top: 24px;
  right: 24px;
}

.rf-shell-info-dialog,
.rf-shell-ticket-dialog {
  place-items: center;
  padding: 24px;
  display: grid;
}

.rf-shell-info-shell,
.rf-shell-ticket-shell {
  z-index: 2;
  -webkit-backdrop-filter: blur(28px) saturate(130%);
  backdrop-filter: blur(28px) saturate(130%);
  background: #f9f7f1f0;
  border: 1px solid #ffffffc7;
  border-radius: 38px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 45px 140px #0000006b;
  animation: 0.46s cubic-bezier(0.2, 0.8, 0.2, 1) both rf-shell-modal-shell;
}

.rf-shell-info-shell {
  grid-template-rows: auto minmax(0, 1fr);
  width: min(1120px, 94vw);
  max-height: min(880px, 92svh);
  display: grid;
}

.rf-shell-info-shell--weather {
  width: min(760px, 94vw);
}

.rf-shell-info-header {
  background: #ffffff94;
  border-bottom: 1px solid #1619161a;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 94px;
  padding: 16px 19px 16px 25px;
  display: grid;
}

.rf-shell-info-icon {
  color: #fff;
  background: var(--rf-shell-gradient);
  border-radius: 18px;
  place-items: center;
  width: 52px;
  height: 52px;
  display: grid;
}

.rf-shell-info-icon svg {
  width: 24px;
  height: 24px;
}

.rf-shell-info-header p {
  color: var(--rf-shell-ink-soft);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 3px;
  font-size: 0.57rem;
  font-weight: 700;
}

.rf-shell-info-header h2 {
  color: var(--rf-shell-ink);
  letter-spacing: -0.045em;
  text-transform: none;
  margin: 0;
  font-family: inherit;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
}

.rf-shell-info-body {
  overscroll-behavior: contain;
  min-height: 260px;
  padding: clamp(22px, 4vw, 48px);
  overflow: auto;
}

.rf-shell-loading,
.rf-shell-empty {
  min-height: 240px;
  color: var(--rf-shell-ink-soft);
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  display: flex;
}

.rf-shell-loading svg {
  animation: 1s linear infinite rf-shell-spin;
}

.rf-shell-forecast-list {
  gap: 12px;
  display: grid;
}

.rf-shell-forecast-period {
  background: #ffffffb8;
  border: 1px solid #1619161a;
  border-radius: 22px;
  padding: 20px 22px;
}

.rf-shell-forecast-period > div {
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  display: flex;
}

.rf-shell-forecast-period strong {
  font-size: 1.05rem;
}

.rf-shell-forecast-period span {
  color: var(--rf-shell-berry);
  font-size: 1.45rem;
  font-weight: 800;
}

.rf-shell-forecast-period p {
  color: var(--rf-shell-ink-soft);
  margin: 10px 0 0;
  font-size: 0.88rem;
  line-height: 1.7;
}

.rf-shell-weather-source {
  color: var(--rf-shell-berry) !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 24px;
  font-size: 0.67rem;
  font-weight: 700;
  display: inline-flex;
}

.rf-shell-ticket-dialog {
  z-index: 1450;
}

.rf-shell-ticket-shell {
  background:
    radial-gradient(circle at 94% 8%, #4ec5d333, transparent 25%),
    radial-gradient(circle at 8% 100%, #f5b83b33, transparent 28%), #f7f4eef5;
  width: min(990px, 94vw);
  max-height: 94svh;
  padding: clamp(32px, 5vw, 64px);
  overflow: auto;
}

.rf-shell-ticket-close {
  position: absolute;
  top: 20px;
  right: 20px;
}

.rf-shell-ticket-shell h2 {
  color: var(--rf-shell-ink);
  letter-spacing: -0.075em;
  text-transform: none;
  max-width: 720px;
  margin: 17px 0 0;
  font-family: inherit;
  font-size: clamp(3rem, 6.5vw, 6.8rem);
  font-weight: 800;
  line-height: 0.86;
}

.rf-shell-ticket-intro {
  color: var(--rf-shell-ink-soft);
  margin: 22px 0 0;
  font-size: 1rem;
}

.rf-shell-ticket-savings {
  width: fit-content;
  max-width: 100%;
  color: var(--rf-shell-leaf);
  background: #2d6a4514;
  border: 1px solid #2d6a4533;
  border-radius: 999px;
  margin: 10px 0 0;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.rf-shell-ticket-products {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
  display: grid;
}

.rf-shell-ticket-product {
  min-height: 230px;
  color: var(--rf-shell-ink) !important;
  cursor: pointer;
  text-align: left;
  background: #ffffffb8;
  border: 2px solid #ffffff8c;
  border-radius: 27px;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 20px;
  padding: 16px;
  transition:
    transform 0.24s,
    box-shadow 0.24s;
  display: grid;
  box-shadow:
    0 18px 50px #16191617,
    0 0 0 2px #4ec5d32e;
}

.rf-shell-ticket-product:hover {
  transform: translateY(-5px);
  box-shadow:
    0 26px 65px #16191626,
    0 0 0 2px #c92d5b52;
}

.rf-shell-ticket-product-image {
  background: #ddd7ca;
  border-radius: 20px;
  align-self: stretch;
  overflow: hidden;
}

.rf-shell-ticket-product-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.rf-shell-ticket-product > span:last-child {
  flex-direction: column;
  min-width: 0;
  display: flex;
}

.rf-shell-ticket-product small {
  color: var(--rf-shell-ink-soft);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 0.58rem;
  font-weight: 700;
}

.rf-shell-ticket-product strong {
  letter-spacing: -0.05em;
  margin-top: 10px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.rf-shell-ticket-product em {
  color: var(--rf-shell-berry);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 800;
  display: flex;
}

.rf-shell-ticket-product em svg {
  width: 16px;
  height: 16px;
}

.rf-shell-ticket-note {
  color: var(--rf-shell-ink-soft);
  text-align: center;
  margin: 25px 0 0;
  font-size: 0.68rem;
}

.rf-shell-eventon-calendar-parking {
  visibility: hidden !important;
  pointer-events: none !important;
  width: 1200px !important;
  max-width: 90vw !important;
  position: fixed !important;
  top: 0 !important;
  left: -200vw !important;
}

.rf-shell-eventon-live-slot #rf-shell-eventon-calendar-source {
  visibility: visible !important;
  pointer-events: auto !important;
  width: 100%;
}

.rf-shell-eventon-live-slot .evo_lightbox,
.rf-shell-eventon-live-slot .evo_lightbox_body,
.evo_lightbox,
.evo_lightbox_body {
  z-index: 1800 !important;
}

@keyframes rf-shell-modal-fade {
  from {
    opacity: 0;
  }
}

@keyframes rf-shell-modal-shell {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.975);
  }
}

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

@media (width >= 941px) {
  .rf-shell-header.is-page-menu-available .rf-shell-menu-button {
    flex: none;
    animation: 0.32s cubic-bezier(0.2, 0.72, 0.2, 1) both rf-shell-menu-arrive;
  }
}

@media (width >= 941px) and (width <= 1320px) {
  .rf-shell-header.is-page-menu-available {
    grid-template-columns: auto minmax(320px, 1fr) auto;
    gap: 16px;
    padding-inline: 22px;
  }
  .rf-shell-header.is-page-menu-available .rf-shell-primary-nav {
    justify-content: center;
    gap: 14px;
  }
  .rf-shell-header.is-page-menu-available .rf-shell-header-tool {
    justify-content: center;
    width: 44px;
    min-width: 44px;
    padding: 0;
  }
  .rf-shell-header.is-page-menu-available
    .rf-shell-header-tool
    > span:last-child {
    display: none;
  }
  .rf-shell-header.is-page-menu-available .rf-shell-ticket-button {
    padding-inline: 16px;
  }
}

@media (width <= 1180px) {
  .rf-shell-header {
    gap: 20px;
    padding-inline: 28px;
  }
  .rf-shell-primary-nav {
    gap: 18px;
  }
  .rf-shell-primary-nav a {
    font-size: 0.66rem;
  }
}

@media (width <= 1080px) and (width >= 941px) {
  .rf-shell-sound-toggle {
    display: none;
  }
}

@media (width <= 940px) {
  .rf-shell-header,
  .rf-shell-header.is-condensed {
    grid-template-columns: auto 1fr;
    gap: 12px;
    height: 76px;
    padding-inline: 16px;
  }
  .rf-shell-header .rf-shell-wordmark,
  .rf-shell-header.is-condensed .rf-shell-wordmark {
    width: 122px;
  }
  .rf-shell-primary-nav {
    display: none;
  }
  .rf-shell-header-actions {
    justify-content: flex-end;
    gap: 7px;
    min-width: 0;
  }
  .rf-shell-sound-toggle,
  .rf-shell-menu-button {
    display: grid;
  }
  .rf-shell-ticket-button {
    display: inline-flex;
  }
  .rf-shell-section-shell {
    width: min(calc(100% - 42px), 760px);
  }
  .rf-shell-footer-top {
    grid-template-columns: 1fr;
    gap: 70px;
  }
}

@media (width <= 640px) {
  .rf-shell-header,
  .rf-shell-header.is-condensed {
    height: 68px;
    padding-inline: 9px;
  }
  .rf-shell-header .rf-shell-wordmark,
  .rf-shell-header.is-condensed .rf-shell-wordmark {
    width: 92px;
  }
  .rf-shell-header-actions {
    gap: 4px;
  }
  .rf-shell-sound-toggle {
    display: none !important;
  }
  .rf-shell-calendar-pill,
  .rf-shell-menu-button {
    border-radius: 14px;
    justify-content: center;
    width: auto;
    min-width: 41px;
    height: 41px !important;
    min-height: 41px !important;
    padding-inline: 12px;
  }
  .rf-shell-menu-button {
    width: 41px;
    padding: 0;
  }
  .rf-shell-ticket-button {
    width: auto;
    min-width: 84px;
    height: 41px !important;
    min-height: 41px !important;
    padding-inline: 13px;
  }
  .rf-shell-weather-pill {
    height: 41px !important;
    min-height: 41px !important;
    padding-inline: 9px;
  }
  .rf-shell-section-shell {
    width: calc(100% - 36px);
  }
  .rf-shell-footer {
    border-radius: 30px 30px 0 0;
  }
  .rf-shell-footer-top {
    padding-block: 70px;
  }
  .rf-shell-footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 42px 24px;
  }
  .rf-shell-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.6;
  }
  .rf-shell-menu-group-links {
    grid-template-columns: 1fr;
  }
  .rf-shell-menu-group-links .rf-shell-menu-page-link {
    grid-column: 1;
  }
  .rf-shell-info-dialog,
  .rf-shell-ticket-dialog {
    padding: 10px;
  }
  .rf-shell-info-shell,
  .rf-shell-ticket-shell {
    border-radius: 28px;
    width: calc(100vw - 20px);
    max-height: calc(100svh - 20px);
  }
  .rf-shell-info-header {
    grid-template-columns: 42px 1fr 42px;
    gap: 10px;
    min-height: 78px;
    padding: 10px 12px;
  }
  .rf-shell-info-icon,
  .rf-shell-info-close {
    width: 42px;
    height: 42px;
  }
  .rf-shell-ticket-shell {
    padding: 54px 18px 26px;
  }
  .rf-shell-ticket-shell h2 {
    font-size: clamp(2.7rem, 14vw, 4.5rem);
  }
  .rf-shell-ticket-products {
    grid-template-columns: 1fr;
  }
  .rf-shell-ticket-product {
    min-height: 190px;
  }
}

@media (width <= 500px) {
  .rf-shell-calendar-pill,
  .rf-shell-weather-pill {
    border-radius: 14px;
    justify-content: center;
    width: 40px;
    min-width: 40px;
    height: 40px !important;
    min-height: 40px !important;
    padding: 0;
  }
  .rf-shell-calendar-pill > span,
  .rf-shell-weather-pill > span:last-child {
    display: none;
  }
}

@media (width <= 420px) {
  .rf-shell-header .rf-shell-wordmark,
  .rf-shell-header.is-condensed .rf-shell-wordmark {
    width: 80px;
  }
  .rf-shell-calendar-pill,
  .rf-shell-weather-pill,
  .rf-shell-menu-button {
    width: 38px;
    min-width: 38px;
    height: 38px !important;
    min-height: 38px !important;
  }
  .rf-shell-ticket-button {
    min-width: 82px;
    height: 38px !important;
    min-height: 38px !important;
  }
  .rf-shell-weather-pill > span:first-child {
    display: block;
  }
  .rf-shell-dialog-close {
    top: 12px;
    right: 12px;
  }
  .rf-shell-footer-links {
    grid-template-columns: 1fr;
  }
  .rf-shell-ticket-product {
    grid-template-columns: 112px 1fr;
    gap: 14px;
    padding: 10px;
  }
}

@media (width <= 340px) {
  .rf-shell-header,
  .rf-shell-header.is-condensed {
    padding-inline: 7px;
  }
  .rf-shell-header .rf-shell-wordmark,
  .rf-shell-header.is-condensed .rf-shell-wordmark {
    width: 72px;
  }
  .rf-shell-header-actions {
    gap: 3px;
  }
  .rf-shell-calendar-pill,
  .rf-shell-weather-pill,
  .rf-shell-menu-button {
    width: 36px;
    min-width: 36px;
    height: 36px !important;
    min-height: 36px !important;
  }
  .rf-shell-ticket-button {
    min-width: 76px;
    height: 36px !important;
    min-height: 36px !important;
    padding-inline: 9px;
    font-size: 0.66rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rf-shell-header *,
  .rf-shell-footer *,
  .rf-shell-dialog *,
  .rf-shell-header *::before,
  .rf-shell-dialog *::before {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

body.admin-bar .rf-shell-header {
  top: 35px;
}

@media (width <= 782px) {
  body.admin-bar .rf-shell-header {
    top: 49px;
  }
}
