:root {
  --ll-ink: #24272a;
  --ll-green: #555b60;
  --ll-green-dark: #24282c;
  --ll-water: #747b81;
  --ll-sand: #e5e7e9;
  --ll-cream: #f5f5f4;
  --ll-line: rgba(36, 39, 42, 0.16);
}

.ll-page {
  background: var(--ll-cream);
  color: var(--ll-ink);
}

.ll-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background-color: #0b0f19;
}

.ll-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--ll-hero-mobile, url("/assets/images/hero/lake-life-hero-mobile.jpg"));
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ll-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.03) 0%,
    rgba(0, 0, 0, 0.07) 38%,
    rgba(0, 0, 0, 0.18) 70%,
    rgba(0, 0, 0, 0.45) 90%
  );
}

.ll-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  justify-items: center;
  align-content: end;
  padding: 140px 24px 46px;
  color: #fff;
  text-align: center;
}

.ll-hero h1 {
  width: auto;
  max-width: 100%;
  margin: 0 auto 10px;
  color: #fff;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-align: center;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.75);
}

.ll-hero p {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.5;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.7);
}

.ll-section {
  padding: clamp(64px, 8vw, 112px) 0;
}

.ll-narrow {
  max-width: 900px;
  text-align: center;
}

.ll-intro {
  background: var(--ll-sand);
}

.ll-intro h2,
.ll-section-heading h2 {
  margin: 0;
  color: var(--ll-green-dark);
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.ll-rich-text,
.ll-section-heading > p {
  font-size: 1.08rem;
  line-height: 1.75;
}

.ll-rich-text p:first-child {
  margin-top: 0;
}

.ll-rich-text p:last-child {
  margin-bottom: 0;
}

.ll-section-heading {
  max-width: 780px;
  margin: 0 auto clamp(34px, 5vw, 58px);
  text-align: center;
}

.ll-section-heading > p {
  margin: 16px 0 0;
  color: rgba(36, 39, 42, 0.72);
}

.ll-lake-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.ll-lake-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid var(--ll-line);
  border-radius: 20px;
  background: #fff;
  transition: transform 180ms ease;
  flex: 0 1 100%;
}

.ll-lake-card:hover {
  transform: translateY(-4px);
}

.ll-lake-card__image {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e7ece8;
}

.ll-lake-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.ll-lake-card:hover .ll-lake-card__image img {
  transform: scale(1.025);
}

.ll-lake-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  padding: 22px;
  text-align: center;
}

.ll-lake-card h3 {
  margin: 0;
  color: var(--ll-green-dark);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.15;
}

.ll-lake-card p {
  margin: 10px 0 20px;
  color: rgba(36, 39, 42, 0.72);
  line-height: 1.55;
}

.ll-lake-card .ll-button {
  margin-top: auto;
}

.ll-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 20px;
  border: 2px solid var(--ll-green);
  border-radius: 999px;
  background: var(--ll-green);
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.ll-button:hover,
.ll-button:focus-visible {
  background: var(--ll-green-dark);
  border-color: var(--ll-green-dark);
  color: #fff;
  transform: translateY(-1px);
}

.ll-button--light {
  border-color: #fff;
  background: #fff;
  color: var(--ll-green-dark);
}

.ll-button--light:hover,
.ll-button--light:focus-visible {
  border-color: #fff;
  background: transparent;
  color: #fff;
}

.ll-empty {
  padding: 28px;
  border: 1px solid var(--ll-line);
  border-radius: 16px;
  background: #fff;
  text-align: center;
}

.ll-lake-request {
  max-width: 820px;
  margin: clamp(48px, 7vw, 82px) auto 0;
  padding: clamp(24px, 5vw, 40px);
  border-radius: 20px;
  background: var(--ll-sand);
  text-align: center;
}

.ll-lake-request h3 {
  margin: 0;
  color: var(--ll-green-dark);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
}

