:root {
  color-scheme: dark;
  --bg: #090806;
  --panel: #14110d;
  --ink: #fff7eb;
  --muted: #c9b79e;
  --dim: #8c7a62;
  --gold: #d8a64f;
  --gold-bright: #ffe0a3;
  --red: #9d1e20;
  --red-pale: #c96d68;
  --line: rgba(216, 166, 79, 0.22);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
  --font-display: "Cinzel", Georgia, serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 clamp(16px, 4vw, 40px);
  gap: clamp(14px, 2vw, 28px);
  border-bottom: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, backdrop-filter 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(9, 8, 6, 0.84);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(216, 166, 79, 0.25));
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.word-from,
.word-to {
  color: var(--ink);
  font-weight: 800;
}

.word-thorns {
  color: var(--red-pale);
  font-weight: 600;
  text-shadow: 0 0 18px rgba(201, 109, 104, 0.18);
}

.word-glory {
  color: var(--gold-bright);
  font-weight: 800;
  text-shadow: 0 0 22px rgba(255, 224, 163, 0.22);
}

.brand-name .word-from,
.brand-name .word-thorns,
.brand-name .word-to,
.brand-name .word-glory {
  display: inline;
}

.nav-music {
  flex: 1 1 260px;
  max-width: 330px;
  min-width: 210px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px 7px 8px;
  border: 1px solid rgba(216, 166, 79, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
}

.nav-music-toggle {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255, 224, 163, 0.35);
  border-radius: 50%;
  color: #160f08;
  background: var(--gold-bright);
  cursor: pointer;
  flex: 0 0 auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-music-toggle:hover,
.nav-music-toggle:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(216, 166, 79, 0.22);
}

.nav-music-copy {
  min-width: 0;
  flex: 1;
}

.nav-music-copy span {
  display: block;
  margin-bottom: 2px;
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-music-copy canvas {
  display: block;
  width: 100%;
  height: 18px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  flex: 0 0 auto;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a i {
  color: var(--gold);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-bright);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin-inline: auto;
  background: var(--ink);
  transition: transform 0.2s ease;
}

body.nav-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

body.nav-open .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px 24px;
  background: rgba(9, 8, 6, 0.96);
  backdrop-filter: blur(18px);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.mobile-nav i {
  width: 20px;
  color: var(--gold);
  text-align: center;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 60px) clamp(18px, 5vw, 52px) 76px;
  overflow: hidden;
}

.hero-bg,
.hero-image,
.hero-video,
.hero-gradient {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-image: url("assets/hero-tomb.png");
  background-size: cover;
  background-position: center;
  filter: saturate(1.04) contrast(1.06) brightness(0.82);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.34;
  filter: saturate(1.05) contrast(1.08) brightness(0.78);
}

.hero-gradient {
  background:
    linear-gradient(180deg, rgba(9, 8, 6, 0.12), rgba(9, 8, 6, 0.32) 42%, rgba(9, 8, 6, 0.94) 86%, var(--bg)),
    linear-gradient(90deg, rgba(9, 8, 6, 0.82), rgba(9, 8, 6, 0.12) 48%, rgba(9, 8, 6, 0.7));
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

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

.hero h1 {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 8.8vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-wordmark-line {
  display: block;
}

.hero-wordmark .word-from,
.hero-wordmark .word-thorns,
.hero-wordmark .word-to,
.hero-wordmark .word-glory {
  display: inline-block;
}

.hero-wordmark .word-from {
  margin-right: 0.16em;
}

.hero-wordmark .word-to {
  margin-right: 0.14em;
}

.hero-wordmark .word-thorns {
  color: #cf726e;
}

.hero-lead {
  max-width: 610px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-ctas,
.social-actions,
.visual-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn,
.social-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible,
.social-pill:hover,
.social-pill:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #160f08;
  background: var(--gold-bright);
  box-shadow: 0 10px 32px rgba(216, 166, 79, 0.28);
}

.btn-ghost,
.social-pill {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
}

.scroll-hint {
  position: absolute;
  right: clamp(18px, 5vw, 52px);
  bottom: 32px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--dim);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: clamp(74px, 10vw, 124px) 0;
  overflow: hidden;
}

.mission-grid,
.artwork-grid,
.follow-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(38px, 7vw, 80px);
  align-items: center;
}

.mission h2,
.feature h2,
.music h2,
.artwork h2,
.follow h2 {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.8vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.mission p,
.feature p,
.music p,
.artwork p,
.follow p {
  max-width: 610px;
  color: var(--muted);
  font-size: 1.04rem;
}

.mission strong,
.music strong,
.follow strong {
  color: var(--ink);
}

.portrait-panel,
.cover-wrap,
.follow-art,
.story-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.portrait-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(9, 8, 6, 0.18), rgba(9, 8, 6, 0.88) 70%),
    linear-gradient(180deg, var(--bg), rgba(9, 8, 6, 0.5) 22%, rgba(9, 8, 6, 0.88) 80%, var(--bg));
}

.section-bg span {
  position: absolute;
  inset: -4%;
  background-image: var(--img);
  background-position: center;
  background-size: cover;
  opacity: 0;
  filter: saturate(0.9) brightness(0.72);
  animation: bgCycle 24s infinite ease-in-out;
}

.section-bg span:nth-child(2) {
  animation-delay: 8s;
}

