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

  :root {
    --c-border-card:   rgba(255,255,255,0.08);
    --c-text-primary:  #e4e0d8;
    --c-text-secondary:#8fa888;
    --c-text-muted:    #4a6650;
    --c-accent:        #7a9e7e;
    --c-accent-dim:    #3d5c40;
    --font-display:    'Cardo', Georgia, serif;
    --font-body:       'Inter', system-ui, sans-serif;
    --identity-top:    140px;
    --mask-start-point: 9999px;
    /* Distance over which feed cards fade in below the locked identity */
    --mask-fade-distance: 48px;
    /* About/inner page variables */
    --c-bg:        #080d09;
    --c-surface:   #0e1510;
    --c-border:    rgba(122,158,126,0.15);
    --nav-height:  60px;
  }

  html { scroll-behavior: smooth; }

  body {
    background: #0a0f0b;
    color: var(--c-text-primary);
    font-family: var(--font-body);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  .site-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
  }
  .site-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    filter: brightness(0.50) saturate(0.85);
  }
  .site-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(10,14,11,0.10) 0%,
      rgba(10,14,11,0.02) 25%,
      rgba(10,14,11,0.32) 65%,
      rgba(10,14,11,0.78) 100%
    );
  }

  /* ── NAV vignette ── */
  .site-nav {
    position: fixed;
    top: 0; right: 0;
    z-index: 200;
    padding: 22px 44px 56px 120px;
    background: radial-gradient(
      ellipse 100% 100% at 110% -10%,
      rgba(5,8,6,0.96) 0%,
      rgba(5,8,6,0.82) 25%,
      rgba(5,8,6,0.50) 50%,
      rgba(5,8,6,0.18) 68%,
      transparent 80%
    );
    display: flex;
    gap: 32px;
  }
  .site-nav a {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-text-secondary);
    text-decoration: none;
    transition: color 0.2s;
  }
  .site-nav a:hover { color: var(--c-text-primary); }

  .nav-hamburger {
    display: none;
    position: fixed;
    top: 18px; right: 24px;
    z-index: 200;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }
  .ham-line {
    width: 22px;
    height: 1px;
    background: var(--c-text-primary);
    opacity: 0.65;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(9, 13, 10, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 44px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: var(--font-display);
    font-size: 26px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-text-primary);
    text-decoration: none;
    opacity: 0.72;
    transition: opacity 0.2s;
  }
  .mobile-menu a:hover { opacity: 1; }
  .mobile-menu-close {
    position: absolute;
    top: 18px; right: 26px;
    background: none;
    border: none;
    color: var(--c-text-muted);
    font-size: 30px;
    cursor: pointer;
    font-weight: 300;
    line-height: 1;
  }

  /* ── SCROLL CHEVRON ── */
  .scroll-chevron {
    position: fixed;
    bottom: 72px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 1;
    transition: opacity 0.6s ease;
    pointer-events: none;
  }
  .scroll-chevron.hidden {
    opacity: 0;
  }
  .chevron-svg {
    width: 20px;
    height: 12px;
    animation: chevronBob 2s ease-in-out infinite;
  }
  @keyframes chevronBob {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(4px); }
  }

  /* ── PAGE ── */
  .page {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
  }

  .hero-spacer {
    height: 50vh;
    flex-shrink: 0;
  }

  /* Sticky container wraps both identity and feed.
     Height is set by JS to exactly: viewport height + feed content height.
     This guarantees the identity locks and stays locked for the full feed
     scroll, with no extra space after the last card. */
  .sticky-container {
    position: relative;
    z-index: 1;
  }

  .hero-identity {
    position: sticky;
    top: var(--identity-top);
    z-index: 100;
    padding: 0 44px 48px;
    pointer-events: none;
  }
  .hero-identity > * {
    pointer-events: auto;
  }
  .hero-name {
    font-family: var(--font-display);
    font-size: clamp(52px, 9vw, 96px);
    font-weight: 400;
    color: var(--c-text-primary);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
  }
  .hero-descriptor {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--c-accent);
  }

  /* ── FEED ── */
  .feed {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 64px;
    /* padding-top and sticky-container height are both set by JS
       so cards appear just below the locked identity with no excess space. */
    padding-top: 0;
    padding-bottom: 64px;
    isolation: isolate;
    will-change: mask;
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent var(--mask-start-point),
      black calc(var(--mask-start-point) + var(--mask-fade-distance))
    );
    mask-image: linear-gradient(
      to bottom,
      transparent var(--mask-start-point),
      black calc(var(--mask-start-point) + var(--mask-fade-distance))
    );
  }

  .card {
    background: rgba(9, 13, 10, 0.85);
    border: 1px solid var(--c-border-card);
    padding: 52px 44px 56px;
  }

  .post-release {
    display: flex;
    align-items: center;
    gap: 44px;
  }
  .release-artwork {
    width: 195px;
    height: 195px;
    flex-shrink: 0;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 6px 32px rgba(0,0,0,0.55);
  }
  .release-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .release-meta { flex: 1; }
  .post-eyebrow {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    margin-bottom: 10px;
  }
  .release-title {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 400;
    color: var(--c-text-primary);
    line-height: 1.1;
    margin-bottom: 5px;
  }
  .release-artist {
    font-family: var(--font-display);
    font-size: 17px;
    font-style: italic;
    color: var(--c-accent);
    margin-bottom: 16px;
  }
  .cta-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .btn {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 9px 18px;
    border-radius: 1px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
  }
  .btn-primary {
    border: 1px solid var(--c-accent);
    color: var(--c-accent);
    background: transparent;
  }
  .btn-primary:hover {
    background: var(--c-accent);
    color: #0a0f0b;
  }
  .btn-secondary {
    border: 1px solid var(--c-accent-dim);
    color: var(--c-text-muted);
    background: transparent;
  }
  .btn-secondary:hover {
    border-color: var(--c-accent);
    color: var(--c-accent);
  }
  .btn-disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
  }

  .post-bio .intro-inner { max-width: 600px; }
  .intro-text {
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1.85;
    color: var(--c-text-secondary);
    font-style: italic;
  }
  .intro-text strong {
    color: var(--c-text-primary);
    font-style: normal;
    font-weight: 400;
  }
  .text-link {
    display: inline-block;
    margin-top: 24px;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-accent);
    text-decoration: none;
    border-bottom: 1px solid var(--c-accent-dim);
    padding-bottom: 2px;
    transition: border-color 0.2s;
  }
  .text-link:hover { border-color: var(--c-accent); }

  footer {
    position: relative;
    z-index: 1;
    background: rgba(6, 9, 7, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 44px;
    display: flex;
    justify-content: flex-end;
  }
  .footer-copy {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--c-accent-dim);
  }

  @media (max-width: 680px) {
    .site-nav { display: none; }
    .nav-hamburger { display: flex; }
    .hero-identity { padding: 0 20px 40px; }
    .feed { gap: 40px; padding-bottom: 40px; }
    .card { padding: 36px 20px 44px; }
    .post-release { flex-direction: column; gap: 24px; }
    .release-artwork { width: 100px; height: 100px; }
    footer { padding: 16px 20px; }
  }

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE — supplemental rules
   ═══════════════════════════════════════════════════════════════ */

