
    /* ─── Reset & Base ─────────────────────────────────────────── */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --black:       #0A0A0A;
      --black-warm:  #1A1008;
      --black-cool:  #08100C;
      --amber:       #C4872A;
      --amber-dim:   #8A5E1A;
      --burgundy:    #8B2252;
      --emerald:     #2A6B4F;
      --emerald-dim: #1A4A35;
      --emerald-bright: #3D9970;
      --cream:       #E8DDD0;
      --muted:       #6B6058;
      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-body:    'DM Sans', system-ui, sans-serif;
      --font-mono:    'DM Mono', monospace;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background-color: var(--black);
      color: var(--cream);
      font-family: var(--font-body);
      font-weight: 300;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

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

    /* ─── Hero ─────────────────────────────────────────────────── */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 4rem 2rem;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 40% at 50% 60%, rgba(196,135,42,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(139,34,82,0.05) 0%, transparent 60%);
      pointer-events: none;
    }

    .hero-eyebrow {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      font-weight: 400;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 2.5rem;
      opacity: 0;
      animation: fadeUp 1s ease 0.3s forwards;
    }

    .hero-wordmark {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(2.8rem, 8vw, 7rem);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      line-height: 1;
      color: var(--cream);
      opacity: 0;
      animation: fadeUp 1.2s ease 0.5s forwards;
    }

    .hero-wordmark em {
      font-style: italic;
      font-weight: 300;
      color: var(--amber);
    }

    .hero-rule {
      width: 1px;
      height: 60px;
      background: linear-gradient(to bottom, var(--amber), transparent);
      margin: 2.5rem auto;
      opacity: 0;
      animation: fadeIn 1s ease 1s forwards;
    }

    .hero-tagline {
      font-family: var(--font-display);
      font-style: italic;
      font-weight: 300;
      font-size: clamp(1rem, 2.5vw, 1.4rem);
      color: var(--muted);
      letter-spacing: 0.05em;
      max-width: 36ch;
      opacity: 0;
      animation: fadeUp 1s ease 1.2s forwards;
    }

    /* ─── Section Shared ───────────────────────────────────────── */
    .section {
      padding: 8rem 2rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .section-label {
      font-family: var(--font-mono);
      font-size: 0.6rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--amber-dim);
      margin-bottom: 3rem;
    }

    /* ─── Divider ───────────────────────────────────────────────── */
    .divider {
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(196,135,42,0.2), transparent);
    }

    /* ─── About / Ethos ─────────────────────────────────────────── */
    .ethos-inner {
      max-width: 56ch;
    }

    .ethos-headline {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      line-height: 1.25;
      color: var(--cream);
      margin-bottom: 2rem;
    }

    .ethos-headline em {
      font-style: italic;
      color: var(--amber);
    }

    .ethos-body {
      font-size: 0.95rem;
      line-height: 1.9;
      color: var(--muted);
      font-weight: 300;
    }

    /* ─── Artist Section ────────────────────────────────────────── */
    .artist-section {
      padding: 8rem 2rem;
    }

    .artist-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
    }

    /* The amber-light-from-darkness treatment — signature element */
    .artist-visual {
      position: relative;
      aspect-ratio: 3/4;
      background: var(--black);
      overflow: hidden;
    }

    .artist-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    /* Fade edges into black — preserves the cinematic feel */
    .artist-visual::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to bottom, transparent 55%, var(--black) 100%),
        linear-gradient(to right, var(--black) 0%, transparent 15%, transparent 85%, var(--black) 100%);
      z-index: 2;
      pointer-events: none;
    }

    .artist-copy {
      padding: 2rem 0;
    }

    .artist-copy .section-label {
      margin-bottom: 2rem;
    }

    .artist-name {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(3rem, 6vw, 5.5rem);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      line-height: 1;
      color: var(--cream);
      margin-bottom: 1.5rem;
    }

    .artist-descriptor {
      font-family: var(--font-display);
      font-style: italic;
      font-size: clamp(1rem, 2vw, 1.25rem);
      color: var(--amber);
      letter-spacing: 0.03em;
      margin-bottom: 2.5rem;
    }

    .artist-mystery {
      font-size: 0.85rem;
      font-family: var(--font-mono);
      color: var(--muted);
      letter-spacing: 0.15em;
      line-height: 2;
      border-left: 1px solid var(--amber-dim);
      padding-left: 1.5rem;
    }

    /* ─── Artist Section — Flipped (Kaia) ──────────────────────── */
    .artist-inner--flip {
      direction: rtl;
    }

    .artist-inner--flip > * {
      direction: ltr;
    }

    /* Kaia emerald accent overrides */
    .kaia .section-label {
      color: var(--emerald-dim);
    }

    .kaia .artist-descriptor {
      color: var(--emerald-bright);
    }

    .kaia .artist-mystery {
      border-left-color: var(--emerald-dim);
    }

    .kaia-section {
      background: var(--black-cool);
    }

    /* ─── Album Section ──────────────────────────────────────────── */
    .album-section {
      padding: 8rem 2rem;
      background: var(--black-warm);
    }

    .album-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .album-grid {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 4rem;
      align-items: start;
      margin-top: 3rem;
    }

    .album-art {
      width: 260px;
      aspect-ratio: 1;
      background: var(--black);
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
    }

    /* Album art — amber glow on black, no image needed yet */
    .album-art::before {
      content: '';
      position: absolute;
      top: -20%;
      left: -20%;
      width: 80%;
      height: 80%;
      background: radial-gradient(ellipse, rgba(196,135,42,0.18) 0%, transparent 65%);
    }

    .album-art::after {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      width: 40%;
      height: 40%;
      background: radial-gradient(ellipse, rgba(139,34,82,0.15) 0%, transparent 60%);
    }

    .album-art-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-mono);
      font-size: 0.55rem;
      letter-spacing: 0.3em;
      color: rgba(196,135,42,0.25);
      text-transform: uppercase;
    }

    .album-meta {
      padding-top: 0.5rem;
    }

    .album-title {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(1.8rem, 4vw, 3rem);
      line-height: 1.2;
      color: var(--cream);
      margin-bottom: 0.75rem;
    }

    .album-title em {
      font-style: italic;
    }

    .album-subtitle {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      color: var(--muted);
      text-transform: uppercase;
      margin-bottom: 2.5rem;
    }

    .tracklist {
      list-style: none;
      border-top: 1px solid rgba(196,135,42,0.12);
    }

    .tracklist li {
      display: flex;
      align-items: baseline;
      gap: 1.25rem;
      padding: 0.85rem 0;
      border-bottom: 1px solid rgba(196,135,42,0.08);
      font-size: 0.88rem;
      color: var(--muted);
      transition: color 0.2s ease;
    }

    .tracklist li:hover {
      color: var(--cream);
    }

    .track-num {
      font-family: var(--font-mono);
      font-size: 0.6rem;
      letter-spacing: 0.15em;
      color: var(--amber-dim);
      min-width: 2ch;
    }

    .track-name {
      flex: 1;
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 400;
      letter-spacing: 0.02em;
    }

    .album-cta {
      margin-top: 2.5rem;
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--amber);
      text-decoration: none;
      border: 1px solid rgba(196,135,42,0.3);
      padding: 0.85rem 1.75rem;
      transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
    }

    .album-cta:hover {
      border-color: var(--amber);
      background: rgba(196,135,42,0.05);
      color: var(--cream);
    }

    .album-cta:focus-visible {
      outline: 2px solid var(--amber);
      outline-offset: 3px;
    }

    .album-cta-soon {
      color: var(--muted);
      border-color: rgba(107,96,88,0.3);
      cursor: default;
      pointer-events: none;
    }

    /* ─── Contact ───────────────────────────────────────────────── */
    .contact-section {
      padding: 8rem 2rem;
    }

    .contact-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: start;
    }

    .contact-headline {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      line-height: 1.3;
      color: var(--cream);
    }

    .contact-headline em {
      font-style: italic;
      color: var(--amber);
    }

    .contact-lines {
      padding-top: 0.5rem;
    }

    .contact-item {
      margin-bottom: 2.5rem;
    }

    .contact-item-label {
      font-family: var(--font-mono);
      font-size: 0.6rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--amber-dim);
      margin-bottom: 0.5rem;
    }

    .contact-item a,
    .contact-item span {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 400;
      color: var(--cream);
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: color 0.2s ease;
    }

    .contact-item a:hover {
      color: var(--amber);
    }

    /* ─── Footer ─────────────────────────────────────────────────── */
    footer {
      padding: 3rem 2rem;
      border-top: 1px solid rgba(196,135,42,0.08);
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .footer-wordmark {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: 0.9rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .footer-wordmark em {
      font-style: italic;
      color: rgba(196,135,42,0.5);
    }

    .footer-legal {
      font-family: var(--font-mono);
      font-size: 0.58rem;
      letter-spacing: 0.2em;
      color: rgba(107,96,88,0.5);
      text-transform: uppercase;
    }

    .footer-imprint {
      width: 100%;
      text-align: center;
      margin-top: 1.5rem;
      font-family: var(--font-mono);
      font-size: 0.58rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(107,96,88,0.5);
    }

    .footer-imprint a {
      color: inherit;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .footer-imprint a:hover {
      color: var(--amber);
    }

    /* ─── Kaia Singles Section ──────────────────────────────────── */
    .singles-section {
      padding: 8rem 2rem;
      background: var(--black-cool);
    }

    .singles-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .singles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
      margin-top: 3rem;
    }

    .single-card {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .single-art {
      width: 100%;
      aspect-ratio: 1;
      background: var(--black);
      position: relative;
      overflow: hidden;
    }

    .single-art img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .single-art::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 60%, rgba(8,16,12,0.6) 100%);
      z-index: 2;
      pointer-events: none;
    }

    .single-art-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--black) 0%, #0D1F17 100%);
    }

    .single-art-placeholder span {
      font-family: var(--font-mono);
      font-size: 0.55rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--emerald-dim);
    }

    .single-title {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(1.1rem, 2vw, 1.4rem);
      letter-spacing: 0.08em;
      color: var(--cream);
      line-height: 1.2;
    }

    .single-title em {
      font-style: italic;
      color: var(--emerald-bright);
    }

    .single-meta {
      font-family: var(--font-mono);
      font-size: 0.58rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .single-cta {
      display: inline-block;
      margin-top: 0.5rem;
      font-family: var(--font-mono);
      font-size: 0.6rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--emerald-bright);
      text-decoration: none;
      border-bottom: 1px solid var(--emerald-dim);
      padding-bottom: 0.2rem;
      transition: color 0.2s ease, border-color 0.2s ease;
    }

    .single-cta:hover {
      color: var(--cream);
      border-color: var(--cream);
    }

    .single-cta--soon {
      color: var(--muted);
      border-color: rgba(107,96,88,0.3);
      pointer-events: none;
    }

    @media (max-width: 768px) {
      .singles-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 320px;
      }

      .artist-inner--flip {
        direction: ltr;
      }
    }

    /* ─── Animations ─────────────────────────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    /* Scroll-reveal: elements start hidden, JS adds .visible */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─── Responsive ─────────────────────────────────────────────── */
    @media (max-width: 768px) {
      .artist-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .artist-visual {
        aspect-ratio: 4/3;
        max-height: 280px;
      }

      .album-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .album-art {
        width: 100%;
        max-width: 280px;
        aspect-ratio: 1;
      }

      .contact-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }
    }
  
