/* ═══════════════════════════════════════════════════════
   SUPER PRODUCER SELF — ELPD PRODUCTIONS
   LUXURY PALETTE: Deep Slate · Champagne Gold · Ivory · Platinum
   "The Grammy Executive" — Prestigious, Established, Polished
   ═══════════════════════════════════════════════════════ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Lato', 'Helvetica Neue', sans-serif;
    background-color: #0b0e14;
    color: #eceef2;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }

/* ═══════════════════════════════════════════════════════
   LUXURY COLOR SYSTEM — DEEP SLATE
   ─────────────────────────────────────────────────────
   DEEP SLATE        #0b0e14  — deepest background
   SLATE DARK        #0f1219  — section alternates
   SLATE CARD        #141820  — card backgrounds
   SLATE MID         #1a1f2a  — hover/lift
   SLATE LIFT        #212737  — border reference
   ─────────────────────────────────────────────────────
   CHAMPAGNE GOLD    #c9a84c  — primary accent (luxury)
   DEEP GOLD         #a8893a  — darker gold variant
   BRIGHT GOLD       #e2bc6a  — highlight, hover
   LIQUID GOLD       #f0d080  — rare emphasis only
   ─────────────────────────────────────────────────────
   PEARL WHITE       #eceef2  — primary text
   SOFT SILVER       #c8ccd6  — secondary text
   MUTED SLATE       #7a8096  — tertiary text / labels
   STEEL BORDER      #2a3045  — borders, dividers
   ─────────────────────────────────────────────────────
   SLATE HIGHLIGHT   #6b8cba  — accent blue-grey
   ═══════════════════════════════════════════════════════ */

:root {
    /* Deep Slate Backgrounds */
    --obsidian:     #0b0e14;
    --charcoal:     #0f1219;
    --elevated:     #141820;
    --warm-dark:    #1a1f2a;
    --subtle-lift:  #212737;
    --border-warm:  #2a3045;

    /* Gold — the prestige accent */
    --gold:         #c9a84c;
    --gold-deep:    #a8893a;
    --gold-bright:  #e2bc6a;
    --gold-liquid:  #f0d080;
    --gold-muted:   rgba(201, 168, 76, 0.15);
    --gold-glow:    rgba(201, 168, 76, 0.25);
    --gold-line:    rgba(201, 168, 76, 0.35);
    --gold-border:  1px solid rgba(201, 168, 76, 0.3);

    /* Text */
    --ivory:        #eceef2;
    --cream:        #c8ccd6;
    --stone:        #7a8096;
    --ash:          #2a3045;
    --platinum:     #a0aabe;

    /* Slate accent */
    --slate-accent: #6b8cba;

    /* Typography */
    --font-display: 'Anton', 'Impact', sans-serif;
    --font-head:    'Oswald', 'Arial Narrow', sans-serif;
    --font-body:    'Lato', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --section-py: 110px;
    --container:  1180px;
    --gutter:     24px;

    /* Transitions */
    --t-fast: 0.18s ease;
    --t-med:  0.32s ease;
    --t-slow: 0.55s ease;
}

/* Hero Instagram badge */
.hero-ig {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.35);
    color: var(--gold);
    font-family: var(--font-head);
    font-size: 0.82rem;
    letter-spacing: 2px;
    padding: 7px 18px;
    border-radius: 30px;
    text-decoration: none;
    margin-bottom: 28px;
    transition: all var(--t-fast);
}
.hero-ig:hover {
    background: rgba(201,168,76,0.22);
    color: var(--gold-bright);
    transform: translateY(-1px);
}
.hero-ig i { font-size: 1rem; }


.gold     { color: var(--gold); }
.ivory    { color: var(--ivory); }
.platinum { color: var(--platinum); }

.section-label {
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1.0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ivory);
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--stone);
    max-width: 600px;
    margin-bottom: 60px;
    line-height: 1.8;
    font-weight: 300;
}

/* ─── LAYOUT ─────────────────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.section {
    padding: var(--section-py) 0;
    position: relative;
}

/* ─── LUXURY DIVIDER LINE ────────────────────────────── */
.gold-rule {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 20px 0 36px;
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 15px 38px;
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--t-med);
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

/* Primary — Champagne Gold on Obsidian */
.btn-primary {
    background: var(--gold);
    color: var(--obsidian);
    box-shadow: 0 4px 24px rgba(201, 168, 76, 0.2);
}
.btn-primary:hover {
    background: var(--gold-bright);
    box-shadow: 0 8px 36px rgba(201, 168, 76, 0.4);
    transform: translateY(-2px);
    color: var(--obsidian);
}
.btn-primary:active { transform: translateY(0); }

/* Outline — Gold border, transparent fill */
.btn-outline {
    background: transparent;
    color: var(--ivory);
    border: 1px solid rgba(201, 168, 76, 0.6);
}
.btn-outline:hover {
    background: var(--gold-muted);
    border-color: var(--gold);
    color: var(--gold-bright);
    transform: translateY(-2px);
}

