:root {
  --bg: #0b0b0b;
  --bg-soft: #111111;
  --surface: #141414;
  --card: #1a1a1a;
  --card-hover: #202020;
  --border: #262626;
  --border-strong: #343434;
  --accent: #b62b2b;
  --accent-strong: #d73a3a;
  --accent-muted: rgba(182, 43, 43, 0.16);
  --text: #f4f1ed;
  --text-soft: #b7b0aa;
  --text-muted: #7d7771;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.44);
  --font-ui:
    "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-display:
    "Sora", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1080px;
  --readable: 680px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(
      circle at 85% 6%,
      rgba(182, 43, 43, 0.12),
      transparent 28rem
    ),
    var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

img,
svg,
iframe {
  display: block;
}

img {
  max-width: 100%;
}

:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
}
.spanSalmo {
  color: #7d7771;
}

.skip-link {
  background: var(--accent);
  color: #fff;
  left: 1rem;
  padding: 0.7rem 1rem;
  position: fixed;
  top: 1rem;
  transform: translateY(-140%);
  z-index: 80;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  margin: 0 auto;
  max-width: var(--container);
  padding: 0 1rem;
  width: 100%;
}

.site-header {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin: 0 auto;
  min-height: 82px;
  width: min(100% - 2rem, var(--container));
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.85rem;
  min-width: 0;
}

