/* Sharon Mbungu Akinseye — Warm Dark Editorial Gospel */

:root {
  --ink: #0b0a09;
  --ink-soft: #171412;
  --brown: #2a211b;
  --bronze: #c09a6b;
  --bronze-dim: rgba(192, 154, 107, 0.28);
  --cream: #e8e0d5;
  --muted: #9d9388;
  --line: rgba(232, 224, 213, 0.1);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  background: var(--ink);
  color: var(--cream);
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color-scheme: dark;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 85;
  background: var(--ink);
}

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

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

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

::selection {
  background: rgba(192, 154, 107, 0.28);
  color: var(--cream);
}

:focus-visible {
  outline: 1px solid var(--bronze);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--bronze);
  color: var(--ink);
  padding: 0.6rem 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Grain + atmosphere */
.site-grain,
.site-vignette {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 5;
}

.site-grain {
  opacity: 0.04;
  background-image: url("../assets/images/grain.png");
  background-size: 280px;
  mix-blend-mode: overlay;
}

.site-vignette {
  background: radial-gradient(ellipse at center, transparent 42%, rgba(11, 10, 9, 0.28) 100%);
  z-index: 4;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(11, 10, 9, 0.88);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body.menu-open .site-header,
body.menu-open .site-header.is-scrolled {
  overflow: visible;
  transition: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.menu-open .header-inner {
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .header-inner {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .header-inner {
    padding: 0 3rem;
  }
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.25;
  max-width: 11.5rem;
  min-width: 0;
  flex: 0 1 auto;
}

@media (min-width: 640px) {
  .brand {
    font-size: 1.05rem;
    letter-spacing: 0.16em;
    max-width: none;
    white-space: nowrap;
  }
}

.primary-nav ul {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  position: relative;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--bronze);
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.55rem;
  height: 1px;
  background: var(--bronze);
}

button.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--bronze);
  background-color: rgba(11, 10, 9, 0.82);
  background-image: none;
  cursor: pointer;
  position: relative;
  z-index: 96;
  flex-shrink: 0;
  margin-left: auto;
  color: var(--cream);
}

button.menu-toggle .menu-icon {
  display: block;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--cream);
}

button.menu-toggle[aria-expanded="true"] .menu-icon {
  display: none;
}

button.menu-toggle[aria-expanded="true"]::before,
button.menu-toggle[aria-expanded="true"]::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.05rem;
  height: 1.5px;
  background: var(--cream);
}

button.menu-toggle[aria-expanded="true"]::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

button.menu-toggle[aria-expanded="true"]::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (min-width: 900px) {
  button.menu-toggle {
    display: none;
  }
}

@media (max-width: 899px) {
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 2.75rem;
    grid-template-areas: "brand menu";
    align-items: center;
  }

  .brand {
    grid-area: brand;
  }

  button.menu-toggle {
    grid-area: menu;
    display: flex !important;
    justify-self: end;
  }

  .primary-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 91;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
  }

  .primary-nav:not(.is-open) {
    z-index: 0;
    width: 0;
    height: 0;
    overflow: hidden;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    z-index: 91;
  }

  .primary-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
  }

  .primary-nav .nav-link {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2rem, 8vw, 3.2rem);
    letter-spacing: 0.08em;
    text-transform: none;
    font-style: italic;
    color: var(--cream);
  }

  .primary-nav .nav-link.is-active::after {
    bottom: -0.2rem;
  }
}

/* Page shell */
.page-main {
  position: relative;
  z-index: 1;
}

.section {
  position: relative;
  padding: 5.5rem 1.25rem;
}

@media (min-width: 768px) {
  .section {
    padding: 7rem 2rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 8.5rem 3rem;
  }
}

.section-inner {
  max-width: 1440px;
  margin: 0 auto;
  min-width: 0;
}

.section-tight {
  padding-top: 4.25rem;
  padding-bottom: 4.25rem;
}

@media (min-width: 768px) {
  .section-tight {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }
}