.ll-lake-request > p {
  max-width: 650px;
  margin: 12px auto 22px;
  color: rgba(36, 39, 42, 0.72);
  line-height: 1.65;
}

.ll-lake-request__form {
  display: flex;
  max-width: 620px;
  margin: 0 auto;
  gap: 10px;
}

.ll-lake-request__form[hidden] {
  display: none !important;
}

.ll-lake-request__form input[type="text"] {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 48px;
  padding: 11px 16px;
  border: 1px solid rgba(36, 39, 42, 0.25);
  border-radius: 999px;
  background: #fff;
  color: var(--ll-ink);
  font: inherit;
}

.ll-lake-request__form button {
  flex: 0 0 auto;
  min-height: 48px;
  padding: 11px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--ll-green);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.ll-lake-request__form button:hover,
.ll-lake-request__form button:focus-visible {
  background: var(--ll-green-dark);
}

.ll-lake-request__form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.ll-lake-request__message {
  min-height: 24px;
  margin-top: 14px;
  font-weight: 700;
}

.ll-lake-request__message.is-success {
  color: #3f454a;
}

.ll-lake-request.is-complete .ll-lake-request__message {
  max-width: 620px;
  min-height: 0;
  margin: 8px auto 0;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(23, 96, 63, 0.1);
  font-size: 1.05rem;
}

.ll-lake-request__message.is-error {
  color: #9b2727;
}

.ll-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.ll-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;
}

.ll-music {
  background: #25292d;
  color: #fff;
}

.ll-album-headline {
  display: none;
  margin: 0 auto 34px;
  color: #fff;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-align: center;
}

