/* Material and motion layer. All content stays usable without this layer. */
:root {
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}
.site-header {
  transition:
    background 0.3s,
    box-shadow 0.3s;
  border-bottom-color: #ffffff1f;
}
.site-header.is-scrolled {
  background: #171816fa;
  box-shadow: 0 8px 32px #0002;
}
.site-nav > a:not(.nav-cta) {
  position: relative;
}
.site-nav > a:not(.nav-cta):after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.site-nav > a:not(.nav-cta):hover:after,
.site-nav > a[aria-current="location"]:after {
  transform: scaleX(1);
}
.site-nav > a[aria-current="location"] {
  color: var(--gold);
}
.hero {
  background: radial-gradient(ellipse at 15% 60%, #51472b0b, transparent 65%);
}
.hero-photo {
  overflow: hidden;
}
.hero-photo img {
  transform: translate3d(var(--photo-x, 0px), var(--photo-y, 0px), 0)
    scale(1.035);
  transition: transform 1s var(--ease-out);
  transform-origin: 50% 50%;
}
.hero h1 {
  position: relative;
  text-shadow:
    0 2px 0 #080908,
    0 14px 28px #0002;
}
.hero h1 em {
  background: linear-gradient(
    118deg,
    #e4c387 0%,
    #d5ad6c 34%,
    #f0d49a 55%,
    #b9945c 85%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: none;
}
.hero:after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Cpath fill='%23fff' filter='url(%23n)' opacity='.7' d='M0 0h180v180H0z'/%3E%3C/svg%3E");
}
.hero-actions,
.hero-caption {
  position: relative;
  z-index: 3;
}
.hero-caption {
  position: absolute;
}
.hero-caption:before {
  content: "";
  width: 45px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 9px;
  opacity: 0.65;
}
.button-red {
  background: linear-gradient(170deg, #c23a2e, #ac2c24);
  box-shadow:
    inset 0 1px 0 #f69b7044,
    0 3px 0 #641e19,
    0 9px 24px #0002;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s,
    background 0.25s;
}
.button-red:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    115deg,
    transparent 20%,
    #ffe3c328 50%,
    transparent 80%
  );
  transform: translateX(-120%);
  transition: transform 0.65s var(--ease-out);
}
.button-red:hover:after {
  transform: translateX(110%);
}
.button-red:hover {
  background: linear-gradient(170deg, #d34335, #b53026);
  box-shadow:
    inset 0 1px 0 #f69b7077,
    0 4px 0 #641e19,
    0 14px 28px #0003;
  transform: translateY(-2px);
}
.button-red:active {
  transform: translateY(2px);
  box-shadow:
    inset 0 1px 0 #f69b7033,
    0 1px 0 #641e19,
    0 3px 8px #0002;
}
.button svg,
.nav-cta svg,
.text-link svg {
  transition: transform 0.35s var(--ease-out);
}
.button:hover svg:not(.icon-play),
.nav-cta:hover svg,
.text-link:hover svg {
  transform: translateX(4px);
}
.text-link {
  background: linear-gradient(var(--gold), var(--gold)) 0 100%/0 1px no-repeat;
  transition:
    background-size 0.35s var(--ease-out),
    color 0.2s;
}
.text-link:hover {
  background-size: 100% 1px;
}
/* The supplied cover becomes a shallow physical sleeve. Nothing is WebGL. */
.music-grid,
.member-grid {
  perspective: 1200px;
}
.release-art {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --light-x: 50%;
  --light-y: 25%;
  --edge: 5px;
  overflow: visible;
  transform-style: preserve-3d;
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition:
    transform 0.55s var(--ease-out),
    box-shadow 0.55s var(--ease-out);
  background: linear-gradient(130deg, #92352a 0%, #77251f 55%, #60211c);
  border-color: #ab7353;
  box-shadow:
    inset 0 0 0 8px #77251f,
    inset 0 0 0 9px #d5ad6c88,
    var(--edge) 3px 0 #5a2d22,
    calc(var(--edge) + 1px) 3px 0 #8b6345,
    10px 18px 32px -15px #28140d80;
}
.release-art:before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid #e7c68c30;
  background: radial-gradient(
    ellipse at var(--light-x) var(--light-y),
    #ffe4a626 0%,
    transparent 65%
  );
  pointer-events: none;
  transform: translateZ(1px);
}
.release-art:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 25%,
    #fff1c90c 43%,
    #fff1c925 50%,
    #fff1c907 57%,
    transparent 75%
  );
  background-size: 200% 200%;
  background-position: var(--light-x) var(--light-y);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  transform: translateZ(32px);
}
.release-art.is-tilting:after {
  opacity: 1;
}
.release-art > img {
  position: relative;
  transform: translateZ(24px);
  box-shadow:
    0 1px 0 #efce9433,
    1px 4px 0 #3f1612,
    2px 5px 0 #a16a42,
    0 17px 28px #1f0d0966;
  border: 1px solid #c0995766;
  transition: filter 0.45s;
}
.release-art.is-tilting > img {
  filter: brightness(1.045);
}
.release-top,
.release-bottom,
.member-art > h2,
.member-art > .micro {
  position: relative;
  transform: translateZ(16px);
}
.release-art .release-star {
  filter: drop-shadow(0 2px 0 #3f211c);
  transition: transform 0.7s var(--ease-out);
}
.release-art.is-tilting .release-star {
  transform: rotate(35deg);
}
/* Fine interaction feedback in the listening room. */
.track {
  isolation: isolate;
}
.track:before {
  content: "";
  position: absolute;
  inset: 6px -12px;
  z-index: -1;
  background: #c6bfaa26;
  opacity: 0;
  transform: scaleX(0.97);
  transition:
    opacity 0.25s,
    transform 0.4s var(--ease-out);
}
.track:hover:before,
.track:focus-within:before {
  opacity: 1;
  transform: scaleX(1);
}
.track.is-playing:before {
  background: #ac8d4f16;
  opacity: 1;
  transform: scaleX(1);
}
.play {
  box-shadow: inset 0 1px 0 #fff2;
  transition:
    transform 0.25s var(--ease-out),
    background 0.2s,
    color 0.2s,
    box-shadow 0.25s;
}
.play:hover {
  transform: scale(1.06);
  box-shadow: 0 4px 10px #0002;
}
.play:active {
  transform: scale(0.95);
}
.track-number {
  position: relative;
  min-height: 22px;
  display: flex;
  align-items: center;
}
.track-number .number-label {
  transition: opacity 0.2s;
}
.playing-meter {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}
.playing-meter i {
  display: block;
  width: 3px;
  height: 15px;
  background: currentColor;
  transform: scaleY(0.3);
  transform-origin: center;
  animation: meter-step 0.95s ease-in-out infinite alternate;
  animation-play-state: paused;
}
.playing-meter i:nth-child(2) {
  animation-duration: 0.65s;
  animation-delay: -0.4s;
}
.playing-meter i:nth-child(3) {
  animation-duration: 0.8s;
  animation-delay: -0.65s;
}
.track.is-playing .playing-meter {
  opacity: 1;
}
.track.is-playing .number-label {
  opacity: 0;
}
.track.is-playing .playing-meter i {
  animation-play-state: running;
}
@keyframes meter-step {
  0% {
    transform: scaleY(0.25);
  }
  45% {
    transform: scaleY(0.7);
  }
  100% {
    transform: scaleY(1);
  }
}
.member-track .track:before {
  background: #d5ad6c0c;
}
.player-dock {
  box-shadow:
    0 -10px 35px #0004,
    inset 0 1px 0 #eed29922;
}
.form-card {
  box-shadow: 0 16px 40px #0d0f0b1a;
  border-top-color: #d5ad6c;
  transition:
    box-shadow 0.35s,
    border-color 0.35s;
}
.form-card:focus-within {
  border-top-color: #b78744;
  box-shadow: 0 20px 45px #0d0f0b30;
}
.motion-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.4;
  background: none;
  border: 1px solid #56594d;
  padding: 9px 11px;
  min-height: 36px;
}
.motion-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.motion-toggle:disabled {
  cursor: default;
  opacity: 1;
  color: var(--muted);
}
.motion-toggle svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
.footer-bottom {
  flex-wrap: wrap;
}
@media (max-width: 700px) {
  .release-art {
    --edge: 3px;
  }
  .site-nav > a:not(.nav-cta):after {
    bottom: 9px;
    right: calc(100% - 32px);
  }
  .hero-photo img {
    transform: none;
  }
  .hero h1 em {
    background: none;
    color: var(--gold);
  }
  .hero:after {
    opacity: 0.018;
  }
  .motion-toggle {
    font-size: 0.6875rem;
    min-height: 34px;
  }
  .footer-bottom > a {
    margin-left: auto;
  }
  .motion-toggle {
    order: 3;
  }
  .track:before {
    inset: 6px -8px;
  }
}
/* User and operating-system preferences both remove optional motion. */
html[data-motion="reduced"] {
  scroll-behavior: auto;
}
html[data-motion="reduced"] *,
html[data-motion="reduced"] *:before,
html[data-motion="reduced"] *:after {
  animation: none !important;
  transition: none !important;
}
html[data-motion="reduced"] .hero-photo img {
  transform: none;
}
html[data-motion="reduced"] .release-art {
  transform: none;
}
html[data-motion="reduced"] .release-art .release-star {
  transform: none;
}
html[data-motion="reduced"] .release-art:after {
  display: none;
}
html[data-motion="reduced"] .button:hover,
html[data-motion="reduced"] .button:active,
html[data-motion="reduced"] .play:hover,
html[data-motion="reduced"] .play:active,
html[data-motion="reduced"] .button:hover svg,
html[data-motion="reduced"] .nav-cta:hover svg,
html[data-motion="reduced"] .text-link:hover svg {
  transform: none;
}
html[data-motion="reduced"] .button-red:after {
  display: none;
}
html[data-motion="reduced"] .track.is-playing .number-label {
  opacity: 1;
}
html[data-motion="reduced"] .playing-meter {
  display: none;
}
@media (prefers-reduced-motion: reduce) {
  .hero-photo img,
  .release-art {
    transform: none !important;
  }
  .release-art:after,
  .button-red:after {
    display: none;
  }
  .playing-meter {
    display: none;
  }
  .track.is-playing .number-label {
    opacity: 1;
  }
}
@media print {
  .motion-toggle {
    display: none;
  }
  .hero:after {
    display: none;
  }
  .release-art {
    transform: none;
    box-shadow: none;
  }
  .release-art > * {
    transform: none;
  }
}
/* The firehouse is a listening space, rather than a sequence of marketing panels. */
.experience-hero {
  min-height: 770px;
}
.experience-hero .hero-inner {
  padding-top: 82px;
  padding-bottom: 100px;
}
.experience-hero .hero-copy {
  max-width: 540px;
}
.experience-hero .hero-photo {
  width: 69%;
}
.experience-hero .hero-photo:after {
  background:
    linear-gradient(90deg, var(--ink), #171816a6 28%, #17181614 62%),
    linear-gradient(0deg, #171816c4, transparent 38%);
}
.experience-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.1;
  font-size: clamp(3.4rem, 5.85vw, 5.3rem);
  text-shadow: none;
}
.experience-hero h1 em {
  font-style: italic;
  color: #d6b581;
  background: none;
  -webkit-text-fill-color: currentColor;
}
.experience-hero .hero-description {
  font-size: 1rem;
  max-width: 345px;
  color: #c5c8ba;
  margin-top: 28px;
  line-height: 1.8;
}
.experience-hero .hero-photo img {
  filter: saturate(0.62) brightness(0.72);
  transition:
    transform 1s var(--ease-out),
    filter 2.4s ease;
}
.experience-hero.is-listening .hero-photo img {
  filter: saturate(0.88) brightness(0.94);
}
.hero-listener {
  display: none;
  max-width: 435px;
  margin-top: 38px;
  padding: 20px 0 0;
  border-top: 1px solid #d5ad6c70;
}
.hero-listener.is-ready {
  display: block;
}
.hero-listener-top,
.hero-listener-main,
.hero-listener-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.hero-listener-top .micro {
  font-size: 0.625rem;
  letter-spacing: 0.17em;
  color: #c4b89d;
}
.hero-listener-top .micro:first-child {
  color: var(--gold);
}
.hero-listener-main {
  justify-content: start;
  margin-top: 20px;
}
.hero-play {
  width: 52px;
  height: 52px;
  border-color: #d5ad6c88;
  background: #e0bd80;
  color: #171816;
  box-shadow:
    inset 0 1px 0 #fff7,
    0 3px 0 #6b583b,
    0 6px 15px #0003;
}
.hero-play:hover,
.hero-play.is-playing {
  background: #ebcf9b;
  color: #171816;
  border-color: #e8c689;
  box-shadow:
    inset 0 1px 0 #fff7,
    0 3px 0 #6b583b,
    0 6px 15px #0003;
}
.hero-song {
  min-width: 0;
}
.hero-song strong {
  display: block;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--paper);
}
.hero-song > span {
  font-size: 0.75rem;
  color: #b8bcb0;
  display: block;
  margin-top: 5px;
  line-height: 1.5;
}
.hero-time {
  font-size: 0.75rem;
  color: #bfc1b5;
  font-variant-numeric: tabular-nums;
  margin-left: auto;
  white-space: nowrap;
}
.hero-waveform {
  height: 36px;
  position: relative;
  margin-top: 20px;
  --wave-progress: 0%;
}
.hero-waveform svg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-waveform path {
  fill: none;
  stroke: #717363;
  stroke-width: 3;
  stroke-linecap: round;
}
.hero-waveform .waveform-progress {
  clip-path: inset(0 calc(100% - var(--wave-progress)) 0 0);
}
.hero-waveform .waveform-progress path {
  stroke: var(--gold);
}
.hero-waveform input {
  position: absolute;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}