.story-compact {
  max-width: 40rem;
}

.story-copy {
  display: grid;
  gap: 1.1rem;
}

.story-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
}

.music-lede {
  margin: 0 0 2rem;
}

.social-list-center {
  justify-content: center;
}

.story-compact .display {
  margin-bottom: 1.6rem;
}

.watch-frame {
  max-width: 52rem;
}

.split > *,
.gallery-hero-grid > *,
.roots-grid > *,
.music-grid > *,
.music-grid,
.video-grid > *,
.contact-layout > *,
.release-card,
.bio-section,
.featured-release,
.featured-release > *,
.featured-cover,
.intro-grid,
.intro-grid > *,
.intro-with-photo,
.intro-with-photo > *,
.about-split,
.about-split > *,
.portrait-square,
.section-inner,
.header-inner,
.footer-inner,
.yt-banner,
.watch-grid,
.watch-grid > *,
.facts-list,
.essay {
  min-width: 0;
  max-width: 100%;
}

.display,
.lede,
p,
h1, h2, h3 {
  overflow-wrap: break-word;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.4rem;
}

.section-kicker::after {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: var(--bronze);
  opacity: 0.55;
}

.display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--cream);
}

.display em,
.italic {
  font-style: italic;
  font-weight: 500;
}

.lede,
.hero-support,
.featured-copy {
  max-width: min(36rem, 100%);
}

.lede {
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 300;
}

.measure {
  max-width: 38rem;
}

.hairline {
  height: 1px;
  background: var(--line);
  border: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3rem;
  padding: 0.85rem 1.6rem;
  border: 1px solid var(--bronze);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--bronze);
  color: var(--ink);
}

.btn-primary:hover {
  background: transparent;
  color: var(--cream);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--bronze-dim);
}

.btn-ghost:hover {
  border-color: var(--bronze);
  color: var(--bronze);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Hero — full-bleed cinematic */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
  min-height: 100%;
  max-height: none;
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 50% 8%;
  filter: saturate(0.8) contrast(1.12) brightness(0.68);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11, 10, 9, 0.92) 0%, rgba(11, 10, 9, 0.55) 38%, rgba(11, 10, 9, 0.12) 68%),
    linear-gradient(180deg, rgba(11, 10, 9, 0.62) 0%, transparent 32%, rgba(11, 10, 9, 0.86) 100%);
}

.hero::before {
  content: "";
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 7.5rem;
  z-index: 2;
  background: linear-gradient(180deg, rgba(11, 10, 9, 0.72), transparent);
}

.hero-frame {
  pointer-events: none;
  position: absolute;
  inset: 1.1rem;
  border: 1px solid rgba(192, 154, 107, 0.2);
  z-index: 2;
}

@media (min-width: 768px) {
  .hero-frame {
    inset: 1.6rem;
  }
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 2rem) 1.5rem 3.2rem;
  background: none;
}

@media (min-width: 768px) {
  .hero-copy {
    padding: calc(var(--header-h) + 2rem) 2rem 4.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-copy {
    padding: calc(var(--header-h) + 2rem) 3rem 5.5rem;
  }
}

.hero-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.4rem;
  line-height: 1.6;
}

@media (min-width: 700px) {
  .hero-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.28em;
  }
}

.hero-title {
  font-size: clamp(3.2rem, 10vw, 7.6rem);
  max-width: 10ch;
  margin: 0 0 1.35rem;
}

.hero-support {
  max-width: min(22rem, 100%);
  color: var(--cream);
  font-size: 1.02rem;
  font-weight: 300;
  margin-bottom: 1.8rem;
  opacity: 0.86;
}

