@font-face {
  font-family: "DM Serif Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/dm-serif-display-regular.woff2") format("woff2");
}

@font-face {
  font-family: "DM Serif Display";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/dm-serif-display-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/inter-latin-400-700.woff2") format("woff2");
}

:root {
  --forest: #062f24;
  --forest-deep: #021b15;
  --forest-soft: #0d4a38;
  --sage: #8ead98;
  --sage-light: #d8e4dc;
  --cream: #f7f1e7;
  --paper: #fffaf2;
  --gold: #cfa75a;
  --blue: #24506a;
  --ink: #16251f;
  --muted: #64756c;
  --line: rgba(6, 47, 36, 0.14);
  --shadow: 0 24px 80px rgba(1, 17, 13, 0.22);
  --radius: 8px;
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

main {
  background: var(--forest-deep);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 22px clamp(20px, 4vw, 56px);
  color: var(--cream);
  transition: background 260ms ease, padding 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled {
  padding-block: 14px;
  background: rgba(2, 27, 21, 0.88);
  box-shadow: 0 12px 40px rgba(1, 17, 13, 0.22);
  backdrop-filter: blur(14px);
}

.brand {
  display: grid;
  gap: 0;
  letter-spacing: 0;
}

.brand span {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1;
}

.brand small {
  color: var(--sage-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav a,
.header-cta,
.footer-links a {
  position: relative;
}

.main-nav a::after,
.footer-links a::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  border: 1px solid rgba(247, 241, 231, 0.54);
  border-radius: var(--radius);
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 800;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.header-cta:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--forest);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.menu-toggle {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(247, 241, 231, 0.54);
  border-radius: var(--radius);
  background: rgba(247, 241, 231, 0.08);
  color: var(--cream);
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease;
}

.menu-toggle:hover,
.menu-toggle[aria-expanded="true"] {
  background: rgba(247, 241, 231, 0.16);
  border-color: rgba(247, 241, 231, 0.78);
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: currentColor;
}

:where(
  .brand,
  .main-nav a,
  .header-cta,
  .menu-toggle,
  .mobile-menu a,
  .button,
  .social-icons a,
  .text-link,
  .song-card,
  .platform-card,
  .faq-item summary,
  .footer-links a
):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(207, 167, 90, 0.16);
}

:where(.main-nav a, .footer-links a):focus-visible {
  border-radius: calc(var(--radius) - 4px);
}

.hero {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 108px clamp(20px, 6vw, 86px) 132px;
  background: var(--forest-deep);
}

.hero::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  height: 10vh;
  background: linear-gradient(180deg, rgba(2, 27, 21, 0), var(--forest));
  pointer-events: none;
}

.hero-image {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(64vw, 920px);
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(0.9) contrast(1.02);
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 27, 21, 0.98) 0%, rgba(2, 27, 21, 0.84) 35%, rgba(2, 27, 21, 0.18) 72%),
    linear-gradient(180deg, rgba(2, 27, 21, 0.42) 0%, rgba(2, 27, 21, 0.12) 50%, rgba(2, 27, 21, 0.58) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(730px, 100%);
  color: var(--cream);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 11.5rem);
  line-height: 0.84;
  font-weight: 400;
}

.hero-line {
  margin: 24px 0 0;
  max-width: 680px;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 5.4rem);
  line-height: 0.95;
}

.hero-copy {
  margin: 28px 0 0;
  max-width: 560px;
  color: rgba(247, 241, 231, 0.82);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.hero-actions,
.support-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.hero-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  color: rgba(247, 241, 231, 0.82);
}