/* Ghost — very subtle */
.btn-ghost {
    background: transparent;
    color: var(--stone);
    border: 1px solid var(--border-warm);
}
.btn-ghost:hover {
    border-color: var(--gold-line);
    color: var(--gold);
}

.btn-sm   { padding: 10px 24px; font-size: 0.76rem; letter-spacing: 2px; }
.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    background: rgba(11, 14, 20, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.18);
    transition: all var(--t-med);
}
.navbar.scrolled {
    background: rgba(8, 11, 16, 0.98);
    border-bottom-color: rgba(201, 168, 76, 0.28);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    line-height: 1;
}
.nav-logo-img {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(201,168,76,0.3));
    transition: filter var(--t-med), transform var(--t-med);
}
.nav-logo:hover .nav-logo-img {
    filter: drop-shadow(0 0 14px rgba(201,168,76,0.55));
    transform: scale(1.03);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}
.nav-links a {
    font-family: var(--font-head);
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--stone);
    transition: color var(--t-fast);
    position: relative;
    padding-bottom: 3px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width var(--t-med);
}
.nav-links a:hover { color: var(--ivory); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

.nav-links a.nav-cta {
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.5);
    padding: 8px 22px;
    letter-spacing: 2px;
    font-size: 0.72rem;
    transition: all var(--t-fast);
}
.nav-links a.nav-cta::after { display: none; }
.nav-links a.nav-cta:hover {
    background: var(--gold);
    color: var(--obsidian);
    border-color: var(--gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
}
.nav-toggle span {
    display: block;
    width: 26px; height: 1px;
    background: var(--cream);
    transition: transform var(--t-med), opacity var(--t-med);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════
   HERO — The Grand Entrance
   ═══════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 130px 0 90px;
    background: var(--obsidian);
}

/* Layered atmospheric backgrounds */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    opacity: 0.18;
    filter: grayscale(30%) contrast(1.1);
    transform: scale(1.04);
    transition: transform 8s ease;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 70% at 50% 0%,   rgba(201,168,76,0.04) 0%, transparent 55%),
        radial-gradient(ellipse 60% 80% at 85% 60%,  rgba(201,168,76,0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 60% at 10% 80%,  rgba(201,168,76,0.03) 0%, transparent 50%),
        linear-gradient(180deg, rgba(11,14,20,0.75) 0%, rgba(11,14,20,0.6) 50%, rgba(8,11,16,0.9) 100%);
    z-index: 1;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(201,168,76,0.02) 0%,
        transparent 40%,
        rgba(0,0,0,0.4) 100%
    );
    z-index: 2;
}

/* Subtle film grain — adds depth and richness */
.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    width: 100%;
}

/* Thin gold eyebrow line */
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 1s 0.1s ease forwards;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px; height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

/* MAIN TITLE — Anton font, matching your Squarespace */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4.5rem, 13vw, 10.5rem);
    line-height: 0.9;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ivory);
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeUp 1s 0.25s ease forwards;
}
.hero-title-gold {
    color: var(--gold);
    display: block;
    /* Subtle metallic shimmer on the gold word */
    background: linear-gradient(135deg, #c9a84c 0%, #f0d080 40%, #c9a84c 60%, #a8893a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle — matches your "EXECUTIVE MUSIC PRODUCER • CREATIVE DIRECTOR" */
.hero-subtitle {
    font-family: var(--font-head);
    font-size: clamp(0.72rem, 1.6vw, 0.92rem);
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 1s 0.4s ease forwards;
}

/* Italic tagline — matches your Squarespace screenshot */
.hero-tagline {
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 300;
    color: var(--platinum);
    margin-bottom: 22px;
    opacity: 0;
    animation: fadeUp 1s 0.5s ease forwards;
}

.hero-bio {
    font-size: 1rem;
    font-weight: 300;
    color: var(--stone);
    max-width: 560px;
    line-height: 1.85;
    margin-bottom: 44px;
    opacity: 0;
    animation: fadeUp 1s 0.6s ease forwards;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 64px;
    opacity: 0;
    animation: fadeUp 1s 0.75s ease forwards;
}

/* Stats bar */
.hero-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s 0.9s ease forwards;
    border-top: 1px solid var(--border-warm);
    padding-top: 36px;
    gap: 0;
}
.stat {
    display: flex;
    flex-direction: column;
    padding: 0 40px 0 0;
    margin-right: 40px;
    border-right: 1px solid var(--border-warm);
    gap: 4px;
}
.stat:last-child { border-right: none; }
.stat strong {
    font-family: var(--font-display);
    font-size: 2.2rem;
    line-height: 1;
    /* Gold metallic text */
    background: linear-gradient(135deg, #c9a84c, #f0d080, #c9a84c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat span {
    font-family: var(--font-head);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--stone);
}
.stat-divider { display: none; }

.scroll-down {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold-line);
    font-size: 1.1rem;
    z-index: 3;
    animation: scrollBounce 2.5s ease-in-out infinite;
    transition: color var(--t-fast);
}
.scroll-down:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════
   TICKER / MARQUEE
   ═══════════════════════════════════════════════════════ */