.hero-identity {
  margin-top: 2rem;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-cue {
  display: none;
}

@media (min-width: 960px) {
  .scroll-cue {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2.8rem;
    font-size: 0.62rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .scroll-cue i {
    display: block;
    width: 1px;
    height: 2.4rem;
    background: linear-gradient(var(--bronze), transparent);
  }
}

/* Editorial split */
.split {
  display: grid;
  gap: 3rem;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
}

.split-copy h2,
.story-block h2,
.faith-block h2,
.cta-block h2,
.page-hero h1,
.roots-block h2 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  margin: 0 0 1.4rem;
}

.figure {
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
}

.figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease), filter 1.6s var(--ease);
  filter: saturate(0.88) contrast(1.05);
}

.figure:hover img {
  transform: scale(1.035);
}

.figure-caption {
  margin-top: 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.portrait-frame {
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(192, 154, 107, 0.28);
}

.portrait-frame img {
  object-position: 50% 12%;
  filter: saturate(0.88) contrast(1.06);
}

.portrait-square {
  aspect-ratio: 1;
  max-width: 28rem;
  margin: 0;
  border: 1px solid rgba(192, 154, 107, 0.28);
  overflow: hidden;
  background: var(--ink-soft);
}

.portrait-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  filter: saturate(0.94) contrast(1.04);
}

.intro-with-photo,
.about-split {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

@media (min-width: 860px) {
  .portrait-square {
    max-width: none;
    width: 100%;
  }

  .intro-with-photo {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.72fr);
    gap: 4.5rem;
  }

  .about-split {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.2fr);
    gap: 4.5rem;
  }
}

.wide-frame {
  aspect-ratio: 16 / 10;
}

/* Story band */
.band {
  background: var(--ink-soft);
}

.story-block {
  max-width: 42rem;
}

.story-block p,
.faith-block p,
.split-copy p,
.bio-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
}

/* Faith */
.faith-block {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.faith-block .section-kicker {
  justify-content: center;
}

.faith-block .lede {
  margin-left: auto;
  margin-right: auto;
}

/* Music rows */
.release-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.release-card {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 479px) {
  .release-card {
    grid-template-columns: 4.5rem 1fr;
  }

  .release-card .btn {
    grid-column: 2;
    justify-self: start;
  }
}

@media (min-width: 700px) {
  .release-card {
    grid-template-columns: 6.5rem 1fr auto;
    gap: 1.5rem;
  }

  .release-card .btn {
    grid-column: auto;
    justify-self: end;
  }
}

.release-card .btn {
  justify-self: end;
}

.release-card img,
.release-cover {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: cover;
  background: var(--brown);
}

@media (min-width: 700px) {
  .release-card img,
  .release-cover {
    width: 6.5rem;
    height: 6.5rem;
  }
}

.release-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.15;
  margin: 0 0 0.2rem;
}

.release-meta {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.release-desc {
  display: none;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
  margin: 0;
}

@media (min-width: 700px) {
  .release-desc {
    display: block;
  }
}

.music-grid {
  display: grid;
  gap: 1.5rem;
}

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

@media (min-width: 1024px) {
  .music-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
  }
}

.music-item {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--ink-soft);
}

.music-item img,
.music-item .release-cover {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.music-item-body {
  padding: 1.4rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.music-item .release-title {
  font-size: 1.85rem;
}

.music-item .release-desc {
  display: block;
}

.music-item .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Video */
.video-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink-soft);
  overflow: hidden;
  border: 1px solid var(--line);
}

.video-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  filter: saturate(0.86) contrast(1.05);
}

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

.play-btn {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(11, 10, 9, 0.28);
  border: 0;
  cursor: default;
  color: var(--cream);
}

.play-glyph {
  width: 4.5rem;
  height: 4.5rem;
  border: 1px solid var(--bronze);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(11, 10, 9, 0.35);
  transition: transform 0.4s var(--ease), background 0.4s ease;
}

.video-stage:hover .play-glyph {
  transform: scale(1.05);
  background: rgba(192, 154, 107, 0.15);
}

.play-glyph svg {
  width: 1rem;
  height: 1rem;
  margin-left: 2px;
  fill: var(--cream);
}

.video-label {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
}

