@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/manrope-latin.woff2") format("woff2");
}

:root {
  --ink: #171717;
  --paper: #f6f2ea;
  --white: #fff;
  --orange: #f25b25;
  --orange-bright: #ff6a2f;
  --orange-dark: #c83d0d;
  --teal: #62c8cb;
  --muted: #6c6963;
  --line: rgba(23, 23, 23, .13);
  --shadow: 0 28px 80px rgba(18, 15, 12, .16);
  --radius: 24px;
  --shell: 1280px;
  --font: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { font-size: 18px; scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.dialog-open { overflow: hidden; }
body.dock-visible { padding-bottom: 78px; }
img { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, figure { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.055em; line-height: .98; }
[hidden] { display: none !important; }
.ui-icon {
  display: block; width: 1em; height: 1em; flex: 0 0 auto; fill: none;
  stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.ui-icon__fill { fill: currentColor; stroke: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 12px 18px;
  border-radius: 8px; background: #fff; color: var(--ink); font-weight: 800;
  transform: translateY(-150%); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible {
  outline: 3px solid #fff; outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--ink);
}
.shell { width: min(calc(100% - 64px), var(--shell)); margin-inline: auto; }
.section { padding: 118px 0; }

.eyebrow {
  display: flex; align-items: center; gap: 11px; margin-bottom: 20px;
  color: var(--orange-dark); font-size: .9rem; font-weight: 800;
  letter-spacing: .16em; line-height: 1; text-transform: uppercase;
}
.eyebrow > span { width: 31px; height: 2px; background: currentColor; }
.eyebrow--light { color: #ff966f; }

.button, .text-button { border: 0; cursor: pointer; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 23px; border-radius: 999px; font-size: .94rem;
  font-weight: 800; letter-spacing: -.01em;
  transition: color .2s, background .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 46px; padding-inline: 20px; font-size: .92rem; }
.button--large { min-height: 57px; padding-inline: 28px; font-size: 1rem; }
.button--orange { background: var(--orange); color: #fff; box-shadow: 0 10px 32px rgba(242,91,37,.23); }
.button--orange:hover { background: var(--orange-bright); box-shadow: 0 14px 35px rgba(242,91,37,.35); }
.button--outline { border: 1px solid var(--line); background: transparent; }
.button--outline:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.button--white { background: #fff; color: var(--ink); }
.button--white:hover { background: var(--orange); color: #fff; }
.button--dark { background: var(--ink); color: #fff; }
.button--dark:hover { background: var(--orange); }
.button-play { width: .72em; height: .72em; }
.text-link, .text-button {
  display: inline-flex; align-items: center; gap: 9px; padding: 3px 0;
  border-bottom: 1px solid currentColor; background: transparent;
  font-size: 1rem; font-weight: 800; transition: color .2s, gap .2s;
}
.text-link .ui-icon, .text-button .ui-icon { width: .95em; height: .95em; }
.text-link:hover, .text-button:hover { gap: 13px; color: var(--orange-dark); }
.text-link--light { color: rgba(255,255,255,.88); }
.text-link--light:hover { color: #fff; }

/* Hero */
.hero {
  position: relative; min-height: 900px; overflow: hidden; background: #12100f;
  color: #fff; isolation: isolate;
}
.hero-media, .hero-wash { position: absolute; z-index: -2; inset: 0; }
.hero-media picture { display: block; width: 100%; height: 100%; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: saturate(.8) contrast(1.05); transform: scale(1.015);
}
.hero-wash {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12,10,10,.96) 0%, rgba(12,10,10,.79) 39%, rgba(12,10,10,.32) 69%, rgba(12,10,10,.48) 100%),
    linear-gradient(0deg, rgba(12,10,10,.9) 0%, transparent 45%, rgba(12,10,10,.4) 100%);
}
.site-nav {
  position: absolute; z-index: 20; top: 0; left: 0; width: 100%; padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.q2-brand {
  width: 210px;
}
.q2-brand img { width: 100%; height: auto; }
.site-menu { display: flex; align-items: center; gap: 34px; }
.site-menu > a { position: relative; color: rgba(255,255,255,.83); font-size: 1.1rem; font-weight: 700; }
.site-menu > a::after {
  position: absolute; right: 0; bottom: -8px; left: 0; height: 2px;
  background: var(--orange); content: ""; transform: scaleX(0); transform-origin: right;
  transition: transform .25s;
}
.site-menu > a:hover { color: #fff; }
.site-menu > a:hover::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle {
  position: relative; display: none; width: 46px; height: 46px; padding: 0;
  border: 1px solid rgba(255,255,255,.28); border-radius: 50%;
  background: rgba(18,17,16,.5); cursor: pointer;
}
.menu-toggle__icon { position: relative; display: block; width: 20px; height: 14px; }
.menu-toggle__icon > span {
  position: absolute; top: 2px; left: 0; width: 20px; height: 2px;
  background: #fff; transition: transform .2s, top .2s;
}
.menu-toggle__icon > span:last-child { top: 10px; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon > span:first-child { top: 6px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon > span:last-child { top: 6px; transform: rotate(-45deg); }
.hero-layout {
  display: grid; grid-template-columns: minmax(0,1.04fr) minmax(420px,.96fr);
  gap: 72px; align-items: end; min-height: 900px; padding-top: 160px; padding-bottom: 116px;
}
.hero-copy { max-width: 720px; padding-bottom: 26px; }
.hero-copy h1 {
  max-width: 760px; margin-bottom: 30px; color: #fff;
  font-size: clamp(4.4rem,7.8vw,7.2rem); font-weight: 800;
  line-height: .84; text-transform: uppercase;
}
.hero-intro {
  max-width: 640px; margin-bottom: 36px; color: rgba(255,255,255,.82);
  font-size: clamp(1rem,1.4vw,1.18rem); line-height: 1.72;
}
.hero-actions { display: flex; align-items: center; gap: 28px; }
.live-card {
  display: grid; grid-template-columns: 148px minmax(0,1fr); gap: 26px; align-items: center;
  align-self: end; padding: 24px; border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius); background: rgba(17,15,14,.76);
  box-shadow: 0 25px 75px rgba(0,0,0,.35); backdrop-filter: blur(22px);
}
.artwork-wrap { position: relative; }
.live-artwork img {
  width: 148px; aspect-ratio: 1; border-radius: 14px; object-fit: cover;
  box-shadow: 0 14px 34px rgba(0,0,0,.32);
}
.live-pill {
  position: absolute; top: 9px; left: 9px; display: inline-flex; align-items: center;
  gap: 6px; padding: 6px 9px; border-radius: 999px; background: var(--orange);
  color: #fff; font-size: .78rem; font-weight: 800; letter-spacing: .11em;
  line-height: 1; text-transform: uppercase;
}
.live-pill i, .player-dock__track > span i {
  width: 6px; height: 6px; border-radius: 50%; background: currentColor;
  box-shadow: 0 0 0 4px rgba(255,255,255,.16);
}
.player-kicker {
  margin-bottom: 8px; color: rgba(255,255,255,.64); font-size: .86rem;
  font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
}
.live-title {
  display: -webkit-box; overflow: hidden; margin-bottom: 3px; color: #fff;
  font-size: clamp(1.15rem,1.8vw,1.6rem); font-weight: 800; line-height: 1.18;
  -webkit-box-orient: vertical; -webkit-line-clamp: 2;
}
.live-artist {
  overflow: hidden; margin-bottom: 13px; color: rgba(255,255,255,.7);
  font-size: 1.05rem; text-overflow: ellipsis; white-space: nowrap;
}
.feed-status { margin: 12px 0 0; color: rgba(255,255,255,.56); font-size: .86rem; }
.player-controls {
  grid-column: 1/-1; display: flex; align-items: center; gap: 18px;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12);
}
.play-control {
  position: relative; display: grid; flex: 0 0 auto; width: 50px; height: 50px;
  place-items: center; border: 0; border-radius: 50%; background: var(--orange);
  color: #fff; cursor: pointer; box-shadow: 0 10px 28px rgba(242,91,37,.28);
  transition: background .2s, transform .2s;
}
.play-control:hover { background: var(--orange-bright); transform: scale(1.05); }
.play-control__play, .play-control__pause { width: 18px; height: 18px; }
.play-control__play { margin-left: 2px; }
.play-control__pause { display: none; }
body.is-playing .play-control__play { display: none; }
body.is-playing .play-control__pause { display: block; }
.equalizer { display: flex; align-items: center; gap: 3px; width: 29px; height: 30px; }
.equalizer i {
  width: 3px; height: 8px; border-radius: 3px; background: var(--orange);
  opacity: .55; transform-origin: bottom;
}
body.is-playing .equalizer i { animation: equalize .9s ease-in-out infinite alternate; opacity: 1; }
body.is-playing .equalizer i:nth-child(2) { animation-delay: -.55s; }
body.is-playing .equalizer i:nth-child(3) { animation-delay: -.2s; }
body.is-playing .equalizer i:nth-child(4) { animation-delay: -.7s; }
@keyframes equalize { to { height: 25px; } }
.volume-control { display: flex; align-items: center; gap: 10px; width: min(155px,40%); margin-left: auto; }
.volume-control svg {
  width: 20px; fill: none; stroke: rgba(255,255,255,.7);
  stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7;
}
.volume-control input { width: 100%; height: 24px; accent-color: var(--orange); cursor: pointer; }
.popout-control {
  display: inline-flex; min-height: 38px; padding: 0 12px; border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px; background: rgba(255,255,255,.05); color: rgba(255,255,255,.76);
  align-items: center; gap: 7px; font-size: .86rem; font-weight: 800; cursor: pointer;
  transition: border-color .2s, background .2s, color .2s, transform .2s;
}
.popout-control:hover { border-color: #fff; background: #fff; color: var(--ink); transform: translateY(-1px); }
.popout-control svg {
  width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.service-links { display: flex; flex-wrap: wrap; gap: 7px; }
.service-link {
  display: inline-flex; align-items: center; gap: 7px; min-height: 32px; padding: 0 11px;
  border: 1px solid var(--line); border-radius: 999px; color: var(--muted);
  font-size: .86rem; font-weight: 800; transition: border-color .2s, background .2s, color .2s;
}
.service-link:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.service-links--hero .service-link { border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.68); }
.service-links--hero .service-link:hover { border-color: #fff; background: #fff; color: var(--ink); }
.service-links--hero .service-link,
.player-dock__services .service-link { width: 36px; min-height: 36px; padding: 0; justify-content: center; }
.service-links--hero .service-link__label,
.player-dock__services .service-link__label {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0);
}
.service-mark { display: inline-grid; width: 15px; height: 15px; flex: 0 0 auto; place-items: center; line-height: 1; }
.service-mark svg { width: 100%; height: 100%; fill: currentColor; }
.hero-scroll {
  position: absolute; right: 27px; bottom: 34px; display: flex; align-items: center;
  gap: 12px; color: rgba(255,255,255,.5); font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  transform: rotate(-90deg) translateX(100%); transform-origin: bottom right;
}
.hero-scroll span { width: 50px; height: 1px; background: rgba(255,255,255,.35); }

/* Sections and playlist */
.section-heading { margin-bottom: 50px; }
.section-heading--row { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.section-heading--row > div { max-width: 760px; }
.section-heading h2, .creative-copy h2, .sound-copy h2 {
  margin-bottom: 22px; font-size: clamp(2.4rem,4vw,4.4rem); font-weight: 800;
}
.section-heading > p, .section-heading > div > p:last-child {
  max-width: 650px; margin-bottom: 0; color: var(--muted); font-size: 1rem;
}
.section-heading--compact { max-width: 820px; }
.playlist-section {
  background: radial-gradient(circle at 97% 4%, rgba(242,91,37,.08), transparent 29%), var(--paper);
}
.recent-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.song-card {
  display: grid; grid-template-columns: 132px minmax(0,1fr); min-height: 132px;
  overflow: hidden; border: 1px solid rgba(23,23,23,.09); border-radius: 14px;
  background: rgba(255,255,255,.7); box-shadow: 0 8px 30px rgba(33,27,21,.035);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.song-card:not(.song-card--loading):hover {
  border-color: rgba(242,91,37,.35); box-shadow: 0 15px 45px rgba(33,27,21,.09);
  transform: translateY(-4px);
}
.song-card__art { position: relative; overflow: hidden; aspect-ratio: 1; background: #ebe5db; }
.song-card__art img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.song-card:hover .song-card__art img { transform: scale(1.04); }
.song-card__number {
  position: absolute; top: 8px; left: 8px; display: grid; min-width: 25px;
  height: 25px; padding: 0 6px; place-items: center; border-radius: 999px;
  background: rgba(20,18,17,.72); color: #fff; font-size: .78rem; font-weight: 800;
}
.song-card__body {
  display: flex; min-width: 0; padding: 16px 15px; flex-direction: column; justify-content: center;
}
.song-card__title, .song-card__artist { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.song-card__title { margin: 0 0 2px; font-size: 1rem; font-weight: 800; }
.song-card__artist { margin: 0 0 12px; color: var(--muted); font-size: .9rem; }
.song-card .service-link { width: 31px; min-height: 31px; padding: 0; justify-content: center; }
.song-card .service-link__label {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0);
}
.skeleton {
  display: block; background: linear-gradient(90deg,#e8e2d9 20%,#f7f3ec 38%,#e8e2d9 56%);
  background-size: 200% 100%; animation: shimmer 1.5s infinite;
}
.skeleton--line { width: 85%; height: 11px; margin-bottom: 10px; border-radius: 5px; }
.skeleton--short { width: 55%; }
@keyframes shimmer { to { background-position: -200% 0; } }
.feed-message {
  margin: 26px 0 0; padding: 18px 20px; border-radius: 12px;
  background: #fff1e9; color: #7f2c0e; font-weight: 700;
}
.full-playlist {
  margin-top: 55px; padding: 40px; border: 1px solid var(--line);
  border-radius: var(--radius); background: rgba(255,255,255,.68);
}
.full-playlist__heading {
  display: flex; align-items: end; justify-content: space-between; gap: 30px;
  padding-bottom: 28px; border-bottom: 1px solid var(--line);
}
.full-playlist__heading h3 { margin-bottom: 0; font-size: clamp(1.8rem,3vw,2.6rem); }
.full-playlist__heading > p { margin-bottom: 2px; color: var(--muted); font-size: .9rem; }
.playlist-list { margin: 0; padding: 0; list-style: none; }
.playlist-row {
  display: grid; grid-template-columns: 38px 58px minmax(0,1fr) 90px auto;
  gap: 16px; align-items: center; min-height: 82px; border-bottom: 1px solid var(--line);
}
.playlist-row:last-child { border-bottom: 0; }
.playlist-row__number { color: #88837b; font-size: .86rem; font-weight: 800; text-align: center; }
.playlist-row__art { width: 50px; height: 50px; border-radius: 8px; object-fit: cover; }
.playlist-row__copy { min-width: 0; }
.playlist-row__copy strong, .playlist-row__copy span {
  display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.playlist-row__copy strong { font-size: 1rem; }
.playlist-row__copy span, .playlist-row__time { color: var(--muted); font-size: .9rem; }
.playlist-row .service-links { justify-content: flex-end; }

/* Sound */
.sound-section {
  position: relative; overflow: hidden;
  background: radial-gradient(circle at 16% 2%,rgba(242,91,37,.23),transparent 29%), var(--ink);
  color: #fff;
}
.sound-section::before {
  position: absolute; bottom: -270px; left: -230px; width: 610px; height: 610px;
  border: 1px solid rgba(255,255,255,.06); border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255,255,255,.025), 0 0 0 110px rgba(255,255,255,.018);
  content: "";
}
.sound-grid {
  position: relative; display: grid; grid-template-columns: .82fr 1.18fr;
  gap: clamp(60px,8vw,115px); align-items: center;
}
.sound-copy h2 { color: #fff; }
.sound-copy > p:not(.eyebrow) { max-width: 560px; margin-bottom: 34px; color: rgba(255,255,255,.65); }
.artist-cloud { display: flex; margin: 0; padding: 0; flex-wrap: wrap; gap: 9px; list-style: none; }
.artist-cloud li {
  padding: 9px 14px; border: 1px solid rgba(255,255,255,.17); border-radius: 999px;
  color: rgba(255,255,255,.78); font-size: .9rem; font-weight: 700;
}
.sound-image { position: relative; margin-bottom: 0; }
.sound-image picture { display: block; }
.sound-image::before {
  position: absolute; z-index: 1; top: -21px; right: -21px; width: 108px; height: 108px;
  border: 14px solid var(--orange); border-left: 0; border-bottom: 0; content: "";
}
.sound-image img {
  width: 100%; height: 515px; border-radius: 3px; object-fit: cover;
  filter: saturate(.78) contrast(1.08);
}
.sound-image figcaption {
  position: absolute; bottom: 20px; left: 20px; display: flex; align-items: center;
  gap: 12px; padding: 10px 14px; background: rgba(18,16,15,.82);
  color: rgba(255,255,255,.78); font-size: .8rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(10px);
}
.sound-image figcaption i { width: 4px; height: 4px; border-radius: 50%; background: var(--orange); }

/* Station cards */
.station-section { background: #fcfaf6; }
.feature-cards { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; }
.feature-card { position: relative; min-width: 0; overflow: hidden; border-radius: var(--radius); }
.feature-card--cjiq { min-height: 650px; color: #fff; }
.feature-card__background, .feature-card__shade {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.feature-card__background { object-fit: cover; transition: transform .7s; }
.feature-card--cjiq:hover .feature-card__background { transform: scale(1.035); }
.feature-card__shade {
  background: linear-gradient(0deg,rgba(7,16,17,.95),rgba(7,16,17,.58) 54%,rgba(7,16,17,.18)),
    linear-gradient(135deg,rgba(35,139,143,.28),transparent 60%);
}
.feature-card__content {
  position: relative; z-index: 1; display: flex; min-height: 650px; padding: 42px;
  flex-direction: column; align-items: flex-start; justify-content: flex-end;
}
.card-label {
  margin-bottom: 18px; color: #9df4f5; font-size: .86rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
}
.card-label--dark { color: var(--orange-dark); }
.cjiq-logo-wrap { width: 230px; margin-bottom: 26px; padding: 11px 14px; border-radius: 8px; background: #fff; }
.feature-card h3 { max-width: 510px; margin-bottom: 20px; font-size: clamp(2rem,3.4vw,3.3rem); }
.feature-card__content > p:not(.card-label) {
  max-width: 520px; margin-bottom: 28px; color: rgba(255,255,255,.82);
}
.feature-card--program {
  display: grid; grid-template-rows: minmax(290px,1fr) auto;
  border: 1px solid var(--line); background: var(--paper);
}
.video-poster {
  position: relative; display: block; min-height: 290px; overflow: hidden;
  padding: 0; border: 0; background: var(--ink); cursor: pointer;
}
.video-poster picture { display: block; width: 100%; height: 100%; }
.video-poster::after {
  position: absolute; z-index: 1; inset: 0; background: linear-gradient(0deg,rgba(16,13,12,.3),transparent 60%); content: "";
}
.video-poster--radio::before {
  position: absolute; z-index: 1; inset: 0; background: rgba(255,162,105,.34);
  content: ""; mix-blend-mode: color; pointer-events: none;
}
.video-poster img { width: 100%; height: 100%; object-fit: cover; transition: filter .35s, transform .7s; }
.video-poster:hover img { filter: brightness(.82); transform: scale(1.035); }
.video-play {
  position: absolute; z-index: 2; top: 50%; left: 50%; display: grid; width: 70px; height: 70px;
  padding: 0; place-items: center; border: 1px solid rgba(255,255,255,.75);
  border-radius: 50%; background: rgba(15,13,12,.42); color: #fff;
  cursor: pointer; transform: translate(-50%,-50%); transition: background .2s, transform .2s;
  backdrop-filter: blur(9px);
}
.video-play .ui-icon { width: 22px; height: 22px; margin-left: 3px; }
.video-poster:hover .video-play, .video-play:hover {
  background: var(--orange); transform: translate(-50%,-50%) scale(1.08);
}
.feature-card__body { padding: 34px 38px 38px; }
.feature-card__body h3 { margin-bottom: 17px; font-size: clamp(1.8rem,2.6vw,2.6rem); }
.feature-card__body > p:not(.card-label) { margin-bottom: 28px; color: var(--muted); }
.card-actions { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }

/* Creative Industries */
.creative-section {
  overflow: hidden;
  background: radial-gradient(circle at 8% 95%,rgba(98,200,203,.2),transparent 28%), #efebe2;
}
.creative-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(60px,8vw,112px); align-items: center;
}
.creative-visual { position: relative; min-height: 600px; }
.creative-visual::before {
  position: absolute; z-index: 0; top: -28px; left: -28px; width: 65%; height: 72%;
  border: 1px solid rgba(23,23,23,.14); content: "";
}
.creative-visual > picture {
  position: absolute; z-index: 1; inset: 0; display: block; width: 100%; height: 100%;
}
.creative-visual > picture img {
  position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%;
  border-radius: 2px; object-fit: cover; box-shadow: var(--shadow);
}
.video-play--large { width: 86px; height: 86px; }
.video-play--large .ui-icon { width: 28px; height: 28px; }
.creative-stamp {
  position: absolute; z-index: 3; right: -35px; bottom: 34px; display: flex;
  width: 182px; height: 182px; border: 7px solid var(--paper); border-radius: 50%;
  background: var(--orange); color: #fff; flex-direction: column; align-items: center;
  justify-content: center; line-height: 1.05; text-transform: uppercase; transform: rotate(-8deg);
}
.creative-stamp strong { font-size: 1.55rem; }
.creative-stamp span { font-size: 1.2rem; font-weight: 800; }
.creative-stamp em {
  color: var(--ink); font-size: .78rem; font-style: normal; font-weight: 800; letter-spacing: .11em;
}
.conestoga-wordmark {
  width: 270px; max-height: none; margin-bottom: 38px;
}
.creative-copy h2 { margin-bottom: 28px; }
.creative-copy > p:not(.eyebrow) { margin-bottom: 32px; color: var(--muted); }
.creative-actions { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; margin-bottom: 28px; }
.college-cta {
  display: flex; max-width: 540px; padding: 20px 0; border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line); align-items: center; justify-content: space-between;
  gap: 24px; transition: border-color .2s, color .2s;
}
.college-cta__copy { display: grid; gap: 4px; }
.college-cta small {
  color: var(--orange-dark); font-size: .86rem; font-weight: 800;
  letter-spacing: .13em; text-transform: uppercase;
}
.college-cta strong { font-size: 1rem; line-height: 1.4; }
.college-cta__icon {
  display: grid; width: 44px; height: 44px; flex: 0 0 auto; place-items: center;
  border-radius: 50%; background: var(--ink); color: #fff;
  transition: background .2s, transform .2s;
}
.college-cta__icon .ui-icon { width: 18px; height: 18px; }
.college-cta:hover { border-color: var(--orange); color: var(--orange-dark); }
.college-cta:hover .college-cta__icon { background: var(--orange); transform: translate(2px,-2px); }

.playlist-toggle__icon { transition: transform .2s; }
[data-playlist-toggle].is-expanded .playlist-toggle__icon { transform: rotate(180deg); }

/* License, footer, dock, dialog */
.licensed-section { padding: 52px 0; background: var(--orange); color: #fff; }
.licensed-inner {
  display: grid; grid-template-columns: minmax(280px,.85fr) 230px minmax(280px,1.05fr);
  gap: 44px; align-items: center;
}
.licensed-inner .eyebrow { margin-bottom: 10px; color: rgba(255,255,255,.8); }
.licensed-inner h2 { margin-bottom: 0; color: #fff; font-size: clamp(2.4rem,4vw,4.4rem); }
.licensed-inner > p { max-width: 500px; margin: 0 0 0 auto; color: rgba(255,255,255,.8); }
.license-socan-pill {
  display: inline-flex; width: 210px; min-height: 78px; padding: 16px 23px;
  border-radius: 999px; background: #fff; align-items: center; justify-content: center;
  box-shadow: 0 14px 32px rgba(115,30,0,.16);
}
.license-socan { width: 100%; }
.site-footer { padding: 76px 0 25px; background: #111; color: #fff; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr .7fr .7fr; gap: 60px; padding-bottom: 62px;
}
.footer-brandmark { width: 225px; margin-bottom: 24px; }
.footer-brand > p { max-width: 410px; color: rgba(255,255,255,.62); font-size: 1rem; }
.footer-links, .footer-social { display: flex; flex-direction: column; align-items: flex-start; }
.footer-links > p, .footer-social > p {
  margin-bottom: 20px; color: rgba(255,255,255,.52); font-size: .86rem;
  font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
}
.footer-links a { margin-bottom: 8px; color: rgba(255,255,255,.78); font-size: 1rem; font-weight: 700; }
.footer-links a:hover { color: var(--orange-bright); }
.footer-social > div { display: flex; gap: 10px; }
.footer-social a {
  display: grid; width: 45px; height: 45px; place-items: center;
  border: 1px solid rgba(255,255,255,.16); border-radius: 50%;
  transition: border-color .2s, background .2s, transform .2s;
}
.footer-social a:hover { border-color: var(--orange); background: var(--orange); transform: translateY(-3px); }
.footer-social svg { width: 18px; fill: currentColor; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 30px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.52); font-size: .86rem;
}
.footer-bottom p { margin-bottom: 0; }
.player-dock {
  position: fixed; z-index: 90; right: 0; bottom: 0; left: 0; height: 78px;
  border-top: 1px solid rgba(255,255,255,.12); background: rgba(18,17,16,.94);
  color: #fff; box-shadow: 0 -12px 38px rgba(0,0,0,.22); backdrop-filter: blur(18px);
}
.player-dock__inner { display: flex; height: 100%; align-items: center; gap: 16px; }
.player-dock__inner > img { width: 54px; height: 54px; border-radius: 7px; object-fit: cover; }
.player-dock__track { display: grid; min-width: 0; width: 280px; line-height: 1.2; }
.player-dock__track > span {
  display: flex; align-items: center; gap: 7px; margin-bottom: 4px;
  color: var(--orange-bright); font-size: .78rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
}
.player-dock__track > span i { width: 5px; height: 5px; }
.player-dock__track strong, .player-dock__track small {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.player-dock__track strong { font-size: 1rem; }
.player-dock__track small { color: rgba(255,255,255,.62); font-size: .86rem; }
.player-dock__services { margin-left: auto; }
.player-dock__services .service-links { flex-wrap: nowrap; }
.player-dock__services .service-link { border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.6); }
.player-dock__services .service-link:hover { border-color: #fff; color: var(--ink); background: #fff; }
.popout-control--dock { flex: 0 0 auto; }
.play-control--dock { width: 48px; height: 48px; }
.video-dialog {
  width: min(100% - 40px,1050px); max-width: none; padding: 0; border: 0;
  border-radius: var(--radius); background: transparent; color: #fff; overflow: visible;
}
.video-dialog::backdrop { background: rgba(10,9,8,.88); backdrop-filter: blur(8px); }
.video-dialog__panel {
  position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); background: #111; box-shadow: 0 40px 100px rgba(0,0,0,.55);
}
.dialog-close {
  position: absolute; z-index: 4; top: 14px; right: 14px; display: grid;
  width: 44px; height: 44px; padding: 0 0 4px; place-items: center;
  border: 1px solid rgba(255,255,255,.22); border-radius: 50%;
  background: rgba(12,10,10,.8); color: #fff; font-size: 1.7rem;
  line-height: 1; cursor: pointer; backdrop-filter: blur(10px);
}
.dialog-close:hover { background: var(--orange); }

/* Not found */
.error-page { min-height: 100vh; background: var(--ink); color: #fff; }
.error-page__main {
  position: relative; display: flex; min-height: 100vh; padding: 42px clamp(24px,6vw,90px);
  flex-direction: column; overflow: hidden;
  background:
    radial-gradient(circle at 84% 12%,rgba(242,91,37,.3),transparent 34%),
    radial-gradient(circle at 8% 90%,rgba(98,200,203,.12),transparent 29%),
    var(--ink);
}
.error-page__main::after {
  position: absolute; right: -120px; bottom: -160px; width: 520px; height: 520px;
  border: 1px solid rgba(255,255,255,.08); border-radius: 50%; content: "";
  box-shadow: 0 0 0 55px rgba(255,255,255,.025), 0 0 0 110px rgba(255,255,255,.018);
}
.error-page__brand { position: relative; z-index: 1; width: 210px; }
.error-page__content {
  position: relative; z-index: 1; width: min(760px,100%); margin: auto 0;
  padding: 80px 0;
}
.error-page__content h1 { margin-bottom: 28px; color: #fff; font-size: clamp(3.4rem,8vw,7rem); }
.error-page__content > p:not(.eyebrow) {
  max-width: 640px; margin-bottom: 34px; color: rgba(255,255,255,.82); font-size: 1.08rem;
}
.video-frame { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-dialog__caption {
  display: flex; padding: 27px 32px 30px; align-items: flex-end;
  justify-content: space-between; gap: 30px;
}
.video-dialog__caption .eyebrow { margin-bottom: 11px; }
.video-dialog__caption h2 { margin-bottom: 0; font-size: clamp(1.55rem,3vw,2.4rem); }
.video-dialog__cta { flex: 0 0 auto; }

@media (max-width: 1120px) {
  .site-menu { gap: 22px; }
  .hero-layout { grid-template-columns: minmax(0,1fr) 420px; gap: 42px; }
  .recent-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .creative-stamp { right: -18px; }
}

@media (max-width: 900px) {
  .shell { width: min(calc(100% - 40px),var(--shell)); }
  .section { padding: 88px 0; }
  .site-nav { padding: 18px 0; }
  .q2-brand { width: 190px; }
  .menu-toggle { z-index: 31; display: grid; place-items: center; }
  .site-menu {
    position: fixed; z-index: 30; inset: 0; padding: 120px 34px 50px;
    background: rgba(17,16,15,.98); flex-direction: column; align-items: flex-start;
    gap: 26px; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-15px);
    transition: opacity .2s, transform .2s, visibility 0s linear .2s;
  }
  .site-menu.is-open {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
    transition-delay: 0s;
  }
  .site-menu > a { font-size: 1.8rem; letter-spacing: -.04em; }
  .site-menu .button { margin-top: 14px; }
  .hero, .hero-layout { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; gap: 45px; padding-top: 165px; padding-bottom: 82px; }
  .hero-copy { max-width: 650px; padding-bottom: 0; }
  .hero-copy h1 { font-size: clamp(4.4rem,13vw,6.5rem); }
  .live-card { max-width: 620px; }
  .hero-scroll { display: none; }
  .section-heading--row { align-items: flex-start; flex-direction: column; }
  .sound-grid, .creative-grid { grid-template-columns: 1fr; }
  .feature-cards { grid-template-columns: 1fr; }
  .feature-card--cjiq, .feature-card__content { min-height: 590px; }
  .creative-visual { min-height: 520px; }
  .licensed-inner { grid-template-columns: minmax(280px,1fr) 230px; }
  .licensed-inner > p { grid-column: 1/-1; max-width: 620px; margin-left: 0; }
}

@media (max-width: 680px) {
  body { font-size: 1rem; }
  body.dock-visible { padding-bottom: 72px; }
  .shell { width: min(calc(100% - 30px),var(--shell)); }
  .section { padding: 74px 0; }
  .hero-media img { object-position: 61% center; }
  .hero-wash {
    background: linear-gradient(90deg,rgba(12,10,10,.92),rgba(12,10,10,.45)),
      linear-gradient(0deg,rgba(12,10,10,.98),rgba(12,10,10,.56) 68%,rgba(12,10,10,.55));
  }
  .hero-layout { padding-top: 138px; padding-bottom: 65px; }
  .hero-copy h1 { margin-bottom: 24px; font-size: clamp(3.7rem,18vw,4.8rem); }
  .hero-intro { font-size: 1.05rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 21px; }
  .live-card { grid-template-columns: 96px minmax(0,1fr); gap: 17px; padding: 16px; }
  .live-artwork img { width: 96px; border-radius: 10px; }
  .live-pill { top: 6px; left: 6px; padding: 5px 7px; }
  .live-title { font-size: 1.2rem; }
  .live-artist { margin-bottom: 9px; font-size: 1rem; }
  .service-links--hero .service-link { width: 32px; min-height: 32px; padding: 0; justify-content: center; }
  .service-links--hero .service-link__label {
    position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0);
  }
  .player-controls { padding-top: 15px; }
  .play-control { width: 46px; height: 46px; }
  .volume-control { width: 44%; }
  .popout-control { width: 40px; min-height: 40px; padding: 0; justify-content: center; }
  .popout-control__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
  .section-heading h2, .creative-copy h2, .sound-copy h2 { font-size: clamp(2.4rem,4vw,4.4rem); }
  .section-heading { margin-bottom: 36px; }
  .recent-grid { grid-template-columns: 1fr; gap: 12px; }
  .song-card { grid-template-columns: 108px minmax(0,1fr); min-height: 108px; }
  .full-playlist { margin-top: 38px; padding: 25px 18px; }
  .full-playlist__heading { align-items: flex-start; flex-direction: column; }
  .playlist-row { grid-template-columns: 48px minmax(0,1fr) auto; gap: 12px; padding: 11px 0; }
  .playlist-row__number, .playlist-row__time { display: none; }
  .playlist-row__art { width: 48px; height: 48px; }
  .playlist-row .service-links { gap: 4px; }
  .playlist-row .service-link { width: 32px; min-height: 32px; padding: 0; justify-content: center; }
  .playlist-row .service-link__label {
    position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0);
  }
  .sound-image img { height: 390px; }
  .feature-card--cjiq, .feature-card__content { min-height: 535px; }
  .feature-card__content { padding: 28px 24px; }
  .feature-card h3 { font-size: 2.2rem; }
  .feature-card__body { padding: 28px 24px 30px; }
  .card-actions, .creative-actions { align-items: flex-start; flex-direction: column; }
  .creative-visual { min-height: 400px; }
  .creative-visual::before { top: -15px; left: -15px; }
  .creative-stamp { right: -6px; bottom: 18px; width: 134px; height: 134px; border-width: 5px; }
  .creative-stamp strong { font-size: 1.1rem; }
  .creative-stamp span { font-size: .9rem; }
  .creative-stamp em { font-size: .62rem; }
  .licensed-inner { grid-template-columns: 1fr; gap: 26px; }
  .licensed-inner > p { grid-column: auto; }
  .license-socan-pill { width: 205px; min-height: 72px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px 30px; }
  .footer-brand { grid-column: 1/-1; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .player-dock { height: 72px; }
  .player-dock__inner { gap: 11px; }
  .player-dock__inner > img { width: 48px; height: 48px; }
  .player-dock__track { width: auto; flex: 1; }
  .player-dock__services { display: none; }
  .play-control--dock { width: 44px; height: 44px; }
  .video-dialog { width: calc(100% - 20px); }
  .video-dialog__caption { padding: 22px; align-items: flex-start; flex-direction: column; gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important; animation-duration: .01ms !important;
    animation-iteration-count: 1 !important; transition-duration: .01ms !important;
  }
}