.ticker {
    background: var(--warm-dark);
    border-top: 1px solid var(--gold-line);
    border-bottom: 1px solid var(--gold-line);
    padding: 13px 0;
    overflow: hidden;
}
.ticker-track {
    display: flex;
    width: max-content;
    animation: tickerScroll 35s linear infinite;
}
.ticker-track span {
    font-family: var(--font-head);
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--stone);
    padding: 0 28px;
    white-space: nowrap;
    transition: color var(--t-fast);
}
.ticker-track .dot {
    color: var(--gold);
    padding: 0 6px;
    opacity: 0.6;
}
.ticker:hover .ticker-track span { color: var(--cream); }

/* ═══════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════ */
.about {
    background: var(--charcoal);
}

.about-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 90px;
    align-items: center;
}

.about-img-wrap { position: relative; }

/* Real photo — About section */
.about-img-real {
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-warm);
    box-shadow:
        inset 0 0 0 6px rgba(11,14,20,0.6),
        inset 0 0 0 7px var(--gold-line),
        0 20px 60px rgba(0,0,0,0.6);
}
.about-img-real img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease;
}
.about-img-real:hover img {
    transform: scale(1.04);
}
.about-img-real::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 55%,
        rgba(11,14,20,0.5) 100%
    );
    pointer-events: none;
}

/* Ornate corner badge */
.about-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--obsidian);
    border: 1px solid var(--gold-line);
    padding: 10px 14px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}
.about-badge-logo {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(1.1);
}

.about-text .section-title { margin-bottom: 4px; }

.about-role {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    display: block;
}

.about-lead {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 20px;
    line-height: 1.85;
}

.about-text p {
    color: var(--stone);
    margin-bottom: 16px;
    line-height: 1.85;
    font-size: 0.97rem;
    font-weight: 300;
}
.about-text strong { color: var(--cream); font-weight: 600; }

.about-creds {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--border-warm);
}
.cred {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9rem;
    color: var(--stone);
    font-weight: 300;
}
.cred i {
    color: var(--gold);
    font-size: 0.9rem;
    width: 18px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   PLATINUM CREDITS
   ═══════════════════════════════════════════════════════ */
.credits {
    background: var(--obsidian);
    text-align: center;
}
.credits .section-title,
.credits .section-sub,
.credits .section-label { margin-left: auto; margin-right: auto; }
.credits .section-sub { margin: 0 auto 56px; }

.credits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1px;
    background: var(--border-warm);
    border: 1px solid var(--border-warm);
    margin-bottom: 56px;
}
.credit-card {
    background: var(--elevated);
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    transition: background var(--t-fast), transform var(--t-fast);
    position: relative;
    overflow: hidden;
}
.credit-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform var(--t-med);
}
.credit-card:hover {
    background: var(--warm-dark);
    transform: translateY(-3px);
}
.credit-card:hover::after { transform: scaleX(1); }

.credit-icon { color: var(--gold); font-size: 1rem; opacity: 0.7; margin-bottom: 2px; }
.credit-card strong {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--ivory);
    text-transform: uppercase;
}
.credit-card span {
    font-size: 0.78rem;
    color: var(--stone);
    font-style: italic;
    font-weight: 300;
}
.credits-total {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--stone);
}
.credits-total span {
    background: linear-gradient(135deg, #c9a84c, #f0d080, #c9a84c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════ */
.services { background: var(--charcoal); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1px;
    background: var(--border-warm);
    border: 1px solid var(--border-warm);
}

.service-card {
    background: var(--elevated);
    padding: 40px 32px;
    transition: background var(--t-med), transform var(--t-fast);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 2px; height: 0;
    background: linear-gradient(180deg, var(--gold), transparent);
    transition: height var(--t-slow);
}
.service-card:hover {
    background: var(--warm-dark);
    transform: translateY(-4px);
}
.service-card:hover::before { height: 100%; }

/* Featured card — slightly distinguished */
.service-card.featured {
    background: var(--warm-dark);
}
.service-card.featured::before { height: 50%; }

.sc-badge {
    display: inline-block;
    border: 1px solid var(--gold-line);
    color: var(--gold);
    font-family: var(--font-head);
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 4px 12px;
    margin-bottom: 20px;
}

.sc-icon {
    width: 48px; height: 48px;
    border: 1px solid var(--border-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: border-color var(--t-fast), background var(--t-fast);
}
.sc-icon i { font-size: 1.2rem; color: var(--gold); }
.service-card:hover .sc-icon { border-color: var(--gold-line); background: var(--gold-muted); }

.service-card h3 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ivory);
    margin-bottom: 14px;
}
.service-card p {
    font-size: 0.92rem;
    color: var(--stone);
    line-height: 1.75;
    margin-bottom: 24px;
    font-weight: 300;
}
.sc-link {
    font-family: var(--font-head);
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--t-fast), color var(--t-fast);
}
.sc-link:hover { color: var(--gold-bright); gap: 14px; }

/* ═══════════════════════════════════════════════════════
   STORE
   ═══════════════════════════════════════════════════════ */