/* ── About background ── */
.page-bg {
  position: fixed;
  inset: 0;
  background-image: url('../assets/images/bg-about.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 7, 0.78);
}

/* ── About nav ── */
.about-page nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 100;
}
.nav-wordmark {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--c-text-primary);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--c-text-primary); }

/* ── Page layout ── */
.page-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.about-container {
  flex: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 80px) 40px 80px;
  width: 100%;
}

/* ── Two-column layout ── */
.about-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
}

/* ── Headshot ── */
.headshot-col {
  position: sticky;
  top: calc(var(--nav-height) + 40px);
}
.headshot-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.headshot-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.headshot-caption {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-top: 14px;
}

/* ── Artist statement ── */
.statement-col {
  padding-top: 6px;
}
.statement-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: 28px;
}
.statement-body p {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--c-text-primary);
  margin-bottom: 24px;
}
.statement-body p:last-child { margin-bottom: 0; }
.statement-body p:first-child {
  font-size: 19px;
  color: var(--c-text-primary);
}

/* ── About footer ── */
.about-page footer {
  position: relative;
  z-index: 1;
  padding: 24px 40px;
  border-top: 1px solid var(--c-border);
  display: flex;
  justify-content: flex-end;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* ── About mobile ── */
@media (max-width: 680px) {
  .about-page nav { padding: 0 20px; }
  .about-page nav .nav-links { display: none; }
  .about-container { padding: calc(var(--nav-height) + 48px) 20px 60px; }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .headshot-col { position: static; }
  .headshot-wrap { max-width: 260px; }
}