.video-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.video-card {
  border: 1px solid var(--line);
  background: var(--ink-soft);
}

.video-card .video-stage {
  border: 0;
  aspect-ratio: 16 / 10;
}

.video-card-body {
  padding: 1rem 1.1rem 1.15rem;
}

.video-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  margin: 0 0 0.25rem;
}

.placeholder-note {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Roots */
.roots-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .roots-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: end;
  }
}

.origin-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.origin-pair h3 {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0 0 0.5rem;
}

.origin-pair p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
}

/* CTA */
.cta-block {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto;
}

.cta-block .btn-row {
  justify-content: center;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: 3rem 1.25rem 2.4rem;
}

@media (min-width: 768px) {
  .site-footer {
    padding: 3.5rem 2rem 2.6rem;
  }
}

@media (min-width: 1024px) {
  .site-footer {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .footer-inner {
    grid-template-columns: 1.4fr 1fr auto;
    align-items: end;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(192, 154, 107, 0.28);
}

.footer-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
}

.footer-tag {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.1rem;
}

.footer-social a,
.social-list a {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
}

.footer-social a:hover,
.social-list a:hover {
  color: var(--cream);
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  margin-top: 1.5rem;
}

a.video-stage {
  display: block;
  color: inherit;
}

a.video-stage .play-btn {
  cursor: pointer;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.4rem;
}

.footer-nav a {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-nav a:hover {
  color: var(--bronze);
}

.footer-copy {
  color: var(--muted);
  font-size: 0.78rem;
  margin: 0;
}

/* Inner page heroes */
.page-hero {
  padding-top: calc(var(--header-h) + 4.5rem);
  padding-bottom: 3rem;
}

.page-hero h1 {
  margin-bottom: 0.8rem;
}

.page-hero .lede {
  margin: 0;
}

/* About biography */
.bio-section {
  display: grid;
  gap: 1.5rem;
  padding: 3rem 0;
  border-top: 1px solid var(--line);
}

@media (min-width: 860px) {
  .bio-section {
    grid-template-columns: 8rem 1fr 1.1fr;
    gap: 3rem;
    align-items: start;
  }
}

.bio-index {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze);
}

.bio-section h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  margin: 0;
}

/* Gallery */
.gallery-hero-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .gallery-hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 1.25rem;
    align-items: stretch;
  }
}

.gallery-masonry {
  columns: 1;
  column-gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .gallery-masonry {
    columns: 2;
  }
}

@media (min-width: 1024px) {
  .gallery-masonry {
    columns: 3;
  }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
  border: 1px solid rgba(192, 154, 107, 0.14);
  width: 100%;
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 1.4s var(--ease), filter 1.4s ease;
  filter: saturate(0.86);
}

.gallery-item:hover img {
  transform: scale(1.03);
  filter: saturate(1);
}

.gallery-item figcaption {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
}

.tall {
  aspect-ratio: 3 / 4;
}

.tall img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
}

/* Contact */
.inquiry-grid {
  display: grid;
  gap: 1.25rem;
  margin: 2.5rem 0 3.5rem;
}

@media (min-width: 768px) {
  .inquiry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .inquiry-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.inquiry-card {
  padding: 1.5rem 1.25rem;
  border-top: 1px solid var(--bronze-dim);
}

.inquiry-card h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  margin: 0 0 0.55rem;
}

.inquiry-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  font-size: 0.95rem;
}

.contact-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: start;
  }
}

.form-grid {
  display: grid;
  gap: 1.1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-field label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: transparent;
  color: var(--cream);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 0.75rem 0;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--bronze);
}

.form-field textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.form-honey {
  display: none !important;
}

.form-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--bronze) 50%),
    linear-gradient(135deg, var(--bronze) 50%, transparent 50%);
  background-position: calc(100% - 12px) 50%, calc(100% - 7px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.form-note,
.form-status {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
}

.form-status[data-state="ok"] {
  color: var(--cream);
}

.form-status[hidden] {
  display: none;
}

/* Reveals */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 0.95s var(--ease) forwards;
}