.store { background: var(--obsidian); }

.store-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
    margin-bottom: 48px;
    background: var(--border-warm);
    border: 1px solid var(--border-warm);
    display: inline-flex;
}
.filter-btn {
    background: var(--elevated);
    color: var(--stone);
    border: none;
    padding: 11px 26px;
    font-family: var(--font-head);
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    transition: background var(--t-fast), color var(--t-fast);
    cursor: pointer;
}
.filter-btn:hover { background: var(--warm-dark); color: var(--cream); }
.filter-btn.active { background: var(--gold); color: var(--obsidian); }

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1px;
    background: var(--border-warm);
    border: 1px solid var(--border-warm);
}

.product-card {
    background: var(--elevated);
    overflow: hidden;
    transition: background var(--t-fast), transform var(--t-fast);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    background: var(--warm-dark);
    transform: translateY(-4px);
}
.product-card.hidden { display: none; }

.pc-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.pc-placeholder {
    width: 100%; height: 100%;
    background: var(--warm-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--t-slow);
}
.product-card:hover .pc-placeholder { transform: scale(1.03); }
.pc-placeholder i { font-size: 2.5rem; color: rgba(201, 168, 76, 0.2); }

.pc-tag {
    position: absolute;
    top: 0; right: 0;
    background: var(--gold);
    color: var(--obsidian);
    font-family: var(--font-head);
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 5px 12px;
    font-weight: 600;
}

.pc-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.pc-cat {
    font-family: var(--font-head);
    font-size: 0.62rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 400;
}
.pc-body h3 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ivory);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.pc-desc {
    font-size: 0.88rem;
    color: var(--stone);
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
    font-weight: 300;
}
/* Feature list inside product cards */
.pc-feature-list {
    list-style: none;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.pc-feature-list li {
    font-size: 0.82rem;
    color: var(--ash);
    display: flex;
    align-items: center;
    gap: 8px;
}
.pc-feature-list li i {
    color: var(--gold);
    font-size: 0.72rem;
    flex-shrink: 0;
}
.pc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-warm);
    padding-top: 18px;
    gap: 12px;
}

/* Coming Soon badge — merch not yet available */
.coming-soon-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid var(--steel-border);
    color: var(--stone);
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 9px 16px;
    border-radius: 2px;
    cursor: default;
    white-space: nowrap;
}
.pc-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #c9a84c, #e2bc6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══════════════════════════════════════════════════════
   ARTIST ROSTER
   ═══════════════════════════════════════════════════════ */
.roster { background: var(--charcoal); }

.roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1px;
    background: var(--border-warm);
    border: 1px solid var(--border-warm);
}

.roster-card {
    background: var(--elevated);
    padding: 36px 28px;
    text-align: center;
    transition: background var(--t-fast), transform var(--t-fast);
}
.roster-card:hover {
    background: var(--warm-dark);
    transform: translateY(-4px);
}
.roster-card.roster-add {
    background: var(--obsidian);
    border: 1px dashed var(--ash);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    cursor: pointer;
}
.roster-card.roster-add:hover {
    border-color: var(--gold-line);
    background: var(--warm-dark);
}

.rc-img { margin-bottom: 20px; }
.rc-placeholder {
    width: 110px; height: 110px;
    border-radius: 50%;
    background: var(--warm-dark);
    border: 1px solid var(--border-warm);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: border-color var(--t-fast);
    box-shadow: 0 0 0 4px var(--elevated), 0 0 0 5px var(--border-warm);
}
.roster-card:hover .rc-placeholder { border-color: var(--gold-line); }
.rc-placeholder i { font-size: 2.5rem; color: var(--ash); }
.rc-placeholder img { width: 100%; height: 100%; object-fit: cover; }

.roster-card h3 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--ivory);
    margin-bottom: 6px;
    text-transform: uppercase;
}
.rc-genre {
    font-size: 0.72rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-family: var(--font-head);
    font-weight: 400;
}
.rc-links { display: flex; justify-content: center; gap: 10px; }
.rc-link {
    width: 34px; height: 34px;
    border: 1px solid var(--border-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--stone);
    font-size: 0.85rem;
    transition: all var(--t-fast);
}
.rc-link:hover {
    border-color: var(--gold-line);
    color: var(--gold);
    background: var(--gold-muted);
}

/* ═══════════════════════════════════════════════════════
   SELF-TV NETWORK
   ═══════════════════════════════════════════════════════ */
.network {
    background: var(--obsidian);
    padding: var(--section-py) 0;
}
.network-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(201,168,76,0.04) 0%, transparent 60%);
    pointer-events: none;
}

.network-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 90px;
    align-items: center;
}

.network-lead {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--stone);
    margin-bottom: 30px;
    line-height: 1.85;
}
.network-list {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.network-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--stone);
    font-weight: 300;
    line-height: 1.6;
}
.network-list i { color: var(--gold); margin-top: 3px; flex-shrink: 0; font-size: 0.75rem; }