.hero-social > span {
  font-family: var(--serif);
  font-size: 1.42rem;
  line-height: 1;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icons a {
  --platform-color: var(--cream);
  --platform-rgb: 247, 241, 231;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(var(--platform-rgb), 0.48);
  border-radius: var(--radius);
  color: var(--platform-color);
  background: rgba(2, 27, 21, 0.38);
  box-shadow: inset 0 0 0 1px rgba(var(--platform-rgb), 0.04);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.social-icons a[data-platform="youtube"],
.platform-card[data-platform="youtube"] {
  --platform-color: #ff0033;
  --platform-rgb: 255, 0, 51;
}

.social-icons a[data-platform="spotify"],
.platform-card[data-platform="spotify"] {
  --platform-color: #1ed760;
  --platform-rgb: 30, 215, 96;
}

.social-icons a[data-platform="instagram"],
.platform-card[data-platform="instagram"] {
  --platform-color: #e4405f;
  --platform-rgb: 228, 64, 95;
}

.social-icons a[data-platform="facebook"],
.platform-card[data-platform="facebook"] {
  --platform-color: #0866ff;
  --platform-rgb: 8, 102, 255;
}

.play-badge svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-logo-surface {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.social-logo {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.social-icons [data-platform="youtube"] .social-logo {
  width: 27px;
  height: 24px;
  max-width: none;
}

.social-icons [data-platform="spotify"] .social-logo-surface {
  background: #ffffff;
}

.social-icons [data-platform="spotify"] .social-logo {
  width: 21px;
  height: 21px;
}

.social-icons [data-platform="instagram"] .social-logo,
.social-icons [data-platform="facebook"] .social-logo {
  width: 22px;
  height: 22px;
}

.social-icons a:hover {
  transform: translateY(-2px);
  background: rgba(var(--platform-rgb), 0.18);
  border-color: var(--platform-color);
  color: var(--platform-color);
  box-shadow: 0 10px 24px rgba(var(--platform-rgb), 0.2), inset 0 0 0 1px rgba(var(--platform-rgb), 0.1);
}

.social-icons a:focus-visible {
  border-color: var(--platform-color);
  background: rgba(var(--platform-rgb), 0.16);
}

.mail-mini {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(247, 241, 231, 0.36);
  border-radius: var(--radius);
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.mail-mini:hover {
  transform: translateY(-2px);
  background: rgba(247, 241, 231, 0.12);
  border-color: var(--cream);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest-deep);
}

.button.primary:hover {
  background: var(--forest-soft);
  border-color: var(--forest-soft);
  color: var(--cream);
}

.button.primary.secondary-action {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest-deep);
}

.button.primary.secondary-action:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest-deep);
}

.button.ghost {
  color: var(--cream);
  border-color: rgba(247, 241, 231, 0.52);
}

.button.ghost:hover {
  background: rgba(247, 241, 231, 0.12);
  border-color: var(--cream);
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 4vw, 56px);
  bottom: 28px;
  display: flex;
  gap: 8px;
}

.hero-scroll span {
  width: 2px;
  height: 34px;
  background: rgba(247, 241, 231, 0.48);
  animation: pulseLine 1.8s ease-in-out infinite;
}

.hero-scroll span:nth-child(2) {
  animation-delay: 180ms;
}

.hero-scroll span:nth-child(3) {
  animation-delay: 360ms;
}

.layer-section {
  position: relative;
  z-index: var(--layer-z, 2);
  margin-top: calc(var(--layer-overlap, 86px) * -1);
  border-radius: var(--layer-radius, clamp(38px, 5vw, 76px)) var(--layer-radius, clamp(38px, 5vw, 76px)) 0 0;
  box-shadow:
    0 -42px 96px rgba(1, 17, 13, 0.2),
    0 -1px 0 rgba(247, 241, 231, 0.5);
  transform: translate3d(0, var(--layer-parallax, 0px), 0);
  will-change: transform;
}

.layer-section::before {
  position: absolute;
  content: "";
  z-index: 0;
  left: 0;
  right: 0;
  top: -1px;
  height: clamp(34px, 5vw, 62px);
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(180px 44px at 9% 0%, rgba(255, 250, 242, 0.5), transparent 70%),
    radial-gradient(260px 48px at 48% 0%, rgba(255, 250, 242, 0.24), transparent 72%),
    radial-gradient(220px 42px at 88% 0%, rgba(255, 250, 242, 0.34), transparent 70%),
    linear-gradient(180deg, rgba(255, 250, 242, 0.22), transparent);
  opacity: 0.82;
}

.intro-band {
  --layer-z: 3;
  --layer-overlap: 76px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  color: var(--forest);
  padding: clamp(54px, 7vw, 90px) clamp(20px, 6vw, 86px);
}

@media (min-width: 1041px) {
  .intro-band {
    padding-bottom: calc(clamp(54px, 7vw, 90px) + 86px);
  }
}

.has-nature-decor {
  position: relative;
  isolation: isolate;
}

