
    /* ─── Fonts ──────────────────────────────────────────────── */
    @font-face { font-family: 'FG'; src: url('../fonts/fgatf/FranklinGothicATF-Light.otf') format('opentype'); font-weight: 300; font-display: swap; }
    @font-face { font-family: 'FG'; src: url('../fonts/fgatf/FranklinGothicATF-Regular.otf') format('opentype'); font-weight: 400; font-display: swap; }
    @font-face { font-family: 'FG'; src: url('../fonts/fgatf/FranklinGothicATF-Medium.otf') format('opentype'); font-weight: 500; font-display: swap; }
    @font-face { font-family: 'FG'; src: url('../fonts/fgatf/FranklinGothicATF-Bold.otf') format('opentype'); font-weight: 700; font-display: swap; }
    @font-face { font-family: 'FG'; src: url('../fonts/fgatf/FranklinGothicATF-Heavy.otf') format('opentype'); font-weight: 900; font-display: swap; }

    /* ─── Custom cursor ─────────────────────────────────────── */
    .cursor-dot {
      position: fixed;
      pointer-events: none;
      z-index: 10000;
      mix-blend-mode: difference;
      opacity: 0;
      transition: opacity .4s, transform .12s ease-out;
      transform: translate(-50%, -50%);
      font-family: 'Webdings';
      font-size: 18px;
      color: var(--fg);
      line-height: 1;
    }
    .cursor-dot.visible { opacity: 1; }
    @media (hover: none), (pointer: coarse) {
      .cursor-dot { display: none; }
    }

    /* ─── Reset ──────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    img, video { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }
    button { background: none; border: none; cursor: pointer; color: inherit; font: inherit; }

    /* ─── Root ───────────────────────────────────────────────── */
    :root {
      --off: #a0a0a0;
      --dim: #555;
      --rule: rgba(255,255,255,.08);
      --bg: #000;
      --fg: #fff;
      --f: 'FG', 'Franklin Gothic Medium', Arial, sans-serif;
      --space-lg: clamp(100px, 12vw, 160px);
      --space-sm: clamp(40px, 5vw, 64px);
      --ease: cubic-bezier(.25,.46,.45,.94);
    }

    body {
      background: var(--bg); color: var(--fg); font-family: var(--f);
      font-weight: 400; font-size: 14px; line-height: 1.55;
      -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    /* ─── Grain overlay ─────────────────────────────────────── */
    body::after {
      content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: .028;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
      background-size: 180px;
    }

    /* ─── Utility ────────────────────────────────────────────── */
    .container { max-width: 1320px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 80px); }
    .label { font-size: 10px; font-weight: 300; letter-spacing: .3em; text-transform: uppercase; color: var(--off); }

    /* ─── Navigation ─────────────────────────────────────────── */
    nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 28px clamp(24px, 5vw, 80px); mix-blend-mode: difference; transition: transform .4s var(--ease); }
    nav.nav-hidden { transform: translateY(-100%); }
    .logo { display: flex; align-items: center; gap: 10px; }
    .logo img { height: 32px; width: auto; }
    .logo-text { font-weight: 700; font-size: 18px; letter-spacing: .22em; text-transform: uppercase; }
    .nav-links { display: flex; gap: 40px; }
    .nav-links a { font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--off); background-image: linear-gradient(var(--fg), var(--fg)); background-size: 0% 1px; background-repeat: no-repeat; background-position: 0 100%; transition: background-size .35s ease, color .3s; }
    .nav-links a:hover { color: var(--fg); background-size: 100% 1px; }
    .nav-cta { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; padding: 10px 24px; border: 1px solid rgba(255,255,255,.3); transition: background .3s, color .3s; }
    .nav-cta:hover { background: var(--fg); color: var(--bg); }

    .mob-cta-pill {
      display: none;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      padding: 8px 14px;
      border: 1px solid rgba(255,255,255,.35);
      margin-right: 10px;
      color: var(--fg);
    }
    .mob-cta-pill:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }

    .nav-hamburger { display: none; }
    .nav-hamburger span { display: block; width: 22px; height: 1px; background: var(--fg); transition: transform .3s ease, opacity .3s ease; transform-origin: center; }
    .nav-hamburger span + span { margin-top: 6px; }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ─── Mobile menu overlay ───────────────────────────────── */
    .mob-nav { position: fixed; inset: 0; z-index: 150; background: var(--bg); display: flex; flex-direction: column; padding: 120px clamp(24px, 8vw, 80px) 60px; opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .35s ease, transform .35s ease; }
    .mob-nav.open { opacity: 1; pointer-events: all; transform: translateY(0); }
    .mob-nav-links { display: flex; flex-direction: column; gap: 32px; flex: 1; }
    .mob-nav-links a { font-size: clamp(28px, 9vw, 52px); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--fg); line-height: 1; transition: color .25s; }
    .mob-nav-links a:hover { color: var(--off); }
    .mob-nav-cta { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; padding: 14px 32px; border: 1px solid rgba(255,255,255,.4); align-self: flex-start; transition: background .3s, color .3s; }
    .mob-nav-cta:hover { background: var(--fg); color: var(--bg); }

    /* ─── Press Kit Header ──────────────────────────────────── */
    .epk { padding-top: clamp(120px, 14vw, 180px); padding-bottom: var(--space-lg); }
    .epk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 100px); align-items: start; }
    .epk-photo { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: #080808; }
    .epk-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: grayscale(20%) contrast(1.05); transition: filter .5s; }
    .epk-photo:hover img { filter: grayscale(0%) contrast(1.1); }
    .epk-info { padding-top: clamp(8px, 2vw, 32px); display: flex; flex-direction: column; }
    .epk-name { font-weight: 900; font-size: clamp(56px, 9vw, 140px); letter-spacing: .02em; line-height: .88; margin-bottom: 16px; }
    .epk-role { font-weight: 300; font-size: clamp(11px, 1.1vw, 14px); letter-spacing: .32em; text-transform: uppercase; color: var(--dim); margin-bottom: clamp(32px, 4vw, 48px); }
    .epk-rule { width: 100%; height: 1px; background: var(--rule); margin-bottom: clamp(28px, 3.5vw, 40px); }
    .epk-bio { font-weight: 300; font-size: clamp(15px, 1.6vw, 19px); line-height: 1.75; color: var(--off); margin-bottom: clamp(36px, 4.5vw, 56px); }
    .epk-stats { display: flex; gap: clamp(32px, 4vw, 56px); margin-bottom: clamp(36px, 4.5vw, 56px); }
    .epk-stat-num { font-weight: 300; font-size: clamp(36px, 4.5vw, 56px); line-height: 1; letter-spacing: -.01em; display: block; }
    .epk-stat-desc { font-size: 9px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--off); display: block; margin-top: 6px; }
    .epk-links { display: flex; align-items: center; gap: clamp(20px, 3vw, 40px); flex-wrap: wrap; padding-top: clamp(28px, 3vw, 40px); border-top: 1px solid var(--rule); }
    .link-item { display: inline-flex; align-items: center; gap: 10px; font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--off); transition: color .3s; }
    .link-item:hover { color: var(--fg); }
    .link-item svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; transition: transform .3s var(--ease); }
    .link-item:hover svg { transform: scale(1.12); }

    /* ─── Bio options — pick one, delete two ─────────────────── */

    /* ─── Section rhythm ─────────────────────────────────────── */
    .section { padding: var(--space-lg) 0; }
    .section-head { margin-bottom: clamp(48px, 8vw, 96px); }
    .section-head h2 { font-weight: 700; font-size: clamp(32px, 5.5vw, 72px); letter-spacing: .04em; line-height: .95; margin-top: 14px; }
    .section-rule { width: 40px; height: 1px; background: var(--dim); margin-top: 28px; }

    /* ─── Discography ────────────────────────────────────────── */
    .disco-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2px;
    }
    .release { overflow: hidden; }
    .release a { display: block; position: relative; aspect-ratio: 1; }
    .release-art { width: 100%; height: 100%; overflow: hidden; }
    .release-art img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(15%); transition: transform .6s var(--ease), filter .4s; }
    .release:hover .release-art img { transform: scale(1.04); filter: grayscale(0%); }
    .release-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 24px 24px; background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%); z-index: 1; opacity: 0; transform: translateY(6px); transition: opacity .35s ease, transform .35s ease; }
    .release:hover .release-info { opacity: 1; transform: translateY(0); }
    .release-info h4 { font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 4px; }
    .release-info p { font-size: 11px; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; color: var(--off); }

    /* ─── Back to roster ─────────────────────────────────────── */
    .next-block { display: flex; align-items: flex-end; justify-content: space-between; padding: clamp(56px, 8vw, 96px) 0; border-top: 1px solid var(--rule); flex-wrap: wrap; gap: 32px; }
    .next-label { font-size: 10px; font-weight: 300; letter-spacing: .3em; text-transform: uppercase; color: var(--off); margin-bottom: 16px; display: block; }
    .next-text { font-weight: 700; font-size: clamp(36px, 6vw, 80px); letter-spacing: .04em; line-height: .92; color: rgba(255,255,255,.12); transition: color .5s; }
    .next-block:hover .next-text { color: rgba(255,255,255,.22); }
    .next-link { display: inline-flex; align-items: center; gap: 10px; font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; padding: 16px 36px; border: 1px solid rgba(255,255,255,.2); align-self: center; transition: background .35s, color .35s, border-color .35s; white-space: nowrap; }
    .next-link::before { content: '\2190'; font-size: 14px; transition: transform .3s var(--ease); }
    .next-link:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
    .next-link:hover::before { transform: translateX(-4px); }

    /* ─── Marquee ─────────────────────────────────────────────── */
    .marquee { overflow: hidden; padding: var(--space-sm) 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
    .marquee-track { display: flex; align-items: center; width: max-content; animation: marquee-scroll 28s linear infinite; will-change: transform; }
    .marquee-track:hover { animation-play-state: paused; }
    .marquee-text { font-weight: 700; font-size: clamp(48px, 7vw, 96px); letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; padding: 0 clamp(20px, 3vw, 40px); color: rgba(255,255,255,.06); transition: color .6s; }
    .marquee:hover .marquee-text { color: rgba(255,255,255,.12); }
    .marquee-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.12); flex-shrink: 0; }
    @keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ─── Footer ──────────────────────────────────────────────── */
    footer { padding: clamp(48px, 7vw, 80px) clamp(24px, 5vw, 80px) clamp(32px, 4vw, 48px); }
    .footer-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
    .footer-brand-name { font-weight: 700; font-size: 22px; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 14px; display: block; }
    .footer-brand p { font-size: 13px; color: var(--off); line-height: 1.7; max-width: 260px; margin-bottom: 20px; }
    .footer-tagline { font-weight: 300; font-size: 14px; color: var(--dim); }
    .footer-col h5 { font-size: 9px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--dim); margin-bottom: 18px; }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col a { font-size: 13px; color: var(--off); background-image: linear-gradient(var(--fg), var(--fg)); background-size: 0% 1px; background-repeat: no-repeat; background-position: 0 100%; transition: background-size .35s ease, color .3s; }
    .footer-col a:hover { color: var(--fg); background-size: 100% 1px; }
    .footer-bottom { max-width: 1320px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid var(--rule); flex-wrap: wrap; gap: 16px; }
    .footer-bottom p { font-size: 11px; color: var(--dim); letter-spacing: .04em; }
    .footer-socials { display: flex; gap: 20px; align-items: center; }
    .footer-socials a { display: flex; align-items: center; justify-content: center; width: 20px; height: 20px; color: var(--dim); transition: color .3s; }
    .footer-socials a:hover { color: var(--fg); }
    .footer-socials svg { width: 18px; height: 18px; fill: currentColor; }

    /* ─── Scroll reveal ──────────────────────────────────────── */
    .r {
      opacity: 0;
      transform: translateY(32px);
      transition:
        opacity .95s cubic-bezier(.22, 1, .36, 1),
        transform 1.05s cubic-bezier(.22, 1, .36, 1);
      transition-delay: var(--r-delay, 0s);
      will-change: opacity, transform;
    }
    .r.v { opacity: 1; transform: translateY(0); }
    .r-stagger > .r:nth-child(1) { --r-delay: 0s; }
    .r-stagger > .r:nth-child(2) { --r-delay: .07s; }
    .r-stagger > .r:nth-child(3) { --r-delay: .14s; }
    .r-stagger > .r:nth-child(4) { --r-delay: .21s; }
    .r-stagger > .r:nth-child(5) { --r-delay: .28s; }
    .r-stagger > .r:nth-child(6) { --r-delay: .35s; }
    @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
    @keyframes page-in { from { opacity: 0; } to { opacity: 1; } }
    body { animation: page-in .55s ease-out both; }
    @media (prefers-reduced-motion: reduce) {
      .r, .r-stagger > .r {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
      }
      body { animation: none !important; }
      *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
      }
    }

    /* ─── Mobile ─────────────────────────────────────────────── */
    @media (max-width: 960px) {
      .nav-links, .nav-cta { display: none; }
      .nav-hamburger { display: block; } .mob-cta-pill { display: inline-block; }
      .epk-grid { grid-template-columns: 1fr; gap: clamp(32px, 5vw, 56px); }
      .epk-photo { max-width: 480px; }
    }
    @media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr 1fr; } .release-info { opacity: 1; transform: none; } .epk-links { gap: 16px; } }
    @media (max-width: 440px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; align-items: flex-start; } .next-block { flex-direction: column; align-items: flex-start; } }
  
.inline-style-7e901d { max-width:1440px; padding:0; }
.inline-style-b34b65 { height:32px; width:auto; margin-bottom:14px; display:block; }