.network-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border-warm);
    border: 1px solid var(--border-warm);
}
.ns-item {
    background: var(--elevated);
    padding: 34px 24px;
    text-align: center;
    transition: background var(--t-fast);
}
.ns-item:hover { background: var(--warm-dark); }
.ns-item strong {
    font-family: var(--font-display);
    font-size: 2.8rem;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #c9a84c, #f0d080, #c9a84c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ns-item span {
    font-family: var(--font-head);
    font-size: 0.62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--stone);
}

/* ═══════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════ */
.contact { background: var(--charcoal); }

.contact-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
}
.contact-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ivory);
    margin-bottom: 16px;
}
.contact-info > p {
    color: var(--stone);
    line-height: 1.85;
    margin-bottom: 36px;
    font-size: 0.95rem;
    font-weight: 300;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 36px;
    background: var(--border-warm);
    border: 1px solid var(--border-warm);
}
.contact-link {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--stone);
    font-size: 0.88rem;
    font-weight: 300;
    padding: 14px 18px;
    background: var(--elevated);
    transition: background var(--t-fast), color var(--t-fast);
}
.contact-link:hover { background: var(--warm-dark); color: var(--cream); }
.contact-link i { color: var(--gold); width: 16px; font-size: 0.9rem; flex-shrink: 0; }

.contact-social { display: flex; gap: 2px; }
.social-icon {
    width: 42px; height: 42px;
    background: var(--elevated);
    border: 1px solid var(--border-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--stone);
    font-size: 1rem;
    transition: all var(--t-fast);
}
.social-icon:hover {
    background: var(--gold-muted);
    border-color: var(--gold-line);
    color: var(--gold);
}

/* Contact Form */
.contact-form {
    background: var(--elevated);
    padding: 44px;
    border: 1px solid var(--border-warm);
}
.form-direct-email {
    margin-top: 16px;
    text-align: center;
    padding: 20px;
    background: var(--elevated);
    border: 1px solid var(--border-warm);
    border-top: none;
}
.form-direct-email p {
    font-size: 0.8rem;
    color: var(--stone);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.form-field:last-child { margin-bottom: 0; }
.form-field label {
    font-family: var(--font-head);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--stone);
}
.form-field label span { color: var(--gold); }
.form-field input,
.form-field select,
.form-field textarea {
    background: var(--warm-dark);
    border: 1px solid var(--border-warm);
    color: var(--ivory);
    padding: 13px 16px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 300;
    width: 100%;
    transition: border-color var(--t-fast), background var(--t-fast);
    -webkit-appearance: none;
    appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--ash); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--gold-line);
    background: var(--subtle-lift);
}
.form-field select { cursor: pointer; color: var(--cream); }
.form-field select option { background: var(--elevated); color: var(--cream); }
.form-field textarea { resize: vertical; min-height: 130px; }

/* ═══════════════════════════════════════════════════════
   MASTERCLASS SECTION
   ═══════════════════════════════════════════════════════ */
.masterclass { background: var(--obsidian); }

.mc-courses {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 48px;
}

/* Featured flagship course */
.featured-course {
    background: linear-gradient(160deg, var(--warm-dark) 0%, var(--elevated) 100%);
    border: 1px solid var(--gold-line);
    padding: 40px 36px;
    border-radius: 3px;
    position: sticky;
    top: 90px;
}
.featured-course::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-bright), var(--gold));
    border-radius: 3px 3px 0 0;
}
.mc-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--obsidian);
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 4px 12px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-radius: 2px;
}
.mc-icon {
    width: 56px; height: 56px;
    background: var(--gold-muted);
    border: 1px solid var(--gold-line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 20px;
}
.featured-course h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--ivory);
    line-height: 1.1;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.mc-tagline {
    color: var(--stone);
    font-size: 0.92rem;
    margin-bottom: 20px;
    line-height: 1.6;
}
.mc-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-warm);
}
.mc-price {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--gold);
    line-height: 1;
}
.mc-lessons {
    font-size: 0.82rem;
    color: var(--stone);
    font-family: var(--font-head);
    letter-spacing: 1px;
}
.mc-curriculum {
    list-style: none;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mc-curriculum li {
    font-size: 0.85rem;
    color: var(--cream);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}
.mc-curriculum li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; font-size: 0.7rem; }
.mc-curriculum li strong { color: var(--ivory); }