.has-nature-decor > :not(.nature-decor) {
  position: relative;
  z-index: 1;
}

.nature-decor {
  position: absolute;
  z-index: 0;
  display: block;
  width: var(--decor-width, 220px);
  max-width: none;
  pointer-events: none;
  user-select: none;
  opacity: var(--decor-opacity, 0.2);
  filter: drop-shadow(0 24px 34px rgba(1, 17, 13, 0.1));
  transform: translate3d(0, 0, 0) rotate(var(--decor-rotate, 0deg));
}

.nature-decor > img,
.gratitude-flower > img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

.decor-bird {
  --decor-width: clamp(260px, 30vw, 470px);
  --decor-opacity: 0.14;
  --decor-rotate: -3deg;
  right: max(-210px, -11vw);
  top: 12px;
}

.decor-butterfly-dark {
  --decor-width: clamp(130px, 12vw, 220px);
  --decor-opacity: 0.19;
  --decor-rotate: 13deg;
  left: clamp(28px, 7vw, 118px);
  top: clamp(40px, 6vw, 82px);
}

.decor-butterfly-orange {
  --decor-width: clamp(150px, 14vw, 250px);
  --decor-opacity: 1;
  --decor-rotate: -12deg;
  right: clamp(22px, 6vw, 104px);
  top: clamp(88px, 9vw, 140px);
  filter: drop-shadow(0 22px 30px rgba(1, 17, 13, 0.14));
}

.decor-orchid {
  --decor-width: clamp(210px, 22vw, 380px);
  --decor-opacity: 0.12;
  --decor-rotate: 8deg;
  right: -88px;
  bottom: -112px;
}

.decor-daisies {
  --decor-width: clamp(260px, 28vw, 470px);
  --decor-opacity: 0.16;
  --decor-rotate: -8deg;
  right: -96px;
  bottom: -150px;
  filter: drop-shadow(0 30px 46px rgba(1, 17, 13, 0.18));
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(28px, 6vw, 90px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.intro-kicker {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1;
}

.intro-text {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.62rem);
  line-height: 1.5;
}

.section-pad {
  padding: clamp(74px, 9vw, 132px) clamp(20px, 6vw, 86px);
}

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

.section-heading.narrow {
  max-width: 760px;
}

.section-heading h2,
.about-copy h2,
.support-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.6vw, 6rem);
  line-height: 0.98;
  font-weight: 400;
}

.section-heading p:not(.eyebrow),
.about-copy p,
.support-copy p {
  margin: 22px auto 0;
  max-width: 710px;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.featured-song {
  --layer-z: 4;
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.featured-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.72fr);
  gap: clamp(22px, 5vw, 64px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}

.video-frame {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: var(--radius);
  background: var(--forest-deep);
  box-shadow: var(--shadow);
}

.video-frame::before {
  display: block;
  content: "";
  padding-top: 56.25%;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-consent {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 16px;
  padding: clamp(24px, 5vw, 56px);
  background:
    linear-gradient(180deg, rgba(2, 27, 21, 0.48), rgba(2, 27, 21, 0.78)),
    url("assets/youtube-thumbnails/lass-mich-stille-werden-featured.jpg") center / cover no-repeat;
  color: var(--cream);
  text-align: center;
}

.video-consent p {
  max-width: 430px;
  margin: 0;
  color: rgba(247, 241, 231, 0.78);
  font-size: 0.92rem;
}

.song-notes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 46px);
  border-radius: var(--radius);
  background: var(--forest);
  color: var(--cream);
}

.song-notes p {
  margin: 24px 0 0;
  color: rgba(247, 241, 231, 0.82);
}

.stat-row {
  display: grid;
  gap: 2px;
}

.stat-row span {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7vw, 6rem);
  line-height: 0.88;
  color: var(--gold);
}

.stat-row small {
  color: var(--sage-light);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  min-height: 44px;
  margin-top: 28px;
  padding: 10px 16px;
  border: 1px solid rgba(207, 167, 90, 0.72);
  border-radius: var(--radius);
  color: var(--gold);
  font-weight: 800;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.text-link:hover {
  transform: translateY(-2px);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest-deep);
}

.music-section {
  --layer-z: 5;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--paper), var(--cream));
}

