:root {
  --navy: #06162f;
  --navy-2: #0d2445;
  --red: #c82232;
  --gold: #d6aa4a;
  --white: #ffffff;
  --mist: #f5f7fb;
  --ink: #162033;
  --muted: #607089;
  --line: rgba(255, 255, 255, 0.15);
  --shadow: 0 20px 60px rgba(6, 22, 47, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(6, 22, 47, 0.94);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(214, 170, 74, 0.65);
  background: linear-gradient(135deg, var(--red), var(--navy-2));
  color: var(--white);
  font-weight: 800;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.78);
}

.nav a:hover,
.nav a.active,
.nav-menu.active > summary,
.nav-menu[open] > summary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.nav-menu {
  position: relative;
}

.nav-menu summary {
  display: block;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  list-style: none;
}

.nav-menu summary::-webkit-details-marker {
  display: none;
}

.nav-menu summary::after {
  content: " +";
  color: var(--gold);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 20;
  display: grid;
  width: min(330px, calc(100vw - 36px));
  padding: 10px;
  border: 1px solid rgba(214, 170, 74, 0.24);
  background: #061225;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.nav-dropdown a {
  padding: 9px 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
}

.nav-dropdown a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 22, 47, 0.94) 0%, rgba(6, 22, 47, 0.76) 42%, rgba(6, 22, 47, 0.18) 100%),
    linear-gradient(0deg, rgba(6, 22, 47, 0.52), rgba(6, 22, 47, 0.12));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 84px);
  padding: 72px 0;
}

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

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

h4 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.92rem;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-actions,
.section-heading,
.split-band,
.site-footer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button.primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 34px rgba(200, 34, 50, 0.3);
}

.button.secondary {
  border-color: rgba(6, 22, 47, 0.22);
  background: var(--white);
  color: var(--navy);
}

.hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
}

.button.light {
  background: var(--white);
  color: var(--navy);
}

.button.outline-light {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.button.compact {
  min-height: 42px;
  padding: 10px 14px;
  white-space: nowrap;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-trust span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 700;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0;
}

.intro-grid,
.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.intro-grid p,
.page-hero p,
.about-layout p {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading {
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 26px;
}

.card-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-grid,
.investment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card-grid.large {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-panel {
  width: 100%;
  max-width: none;
  padding-right: clamp(18px, 6vw, 84px);
  padding-left: clamp(18px, 6vw, 84px);
  background: var(--white);
}

.trust-grid,
.audience-grid,
.process-steps {
  display: grid;
  gap: 18px;
}

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

.trust-grid article {
  padding: 26px;
  border-left: 4px solid var(--gold);
  background: var(--mist);
}

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

.audience-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(6, 22, 47, 0.1);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(6, 22, 47, 0.08);
}

.help-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.help-cloud span {
  padding: 9px 12px;
  border: 1px solid rgba(6, 22, 47, 0.12);
  background: var(--white);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(6, 22, 47, 0.06);
}

.audience-grid-featured article {
  min-height: 260px;
}

.audience-grid span,
.process-steps span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 20px;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
}

.card,
.price-card,
.track-card,
.contact-form,
.contact-panel {
  background: var(--white);
  box-shadow: var(--shadow);
}

.card,
.price-card {
  padding: 26px;
  border-top: 4px solid var(--red);
}

.service-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  gap: 8px;
}

.service-card p {
  margin-bottom: 4px;
}

.service-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.card-kicker,
.pill {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pill {
  padding: 6px 9px;
  background: rgba(200, 34, 50, 0.09);
}

.pill.gold {
  color: var(--navy);
  background: rgba(214, 170, 74, 0.34);
}

.card p,
.price-card li,
.track-card p,
.contact-panel li,
.trust-grid p,
.audience-grid p,
.process-steps p {
  color: var(--muted);
}

.process-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 80px);
}

