/* ═══════════════════════════════════════════════
   TORCH MUSIC GROUP — torchmusicgroup.com
   Brand: Black #000 / Gold #D4AF37 / White #FFF
   Typography: Playfair Display + Montserrat
   ═══════════════════════════════════════════════ */

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

:root {
    --black: #000000;
    --gold: #D4AF37;
    --gold-light: #E8C547;
    --gold-dark: #B8941F;
    --white: #FFFFFF;
    --off-white: #F5F3EF;
    --grey-dark: #111111;
    --grey-mid: #1A1A1A;
    --grey-text: #999;
    --serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --sans: 'Montserrat', 'Helvetica Neue', Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--black);
}

body {
    background: var(--black);
    color: var(--gold);
    font-family: var(--sans);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--gold);
    color: var(--black);
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold-light);
}

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

/* ── Custom Cursor ── */

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transition: transform 0.15s ease;
}

.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

/* ── Loader ── */

.loader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-icon {
    width: 80px;
    height: auto;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-text {
    margin-top: 24px;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    opacity: 0.8;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.08); opacity: 1; }
}

/* ── Navigation ── */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s ease, padding 0.3s ease, backdrop-filter 0.4s ease;
}

nav.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 48px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-logo {
    height: 56px;
    transition: height 0.3s ease;
}

nav.scrolled .nav-logo {
    height: 46px;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a:hover {
    color: var(--gold-light);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

.nav-menu-btn span {
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile Menu */

.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    font-family: var(--serif);
    font-size: 32px;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--gold-light);
}

/* ── Hero ── */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    background: var(--black);
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.65);
    z-index: 1;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.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='noise'%3E%3CfeTurbulence baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-size: 256px;
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    20% { opacity: 0.6; }
    80% { opacity: 0.3; }
    100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 0 24px;
}

.hero-logo-main {
    width: clamp(200px, 22vw, 340px);
    margin-bottom: 48px;
    opacity: 1;
    filter: drop-shadow(0 0 60px rgba(212, 175, 55, 0.2)) drop-shadow(0 0 25px rgba(212, 175, 55, 0.15));
    animation: logoSpin 8s linear infinite;
    transform-style: preserve-3d;
}

@keyframes logoSpin {
    0%   { transform: perspective(800px) rotateY(0deg); }
    100% { transform: perspective(800px) rotateY(360deg); }
}

.hero-headline {
    font-family: var(--serif);
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0;
    animation: heroReveal 1.2s ease 0.5s forwards;
}

.hero-subtitle {
    font-family: var(--sans);
    font-size: clamp(11px, 1vw, 14px);
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 300;
    opacity: 0;
    margin-top: 8px;
    animation: heroReveal 1.2s ease 0.8s forwards;
}

.hero-ctas {
    margin-top: 48px;
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: heroReveal 1.2s ease 1.1s forwards;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 16px 40px;
    border: 1px solid var(--gold);
    background: var(--gold);
    color: var(--black);
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.4s ease, color 0.4s ease;
}

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

.hero-btn-secondary {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    font-weight: 400;
    position: relative;
    transition: color 0.3s ease;
}

.hero-btn-secondary::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.hero-btn-secondary:hover::after {
    opacity: 1;
}

@keyframes heroReveal {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: heroReveal 1.2s ease 1.5s forwards;
}

.hero-scroll span {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.6;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ── Section Shared ── */

.section {
    padding: 120px 48px;
    position: relative;
}

.section-label {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 500;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(32px, 4.5vw, 64px);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--gold);
}

.section-text {
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.8;
    color: var(--gold);
    max-width: 700px;
    font-weight: 300;
    opacity: 0.8;
}

.gold-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 40px 0;
}

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

/* ── Reveal Animations ── */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* ── Arrow Link ── */