.song-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.song-card {
  position: relative;
  overflow: hidden;
  min-height: 342px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 22px;
  isolation: isolate;
  color: var(--cream);
  border-radius: var(--radius);
  background: var(--forest-deep);
  box-shadow: 0 18px 48px rgba(1, 17, 13, 0.14);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.song-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  opacity: 0.72;
  transform: scale(1.04);
  transition: transform 420ms ease, opacity 420ms ease;
  z-index: -2;
}

.song-card::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 27, 21, 0.08), rgba(2, 27, 21, 0.88));
  border-radius: inherit;
  z-index: -1;
}

.song-card::before {
  position: absolute;
  content: "";
  inset: 14px;
  border: 1px solid rgba(247, 241, 231, 0.26);
  border-radius: calc(var(--radius) - 2px);
  opacity: 0;
  transition: opacity 260ms ease, transform 260ms ease;
  transform: scale(0.98);
}

.play-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: #ff0033;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(1, 17, 13, 0.18);
  transition: transform 260ms ease, background 260ms ease, color 260ms ease;
}

.song-card:hover img {
  opacity: 0.9;
  transform: scale(1.1);
}

.song-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(1, 17, 13, 0.2);
}

.song-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.song-card:hover .play-badge {
  transform: scale(1.06);
  background: #ffffff;
  color: #ff0033;
}

.song-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 2.6vw, 2.55rem);
  line-height: 0.96;
}

.song-card small {
  margin-top: 10px;
  color: var(--sage-light);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-panel {
  max-width: 1010px;
  margin: 46px auto 0;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.62);
  box-shadow: 0 18px 58px rgba(1, 17, 13, 0.08);
}

.platform-panel > p {
  margin: 0 0 18px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  text-align: center;
}

.platforms {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.platform-card {
  --platform-color: var(--gold);
  --platform-rgb: 207, 167, 90;
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 12px;
  min-height: 84px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--forest);
  font-weight: 800;
  background: var(--paper);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.platform-logo-surface {
  grid-row: 1 / span 2;
  box-sizing: border-box;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--platform-rgb), 0.2);
  border-radius: var(--radius);
  background: rgba(var(--platform-rgb), 0.1);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.platform-card[data-platform="spotify"] .platform-logo-surface {
  background: #ffffff;
}

.platform-card[data-platform="youtube"] .social-logo {
  width: 36px;
  height: 32px;
}

.platform-card[data-platform="spotify"] .social-logo,
.platform-card[data-platform="instagram"] .social-logo,
.platform-card[data-platform="facebook"] .social-logo {
  width: 27px;
  height: 27px;
}

.platform-card > span:not(.platform-logo-surface) {
  align-self: end;
  line-height: 1.1;
}

.platform-card small {
  align-self: start;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.platform-card:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
  transform: translateY(-2px);
}

.platform-card:hover small {
  color: var(--sage-light);
}

.platform-card:hover .platform-logo-surface,
.platform-card:focus-visible .platform-logo-surface {
  background: var(--paper);
  border-color: rgba(var(--platform-rgb), 0.42);
  box-shadow: 0 8px 20px rgba(1, 17, 13, 0.16);
}

.platform-card[data-platform="spotify"]:hover .platform-logo-surface,
.platform-card[data-platform="spotify"]:focus-visible .platform-logo-surface {
  background: #ffffff;
}

.platform-card:hover .platform-logo-surface {
  transform: scale(1.04);
}

.about-section,
.support-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  padding: clamp(72px, 9vw, 128px) clamp(20px, 6vw, 86px);
  background: var(--paper);
}

.about-section {
  --layer-z: 6;
}

.about-image,
.support-media {
  position: relative;
  overflow: hidden;
  height: clamp(430px, 46vw, 610px);
  min-height: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--forest-deep);
  border: 1px solid rgba(6, 47, 36, 0.12);
}

.about-image img,
.support-media img,
.visual-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.about-image img {
  object-position: left center;
  transform: scale(1.015);
}

.about-image::after,
.support-media::after {
  position: absolute;
  content: "";
  inset: 18px;
  border: 1px solid rgba(247, 241, 231, 0.32);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
}

.about-copy,
.support-copy {
  max-width: 620px;
}

.visual-break {
  --layer-z: 7;
  --layer-overlap: 74px;
  position: relative;
  min-height: 76vh;
  overflow: hidden;
  display: grid;
  place-items: end start;
  background: var(--forest-deep);
}