.section-bg span:nth-child(3) {
  animation-delay: 16s;
}

@keyframes bgCycle {
  0%,
  28% {
    opacity: 0.48;
  }
  36%,
  100% {
    opacity: 0;
  }
}

.feature > .container {
  position: relative;
  z-index: 1;
}

.feature-inner {
  display: grid;
  gap: clamp(34px, 5vw, 56px);
}

.feature-copy {
  max-width: 760px;
}

.feature-copy p {
  max-width: 680px;
}

.playlist-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  margin-top: 10px;
  padding: 0 18px;
  border: 1px solid rgba(255, 224, 163, 0.34);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.playlist-link i {
  color: #ff3b30;
  font-size: 1.1rem;
}

.playlist-link:hover,
.playlist-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold-bright);
  background: rgba(216, 166, 79, 0.12);
}

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

.story-card {
  color: inherit;
  text-decoration: none;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.story-card:hover,
.story-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--gold-bright);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.58);
}

.story-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.story-card div {
  padding: 18px;
}

.story-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.35;
}

.story-card p {
  margin: 0;
  color: var(--dim);
  font-size: 0.9rem;
  line-height: 1.5;
}

.story-card.is-latest {
  border-color: rgba(255, 224, 163, 0.5);
}

.story-card.is-latest span::after {
  content: "Latest";
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-left: 10px;
  padding: 0 8px;
  border: 1px solid rgba(255, 224, 163, 0.28);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(216, 166, 79, 0.14);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.music {
  background:
    radial-gradient(ellipse at center top, rgba(216, 166, 79, 0.13), transparent 45%),
    linear-gradient(180deg, #0d0a07, var(--bg));
}

.music-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("assets/yeshua-project-cover.png");
  background-position: center;
  background-size: cover;
  opacity: 0.11;
  filter: blur(2px) saturate(0.8);
}

.music-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(28px, 5vw, 46px);
  justify-items: center;
  text-align: center;
}

.music-copy {
  max-width: 760px;
}

.music-copy p {
  margin-inline: auto;
}

.music-player {
  width: min(860px, 100%);
  padding: clamp(18px, 4vw, 32px);
  border: 1px solid rgba(255, 224, 163, 0.28);
  border-radius: 8px;
  background: rgba(20, 17, 13, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.spotify-player iframe {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: #121212;
}

.cover-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.visual-notes {
  margin-top: 28px;
}

.visual-notes span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-bright);
  background: rgba(216, 166, 79, 0.08);
  font-size: 0.84rem;
  font-weight: 800;
}

.follow {
  background:
    linear-gradient(180deg, rgba(157, 30, 32, 0.12), transparent 36%),
    var(--bg);
}

.social-pill i {
  color: var(--gold-bright);
  font-size: 1.1rem;
}

.follow-art img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 42px 0;
  background: #100d09;
}

.footer-grid {
  display: grid;
  gap: 6px;
}

.footer-grid strong {
  font-family: var(--font-display);
  color: var(--gold-bright);
}

.footer-grid p {
  margin: 0;
  color: var(--dim);
}

.copyright {
  margin-top: 14px;
  font-size: 0.82rem;
}

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

  .hero-video {
    display: none;
  }

  .section-bg span {
    animation: none;
  }

  .section-bg span:first-child {
    opacity: 0.35;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 112px;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: 64px 40px;
    align-items: center;
    row-gap: 4px;
    padding-block: 0 6px;
  }

  .site-nav {
    display: none;
  }

  .nav-music {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    width: min(100%, 460px);
    max-width: none;
    min-width: 0;
    justify-self: center;
    padding: 4px 10px 4px 6px;
  }

  .nav-music-toggle {
    width: 30px;
    height: 30px;
  }

  .nav-music-copy span {
    font-size: 0.64rem;
    margin-bottom: 0;
  }

  .nav-music-copy canvas {
    height: 14px;
  }

  .menu-toggle {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .brand-name {
    font-size: 0.9rem;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .hero {
    min-height: 100svh;
    padding: calc(var(--header-h) + 36svh) 20px 34px;
  }

  .hero-gradient {
    background:
      linear-gradient(180deg, rgba(9, 8, 6, 0.08), rgba(9, 8, 6, 0.24) 38%, rgba(9, 8, 6, 0.95) 72%, var(--bg)),
      linear-gradient(90deg, rgba(9, 8, 6, 0.55), rgba(9, 8, 6, 0.08));
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 4.6rem);
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .scroll-hint {
    display: none;
  }

  .container {
    width: min(100%, calc(100% - 32px));
  }

  .mission-grid,
  .artwork-grid,
  .follow-grid {
    grid-template-columns: 1fr;
  }

  .artwork-grid .cover-wrap {
    order: 2;
  }

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

  .story-card {
    display: block;
  }

  .story-card img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .follow-art {
    max-width: 420px;
  }
}

@media (max-width: 520px) {
  .brand {
    gap: 9px;
  }

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

  .brand-name {
    max-width: 190px;
    font-size: 0.78rem;
    line-height: 1.05;
  }

  .hero {
    padding-top: calc(var(--header-h) + 34svh);
  }

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

  .story-cards {
    grid-template-columns: 1fr;
  }

  .story-card img {
    aspect-ratio: 4 / 3;
  }

}