.reveal-delay-1 { animation-delay: 0.12s; }
.reveal-delay-2 { animation-delay: 0.24s; }
.reveal-delay-3 { animation-delay: 0.36s; }
.reveal-delay-4 { animation-delay: 0.48s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.img-reveal {
  clip-path: inset(0 0 100% 0);
  animation: imageOpen 1.35s var(--ease) 0.15s forwards;
}

@keyframes imageOpen {
  to {
    clip-path: inset(0 0 0 0);
  }
}

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

  .reveal,
  .img-reveal,
  .figure img,
  .gallery-item img,
  .btn,
  .play-glyph {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
    clip-path: none;
  }
}

@media (max-width: 374px) {
  .brand {
    letter-spacing: 0.08em;
    font-size: 0.92rem;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .btn {
    width: 100%;
  }
}

.pull-quote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 3.4vw, 2.45rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  max-width: 38rem;
  margin: 0;
  color: var(--cream);
}

.pull-quote cite {
  display: block;
  margin-top: 1.25rem;
  font-family: Inter, system-ui, sans-serif;
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
}

.intro-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .intro-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: start;
  }
}

.lang-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.4rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.verse {
  margin: 2rem 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  color: var(--bronze);
}

.social-cards {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 2.5rem;
}

@media (min-width: 700px) {
  .social-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.social-card {
  display: block;
  background: var(--ink-soft);
  padding: 2rem 1.6rem;
  transition: background 0.35s var(--ease);
}

.social-card:hover {
  background: var(--brown);
}

.social-card span {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
}

.social-card strong {
  display: block;
  margin-top: 0.45rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
}

.email-block {
  margin: 2.5rem 0 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.email-block a {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-style: italic;
  color: var(--cream);
  word-break: break-word;
}

.email-block a:hover {
  color: var(--bronze);
}

.story-copy {
  max-width: 40rem;
}

/* Facts strip */
.facts-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-soft);
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .facts-bar {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .facts-bar {
    padding: 0 3rem;
  }
}

.facts-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem 1.5rem;
  list-style: none;
  margin: 0 auto;
  padding: 1.6rem 0;
  max-width: 1440px;
}

@media (min-width: 800px) {
  .facts-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    padding: 1.85rem 0;
  }
}

.facts-list li {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  overflow-wrap: anywhere;
}

@media (min-width: 800px) {
  .facts-list li {
    letter-spacing: 0.2em;
  }
}

.facts-list strong {
  display: block;
  margin-top: 0.4rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--cream);
  line-height: 1.25;
}

/* Quote band with atmosphere */
.quote-band {
  background:
    linear-gradient(180deg, rgba(11, 10, 9, 0.78) 0%, rgba(11, 10, 9, 0.86) 100%),
    url("../assets/images/texture-warm.jpg") center / cover;
}

.quote-band .pull-quote {
  max-width: 46rem;
}

/* Featured recording */
.featured-release {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .featured-release {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 4.5rem;
    align-items: center;
  }
}

.featured-cover {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(192, 154, 107, 0.28);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  background: var(--ink-soft);
}

.featured-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-kicker {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0 0 1rem;
}

.featured-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.92;
  margin: 0 0 1rem;
}

.featured-meta {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.4rem;
}

.featured-copy {
  max-width: min(32rem, 100%);
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
  margin: 0 0 1.8rem;
}

/* YouTube invitation — not a fake player */
.yt-banner {
  display: grid;
  gap: 1.5rem;
  padding: 2.25rem 1.5rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(23, 20, 18, 0.94) 0%, rgba(11, 10, 9, 0.78) 100%),
    url("../assets/images/texture-quiet.jpg") center / cover;
}

@media (min-width: 800px) {
  .yt-banner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 2.6rem 2.4rem;
  }
}