.visual-break img {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.88;
  transform: scale(1.02);
}

.visual-break::after {
  position: absolute;
  content: "";
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 27, 21, 0.72), rgba(2, 27, 21, 0.12)),
    linear-gradient(180deg, rgba(2, 27, 21, 0.06), rgba(2, 27, 21, 0.58));
}

.visual-break-copy {
  position: relative;
  z-index: 2;
  width: min(880px, calc(100% - 40px));
  margin: 0 clamp(20px, 6vw, 86px) clamp(42px, 8vw, 90px);
}

.visual-break-copy p {
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.92;
}

.events-section {
  --layer-z: 8;
  position: relative;
  padding: clamp(80px, 8vw, 118px) clamp(20px, 6vw, 86px) clamp(88px, 9vw, 132px);
  background:
    radial-gradient(circle at 10% 20%, rgba(207, 167, 90, 0.1), transparent 24%),
    linear-gradient(135deg, var(--cream), var(--paper) 58%, var(--cream));
}

.events-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(540px, 1.2fr);
  gap: clamp(56px, 8vw, 118px);
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: start;
}

.event-copy {
  position: relative;
  z-index: 2;
  max-width: 490px;
  padding-top: 8px;
}

.event-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  line-height: 0.96;
  font-weight: 400;
}

.event-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  max-width: 470px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
}

.event-copy .button {
  margin-top: 34px;
}

.event-list {
  border-top: 1px solid var(--line);
}

.event-card {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(220px, 0.9fr) minmax(210px, 1.1fr);
  gap: clamp(14px, 1.6vw, 22px);
  align-items: center;
  min-height: 108px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--forest);
}

.event-card svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.event-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.2vw, 2.35rem);
  line-height: 1;
  font-weight: 400;
  hyphens: auto;
}

.event-card h3.long-event-title {
  font-size: clamp(1.5rem, 1.8vw, 1.95rem);
  line-height: 1;
}

.event-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
  overflow-wrap: break-word;
}

.centered {
  margin-inline: auto;
}

.events-section .button {
  display: flex;
  width: fit-content;
}

.faq-section {
  position: relative;
  z-index: 8;
  scroll-margin-top: 88px;
  padding-bottom: clamp(110px, 12vw, 176px);
  background:
    radial-gradient(circle at 10% 16%, rgba(207, 167, 90, 0.13), transparent 26%),
    linear-gradient(180deg, var(--cream), var(--paper));
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 8vw, 112px);
  width: min(1120px, 100%);
  margin: 0 auto;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 126px;
}

.faq-heading h2 {
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.6vw, 5.6rem);
  font-weight: 400;
  line-height: 0.96;
}

.faq-heading > p:last-child {
  margin: 22px 0 0;
  max-width: 430px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 20px;
  align-items: center;
  min-height: 82px;
  padding: 22px 4px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.34rem, 2.2vw, 1.86rem);
  line-height: 1.16;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  content: "";
}

.faq-item summary:hover {
  color: var(--forest-soft);
}

.faq-icon {
  position: relative;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(6, 47, 36, 0.22);
  border-radius: 50%;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 220ms ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-item > p {
  margin: -4px 52px 0 4px;
  padding-bottom: 26px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
}

.support-section {
  --layer-z: 9;
  --layer-overlap: 58px;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  background: var(--forest);
  color: var(--cream);
}

.support-copy p {
  color: rgba(247, 241, 231, 0.78);
}

.support-media {
  height: clamp(390px, 40vw, 540px);
  min-height: 0;
}

.gratitude-strip {
  --layer-z: 10;
  --layer-overlap: 62px;
  position: relative;
  min-height: clamp(260px, 32vw, 390px);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: clamp(48px, 8vw, 90px) clamp(20px, 6vw, 86px);
  background:
    radial-gradient(circle at 18% 18%, rgba(207, 167, 90, 0.18), transparent 28%),
    linear-gradient(115deg, #021b15 0%, #062f24 48%, #0d4a38 100%);
  color: var(--cream);
}

.gratitude-strip::before {
  position: absolute;
  content: "";
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 27, 21, 0.1), rgba(247, 241, 231, 0.08), rgba(2, 27, 21, 0.1)),
    linear-gradient(180deg, rgba(2, 27, 21, 0.02), rgba(2, 27, 21, 0.42));
}