.brand-logo {
  flex: 0 0 auto;
  height: 65px;
  object-fit: contain;
  width: 65px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 1;
  overflow: hidden;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-top: 0.35rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 2.25rem;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 0.5rem 0;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.main-nav a:hover {
  color: var(--accent-strong);
}

.mobile-menu-button {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.mobile-menu-button span {
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  display: block;
  height: 2px;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  width: 18px;
}

.mobile-menu-button.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: grid;
  grid-template-rows: 0fr;
  margin: 0 auto;
  overflow: hidden;
  transition:
    grid-template-rows 220ms ease,
    visibility 0s linear 220ms;
  visibility: hidden;
  width: min(100% - 1.5rem, var(--container));
}

.mobile-nav-inner {
  min-height: 0;
  overflow: hidden;
  padding: 0;
}

.mobile-nav.is-open {
  grid-template-rows: 1fr;
  transition: grid-template-rows 220ms ease;
  visibility: visible;
}

.mobile-nav.is-open .mobile-nav-inner {
  padding: 0.75rem 0 1rem;
}

.mobile-nav a {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 1rem 0;
  text-transform: uppercase;
}

.mobile-nav a:hover {
  color: var(--accent-strong);
}

.hero {
  border-bottom: 1px solid var(--border);
  min-height: 620px;
  overflow: hidden;
  padding: 4.6rem 0 4.2rem;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(
      180deg,
      rgba(8, 8, 8, 0.97) 0%,
      rgba(8, 8, 8, 0.9) 44%,
      rgba(20, 0, 0, 0.78) 100%
    ),
    linear-gradient(
      90deg,
      rgba(8, 8, 8, 0.96) 0%,
      rgba(8, 8, 8, 0.82) 52%,
      rgba(40, 0, 0, 0.46) 100%
    ),
    radial-gradient(circle at 78% 48%, rgba(150, 20, 25, 0.32), transparent 48%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero::after {
  background:
    radial-gradient(
      circle at 74% 50%,
      rgba(182, 43, 43, 0.22),
      transparent 38%
    ),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.22) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-visual {
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.hero-visual img {
  height: auto;
  max-height: 95%;
  max-width: none;
  object-fit: contain;
  object-position: center right;
  opacity: 0.28;
  position: absolute;
  right: -24vw;
  top: 56%;
  transform: translateY(-50%);
  width: 112vw;
}

.hero-inner {
  align-items: center;
  display: grid;
  min-height: 440px;
  position: relative;
  z-index: 2;
}

.hero-copy {
  display: grid;
  gap: 0.85rem;
  max-width: 640px;
}

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

.hero-kicker p {
  color: var(--accent-strong);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.45;
  margin: 0;
  text-transform: uppercase;
  padding-bottom: 1em;
}

.eyebrow {
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  margin: 0;
  text-transform: uppercase;
}

.hero-title,
.section h2,
.audio-player h3,
.modal-top h2,
.verse-content blockquote p {
  font-family: var(--font-display);
  line-height: 1.08;
  margin: 0;
}

.hero-title {
  font-size: clamp(2.2rem, 11vw, 3.25rem);
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin-bottom: clamp(1.9rem, 4vw, 3.1rem);
  max-width: 620px;
}

.hero-title-line {
  align-items: flex-start;
  display: flex;
  gap: 0.18em;
  line-height: 0.9;
  margin-top: 0.04em;
  min-width: 0;
  padding-bottom: 0.2em;
}

.title-normal {
  display: inline-block;
  font: inherit;
  line-height: 0.95;
}

.title-accent {
  color: var(--accent-strong);
  display: inline-block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.38em;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.5;
  transform: translateY(0.04em);
}

.hero-text {
  display: grid;
  gap: 0.62rem;
  max-width: 600px;
}

.hero-text p {
  color: var(--text-soft);
  font-size: clamp(0.96rem, 2.7vw, 1.08rem);
  line-height: 1.68;
  margin: 0;
}

.hero-phrase {
  align-items: center;
  color: var(--accent-strong);
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 800;
  gap: 0.65rem;
  letter-spacing: 0.18em;
  margin-top: 0.18rem;
  text-transform: uppercase;
}

.hero-phrase::before {
  background: rgba(215, 58, 58, 0.78);
  content: "";
  display: block;
  height: 1px;
  width: 24px;
}

.section {
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
  scroll-margin-top: 86px;
}

.section-feature {
  background: linear-gradient(180deg, #0d0d0d 0%, var(--bg) 100%);
}

.section-heading {
  margin-bottom: 1.15rem;
}

.section-heading > div {
  max-width: var(--readable);
}

.section-heading h2 {
  font-size: clamp(1.55rem, 7vw, 2.15rem);
  letter-spacing: 0;
}

.section-heading p:last-child {
  color: var(--text-muted);
  margin: 0.35rem 0 0;
}

.accordion {
  display: grid;
  gap: 0.75rem;
}

.accordion-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.accordion-trigger {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  min-height: 62px;
  padding: 1rem;
  text-align: left;
  width: 100%;
}

.accordion-trigger:hover {
  background: var(--card-hover);
}

.trigger-title {
  align-items: baseline;
  display: flex;
  gap: 0.55rem;
  min-width: 0;
}

.trigger-title > span:not(.status-dot) {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trigger-title small {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.status-dot {
  background: var(--accent-strong);
  border-radius: 999px;
  flex: 0 0 auto;
  height: 6px;
  width: 6px;
}

.chevron {
  border-bottom: 1.5px solid var(--text-muted);
  border-right: 1.5px solid var(--text-muted);
  flex: 0 0 auto;
  height: 8px;
  transform: rotate(45deg);
  transition: transform 180ms ease;
  width: 8px;
}

.accordion-item.is-open .chevron {
  transform: rotate(225deg);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.accordion-item.is-open .accordion-panel {
  grid-template-rows: 1fr;
}

.lesson-grid {
  display: grid;
  gap: 1rem;
  min-height: 0;
  overflow: hidden;
  padding: 0 1rem;
}

.accordion-item.is-open .lesson-grid {
  padding-bottom: 1rem;
}

.lesson-card {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: grid;
  gap: 0.65rem;
  padding: 0;
  text-align: left;
}

.lesson-media {
  aspect-ratio: 16 / 9;
  background: #191919;
  border-radius: 8px;
  display: block;
  overflow: hidden;
  position: relative;
}

.lesson-media img {
  height: 100%;
  object-fit: cover;
  transition:
    transform 220ms ease,
    filter 220ms ease;
  width: 100%;
}

.lesson-card:hover .lesson-media img {
  filter: brightness(0.9);
  transform: scale(1.025);
}

.lesson-play {
  align-items: center;
  background: rgba(182, 43, 43, 0.92);
  border-radius: 999px;
  color: #fff;
  display: flex;
  height: 46px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
}

.lesson-play svg {
  fill: currentColor;
  height: 20px;
  margin-left: 2px;
  width: 20px;
}

.lesson-duration {
  background: rgba(0, 0, 0, 0.74);
  border-radius: 6px;
  bottom: 0.45rem;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.16rem 0.34rem;
  position: absolute;
  right: 0.45rem;
}

.lesson-title {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
}

.music-shell {
  display: grid;
  gap: 1.2rem;
}

.audio-player {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
  grid-template-rows: auto auto auto minmax(1.3em, auto);
  padding: 1rem;
}

.now-playing {
  align-items: center;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 84px minmax(0, 1fr);
  min-height: 84px;
  min-width: 0;
}

.now-playing img {
  aspect-ratio: 1;
  background: #191919;
  border-radius: 8px;
  height: 84px;
  object-fit: cover;
  width: 84px;
}

.now-playing-copy {
  align-content: center;
  display: grid;
  min-height: 84px;
  min-width: 0;
}

.now-playing-copy .eyebrow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.now-playing h3 {
  font-size: clamp(1.12rem, 5vw, 1.42rem);
  line-height: 1.2;
  margin-top: 0.18rem;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.now-playing p:last-child {
  color: var(--text-muted);
  font-weight: 700;
  margin: 0.18rem 0 0;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.progress-row {
  align-items: center;
  color: var(--text-muted);
  display: grid;
  font-size: 0.72rem;
  font-weight: 800;
  gap: 0.6rem;
  grid-template-columns: 42px 1fr 42px;
}

.progress-row span:first-child {
  text-align: left;
}

.progress-row span:last-child {
  text-align: right;
}

.progress-track {
  background: #303030;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 4px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.progress-track span {
  background: var(--accent-strong);
  display: block;
  height: 100%;
  width: 0%;
}

.player-actions {
  align-items: center;
  display: flex;
  gap: 0.95rem;
  justify-content: center;
  min-height: 52px;
}

.icon-button,
.play-button,
.modal-close {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
}

.icon-button {
  background: transparent;
  color: var(--text-muted);
  height: 42px;
  width: 42px;
}

.icon-button:hover {
  color: var(--text);
}

.icon-button svg {
  fill: currentColor;
  height: 20px;
  width: 20px;
}

.play-button {
  background: var(--accent);
  border-radius: 999px;
  color: #fff;
  height: 52px;
  transition:
    background 180ms ease,
    transform 180ms ease;
  width: 52px;
}

.play-button:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.play-button svg {
  fill: currentColor;
  height: 22px;
  width: 22px;
}

.play-button .pause-icon,
.play-button.is-playing .play-icon {
  display: none;
}

.play-button.is-playing .pause-icon {
  display: block;
}

.player-status {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin: 0;
  min-height: 1.3em;
  text-align: center;
  display: none;
}

.audio-player[data-state="loading"] .player-status {
  color: var(--text-soft);
}

.audio-player[data-state="error"] .player-status {
  color: var(--accent-strong);
}

.track-list {
  display: grid;
  gap: 0.55rem;
}

.track-item {
  align-items: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 24px 48px minmax(0, 1fr) 42px;
  min-height: 66px;
  padding: 0.55rem;
  text-align: left;
  width: 100%;
}

.track-item:hover {
  background: var(--surface);
  border-color: var(--border);
}

.track-item.is-active {
  background: var(--accent-muted);
  border-color: rgba(215, 58, 58, 0.45);
}

.track-number,
.track-duration {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.track-number {
  text-align: center;
}

.track-item img {
  aspect-ratio: 1;
  background: #191919;
  border-radius: 8px;
  height: 48px;
  object-fit: cover;
  width: 48px;
}

.track-copy {
  display: grid;
  gap: 0.05rem;
  min-width: 0;
}

.track-copy strong,
.track-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-copy strong {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
}

.track-copy small {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.site-footer {
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
}

.verse-band {
  background:
    linear-gradient(135deg, rgba(215, 58, 58, 0.1), transparent 36%),
    linear-gradient(180deg, #111111 0%, #0d0d0d 100%);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

.verse-content {
  display: grid;
  gap: 0.85rem;
  max-width: 860px;
}

.verse-content blockquote {
  margin: 0;
}

.verse-content blockquote p {
  color: var(--text);
  font-size: clamp(1.25rem, 5.4vw, 1.85rem);
  letter-spacing: 0;
}

.verse-content cite {
  color: var(--text-muted);
  display: block;
  font-style: normal;
  font-weight: 800;
  margin-top: 1rem;
}

.footer-container {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  margin: 0 auto;
  width: min(100% - 2rem, var(--container));
}

.footer-container p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin: 0;
}

.footer-container p:last-child {
  text-align: right;
}

.modal {
  align-items: center;
  display: grid;
  inset: 0;
  justify-items: center;
  padding: 1rem;
  position: fixed;
  z-index: 100;
}

.modal.is-hidden {
  display: none;
}

.modal-backdrop {
  background: rgba(0, 0, 0, 0.82);
  border: 0;
  cursor: pointer;
  inset: 0;
  position: absolute;
}

.modal-dialog {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  transform: translateY(0);
  width: min(980px, 100%);
}

.modal-top {
  align-items: center;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 0.9rem 1rem;
}

.modal-top h2 {
  font-size: clamp(1.2rem, 4vw, 1.7rem);
  overflow-wrap: anywhere;
}

.modal-close {
  background: var(--card);
  border-radius: 8px;
  color: var(--text-soft);
  flex: 0 0 auto;
  height: 42px;
  width: 42px;
}

.modal-close:hover {
  color: var(--text);
}

.modal-close svg {
  fill: currentColor;
  height: 20px;
  width: 20px;
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: #000;
  position: relative;
}

.video-frame iframe {
  border: 0;
  height: 100%;
  opacity: 1;
  transition: opacity 180ms ease;
  width: 100%;
}

.modal.is-loading .video-frame iframe {
  opacity: 0.36;
}

.video-loading {
  align-items: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.44));
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  flex-wrap: wrap;
  inset: 0;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
  position: absolute;
  text-align: center;
  transition:
    opacity 180ms ease,
    visibility 180ms ease;
  z-index: 2;
}

.modal:not(.is-loading) .video-loading {
  opacity: 0;
  visibility: hidden;
}

.video-loading span {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (min-width: 520px) {
  .lesson-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .header-inner {
    gap: 1rem;
    min-height: 72px;
    width: min(100% - 1.5rem, var(--container));
  }

  .brand {
    gap: 0.72rem;
  }

  .brand-logo {
    height: 65px;
    width: 65px;
  }

  .brand-copy strong {
    font-size: 0.94rem;
    max-width: 180px;
  }

  .brand-copy small {
    font-size: 0.64rem;
    letter-spacing: 0.16em;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .site-footer {
    padding: 1.75rem 0;
  }

  .footer-container {
    align-items: center;
    flex-direction: column;
    gap: 0.5rem;
    width: min(100% - 1.5rem, var(--container));
  }

  .footer-container p {
    font-size: 0.74rem;
  }

  .footer-container p:last-child {
    text-align: left;
  }
}

@media (min-width: 769px) {
  .mobile-nav {
    display: none;
  }
}

@media (max-width: 390px) {
  .brand-logo {
    height: 65px;
    width: 65px;
  }

  .brand-copy strong {
    font-size: 0.9rem;
    max-width: 145px;
  }

  .brand-copy small {
    display: none;
  }
}

@media (max-width: 519px) {
  .hero {
    min-height: 590px;
    padding: 3rem 0 3.4rem;
  }

  .hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(8, 8, 8, 0.18) 0%,
        rgba(8, 8, 8, 0.2) 48%,
        rgba(20, 0, 0, 0.46) 100%
      ),
      linear-gradient(
        90deg,
        rgba(8, 8, 8, 0.99) 0%,
        rgba(8, 8, 8, 0.95) 46%,
        rgba(8, 8, 8, 0.7) 66%,
        rgba(40, 0, 0, 0.08) 100%
      ),
      radial-gradient(
        circle at 88% 44%,
        rgba(150, 20, 25, 0.34),
        transparent 48%
      );
  }

  .hero-visual {
    display: block;
    opacity: 1;
  }

  .hero-visual img {
    display: block;
    opacity: 1;
    right: -12vw;
    top: 50%;
    width: 146vw;
  }

  .hero-inner {
    min-width: 0;
  }

  .hero-copy {
    max-width: calc(100vw - 2rem);
    min-width: 0;
    width: calc(100vw - 2rem);
  }

  .hero-kicker p {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }

  .hero-title {
    font-size: clamp(2rem, 10.8vw, 2.7rem);
    letter-spacing: -0.035em;
    line-height: 0.98;
    margin-bottom: clamp(1.8rem, 7vw, 2.6rem);
    max-width: 100%;
  }

  .hero-title-line {
    gap: 0.14em;
    max-width: 100%;
    padding-bottom: 0em;
  }

  .title-accent {
    font-size: 1.34em;
    line-height: 0.5;
    transform: translateY(0.02em);
  }

  .hero-text {
    gap: 0.5rem;
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }

  .hero-text p {
    font-size: 0.94rem;
    line-height: 1.62;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-phrase {
    font-size: 0.62rem;
    gap: 0.5rem;
    letter-spacing: 0.14em;
  }

  .hero-phrase::before {
    width: 18px;
  }
}

@media (min-width: 520px) and (max-width: 759px) {
  .hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(8, 8, 8, 0.2) 0%,
        rgba(8, 8, 8, 0.22) 48%,
        rgba(20, 0, 0, 0.48) 100%
      ),
      linear-gradient(
        90deg,
        rgba(8, 8, 8, 0.99) 0%,
        rgba(8, 8, 8, 0.92) 44%,
        rgba(8, 8, 8, 0.64) 64%,
        rgba(40, 0, 0, 0.1) 100%
      ),
      radial-gradient(
        circle at 86% 46%,
        rgba(150, 20, 25, 0.34),
        transparent 46%
      );
  }

  .hero-visual img {
    opacity: 0.92;
    right: -8vw;
    top: 52%;
    width: 116vw;
  }
}

@media (min-width: 760px) {
  .container {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  .hero {
    min-height: 560px;
    padding: 4.2rem 0;
  }

  .hero::before {
    background:
      linear-gradient(
        90deg,
        #080808 0%,
        rgba(8, 8, 8, 0.96) 34%,
        rgba(8, 8, 8, 0.72) 58%,
        rgba(40, 0, 0, 0.42) 100%
      ),
      radial-gradient(
        circle at 82% 42%,
        rgba(150, 20, 25, 0.34),
        transparent 42%
      );
  }

  .hero-visual img {
    max-height: 95%;
    opacity: 0.36;
    right: -4vw;
    top: 51%;
    width: min(64vw, 780px);
  }

  .hero-inner {
    min-height: 410px;
  }

  .hero-text p {
    font-size: 1.02rem;
  }

  .section {
    padding: 2.65rem 0;
  }

  .section-heading {
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.9rem;
  }

  .audio-player {
    padding: 1.35rem;
  }

  .verse-band {
    padding: 2.6rem 0;
  }

  .now-playing {
    gap: 1rem;
    grid-template-columns: 132px minmax(0, 1fr);
    min-height: 132px;
  }

  .now-playing img {
    height: 132px;
    width: 132px;
  }

  .now-playing-copy {
    min-height: 132px;
  }

  .now-playing h3 {
    font-size: 1.55rem;
  }
}

@media (min-width: 960px) {
  .hero {
    min-height: clamp(560px, 66vh, 680px);
    padding: 4.6rem 0;
  }

  .hero::before {
    background:
      linear-gradient(
        90deg,
        #080808 0%,
        rgba(8, 8, 8, 0.96) 38%,
        rgba(8, 8, 8, 0.72) 62%,
        rgba(70, 0, 0, 0.48) 100%
      ),
      radial-gradient(
        circle at 84% 42%,
        rgba(160, 22, 28, 0.28),
        transparent 46%
      );
  }

  .hero-visual img {
    opacity: 0.4;
    right: -1vw;
    width: min(56vw, 800px);
  }

  .hero-inner {
    min-height: calc(clamp(560px, 66vh, 680px) - 9rem);
  }

  .hero-title {
    font-size: clamp(3rem, 5.7vw, 4.75rem);
    max-width: 680px;
  }

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

  .music-shell {
    grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  }

  .audio-player {
    align-self: start;
    position: sticky;
    top: 92px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