.ll-album-art {
  display: none;
  max-width: 760px;
  margin: 0 auto clamp(42px, 6vw, 72px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.ll-album-art figure {
  margin: 0;
}

.ll-album-art img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
}

.ll-album-art figcaption {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.ll-section-heading--light h2,
.ll-section-heading--light p,
.ll-section-heading--light .ll-rich-text {
  color: #fff;
}

.ll-music-story {
  max-width: 980px;
  margin: 0 auto 34px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.ll-cd-offer {
  max-width: 980px;
  margin: 0 auto 34px;
  padding: clamp(20px, 4vw, 30px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 20px;
  border-radius: 18px;
  text-align: center;
}

.ll-cd-offer strong {
  flex-basis: 100%;
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  line-height: 1.15;
}

.ll-cd-offer span {
  flex: 1 1 180px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.ll-cd-offer a {
  flex: 0 0 auto;
  display: inline-flex;
  padding: 8px 15px;
  border-radius: 999px;
  background: #fff;
  color: var(--ll-green-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 600px) {
  .ll-cd-offer span {
    flex-basis: 100%;
  }
}

.ll-cd-offer a:hover,
.ll-cd-offer a:focus-visible {
  background: #d7dade;
  color: var(--ll-green-dark);
}

.ll-music-story h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.ll-music-story .ll-rich-text {
  color: rgba(255, 255, 255, 0.82);
}

.ll-player {
  position: sticky;
  top: 12px;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto 34px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(17, 19, 21, 0.96);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
}

.ll-player__now {
  min-width: 0;
}

.ll-player__eyebrow {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ll-player__now strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ll-player audio {
  width: 100%;
}

.ll-player__controls {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding-top: 4px;
}

.ll-player-control {
  width: 42px;
  height: 42px;
  padding: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: #30353a;
  color: rgba(255, 255, 255, 0.82);
  font: inherit;
  cursor: pointer;
}

.ll-player-control svg {
  display: block;
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.ll-player-control--transport {
  border-color: #d7dade;
}

.ll-player-control:hover,
.ll-player-control:focus-visible {
  border-color: #d7dade;
  background: #454b51;
  color: #fff;
}

.ll-player-control.is-active,
.ll-player-control--primary {
  border-color: #d7dade;
  background: #d7dade;
  color: #181a1c;
}

.ll-player-control--primary {
  width: 50px;
}

.ll-track-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.ll-track-group {
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
}

.ll-track-group h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.ll-track-group > p,
.ll-track-group > .ll-rich-text {
  color: rgba(255, 255, 255, 0.72);
}

.ll-track-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.ll-track-list li {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.ll-track {
  width: 100%;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 14px 4px;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.ll-track:hover,
.ll-track:focus-visible,
.ll-track.is-playing {
  color: #d9dde0;
}

.ll-track__number,
.ll-track__icon {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
}

.ll-track__title {
  min-width: 0;
  line-height: 1.35;
}

.ll-track__play {
  color: rgba(255, 255, 255, 0.66);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ll-track__play svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.ll-track__play .ll-track-icon-pause {
  display: none;
}

.ll-track.is-playing .ll-track-icon-play {
  display: none;
}

.ll-track.is-playing .ll-track-icon-pause {
  display: block;
}

.ll-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 7px;
  border: 0;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.ll-download svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.ll-download:hover,
.ll-download:focus-visible {
  background: #fff;
  color: var(--ll-green-dark);
}

.ll-lyrics {
  display: none;
  max-width: 820px;
  margin: clamp(46px, 7vw, 82px) auto 0;
}

.ll-lyrics details {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.ll-lyrics summary {
  padding: 18px 24px;
  color: #fff;
  font-size: 1rem;
  font-weight: 850;
  text-align: center;
  cursor: pointer;
  list-style-position: inside;
}

.ll-lyrics__sheet {
  padding: 6px 30px 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.75;
  text-align: center;
}

.ll-lyrics__sheet header {
  margin-bottom: 30px;
}

.ll-lyrics__sheet h2 {
  margin: 0;
  color: #fff;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ll-lyrics__sheet header p {
  margin: 4px 0;
}

.ll-lyrics__sheet small {
  color: rgba(255, 255, 255, 0.58);
}

.ll-lyrics__sheet h3 {
  margin: 30px 0 8px;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ll-lyrics__sheet p {
  margin: 0 0 20px;
}

@media (max-width: 520px) {
  .ll-lake-request__form {
    flex-direction: column;
  }

  .ll-lake-request__form button {
    width: 100%;
  }

}

@media (min-width: 600px) {
  .ll-lake-card {
    flex-basis: calc(50% - 12px);
  }

  .ll-player {
    grid-template-columns: minmax(180px, 0.7fr) minmax(320px, 1.3fr);
  }
}

@media (min-width: 800px) {
  .ll-hero::before {
    background-image: var(--ll-hero-desktop, url("/assets/images/hero/lake-life-hero.jpg"));
  }

  .ll-lake-card {
    flex-basis: calc(33.333% - 16px);
  }

  .ll-album-art {
    display: grid;
  }

  .ll-album-headline {
    display: block;
  }

  .ll-lyrics {
    display: block;
  }
}

@media (min-width: 1120px) {
  .ll-lake-card {
    flex-basis: calc(25% - 18px);
  }

  .ll-track-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .ll-lake-card,
  .ll-lake-card__image img,
  .ll-button {
    transition: none;
  }
}

@media (min-width: 1400px) {
  .ll-hero h1 {
    font-size: 50px;
  }

  .ll-album-headline {
    font-size: 50px;
  }

  .ll-hero p {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .ll-hero {
    min-height: 92vh;
  }

  .ll-hero__content {
    padding: 90px 18px 20px;
  }

  .ll-hero h1 {
    font-size: 30px;
    line-height: 1.08;
  }

  .ll-hero p {
    display: none;
  }

  .ll-hero .ll-button {
    min-height: 42px;
    padding: 9px 17px;
    font-size: 0.92rem;
  }
}

@media (max-width: 430px) {
  .ll-hero {
    min-height: 90vh;
  }

  .ll-hero__content {
    padding: 84px 18px 18px;
  }

  .ll-hero h1 {
    font-size: 26px;
  }
}