.mc-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.mc-includes span {
    background: var(--gold-muted);
    border: 1px solid var(--gold-line);
    color: var(--gold-bright);
    font-size: 0.75rem;
    font-family: var(--font-head);
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.mc-includes span i { font-size: 0.65rem; }

.mc-buy { width: 100%; justify-content: center; }

/* Mini course cards grid */
.mc-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.mc-card {
    background: var(--elevated);
    border: 1px solid var(--border-warm);
    padding: 28px 24px;
    border-radius: 3px;
    transition: all var(--t-med);
    display: flex;
    flex-direction: column;
}
.mc-card:hover {
    border-color: var(--gold-line);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.3);
}
.mc-bundle {
    background: linear-gradient(135deg, var(--warm-dark), var(--elevated));
    border-color: var(--gold-line);
}
.mc-card-icon {
    width: 44px; height: 44px;
    background: var(--gold-muted);
    border: 1px solid var(--gold-line);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 14px;
    flex-shrink: 0;
}
.mc-card h4 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ivory);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.mc-card-sub {
    font-size: 0.72rem;
    color: var(--gold);
    font-family: var(--font-head);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.mc-card > p {
    font-size: 0.88rem;
    color: var(--stone);
    line-height: 1.7;
    margin-bottom: 14px;
}
.mc-mini-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
    flex: 1;
}
.mc-mini-list li {
    font-size: 0.82rem;
    color: var(--cream);
    padding-left: 16px;
    position: relative;
}
.mc-mini-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}
.mc-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-warm);
    padding-top: 16px;
    margin-top: auto;
}
.mc-price-sm {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--gold);
    line-height: 1;
}
.mc-cta {
    text-align: center;
    padding: 40px;
    border: 1px solid var(--border-warm);
    border-radius: 3px;
    background: var(--elevated);
}
.mc-cta p {
    color: var(--stone);
    margin-bottom: 16px;
    font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════
   MERCH IMAGES IN STORE
   ═══════════════════════════════════════════════════════ */
.pc-img.merch-img {
    padding: 0;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1/1;
    background: #fff;
}
.pc-img.merch-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}
.product-card:hover .pc-img.merch-img img { transform: scale(1.04); }

.merch-collection {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(11,14,20,0.82);
    color: var(--gold);
    font-family: var(--font-head);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 10px;
    text-align: center;
    backdrop-filter: blur(4px);
}

/* ═══════════════════════════════════════════════════════
   BEAT PLAYER
   ═══════════════════════════════════════════════════════ */
.beat-player {
    background: var(--charcoal);
}

/* ── Dual player layout ── */
.dual-player-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.player-block {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.player-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.player-label i {
    font-size: 1rem;
}

.player-badge {
    margin-left: auto;
    background: var(--gold);
    color: var(--obsidian);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 3px 8px;
    border-radius: 2px;
}

.beat-player-wrap {
    border: 1px solid var(--gold-line);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

/* ── Boombox store card (iframe blocked by platform) ── */
.boombox-card {
    display: block;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gold-line);
    border-radius: 4px;
    background: var(--obsidian);
    text-decoration: none;
    color: inherit;
    min-height: 500px;
    transition: border-color var(--t-med), box-shadow var(--t-med);
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.boombox-card:hover {
    border-color: var(--gold);
    box-shadow: 0 12px 60px rgba(201,168,76,0.18);
}
.boombox-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.10) 0%, transparent 70%),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 30px,
            rgba(201,168,76,0.03) 30px,
            rgba(201,168,76,0.03) 31px
        );
    pointer-events: none;
}
.boombox-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 36px;
    text-align: center;
    height: 100%;
    min-height: 500px;
    gap: 16px;
}
.boombox-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(201,168,76,0.12);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 8px;
    transition: background var(--t-med), transform var(--t-med);
}
.boombox-card:hover .boombox-icon {
    background: rgba(201,168,76,0.22);
    transform: scale(1.08);
}
.boombox-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    letter-spacing: 6px;
    color: var(--gold);
    margin: 0;
}
.boombox-handle {
    font-family: var(--font-head);
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--platinum);
    text-transform: uppercase;
    margin: 0;
}
.boombox-desc {
    font-size: 0.95rem;
    color: var(--ash);
    max-width: 380px;
    line-height: 1.7;
    margin: 4px 0 8px;
}
.boombox-stats {
    display: flex;
    gap: 32px;
    margin: 8px 0;
}
.boombox-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.boombox-stat-num {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}
.boombox-stat-lbl {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--stone);
}
.boombox-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}
.boombox-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--obsidian);
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 2px;
    transition: background var(--t-fast), transform var(--t-fast);
}
.boombox-card:hover .boombox-btn {
    background: var(--gold-bright);
    transform: translateY(-2px);
}
.boombox-link {
    font-size: 0.75rem;
    color: var(--stone);
    letter-spacing: 1px;
}
.boombox-link i {
    font-size: 0.65rem;
}

.beat-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════
   PRESS & MEDIA
   ═══════════════════════════════════════════════════════ */
.press {
    background: var(--obsidian);
}
.press-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.press-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--elevated);
    border: 1px solid var(--border-warm);
    padding: 28px;
    text-decoration: none;
    color: inherit;
    transition: all var(--t-med);
    border-radius: 2px;
}
.press-card:hover {
    border-color: var(--gold-line);
    background: var(--warm-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.press-logo {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--gold-muted);
    border: 1px solid var(--gold-line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    border-radius: 2px;
}
.press-content { flex: 1; }
.press-pub {
    font-family: var(--font-head);
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}
.press-content h3 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ivory);
    margin-bottom: 10px;
    line-height: 1.4;
}
.press-excerpt {
    font-size: 0.88rem;
    color: var(--stone);
    line-height: 1.7;
    margin-bottom: 14px;
}
.press-read {
    font-family: var(--font-head);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 6px;
}
.press-card:hover .press-read { color: var(--gold-bright); }

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.testimonials {
    background: var(--charcoal);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.testi-card {
    background: var(--elevated);
    border: 1px solid var(--border-warm);
    padding: 36px 32px;
    position: relative;
    transition: all var(--t-med);
    border-radius: 2px;
}
.testi-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    left: 24px;
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
    color: var(--gold-muted);
    pointer-events: none;
}
.testi-card:hover {
    border-color: var(--gold-line);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}