.founder-teaser {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.founder-teaser p {
  color: var(--muted);
  font-size: 1.06rem;
}

.founder-teaser .button {
  margin-top: 8px;
}

.story-ideas-hero .hero-actions {
  margin-top: 28px;
}

.idea-section {
  padding-top: 42px;
}

.idea-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.idea-grid article {
  display: flex;
  min-height: 252px;
  flex-direction: column;
  padding: 24px;
  border-top: 4px solid var(--gold);
  background: var(--white);
  box-shadow: var(--shadow);
}

.idea-grid h3 {
  color: var(--navy);
}

.idea-grid p {
  color: var(--muted);
}

.idea-grid a {
  align-self: flex-start;
  margin-top: auto;
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 800;
}

.process-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.process-intro p {
  color: var(--muted);
  font-size: 1.06rem;
}

.process-steps {
  grid-template-columns: 1fr;
}

.process-steps article {
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.how-steps {
  display: grid;
  gap: 18px;
  padding-top: 20px;
}

.how-step {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.how-step span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  background: var(--navy);
  color: var(--gold);
  font-size: 1rem;
  font-weight: 800;
}

.how-step h2 {
  margin-bottom: 8px;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
}

.how-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.process-cta {
  width: 100%;
  max-width: none;
  padding: 66px clamp(18px, 6vw, 84px);
  background: var(--navy);
  color: var(--white);
}

.process-cta h2 {
  max-width: 820px;
}

.process-cta .button {
  margin-top: 12px;
}

.split-band {
  width: 100%;
  max-width: none;
  justify-content: space-between;
  padding: 52px clamp(18px, 6vw, 84px);
  background: var(--navy);
  color: var(--white);
}

.split-band div {
  max-width: 760px;
}

.split-band h2 {
  margin-bottom: 0;
}

.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.page-hero {
  padding: 84px clamp(18px, 6vw, 84px) 72px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(2.25rem, 5.5vw, 4.9rem);
}

.page-hero p:last-child {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.about-hero-copy {
  max-width: 920px;
}

.about-hero-photo {
  width: min(100%, 320px);
  margin: 0;
  justify-self: end;
}

.about-hero-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(219, 174, 83, 0.72);
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.library-list {
  display: grid;
  gap: 16px;
}

.library-hero .hero-actions {
  margin-top: 28px;
}

.library-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
}

.library-intro p {
  color: var(--muted);
  font-size: 1.06rem;
}

.library-console {
  padding-top: 34px;
}

.library-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: 22px;
  align-items: end;
  margin-bottom: 28px;
}

.library-search {
  display: grid;
  gap: 8px;
}

.library-search span {
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 800;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.category-button {
  min-height: 40px;
  border: 1px solid rgba(6, 22, 47, 0.16);
  padding: 9px 12px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
}

.category-button[aria-pressed="true"] {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.collection-filters {
  margin-bottom: 22px;
}

.collection-filters .category-button {
  border-color: rgba(214, 170, 74, 0.4);
}

.library-count {
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 700;
}

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

.song-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1fr);
  min-height: 420px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.featured-song {
  outline: 2px solid rgba(214, 170, 74, 0.44);
}

.song-cover {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  color: var(--white);
  isolation: isolate;
}

.song-cover::before,
.song-cover::after {
  position: absolute;
  content: "";
  z-index: -1;
}

.song-cover::before {
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, var(--navy), var(--red));
}

.song-cover::after {
  right: -42px;
  bottom: -42px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(214, 170, 74, 0.48);
  transform: rotate(45deg);
}

.song-cover span {
  max-width: 160px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.song-cover strong {
  max-width: 190px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.02;
}

.song-cover.navy-gold-white::before {
  background: linear-gradient(145deg, var(--navy), #8d6f2c);
}

.song-cover.gold-navy-cream::before {
  background: linear-gradient(145deg, #7d6328, var(--navy));
}

.song-cover.white-gold-navy::before {
  background: linear-gradient(145deg, #f7f4ea, #b58b36 48%, var(--navy));
}

.song-cover.navy-white-gold::before {
  background: linear-gradient(145deg, var(--navy), #f7f4ea 68%, var(--gold));
}

.song-cover.red-gold-navy::before {
  background: linear-gradient(145deg, var(--red), var(--gold), var(--navy));
}

.song-cover.navy-red-white::before {
  background: linear-gradient(145deg, var(--navy), var(--red), #eef2f7);
}

.song-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 26px;
}

.song-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.song-genre {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.audio-shell {
  margin: 4px 0 20px;
  padding: 14px;
  border: 1px solid rgba(6, 22, 47, 0.1);
  background: var(--mist);
}

.audio-shell audio {
  width: 100%;
}

.audio-shell p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.sample-soon {
  padding: 14px;
  border: 1px solid rgba(214, 170, 74, 0.45);
  background: var(--white);
}

.sample-soon strong {
  color: var(--navy);
  font-size: 0.96rem;
}

.sample-soon p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.song-description,
.song-detail p,
.song-story p {
  color: var(--muted);
}

.song-description {
  margin-bottom: 16px;
  font-weight: 700;
}

.song-detail {
  margin-bottom: 18px;
}

.song-detail p {
  margin-bottom: 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 20px;
}

.tag-list span {
  padding: 6px 8px;
  background: rgba(214, 170, 74, 0.18);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
}

.song-cta {
  align-self: flex-start;
}

.empty-library {
  grid-column: 1 / -1;
  padding: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.track-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-left: 4px solid var(--gold);
}

.play-button {
  flex: 0 0 auto;
  width: 66px;
  height: 66px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.price-card.featured {
  border-top-color: var(--gold);
  transform: translateY(-10px);
}

.price {
  color: var(--navy);
  font-size: 1.7rem;
  font-weight: 800;
}

.price-card ul,
.contact-panel ul {
  padding-left: 20px;
}

.price-card .button {
  margin-top: 10px;
}

.values-list {
  display: grid;
  gap: 16px;
}

.values-list article {
  padding: 22px;
  border-left: 4px solid var(--gold);
  background: var(--white);
}

.founder-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.founder-copy p,
.legacy-band p,
.about-values p,
.founder-close p {
  color: var(--muted);
  font-size: 1.06rem;
}

.legacy-band {
  width: 100%;
  max-width: none;
  padding: 64px clamp(18px, 6vw, 84px);
  background: var(--navy);
  color: var(--white);
}

.legacy-band h2 {
  max-width: 920px;
}

.legacy-band p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.76);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-values article {
  padding: 24px;
  border-top: 4px solid var(--gold);
  background: var(--white);
  box-shadow: var(--shadow);
}

.founder-close {
  width: 100%;
  max-width: none;
  padding: 62px clamp(18px, 6vw, 84px);
  background: var(--white);
}

.founder-close h2 {
  max-width: 900px;
}

.founder-close .button {
  margin-top: 12px;
}

.story-welcome {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  padding-bottom: 34px;
}

.story-welcome p,
.privacy-note,
.closing-note p,
.warm-close h2,
.reassurance-copy p {
  color: var(--muted);
}

.story-reassurance {
  padding: 46px clamp(22px, 5vw, 64px);
  border-top: 1px solid rgba(6, 22, 47, 0.08);
  border-bottom: 1px solid rgba(6, 22, 47, 0.08);
  background: var(--white);
}

.story-reassurance h2 {
  max-width: 900px;
}

.reassurance-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.reassurance-close {
  margin: 26px 0 0;
  color: var(--navy);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  font-weight: 800;
  line-height: 1.25;
}

.contact-form,
.contact-panel {
  padding: clamp(22px, 4vw, 34px);
}

.contact-form {
  display: grid;
  gap: 13px;
}

label {
  font-weight: 800;
  color: var(--navy);
}

.optional {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.field-note {
  margin: -4px 0 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(6, 22, 47, 0.18);
  padding: 12px 13px;
  font: inherit;
  background: var(--white);
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.privacy-note {
  margin: 8px 0 0;
  padding: 14px;
  border-left: 4px solid var(--gold);
  background: var(--mist);
  font-weight: 700;
}

.next-steps {
  display: grid;
  gap: 14px;
  margin: 0 0 28px;
  padding-left: 22px;
}

.next-steps li {
  color: var(--muted);
}

.closing-note {
  padding: 22px;
  border-top: 4px solid var(--gold);
  background: var(--mist);
}

.closing-note p {
  margin-bottom: 0;
}

.direct-contact {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 22px;
  border-left: 4px solid var(--red);
  background: var(--white);
}

.direct-contact p {
  margin-bottom: 0;
  color: var(--muted);
}

.direct-contact a {
  color: var(--navy);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.direct-contact .phone-note {
  font-size: 0.92rem;
}

.warm-close {
  width: 100%;
  max-width: none;
  padding: 58px clamp(18px, 6vw, 84px);
  background: var(--white);
}

.warm-close h2 {
  max-width: 980px;
}

.site-footer {
  justify-content: space-between;
  padding: 34px clamp(18px, 4vw, 56px);
  background: #040d1d;
  color: var(--white);
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer a,
.footer-contact a {
  color: var(--gold);
  font-weight: 800;
}

.footer-contact {
  display: grid;
  max-width: 390px;
  gap: 4px;
}

.footer-contact a {
  overflow-wrap: anywhere;
}

.footer-contact p {
  font-size: 0.86rem;
}

.footer-cta {
  white-space: nowrap;
}

@media (max-width: 920px) {
  .site-header,
  .site-footer,
  .split-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .nav-menu {
    width: 100%;
  }

  .nav-dropdown {
    position: static;
    width: 100%;
    margin-top: 4px;
    box-shadow: none;
  }

  .intro-grid,
  .about-layout,
  .about-hero,
  .contact-layout,
  .story-welcome,
  .reassurance-copy,
  .process-section,
  .founder-teaser,
  .founder-story,
  .about-values,
  .process-intro,
  .library-intro,
  .library-toolbar,
  .card-grid,
  .card-grid.large,
  .service-grid,
  .investment-grid,
  .idea-grid,
  .trust-grid,
  .audience-grid,
  .song-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-photo {
    width: min(280px, 100%);
    justify-self: start;
  }

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

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

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
  }

  .brand {
    white-space: normal;
  }

  .nav {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav a,
  .nav-menu summary {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-menu {
    grid-column: 1 / -1;
  }

  .hero {
    min-height: 780px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(6, 22, 47, 0.96), rgba(6, 22, 47, 0.72));
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding: 54px 0;
  }

  .hero-trust span {
    width: 100%;
  }

  .how-step {
    grid-template-columns: 1fr;
  }

  .track-card {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .song-cover {
    min-height: 260px;
  }

  .category-button,
  .song-cta {
    width: 100%;
  }

  .button {
    width: 100%;
  }
}