.arrow-link {
    font-family: var(--sans);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.arrow-link:hover {
    color: var(--gold-light);
}

/* ── Brief Intro Block ── */

.intro-block {
    background: var(--black);
    padding: 100px 48px;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
}

.intro-inner {
    max-width: 800px;
    text-align: center;
}

.intro-text {
    font-family: var(--sans);
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.9;
    color: var(--gold);
    font-weight: 300;
    opacity: 0.85;
}

/* ── Featured Artists (Homepage) ── */

.featured-artists {
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 80px;
}

.featured-artists .section-label {
    color: var(--gold-dark);
}

.featured-artists .section-title {
    color: var(--black);
}

.featured-link {
    text-align: center;
    margin-top: 48px;
}

.featured-link .arrow-link {
    color: var(--gold-dark);
    font-size: 14px;
    letter-spacing: 3px;
}

.featured-link .arrow-link:hover {
    color: var(--gold);
}

/* ── Torch ATL Teaser (Homepage) ── */

.torch-atl-teaser {
    background: var(--grey-dark);
    padding: 0;
    overflow: hidden;
}

.torch-atl-teaser-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.teaser-image {
    overflow: hidden;
}

.teaser-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.teaser-image:hover .teaser-photo {
    filter: brightness(0.85);
    transform: scale(1.03);
}

.teaser-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px;
}

.teaser-headline {
    font-family: var(--serif);
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 20px;
    line-height: 1.3;
}

.teaser-text {
    font-family: var(--sans);
    font-size: 15px;
    color: var(--gold);
    line-height: 1.8;
    font-weight: 300;
    opacity: 0.8;
    margin-bottom: 32px;
}

/* ── Closing Strip ── */

.closing-strip {
    background: var(--black);
    padding: 120px 48px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.closing-text {
    font-family: var(--serif);
    font-size: clamp(22px, 3vw, 40px);
    font-weight: 400;
    color: var(--gold);
    line-height: 1.4;
    max-width: 700px;
    margin: 0 auto;
}

/* ── About Page ── */

.about-page {
    background: var(--black);
}

.about-copy {
    max-width: 700px;
    margin-bottom: 80px;
}

.about-copy .section-text {
    margin-bottom: 24px;
}

/* What We Do — Pillars */

.what-we-do {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 40px;
    padding-top: 0;
    align-items: stretch;
}

.what-we-do.four-pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 64px;
    max-width: 900px;
}

.about-section-heading {
    font-family: var(--serif);
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 500;
    color: var(--gold);
    margin-top: 80px;
    padding-top: 60px;
    padding-bottom: 8px;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    letter-spacing: 0.02em;
}

.about-section-heading--first {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    margin-bottom: 16px;
}

/* About intro — two-column layout */

.about-intro-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0 80px;
    align-items: start;
    padding-top: 20px;
    margin-bottom: 80px;
}

.about-intro-left {
    position: sticky;
    top: 120px;
}

.about-intro-grid .about-section-heading--first {
    font-size: 3.5rem !important;
    line-height: 1.1;
    margin-bottom: 24px;
    padding-bottom: 0;
    letter-spacing: 0.04em;
}

.about-intro-left .gold-divider {
    margin-top: 16px;
    margin-bottom: 0;
    width: 40px;
}

.about-intro-left {
    overflow: visible;
    max-width: 200px;
    min-width: 0;
}

.about-intro-grid .about-copy {
    position: relative;
    padding-left: 28px;
    border-left: 2px solid rgba(184, 149, 71, 0.65);
    max-width: 680px;
    margin-bottom: 0;
}

.about-page .about-copy .section-text,
.about-page .wwd-text {
    font-family: var(--sans);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.01em;
    font-weight: 300;
    opacity: 1;
    max-width: none;
}

.about-page .wwd-text {
    margin-bottom: 0;
}

.about-page .about-block .about-copy .section-text:last-child {
    margin-bottom: 0;
}

.about-intro-grid .about-copy .section-text {
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.01em;
}

.about-intro-grid .about-copy .section-text:first-child {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
}

.about-intro-grid .about-copy .section-text:nth-child(2) {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.about-intro-grid .about-copy .section-text:last-child {
    font-size: 1.2rem;
    color: #b89547;
    font-style: italic;
    letter-spacing: 0.02em;
    margin-top: 2rem;
    margin-bottom: 0;
    border-top: 1px solid rgba(184, 149, 71, 0.25);
    padding-top: 1.5rem;
}

.about-block {
    margin-top: 0;
}

.about-block .about-copy {
    margin-top: 24px;
    margin-bottom: 0;
}

/* Founder — side-by-side photo + bio */

.founder-block .about-section-heading {
    margin-bottom: 40px;
}

.founder-layout {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 56px;
    align-items: center;
    max-width: 1100px;
}

.founder-photo {
    margin: 0;
}

.founder-photo-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: #0A0A0A;
    box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(212, 175, 55, 0.08) inset;
}