.testi-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.testi-text {
    font-size: 1rem;
    color: var(--cream);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
    z-index: 1;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--border-warm);
    padding-top: 18px;
}
.testi-avatar {
    width: 44px;
    height: 44px;
    background: var(--gold-muted);
    border: 1px solid var(--gold-line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}
.testi-author strong {
    display: block;
    font-family: var(--font-head);
    font-size: 0.9rem;
    color: var(--ivory);
    font-weight: 600;
}
.testi-author span {
    font-size: 0.78rem;
    color: var(--stone);
    display: block;
    margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════
   SELF-TV — VIDEO EMBEDS
   ═══════════════════════════════════════════════════════ */
.network-videos {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}
.yt-embed-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: 1px solid var(--gold-line);
    border-radius: 2px;
}
.yt-embed-wrap iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
}
.network-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.featured-credit {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--warm-dark) 0%, var(--elevated) 100%);
    border-color: var(--gold-line);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
    background: var(--obsidian);
    border-top: 1px solid var(--border-warm);
    padding: 72px 0 32px;
}

/* Top gold accent line on footer */
.footer::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-bright) 50%, var(--gold) 70%, transparent 100%);
    margin-bottom: 0;
    position: absolute;
    top: 0; left: 0; right: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}
.footer-logo-img {
    height: 72px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 8px rgba(201,168,76,0.25));
}
.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ivory);
    margin-bottom: 4px;
}
.footer-logo-text .gold {
    background: linear-gradient(135deg, #c9a84c, #f0d080, #c9a84c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-tagline {
    font-family: var(--font-head);
    font-size: 0.62rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    display: block;
}
.footer-brand > p {
    font-size: 0.88rem;
    color: var(--stone);
    line-height: 1.75;
    margin-bottom: 24px;
    font-weight: 300;
}
.footer-social { display: flex; gap: 2px; }
.footer-social a {
    width: 36px; height: 36px;
    background: var(--elevated);
    border: 1px solid var(--border-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--stone);
    font-size: 0.9rem;
    transition: all var(--t-fast);
}
.footer-social a:hover { background: var(--gold-muted); border-color: var(--gold-line); color: var(--gold); }

.footer-col h4 {
    font-family: var(--font-head);
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-warm);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a,
.footer-col ul li {
    font-size: 0.85rem;
    color: var(--stone);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--t-fast);
    font-weight: 300;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-col ul li i { color: var(--gold); font-size: 0.75rem; opacity: 0.7; }

.footer-bottom {
    border-top: 1px solid var(--border-warm);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p {
    font-size: 0.78rem;
    color: var(--ash);
    font-weight: 300;
}
.footer-seo-note {
    font-size: 0.65rem !important;
    color: rgba(201,168,76,0.08) !important;
}

/* ═══════════════════════════════════════════════════════
   PAYMENT MODAL
   ═══════════════════════════════════════════════════════ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal[hidden] { display: none; }

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.modal-box {
    position: relative;
    z-index: 1;
    background: var(--elevated);
    border: 1px solid var(--gold-line);
    /* Luxury inset frame */
    box-shadow:
        inset 0 0 0 1px rgba(201,168,76,0.08),
        0 30px 80px rgba(0,0,0,0.8);
    padding: 48px;
    width: 100%;
    max-width: 560px;
    max-height: 92vh;
    overflow-y: auto;
    animation: slideUp 0.35s ease;
}
/* Gold top accent bar on modal */
.modal-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-bright), var(--gold), transparent);
}

.modal-close {
    position: absolute;
    top: 18px; right: 20px;
    background: none;
    border: none;
    color: var(--stone);
    font-size: 1.1rem;
    cursor: pointer;
    transition: color var(--t-fast);
    padding: 4px;
}
.modal-close:hover { color: var(--gold); }