.gratitude-strip > .gratitude-flower {
  position: absolute;
  display: block;
  right: -108px;
  bottom: -178px;
  width: min(430px, 34vw);
  opacity: 0.26;
  transform: rotate(-10deg);
  filter: saturate(0.95) drop-shadow(0 28px 46px rgba(1, 17, 13, 0.18));
}

.gratitude-copy {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  text-align: center;
  animation: floatIn 900ms ease both;
}

.gratitude-copy p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 6.2rem);
  line-height: 0.98;
  text-wrap: balance;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 44px clamp(20px, 6vw, 86px);
  background: var(--forest-deep);
  color: var(--cream);
}

.site-footer strong {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(247, 241, 231, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-weight: 800;
}

.legal-page {
  background: var(--cream);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 6vw, 86px);
  background: var(--forest-deep);
  color: var(--cream);
}

.legal-home-link,
.legal-back-link {
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  font-weight: 700;
  transition: background 220ms ease, color 220ms ease;
}

.legal-home-link {
  padding: 10px 18px;
}

.legal-home-link:hover,
.legal-back-link:hover {
  background: var(--gold);
  color: var(--forest-deep);
}

.legal-main {
  padding: clamp(54px, 9vw, 112px) 20px;
  background:
    radial-gradient(circle at 88% 8%, rgba(207, 167, 90, 0.16), transparent 28%),
    var(--cream);
}

.legal-content {
  width: min(760px, 100%);
  margin: 0 auto;
}

.legal-content h1 {
  margin: 8px 0 clamp(42px, 7vw, 68px);
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 9vw, 6rem);
  font-weight: 400;
  line-height: 0.95;
  overflow-wrap: anywhere;
}

.legal-content section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 12px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-weight: 400;
  line-height: 1.2;
}

.legal-content p,
.legal-content address,
.legal-content ul {
  margin: 0;
  color: var(--ink);
  font-style: normal;
}

.legal-content ul {
  padding-left: 1.3rem;
}

.legal-content li + li {
  margin-top: 6px;
}

.legal-content :is(p, ul, address) + :is(p, ul, address) {
  margin-top: 14px;
}

.legal-content code {
  overflow-wrap: anywhere;
  color: var(--forest-soft);
  font-size: 0.92em;
}

.legal-content :is(p, address) a {
  color: var(--forest-soft);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.legal-back-link {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 20px;
  color: var(--forest);
}

.legal-page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
}

.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 720ms ease, transform 720ms ease;
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.07) translate3d(-12px, 0, 0);
  }
}

