:root {
  --cream: #efe6d8;
  --paper: #f8ecdc;
  --red: #b91e29;
  --deep-red: #7f1018;
  --charcoal: #151210;
  --pine: #28574a;
  --gold: #a87417;
  --coral: #ef7384;
  --wood: #4b3118;
  --wood-deep: #241a10;
  --shadow: rgba(8, 6, 4, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Avenir Next Condensed", "Arial Narrow", sans-serif;
  color: var(--cream);
  background:
    radial-gradient(circle at 20% 18%, rgba(171, 102, 35, 0.22), transparent 26%),
    radial-gradient(circle at 82% 72%, rgba(168, 116, 23, 0.14), transparent 26%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.16) 0, rgba(0, 0, 0, 0.16) 2px, transparent 2px, transparent 94px),
    linear-gradient(180deg, #553718 0%, #342713 36%, #251d11 100%);
}

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

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(22, 15, 10, 0.74), rgba(22, 15, 10, 0.88)),
    radial-gradient(circle at 18% 24%, rgba(146, 92, 45, 0.24), transparent 24%),
    radial-gradient(circle at 82% 78%, rgba(99, 63, 31, 0.22), transparent 26%);
  backdrop-filter: blur(10px);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-panel {
  width: min(42rem, 100%);
  padding: 1.8rem;
  border-radius: 1.8rem;
  background:
    linear-gradient(180deg, rgba(94, 62, 33, 0.97), rgba(53, 33, 18, 0.99)),
    linear-gradient(135deg, rgba(255, 243, 224, 0.08), transparent 45%);
  border: 1px solid rgba(241, 214, 183, 0.16);
  box-shadow: 0 1.8rem 3.4rem rgba(0, 0, 0, 0.34);
}