.modal-box h2 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ivory);
    margin-bottom: 8px;
}
.modal-product {
    font-family: var(--font-head);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.modal-instruction {
    font-size: 0.88rem;
    color: var(--stone);
    margin-bottom: 28px;
    line-height: 1.7;
    font-weight: 300;
    border-bottom: 1px solid var(--border-warm);
    padding-bottom: 20px;
}

.modal-methods {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 28px;
    background: var(--border-warm);
    border: 1px solid var(--border-warm);
}
.pay-method {
    background: var(--warm-dark);
    padding: 20px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.pay-icon {
    width: 42px; height: 42px;
    background: var(--gold-muted);
    border: 1px solid var(--gold-line);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pay-icon i { color: var(--gold); font-size: 1rem; }
.pay-info h4 {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ivory);
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pay-info h4 i { margin-right: 4px; color: var(--gold); font-size: 0.8rem; }
.pay-info p { font-size: 0.88rem; color: var(--stone); margin-bottom: 4px; font-weight: 300; }

/* Copyable payment tag */
.pay-tag-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.pay-tag {
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #c9a84c, #f0d080, #c9a84c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-color: var(--gold-muted);
    border: 1px solid var(--gold-line);
    padding: 7px 14px;
    -webkit-text-fill-color: unset;
    color: var(--gold);
    user-select: all;
    cursor: text;
}
.copy-btn {
    background: var(--subtle-lift);
    border: 1px solid var(--border-warm);
    color: var(--stone);
    font-family: var(--font-head);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all var(--t-fast);
    white-space: nowrap;
}
.copy-btn:hover { background: var(--gold-muted); border-color: var(--gold-line); color: var(--gold); }
.copy-btn.copied { background: rgba(26,122,58,0.25); color: #4ade80; border-color: rgba(74,222,128,0.3); }

.pay-note {
    font-size: 0.72rem !important;
    color: var(--gold) !important;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 4px !important;
    font-weight: 400 !important;
    opacity: 0.8;
}

/* Step-by-step */
.modal-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border-warm);
}
.modal-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.88rem;
    color: var(--stone);
    line-height: 1.55;
    font-weight: 300;
}
.step-num {
    flex-shrink: 0;
    width: 24px; height: 24px;
    background: var(--gold-muted);
    border: 1px solid var(--gold-line);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.modal-step a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.modal-step strong { color: var(--cream); }

/* ═══════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
    50%       { transform: translateX(-50%) translateY(8px); opacity: 1; }
}
@keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible     { opacity: 1; transform: translateY(0); }
.reveal-delay-1     { transition-delay: 0.1s; }
.reveal-delay-2     { transition-delay: 0.2s; }
.reveal-delay-3     { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    :root { --section-py: 80px; }
    .about-grid        { grid-template-columns: 1fr; gap: 56px; }
    .about-img-wrap    { max-width: 360px; margin: 0 auto; }
    .network-inner     { grid-template-columns: 1fr; gap: 56px; }
    .network-stats     { grid-template-columns: repeat(4, 1fr); }
    .contact-grid      { grid-template-columns: 1fr; gap: 50px; }
    .footer-grid       { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
    :root { --section-py: 64px; }

    /* Mobile nav */
    .nav-links {
        display: none;
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: rgba(11,14,20,0.98);
        border-bottom: 1px solid var(--border-warm);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }
    .nav-links.open { display: flex; }
    .nav-links a {
        padding: 14px 28px;
        border-bottom: 1px solid var(--border-warm);
        width: 100%;
    }
    .nav-links a::after { display: none; }
    .nav-links a.nav-cta { margin: 14px 28px; width: auto; display: inline-flex; border: 1px solid var(--gold-line); }
    .nav-toggle { display: flex; }

    .hero-title  { font-size: clamp(3.5rem, 18vw, 7rem); }
    .section-title { font-size: clamp(2.2rem, 8vw, 3.2rem); }

    .hero-stats  { flex-direction: row; flex-wrap: wrap; }
    .stat        { padding: 14px 20px; border-right: none; border-bottom: 1px solid var(--border-warm); width: 50%; }
    .stat:nth-child(odd) { border-right: 1px solid var(--border-warm); }

    .form-row          { grid-template-columns: 1fr; }
    .network-stats     { grid-template-columns: 1fr 1fr; }
    .footer-grid       { grid-template-columns: 1fr; }
    .footer-bottom     { flex-direction: column; text-align: center; }
    .modal-box         { padding: 32px 22px; }
    .contact-form      { padding: 28px 20px; }
    .store-filters     { display: flex; flex-wrap: wrap; background: none; border: none; gap: 2px; }
    .filter-btn        { flex: 1 1 auto; }

    /* New sections — mobile */
    .press-grid        { grid-template-columns: 1fr; }
    .press-card        { flex-direction: column; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .featured-credit   { grid-column: span 1; }
    .dual-player-grid  { grid-template-columns: 1fr; gap: 48px; }
    .beat-actions      { flex-direction: column; }
    .network-inner     { flex-direction: column; }
    .network-videos    { width: 100%; }
    .network-btns      { flex-direction: column; }
    .mc-courses        { grid-template-columns: 1fr; }
    .mc-cards-grid     { grid-template-columns: 1fr; }
    .featured-course   { position: static; }
}

@media (max-width: 480px) {
    .hero-title      { font-size: clamp(3rem, 20vw, 5.5rem); }
    .hero-actions    { flex-direction: column; }
    .btn             { justify-content: center; width: 100%; }
    .hero-stats      { gap: 0; }
    .stat            { width: 50%; }
    .credits-grid    { grid-template-columns: 1fr 1fr; }
    .pay-tag-row     { flex-direction: column; align-items: flex-start; }
}