@keyframes pulseLine {
  0%,
  100% {
    transform: scaleY(0.45);
    opacity: 0.35;
  }

  50% {
    transform: scaleY(1);
    opacity: 0.9;
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .layer-section {
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none !important;
  }

  .layer-section::before {
    display: none;
  }

  .nature-decor {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto auto;
    gap: 12px;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    justify-self: end;
    display: inline-grid;
    align-content: center;
    gap: 4px;
  }

  .mobile-menu:not([hidden]) {
    position: absolute;
    top: calc(100% - 4px);
    right: clamp(18px, 4vw, 56px);
    display: grid;
    width: min(280px, calc(100vw - 36px));
    max-width: calc(100vw - 36px);
    gap: 2px;
    padding: 10px;
    border: 1px solid rgba(6, 47, 36, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 250, 242, 0.96);
    box-shadow: 0 18px 48px rgba(1, 17, 13, 0.2);
    color: var(--forest);
    backdrop-filter: blur(14px);
  }

  .mobile-menu a {
    border-radius: calc(var(--radius) - 2px);
    padding: 11px 12px;
    font-size: 0.92rem;
    font-weight: 800;
  }

  .mobile-menu a:hover {
    background: rgba(216, 228, 220, 0.58);
  }

  .hero-image {
    width: 86vw;
    opacity: 0.82;
  }

  .featured-layout,
  .about-section,
  .support-section,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    position: static;
  }

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

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

  .events-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    width: min(860px, 100%);
  }

  .event-copy {
    max-width: 720px;
    margin: 0 auto;
    padding-top: 0;
    text-align: center;
  }

  .event-copy p:not(.eyebrow) {
    margin-inline: auto;
  }

  .events-section .button {
    margin-inline: auto;
  }

  .about-copy,
  .support-copy {
    max-width: none;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .site-header {
    gap: 8px;
    padding: 16px 18px;
  }

  .header-cta {
    padding: 9px 12px;
    font-size: 0.78rem;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 100svh;
    padding: 53svh 20px 44px;
    align-items: end;
  }

  .hero h1 {
    font-size: clamp(3.95rem, 18vw, 5.85rem);
  }

  .hero-line {
    margin-top: 18px;
    font-size: clamp(2rem, 10vw, 3.3rem);
  }

  .hero-image {
    width: 100%;
    height: 50svh;
    bottom: auto;
    object-position: 64% top;
    opacity: 1;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(6, 47, 36, 0.06) 0%, rgba(6, 47, 36, 0.08) 40%, rgba(6, 47, 36, 0.16) 62%, rgba(2, 27, 21, 0.68) 84%, var(--forest-deep) 100%),
      linear-gradient(90deg, rgba(13, 74, 56, 0.1), rgba(13, 74, 56, 0.03));
  }

  .hero::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(2, 27, 21, 0), var(--forest-deep) 18%, var(--forest) 100%);
    z-index: 1;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content .eyebrow {
    display: none;
  }

  .hero-copy {
    margin-top: 20px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-scroll {
    display: none;
  }

  .hero-social {
    gap: 12px;
  }

  .hero-social > span {
    width: 100%;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .song-grid {
    grid-template-columns: 1fr;
  }

  .platforms {
    grid-template-columns: 1fr;
  }

  .song-card {
    min-height: 310px;
  }

  .platform-card {
    min-height: 78px;
  }

  .events-section {
    padding: 72px 20px 84px;
  }

  .events-layout {
    gap: 36px;
  }

  .event-copy h2 {
    font-size: clamp(2.35rem, 11.5vw, 3.5rem);
    line-height: 0.94;
  }

  .event-copy p:not(.eyebrow) {
    margin-top: 14px;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .event-copy .button {
    margin-top: 18px;
  }

  .event-card {
    grid-template-columns: 36px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 6px;
    min-height: 0;
    padding: 20px 0;
    align-items: start;
  }

  .event-card svg {
    grid-row: 1 / span 2;
    width: 30px;
    height: 30px;
    margin-top: 2px;
  }

  .event-card h3,
  .event-card p {
    grid-column: 2;
  }

  .event-card h3 {
    font-size: clamp(1.7rem, 7vw, 2.1rem);
  }

  .event-card h3.long-event-title {
    font-size: clamp(1.45rem, 6.3vw, 1.82rem);
  }

  .event-card p {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .faq-section {
    padding-bottom: 104px;
  }

  .faq-layout {
    gap: 30px;
  }

  .faq-item summary {
    min-height: 72px;
    padding-block: 18px;
  }

  .faq-item > p {
    margin-right: 4px;
  }

  .about-image,
  .support-media {
    height: 390px;
    min-height: 0;
  }

  .about-image img {
    object-position: 28% center;
  }

  .gratitude-strip {
    background-position: 24% center;
  }

  .gratitude-strip > .gratitude-flower {
    right: -46vw;
    bottom: -20vw;
    width: 86vw;
  }

  .visual-break {
    min-height: 58vh;
  }

  .visual-break img {
    object-position: center;
  }

  .visual-break-copy {
    width: min(100% - 36px, 360px);
    margin: 0 18px clamp(70px, 18vw, 92px);
  }

  .visual-break-copy p {
    font-size: clamp(2.2rem, 11.5vw, 3rem);
    line-height: 0.95;
    overflow-wrap: anywhere;
    hyphens: auto;
    text-shadow: 0 3px 22px rgba(1, 17, 13, 0.55);
  }

  .site-footer {
    display: grid;
  }

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

  .legal-header {
    align-items: flex-start;
  }

  .legal-main {
    padding-inline: 18px;
  }
}

@media (max-width: 430px) {
  .brand span {
    font-size: 1.22rem;
  }

  .brand small {
    font-size: 0.62rem;
  }

  .hero-actions,
  .support-actions {
    align-items: stretch;
  }

  .hero-social {
    margin-top: 22px;
  }

  .button {
    width: 100%;
  }

  .support-actions .text-link {
    align-self: center;
  }
}