.hero-waveform input:disabled {
  cursor: default;
}
.hero-waveform:focus-within {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
}
.hero-listener-bottom {
  margin-top: 15px;
  gap: 10px;
  font-size: 0.6875rem;
  color: #aab1a0;
}
.hero-listener-bottom a {
  color: #dfd7c3;
  text-decoration: none;
  padding: 5px 0;
  white-space: nowrap;
}
.hero-listener-bottom a:hover {
  color: var(--gold);
}
.hero-listener-bottom a span {
  margin-left: 8px;
}
.hero-nojs {
  margin-top: 28px;
}
.player-dock.dock-at-hero {
  display: none;
}
body.listening-at-hero {
  padding-bottom: 0;
}
.music-section {
  padding-top: 84px;
  background: #e8e3d7;
}
.music-section .section-heading {
  margin-bottom: 48px;
}
.music-section .section-heading h2,
.story-title h2,
.signup-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.12;
  font-size: clamp(2.8rem, 4.2vw, 4.2rem);
}
.music-section .section-heading > p {
  font-size: 0.9375rem;
  max-width: 265px;
}
.story-title h2 em,
.signup-copy h2 em {
  font-style: italic;
  color: #d6b581;
}
.story-grid {
  gap: 100px;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}
.story-copy {
  padding-top: 0;
}
.story-copy .story-lede {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  line-height: 1.4;
}
.story-section {
  padding: 96px 0;
  background: #1c1e1a;
}
.signup-section {
  padding: 92px 0;
  background: #23261f;
}
.signup-copy > .signup-invitation {
  border-left: 1px solid #75684c;
  padding-left: 20px;
  font-size: 0.9375rem;
  color: #d0cbb9;
  max-width: 370px;
  margin-top: 30px;
}
.signup-silhouette {
  width: 160px;
  opacity: 0.6;
  margin-top: 36px;
}
.sleeve-number {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 400;
  color: #e1c38f;
  line-height: 1;
}
.release-bottom > [data-sleeve-title] {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  max-width: 10ch;
  line-height: 1.1;
}
.release-bottom {
  gap: 30px;
}
.release-art {
  background: linear-gradient(130deg, #813127, #6e251f 62%, #5e201b);
}
.release-art > img {
  border-color: #a9834d66;
}
.button-red:after {
  display: none;
}
.button-red:hover svg:not(.icon-play) {
  transform: none;
}
.track:not(.meter-visible) .playing-meter i,
.motion-paused .playing-meter i {
  animation-play-state: paused !important;
}
@media (max-width: 1100px) {
  .experience-hero .hero-copy {
    max-width: 470px;
  }
  .hero-listener {
    max-width: 400px;
  }
  .experience-hero {
    min-height: 730px;
  }
  .experience-hero .hero-inner {
    padding-top: 68px;
    padding-bottom: 75px;
  }
  .story-grid {
    gap: 60px;
  }
  .release-bottom {
    gap: 15px;
  }
}
@media (max-width: 850px) {
  .experience-hero .hero-copy {
    max-width: 450px;
  }
  .experience-hero h1 {
    font-size: 3.8rem;
  }
  .experience-hero .hero-photo {
    width: 78%;
  }
  .story-grid {
    gap: 35px;
  }
  .hero-listener {
    max-width: 370px;
  }
  .hero-song > span {
    font-size: 0.6875rem;
  }
  .hero-listener-bottom {
    font-size: 0.625rem;
  }
}
@media (max-width: 700px) {
  .experience-hero {
    min-height: 920px;
  }
  .experience-hero .hero-inner {
    padding-top: 44px;
    padding-bottom: 360px;
  }
  .experience-hero .hero-photo {
    width: 100%;
    height: 67%;
    bottom: 0;
    top: auto;
  }
  .experience-hero .hero-photo:after {
    background: linear-gradient(
      180deg,
      var(--ink),
      #171816d9 22%,
      #1718163d 65%,
      #17181670
    );
  }
  .experience-hero .hero-photo img {
    object-position: 52% 60%;
    filter: saturate(0.75) brightness(0.82);
  }
  .experience-hero .hero-copy {
    max-width: none;
  }
  .experience-hero h1 {
    font-size: clamp(2.4rem, 9.95vw, 4rem);
    letter-spacing: -0.055em;
    line-height: 1.12;
  }
  .experience-hero h1 em {
    display: inline;
  }
  .experience-hero .hero-description {
    font-size: 0.9375rem;
    margin-top: 22px;
    max-width: 305px;
    line-height: 1.7;
  }
  .hero-listener {
    margin-top: 27px;
    padding: 18px 0 16px;
    max-width: 100%;
    position: relative;
    z-index: 4;
    background: linear-gradient(90deg, #171816ec, #171816a6);
  }
  .hero-listener-top .micro {
    font-size: 0.5625rem;
    letter-spacing: 0.12em;
  }
  .hero-listener-main {
    gap: 12px;
    margin-top: 18px;
  }
  .hero-play {
    width: 46px;
    height: 46px;
  }
  .hero-song strong {
    font-size: 1rem;
  }
  .hero-song > span {
    font-size: 0.6875rem;
    max-width: 180px;
  }
  .hero-time {
    font-size: 0.6875rem;
  }
  .hero-listener-bottom > span {
    display: none;
  }
  .hero-listener-bottom {
    justify-content: space-between;
    font-size: 0.8125rem;
  }
  .hero-listener-bottom a {
    padding: 8px 0;
  }
  .hero-waveform {
    height: 28px;
    margin-top: 18px;
  }
  .hero-caption {
    bottom: 25px;
  }
  .hero-caption .micro {
    font-size: 0.5625rem;
  }
  .hero-caption:before {
    display: none;
  }
  .music-section {
    padding-top: 60px;
  }
  .music-section .section-heading h2,
  .story-title h2,
  .signup-copy h2 {
    font-size: 2.9rem;
    line-height: 1.12;
  }
  .music-section .section-heading {
    margin-bottom: 35px;
  }
  .music-section .section-heading > p {
    font-size: 0.9375rem;
    max-width: 300px;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .story-section,
  .signup-section {
    padding: 64px 0;
  }
  .story-copy .story-lede {
    font-size: 1.45rem;
  }
  .release-bottom > [data-sleeve-title] {
    font-size: 2rem;
  }
  .sleeve-number {
    font-size: 2.2rem;
  }
  .signup-silhouette {
    display: none;
  }
  .release-art {
    aspect-ratio: 1.35;
  }
  .hero-song {
    flex: 1;
  }
  .hero-time {
    max-width: 65px;
    white-space: normal;
    text-align: right;
  }
}
@media (max-width: 370px) {
  .experience-hero h1 {
    font-size: 2.5rem;
  }
  .hero-listener-main {
    gap: 9px;
  }
  .hero-song strong {
    font-size: 0.9375rem;
  }
  .hero-song > span {
    font-size: 0.625rem;
  }
  .hero-time {
    font-size: 0.625rem;
  }
  .music-section .section-heading h2,
  .story-title h2,
  .signup-copy h2 {
    font-size: 2.6rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .experience-hero .hero-photo img {
    transition: none !important;
  }
  .hero h1 em {
    background: none;
    color: var(--gold);
  }
}
.music-section .track-meta > span,
.music-section .track-kind,
.music-section .track-duration {
  color: #5c5f55;
}
.standalone-signup .signup-copy h1,
.member-copy h1,
.simple-page h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.13;
  font-size: clamp(3rem, 4.8vw, 4.8rem);
}
.standalone-signup .signup-copy h1 em,
.member-copy h1 em,
.simple-page h1 em {
  font-style: italic;
  color: #d6b581;
}
@media (max-width: 700px) {
  .standalone-signup .signup-copy h1,
  .member-copy h1,
  .simple-page h1 {
    font-size: 2.9rem;
  }
}

/* The opening scene fits the first screen below the sticky header. */
@media (min-width: 851px) {
  .hero.experience-hero {
    min-height: calc(100vh - 90px);
    min-height: calc(100svh - 90px);
  }
  .experience-hero .hero-inner {
    padding-top: 56px;
    padding-bottom: 64px;
  }
}
@media (min-width: 851px) and (max-height: 820px) {
  .experience-hero .hero-inner {
    padding-top: 32px;
    padding-bottom: 36px;
  }
  .experience-hero h1 {
    font-size: clamp(3rem, 5.2vw, 4.4rem);
  }
  .hero .eyebrow {
    margin-bottom: 16px;
  }
  .hero-description {
    margin-top: 18px;
  }
  .hero-listener {
    margin-top: 24px;
    padding-top: 14px;
  }
}