.founder-photo img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center 28%;
    transition: transform 0.8s ease;
}

.founder-photo:hover img {
    transform: scale(1.02);
}

.founder-photo-caption {
    display: block;
    margin-top: 18px;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

.founder-bio {
    margin-top: 0 !important;
}

.wwd-pillar {
    padding-top: 24px;
    border-top: 2px solid var(--gold);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.wwd-title {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 16px;
}

.wwd-text {
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.8;
    color: var(--gold);
    font-weight: 300;
    opacity: 0.75;
}

/* Founder Note */

.founder-note {
    margin-top: 100px;
    padding-top: 60px;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    text-align: center;
}

.founder-quote {
    font-family: var(--serif);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 400;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 20px;
    line-height: 1.4;
}

.founder-cite {
    font-family: var(--sans);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    font-style: normal;
}

/* ── Roster ── */

.artists-section {
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.artists-section .section-label {
    color: var(--gold-dark);
}

.artists-section .section-title {
    color: var(--black);
}

.artists-section .section-text {
    color: #333;
}

.artist-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 60px;
}

.roster-grid {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.artist-strip-card {
    background: var(--off-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0;
    transition: all 0.4s ease;
    overflow: hidden;
}

.artist-strip-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.artist-strip-img {
    aspect-ratio: 3/4;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.artist-strip-img.has-photo {
    background: var(--grey-mid);
}

.artist-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) brightness(0.8);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.artist-strip-card:hover .artist-photo {
    filter: grayscale(0%) brightness(0.9);
    transform: scale(1.04);
}

.artist-strip-info {
    padding: 24px;
}

.artist-strip-info h3 {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--black);
    margin-bottom: 8px;
}

.artist-descriptor {
    font-family: var(--sans);
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 16px;
}

.artist-strip-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.artist-link {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    border: 1px solid var(--gold);
    padding: 6px 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.artist-link:hover {
    background: var(--gold);
    color: var(--black);
}

/* Roster Bottom */

.roster-bottom {
    text-align: center;
    margin-top: 80px;
    padding-top: 48px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.roster-bottom-text {
    font-family: var(--sans);
    font-size: 16px;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 16px;
}

.roster-bottom .arrow-link {
    color: var(--gold-dark);
}

/* ── Merch / Sync ── */

.sync-section {
    background: var(--off-white);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.sync-section .section-label {
    color: var(--gold-dark);
}

.sync-section .section-title {
    color: var(--black);
}

.sync-section .section-text {
    color: #333;
}

.sync-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.sync-category {
    text-align: center;
    padding: 40px 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--white);
    transition: all 0.4s ease;
}

.sync-category:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.sync-icon {
    margin-bottom: 20px;
}

.sync-category h3 {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--black);
    margin-bottom: 8px;
}

.sync-category p {
    font-family: var(--sans);
    font-size: 13px;
    color: #444;
    line-height: 1.6;
    font-weight: 300;
}

.sync-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.sync-cta p {
    font-family: var(--sans);
    font-size: 15px;
    color: #333;
    margin-bottom: 24px;
}

/* ── Music ── */

.music {
    background: var(--black);
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.music-card {
    cursor: pointer;
    transition: transform 0.4s ease;
}

.music-card:hover {
    transform: translateY(-8px);
}

.music-cover {
    aspect-ratio: 1;
    background: var(--grey-mid);
    border: 1px solid rgba(212, 175, 55, 0.08);
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
}

.music-cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--grey-mid) 0%, var(--black) 100%);
}

.music-cover-placeholder svg {
    width: 48px;
    opacity: 0.15;
}

.music-play {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.music-card:hover .music-play {
    opacity: 1;
    transform: translateY(0);
}

.music-play svg {
    width: 16px;
    fill: var(--black);
    margin-left: 2px;
}

.music-title {
    font-family: var(--serif);
    font-size: 17px;
    color: var(--gold);
    margin-bottom: 4px;
}

.music-artist {
    font-family: var(--sans);
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 1px;
    opacity: 0.7;
}

a.music-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

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

.releases-subhead {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    margin-top: 60px;
    margin-bottom: 0;
    font-weight: 400;
}

.releases-subhead + .music-grid {
    margin-top: 24px;
}

.releases-empty {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--gold);
    opacity: 0.5;
    letter-spacing: 1px;
    padding: 40px 0;
}

/* ── Music Embeds ── */

.music-embeds {
    margin-top: 80px;
    text-align: center;
}

.embed-heading {
    font-family: var(--serif);
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 8px;
}

.embed-sub {
    font-family: var(--sans);
    font-size: 14px;
    color: var(--gold);
    opacity: 0.7;
    margin-bottom: 40px;
    font-weight: 300;
}

.embed-placeholder {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.embed-box {
    aspect-ratio: 16/9;
    background: var(--grey-mid);
    border: 1px solid rgba(212, 175, 55, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: border-color 0.3s ease;
}

.embed-box:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

.embed-box span {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.embed-note {
    font-size: 11px !important;
    opacity: 0.5;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

/* ── Careers ── */

.careers-section {
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.careers-section .section-label {
    color: var(--gold-dark);
}

.careers-section .section-title {
    color: var(--black);
}

.careers-section .section-text {
    color: #333;
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
}

.career-card {
    background: var(--off-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
}

.career-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.career-card:hover::before {
    width: 100%;
}

.career-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.career-card h3 {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--black);
    margin-bottom: 8px;
}

.career-type {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 500;
    display: block;
    margin-bottom: 16px;
}

.career-card p {
    font-family: var(--sans);
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 24px;
}

.career-apply {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
    border: 1px solid var(--gold);
    padding: 10px 24px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.career-apply:hover {
    background: var(--gold);
    color: var(--black);
}

.careers-note {
    font-family: var(--sans);
    font-size: 14px;
    color: #555;
    text-align: center;
    margin-top: 40px;
    font-weight: 300;
}

.careers-note a {
    color: var(--gold-dark);
    text-decoration: underline;
}

/* ── FAQs ── */

.faqs-section {
    background: var(--off-white);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.faqs-section .section-label {
    color: var(--gold-dark);
}

.faqs-section .section-title {
    color: var(--black);
}

.faq-list {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-category {
    margin-bottom: 48px;
}

.faq-category-title {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    font-family: var(--serif);
    font-size: 17px;
    color: var(--black);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: opacity 0.3s ease;
}

.faq-question:hover {
    opacity: 0.8;
}

.faq-toggle {
    font-family: var(--sans);
    font-size: 20px;
    font-weight: 300;
    color: var(--gold-dark);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.open {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-family: var(--sans);
    font-size: 14px;
    color: #444;
    line-height: 1.8;
    font-weight: 300;
}

.faq-answer a {
    color: var(--gold-dark);
    text-decoration: underline;
}

/* ── Subscribe / Newsletter ── */

.subscribe-section {
    background: var(--off-white);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
}

.subscribe-section .section-title {
    color: var(--black);
}

.subscribe-section .section-text {
    color: #333;
}

.subscribe-inner {
    max-width: 600px;
    margin: 0 auto;
}

.subscribe-form {
    display: flex;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-form input {
    flex: 1;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-right: none;
    color: var(--black);
    font-family: var(--sans);
    font-size: 14px;
    outline: none;
    font-weight: 300;
}

.subscribe-form input::placeholder {
    color: #999;
}

.subscribe-form input:focus {
    border-color: var(--gold);
}

.subscribe-form button {
    padding: 16px 28px;
    background: var(--gold);
    color: var(--black);
    border: 1px solid var(--gold);
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.subscribe-form button:hover {
    background: var(--gold-light);
}

/* ── Torch ATL Page ── */

.torch-atl-page {
    background: var(--black);
}

.torch-atl-hero {
    margin-top: 48px;
    margin-bottom: 60px;
    overflow: hidden;
    aspect-ratio: 21/9;
}

.torch-atl-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: filter 0.5s ease;
}

.torch-atl-hero:hover .torch-atl-hero-img {
    filter: brightness(0.9);
}

.torch-atl-copy {
    max-width: 700px;
    margin-bottom: 80px;
}

.torch-atl-copy .section-text {
    margin-bottom: 24px;
}

/* Amenities */

.torch-atl-amenities {
    margin-bottom: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.amenities-heading {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 32px;
}

.amenities-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 600px;
}

.amenities-list li {
    font-family: var(--sans);
    font-size: 15px;
    color: var(--gold);
    font-weight: 300;
    opacity: 0.8;
    padding-left: 20px;
    position: relative;
}

.amenities-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 1px;
    background: var(--gold);
}

/* Positioning Strip */

.positioning-strip {
    text-align: center;
    padding: 60px 0;
    margin-bottom: 48px;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.positioning-text {
    font-family: var(--serif);
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 400;
    color: var(--gold);
}

/* Torch ATL CTA */

.torch-atl-cta {
    text-align: center;
}

/* ── Contact ── */

.contact {
    background: var(--black);
    text-align: center;
    padding: 160px 48px;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.04), transparent 70%);
}

.contact-inner {
    position: relative;
    z-index: 2;
}

.contact-title {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 400;
    line-height: 1.15;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--gold);
}

.contact-categories {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.contact-category {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-email-label {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.contact-category a {
    font-family: var(--sans);
    font-size: 16px;
    color: var(--gold);
    font-weight: 300;
}

.contact-category a:hover {
    color: var(--gold-light);
}

.contact-socials {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.social-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--black);
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.4s ease, color 0.4s ease;
    cursor: pointer;
}

.contact-btn:hover {
    background: var(--gold);
    color: var(--black);
}

/* ── Footer ── */

footer {
    background: var(--black);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 60px 48px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 36px;
}

.footer-col-title {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-family: var(--sans);
    font-size: 13px;
    color: var(--gold);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    font-weight: 300;
    opacity: 0.7;
}

.footer-col a:hover {
    color: var(--gold-light);
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-copy {
    font-family: var(--sans);
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 1px;
    opacity: 0.4;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    font-size: 12px;
    transition: border-color 0.3s ease, color 0.3s ease;
    font-family: var(--sans);
    font-weight: 500;
    opacity: 0.7;
}

.footer-socials a:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
    opacity: 1;
}

/* ── Nav Socials ── */

.nav-socials {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-left: 24px;
}

.nav-socials a {
    color: var(--gold);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.nav-socials a:hover {
    opacity: 1;
}

/* ── Responsive ── */

@media (max-width: 1024px) {
    .section { padding: 80px 32px; }
    .what-we-do { grid-template-columns: 1fr; gap: 40px; }
    .what-we-do.four-pillars { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
    .founder-layout { grid-template-columns: 1fr; gap: 40px; max-width: 560px; }
    .founder-photo img { aspect-ratio: 4 / 5; object-position: center 25%; }
    .about-intro-grid { grid-template-columns: 1fr; gap: 24px; padding-top: 0; margin-bottom: 60px; }
    .about-intro-left { position: static; top: auto; }
    .about-intro-grid .about-section-heading--first { font-size: 2.5rem !important; }
    .torch-atl-teaser-inner { grid-template-columns: 1fr; }
    .teaser-image { aspect-ratio: 16/9; }
    .teaser-content { padding: 60px 32px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .nav-socials { display: none; }
    .amenities-list { grid-template-columns: 1fr; }
    .artist-strip { grid-template-columns: repeat(2, 1fr); }
    .sync-grid { grid-template-columns: repeat(2, 1fr); }
    .careers-grid { grid-template-columns: 1fr; }
    .embed-placeholder { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .nav-menu-btn { display: flex; }
    .section { padding: 64px 24px; }
    .artist-strip { grid-template-columns: 1fr; }
    .sync-grid { grid-template-columns: 1fr; }
    .music-grid { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .cursor-dot, .cursor-ring { display: none; }
    .contact { padding: 100px 24px; }
    .contact-categories { flex-direction: column; gap: 32px; }
    .intro-block { padding: 64px 24px; }
    .closing-strip { padding: 80px 24px; }
    .hero-ctas { flex-direction: column; gap: 16px; }
    .torch-atl-hero { aspect-ratio: 16/9; }
    .subscribe-form { flex-direction: column; }
    .subscribe-form input { border-right: 1px solid rgba(0, 0, 0, 0.15); }
    .what-we-do.four-pillars { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
    .hero-headline { font-size: 28px; }
    .hero-logo-main { width: 180px; }
    .music-grid { grid-template-columns: 1fr; }
}