.yt-mark {
  width: 4.25rem;
  height: 4.25rem;
  border: 1px solid var(--bronze);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.yt-mark svg {
  width: 0.95rem;
  height: 0.95rem;
  margin-left: 2px;
  fill: var(--cream);
}

.yt-banner h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  margin: 0 0 0.4rem;
}

.yt-banner p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
}

.yt-banner .btn {
  justify-self: start;
}

/* About photo-essay */
.about-hero {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.about-hero-visual {
  position: absolute;
  inset: 0;
}

.about-hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
  filter: saturate(0.8) contrast(1.1) brightness(0.7);
}

.about-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 10, 9, 0.58) 0%, transparent 32%, rgba(11, 10, 9, 0.9) 100%);
}

.about-hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem 3.2rem;
}

@media (min-width: 768px) {
  .about-hero-copy {
    padding: 0 2rem 4rem;
  }
}

@media (min-width: 1024px) {
  .about-hero-copy {
    padding: 0 3rem 4.5rem;
  }
}

.about-hero-copy h1 {
  font-size: clamp(3.4rem, 9vw, 7rem);
  margin: 0 0 0.7rem;
}

.about-hero-copy .lede {
  color: rgba(232, 224, 213, 0.82);
  max-width: 34rem;
}

.essay {
  max-width: 42rem;
  margin: 0 auto;
}

.essay p {
  margin: 0 0 1.4rem;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 300;
}

.essay h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  line-height: 1.1;
  margin: 2.8rem 0 0.9rem;
}

.chapter-mark {
  display: block;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.45rem;
}

.essay .verse {
  margin-top: 0.4rem;
}

.essay-quote {
  margin: 2.6rem 0 2.8rem;
  padding: 0 0 0 1.4rem;
  border-left: 1px solid var(--bronze);
}

.essay-quote p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-style: italic;
  color: var(--cream);
  margin: 0;
  line-height: 1.4;
}

.connect-hero-email {
  margin-top: 1.6rem;
}

.connect-hero-email a {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 4.4vw, 3rem);
  font-style: italic;
  color: var(--cream);
  word-break: break-word;
}

.connect-hero-email a:hover {
  color: var(--bronze);
}

.form-panel {
  padding: 0;
}

@media (min-width: 900px) {
  .form-panel {
    padding: 2.4rem 2.2rem;
    border: 1px solid var(--line);
    background: rgba(23, 20, 18, 0.55);
  }
}

.cta-texture {
  background:
    linear-gradient(180deg, rgba(11, 10, 9, 0.84), rgba(11, 10, 9, 0.9)),
    url("../assets/images/texture-light.jpg") center / cover;
}

.release-card {
  transition: background 0.35s var(--ease);
}

.release-card:hover {
  background: rgba(23, 20, 18, 0.65);
}

@media (min-width: 700px) {
  .release-card {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }
}

.watch-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.watch-head .display {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 0;
}

.watch-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .watch-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.watch-grid.is-four {
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .watch-grid.is-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .watch-grid.is-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.watch-card-body {
  padding: 1rem 0.1rem 0;
}

.watch-card-body h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  margin: 0 0 0.2rem;
}

.yt-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line);
}

.yt-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #000;
}

.yt-embed .play-btn {
  cursor: pointer;
}

.yt-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.studio-band {
  position: relative;
  min-height: 16rem;
  overflow: hidden;
}

.studio-band img {
  width: 100%;
  height: 100%;
  min-height: 16rem;
  max-height: 22rem;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.82) contrast(1.06) brightness(0.72);
}

.studio-band-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.25rem;
  background: linear-gradient(180deg, transparent 20%, rgba(11, 10, 9, 0.78) 100%);
}

@media (min-width: 768px) {
  .studio-band-copy {
    padding: 2.5rem 2rem;
  }
}

@media (min-width: 1024px) {
  .studio-band-copy {
    padding: 2.8rem 3rem;
  }
}

.studio-band-copy h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin: 0;
}