.cookie-copy {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.cookie-eyebrow {
  margin: 0;
  color: #efc07a;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 800;
}

.cookie-banner h2 {
  max-width: none;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.cookie-banner p {
  margin: 0;
  line-height: 1.55;
  color: rgba(248, 236, 220, 0.9);
}

.cookie-actions {
  display: flex;
  justify-content: center;
}

.cookie-actions .button {
  min-width: 18rem;
}

.hero {
  position: relative;
  padding: 1.25rem 1.25rem 4rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 34%, rgba(239, 115, 132, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(191, 41, 57, 0.1), transparent 45%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 3.5rem,
      rgba(0, 0, 0, 0.12) 3.5rem,
      rgba(0, 0, 0, 0.12) 3.7rem
    );
  pointer-events: none;
}

.topbar,
.hero-grid,
main,
.footer {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--cream);
}

.brand-cross {
  width: 2.25rem;
  aspect-ratio: 1;
  border-radius: 0.5rem;
  background:
    linear-gradient(var(--paper), var(--paper)) center / 22% 70% no-repeat,
    linear-gradient(var(--paper), var(--paper)) center / 70% 22% no-repeat,
    var(--red);
  box-shadow: 0 0.8rem 1.5rem rgba(185, 30, 41, 0.34);
}

.pill-link,
.button {
  text-decoration: none;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 14rem;
  padding: 0.75rem 1rem;
  color: var(--paper);
  text-align: center;
  background: linear-gradient(180deg, #c5212d, #97131d);
  box-shadow: 0 0.9rem 1.8rem rgba(185, 30, 41, 0.24);
  animation: navPulse 1.8s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  padding: 2rem 0 1rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 800;
}

h1,
h2,
h3,
.badge-main,
.time {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 0.3rem 1.6rem rgba(0, 0, 0, 0.18);
}

h1 span {
  display: block;
  color: var(--coral);
  transform: rotate(-2deg);
}

.lede {
  max-width: 38rem;
  margin: 1.5rem 0 0;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(239, 230, 216, 0.88);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  border: 0;
  cursor: pointer;
  padding: 1rem 1.4rem;
  font-size: 0.88rem;
}

.button-primary {
  color: var(--paper);
  background: linear-gradient(180deg, var(--red), var(--deep-red));
  box-shadow: 0 1rem 2rem rgba(143, 22, 32, 0.22);
}

.button-ghost {
  color: var(--cream);
  background: rgba(23, 18, 16, 0.58);
  border: 2px solid rgba(255, 255, 255, 0.08);
}

.hero-art {
  position: relative;
  min-height: 36rem;
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(46, 35, 21, 0.86), rgba(34, 26, 16, 0.92)),
    linear-gradient(135deg, #41301b, #241c12);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2rem 4rem var(--shadow);
}

.sunburst {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 10rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(168, 116, 23, 0.95) 0 26%, transparent 27%),
    repeating-conic-gradient(
      from 0deg,
      rgba(168, 116, 23, 0.9) 0deg 10deg,
      transparent 10deg 20deg
    );
  opacity: 0.95;
  animation: spin 18s linear infinite;
}

.gwen-badge {
  position: absolute;
  top: 4rem;
  left: 50%;
  transform: translateX(-50%) rotate(-6deg);
  width: min(18rem, 68%);
  padding: 1rem;
  border-radius: 1.25rem;
  text-align: center;
  color: var(--paper);
  background: var(--red);
  box-shadow: 0 1.8rem 3rem rgba(185, 30, 41, 0.28);
}

.badge-top,
.badge-bottom {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}

.badge-main {
  display: block;
  margin: 0.35rem 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
}

.mountains {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  background-repeat: repeat-x;
}

.mountains-back {
  height: 46%;
  background:
    linear-gradient(135deg, transparent 49%, rgba(66, 74, 76, 0.55) 50%) 10% 100% / 12rem 9rem no-repeat,
    linear-gradient(225deg, transparent 49%, rgba(72, 81, 84, 0.5) 50%) 35% 100% / 12rem 9rem no-repeat,
    linear-gradient(135deg, transparent 49%, rgba(64, 72, 76, 0.5) 50%) 62% 100% / 15rem 10rem no-repeat,
    linear-gradient(225deg, transparent 49%, rgba(78, 86, 88, 0.45) 50%) 88% 100% / 14rem 10rem no-repeat;
  opacity: 0.55;
}

.mountains-front {
  height: 35%;
  background:
    linear-gradient(135deg, transparent 49%, var(--pine) 50%) 6% 100% / 11rem 8rem no-repeat,
    linear-gradient(225deg, transparent 49%, #2e5c4f 50%) 31% 100% / 11rem 8rem no-repeat,
    linear-gradient(135deg, transparent 49%, var(--pine) 50%) 58% 100% / 14rem 10rem no-repeat,
    linear-gradient(225deg, transparent 49%, #2e5c4f 50%) 89% 100% / 12rem 9rem no-repeat;
}

.soundwave {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 8rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  height: 8rem;
}

.soundwave span {
  width: 7%;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #c3212d, rgba(195, 33, 45, 0.12));
  animation: bounce 1.3s ease-in-out infinite;
}

.soundwave span:nth-child(1) { height: 30%; }
.soundwave span:nth-child(2) { height: 86%; animation-delay: 0.1s; }
.soundwave span:nth-child(3) { height: 48%; animation-delay: 0.2s; }
.soundwave span:nth-child(4) { height: 98%; animation-delay: 0.3s; }
.soundwave span:nth-child(5) { height: 62%; animation-delay: 0.4s; }
.soundwave span:nth-child(6) { height: 88%; animation-delay: 0.5s; }
.soundwave span:nth-child(7) { height: 40%; animation-delay: 0.6s; }
.soundwave span:nth-child(8) { height: 76%; animation-delay: 0.7s; }
.soundwave span:nth-child(9) { height: 52%; animation-delay: 0.8s; }

.gondola {
  position: absolute;
  inset: 0;
}

.gondola-line {
  position: absolute;
  left: 18%;
  right: 10%;
  top: 9rem;
  height: 3px;
  background: #090909;
  transform: rotate(-11deg);
  transform-origin: left center;
}

.gondola-car {
  position: absolute;
  top: 8.8rem;
  right: 18%;
  padding: 0.65rem 0.9rem;
  border-radius: 1rem 1rem 1.2rem 1.2rem;
  background: #5d3a04;
  color: var(--paper);
  border: 3px solid rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  animation: sway 4s ease-in-out infinite;
}

main {
  display: grid;
  gap: 2rem;
  padding-bottom: 3rem;
}

.anthem-panel,
.listen-panel,
.poster-panel {
  padding: 2rem;
  border-radius: 2rem;
  background: rgba(38, 29, 18, 0.54);
  box-shadow: 0 1.2rem 2.6rem rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.anthem-heading {
  align-items: stretch;
  justify-content: initial;
  gap: 0;
  min-height: 19rem;
  overflow: hidden;
  border-radius: 1.6rem;
  background:
    linear-gradient(180deg, rgba(61, 43, 26, 0.9), rgba(29, 21, 15, 0.94)),
    rgba(42, 31, 20, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 1.3rem 2.6rem rgba(0, 0, 0, 0.18);
}

.anthem-heading-media,
.anthem-heading-copy {
  flex: 1 1 50%;
  min-width: 0;
}

.anthem-heading-reverse .anthem-heading-copy {
  flex: 1 1 58%;
}

.anthem-heading-reverse .anthem-heading-media {
  flex: 1 1 42%;
}

.anthem-heading-media {
  position: relative;
  padding: 1rem;
}

.anthem-heading-media img {
  width: 100%;
  height: calc(100% - 0.5rem);
  max-height: 16.5rem;
  margin: 0 auto;
  border-radius: 1.1rem;
  object-fit: cover;
}

.anthem-heading-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 2.25rem;
}

.anthem-heading-copy .eyebrow {
  margin-bottom: 0.9rem;
}

.anthem-heading-copy h2 {
  max-width: 11ch;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
  max-width: 12ch;
  text-transform: uppercase;
  color: var(--cream);
}

.anthem-grid,
.poster-grid {
  display: grid;
  gap: 1.25rem;
}

.anthem-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  padding: 1.4rem;
  border-radius: 1.4rem;
  background:
    linear-gradient(180deg, rgba(58, 43, 27, 0.75), rgba(34, 25, 17, 0.75)),
    rgba(42, 31, 20, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.card h3,
.schedule-item h3,
.poster h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.card p,
.schedule-item p,
.footer p {
  margin: 0;
  line-height: 1.6;
  color: rgba(239, 230, 216, 0.82);
}

.schedule {
  display: grid;
  gap: 1rem;
}

.schedule-item {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem 1.25rem;
  border-radius: 1.4rem;
  background:
    linear-gradient(180deg, rgba(70, 48, 26, 0.84), rgba(36, 26, 17, 0.92)),
    rgba(42, 31, 20, 0.88);
  border: 1px solid rgba(255, 245, 231, 0.12);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.16);
}

.time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.2rem;
  padding: 0.75rem 0.9rem;
  border-radius: 1rem;
  font-size: 2rem;
  color: #ffffff;
  background: linear-gradient(180deg, #c62732, #8f141d);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.schedule-item h3 {
  color: #fff1db;
}

.schedule-item p {
  color: rgba(255, 244, 228, 0.9);
}

.poster-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.poster {
  position: relative;
  min-height: 20rem;
  padding: 1.1rem;
  border-radius: 1.6rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: var(--paper);
  box-shadow: inset 0 -5rem 6rem rgba(0, 0, 0, 0.2);
}

.poster::before,
.poster::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.9;
}

.poster p,
.poster h3 {
  position: relative;
  z-index: 1;
}

.poster p {
  margin: 0 0 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.72rem;
}

.poster-one {
  background: linear-gradient(160deg, #d7262f 0%, #871520 100%);
}

.poster-one::before {
  inset: auto auto 35% 12%;
  width: 11rem;
  height: 11rem;
  background: rgba(255, 246, 210, 0.18);
}

.poster-one::after {
  inset: 8% 8% auto auto;
  width: 6rem;
  height: 6rem;
  background:
    radial-gradient(circle, var(--paper) 0 18%, transparent 19%),
    repeating-conic-gradient(var(--paper) 0deg 12deg, transparent 12deg 24deg);
}

.poster-two {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(73, 53, 30, 0.85), rgba(39, 27, 17, 0.78)),
    linear-gradient(135deg, #6a4726, #352516);
}

.poster-two::before {
  inset: 10% auto auto 12%;
  width: 70%;
  height: 50%;
  border: 0.8rem solid rgba(239, 230, 216, 0.8);
  border-radius: 1.5rem;
}

.poster-two::after {
  inset: auto 8% 10% auto;
  width: 5rem;
  height: 5rem;
  background: var(--coral);
}

.poster-three {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(160deg, #23483d 0%, #132a24 100%);
}

.poster-three::before {
  inset: 8% 10% auto auto;
  width: 7rem;
  height: 7rem;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.82) 0 10%, transparent 11%),
    repeating-conic-gradient(rgba(255, 255, 255, 0.82) 0deg 8deg, transparent 8deg 24deg);
}

.poster-three::after {
  inset: auto auto 18% 14%;
  width: 12rem;
  height: 12rem;
  background: rgba(255, 255, 255, 0.08);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0 2.5rem;
}

.footer-copy {
  display: grid;
  gap: 0.9rem;
}

.footer p {
  max-width: 40rem;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.player-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.player-status {
  font-weight: 800;
  color: var(--coral);
}

.store-link {
  color: var(--paper);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.itunes-note {
  color: rgba(239, 230, 216, 0.68);
}

.video-panel {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: min(24rem, calc(100vw - 2rem));
  padding: 0.95rem;
  border-radius: 1.7rem;
  background:
    linear-gradient(180deg, rgba(119, 78, 35, 0.96), rgba(73, 47, 24, 0.98)),
    linear-gradient(90deg, rgba(36, 22, 12, 0.2) 0, rgba(36, 22, 12, 0.2) 2px, transparent 2px, transparent 24px),
    linear-gradient(135deg, #8f6338, #4e3218);
  border: 3px solid rgba(244, 222, 194, 0.14);
  box-shadow:
    0 1.6rem 3rem rgba(0, 0, 0, 0.28),
    inset 0 0.18rem 0.3rem rgba(255, 240, 216, 0.18),
    inset 0 -0.4rem 0.8rem rgba(34, 18, 8, 0.38);
  opacity: 0;
  transform: translateY(1rem) scale(0.96);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 20;
}

.video-panel.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.video-panel::before {
  content: "";
  position: absolute;
  inset: 0.45rem;
  border-radius: 1.2rem;
  background:
    linear-gradient(90deg, rgba(49, 29, 14, 0.18) 0, rgba(49, 29, 14, 0.18) 1px, transparent 1px, transparent 20px),
    linear-gradient(180deg, rgba(183, 133, 76, 0.14), rgba(58, 35, 17, 0.14));
  box-shadow:
    inset 0 0 0 1px rgba(253, 235, 211, 0.08),
    inset 0 0.25rem 0.45rem rgba(255, 237, 212, 0.08),
    inset 0 -0.35rem 0.6rem rgba(43, 24, 10, 0.28);
  pointer-events: none;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 0.7rem 0.45rem;
  border-radius: 1.1rem;
  background:
    linear-gradient(180deg, rgba(178, 130, 76, 0.2) 0, rgba(178, 130, 76, 0.04) 14%, transparent 14%, transparent 86%, rgba(28, 16, 8, 0.22) 86%, rgba(28, 16, 8, 0.5) 100%),
    linear-gradient(180deg, rgba(47, 28, 14, 0.95), rgba(24, 16, 10, 0.98)),
    #21160e;
  box-shadow:
    inset 0 0 0 1px rgba(255, 233, 204, 0.08),
    inset 0 0.45rem 0.9rem rgba(255, 237, 216, 0.06),
    inset 0 -0.75rem 1.1rem rgba(0, 0, 0, 0.4);
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 0.7rem 0.45rem;
  border-radius: 0.8rem;
  background:
    linear-gradient(180deg, rgba(25, 18, 11, 0.2), rgba(0, 0, 0, 0.4));
  pointer-events: none;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.1rem;
  background:
    linear-gradient(180deg, rgba(255, 230, 196, 0.14), rgba(255, 230, 196, 0) 0.6rem) top / 100% 1.2rem no-repeat,
    linear-gradient(180deg, rgba(64, 38, 18, 0), rgba(64, 38, 18, 0.55)) bottom / 100% 1.35rem no-repeat,
    linear-gradient(90deg, transparent 0.75rem, rgba(255, 241, 218, 0.08) 0.75rem, rgba(255, 241, 218, 0.08) calc(100% - 0.75rem), transparent calc(100% - 0.75rem));
  pointer-events: none;
}

#youtubePlayer,
#youtubePlayer iframe {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0.75rem;
}

.is-yodeling .gwen-badge,
.is-yodeling .button-primary,
.is-yodeling .poster {
  animation: pulse 0.9s ease-in-out 3;
}

@keyframes bounce {
  0%, 100% { transform: scaleY(0.8); }
  50% { transform: scaleY(1.1); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes sway {
  0%, 100% { transform: translateX(0) rotate(-3deg); }
  50% { transform: translateX(-0.6rem) rotate(2deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

@keyframes navPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .anthem-grid,
  .poster-grid {
    grid-template-columns: 1fr;
  }

  .pill-link{
    margin-top: 50px;
  }

  .hero-art {
    min-height: 30rem;
  }

  .section-heading,
  .footer {
    align-items: start;
    flex-direction: column;
  }

  .anthem-heading {
    min-height: 0;
  }

  .anthem-heading-reverse {
    flex-direction: column-reverse;
  }

  .anthem-heading-media,
  .anthem-heading-copy {
    width: 100%;
  }

  .anthem-heading-media {
    min-height: 15rem;
    padding: 0.55rem;
  }

  .anthem-heading-media img {
    height: 100%;
    max-height: none;
  }

  .footer-actions {
    justify-content: flex-start;
  }

  .video-panel {
    right: 1rem;
    bottom: 1rem;
    width: min(22rem, calc(100vw - 2rem));
  }

  .cookie-banner {
    padding: 1rem;
  }
}

@media (max-width: 640px) {
  .hero,
  .anthem-panel,
  .listen-panel,
  .poster-panel {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .topbar,
  .schedule-item {
    grid-template-columns: 1fr;
  }

  .topbar {
    display: grid;
  }

  .cta-row {
    display: none;
  }

  .hero-art {
    min-height: 25rem;
  }

  .gwen-badge {
    top: 3rem;
  }

  .gondola-line {
    left: 10%;
    right: 5%;
  }

  .cookie-banner {
    padding: 0.75rem;
  }

  .cookie-panel {
    padding: 1.2rem;
  }

  .cookie-actions,
  .cookie-actions .button {
    width: 100%;
  }
}
