@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700;900&display=swap');

:root {
    --clr-bg: #000000;
    --clr-surface: #0a0a0a;
    --clr-white: #ffffff;
    --clr-text: #ffffff;
    --clr-text-muted: #888888;
    --clr-accent: #ffffff;
    --clr-border: #222222;
    --radius: 0;
    --font-main: 'Outfit', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--clr-bg);
    color: var(--clr-text);
    font-family: var(--font-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* --- Background Atmosphere --- */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

#bg-particles {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.8;
    filter: blur(80px);
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

/* --- Intro Curtain --- */
.intro-curtain {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

.intro-curtain.done {
    opacity: 0;
    visibility: hidden;
}

.curtain-logo {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    letter-spacing: 0.3em;
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    from { opacity: 0.8; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.curtain-line {
    width: 60px;
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    animation: lineGrow 1s var(--ease-out) 0.5s forwards;
}

@keyframes lineGrow {
    to { transform: scaleX(1); }
}

/* --- Navigation --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    transition: background 0.4s ease, padding 0.4s ease, border 0.4s ease;
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(30px) saturate(150%);
    padding: 20px 60px;
    border-bottom: 1px solid var(--clr-border);
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.logo-accent {
    color: var(--clr-text-muted);
}

.main-nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--clr-white);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 30px;
    height: 2px;
    background: #fff;
}

/* --- Mobile Nav Overlay --- */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 490;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-link {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* --- Sections --- */
.section {
    padding: 180px 60px;
    max-width: 1600px;
    margin: 0 auto;
}

/* --- Hero Section --- */
.section--hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 100px;
    width: 100%;
}

.hero-kicker-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-kicker {
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.25em;
    color: var(--clr-text-muted);
}

.hero-title {
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 900;
    line-height: 0.85;
    margin-bottom: 50px;
    letter-spacing: -0.04em;
}

.title-row {
    display: block;
    font-weight: 200; /* Thin by default */
}

.title-row--emphasis {
    font-weight: 900; /* Bold highlights */
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 400;
    color: var(--clr-text-muted);
    max-width: 520px;
    margin-bottom: 70px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-cta {
    display: inline-block;
    padding: 22px 45px;
    background: var(--clr-white);
    color: var(--clr-black);
    font-weight: 900;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-cta:hover {
    background: #888;
    color: var(--clr-white);
    transform: translateY(-2px);
}

.hero-cta--outline {
    background: transparent;
    color: var(--clr-white);
    border: 1px solid var(--clr-border);
}

.hero-cta--outline:hover {
    background: var(--clr-white);
    color: var(--clr-black);
    border-color: var(--clr-white);
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.s4a-visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 2000px;
}

.s4a-shot-wrapper {
    position: absolute;
    width: 75%;
    max-width: 440px;
    aspect-ratio: 16/10;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    background: var(--clr-surface);
    cursor: pointer; /* Hint that it's clickable */
}

.s4a-shot {
    width: 100%;
    height: auto;
    display: block;
}

/* Initial States */
.s4a-shot--primary {
    z-index: 5;
    transform: rotateX(8deg) rotateY(-12deg) translateZ(100px);
    opacity: 1;
    filter: none;
}

.s4a-shot--background {
    z-index: 1;
    transform: rotateX(-8deg) rotateY(12deg) translateZ(-150px) translateX(100px) translateY(40px);
    opacity: 0.7; /* Increased for visibility */
    filter: none; /* Removed blur so they can see the streams */
}

.visual-label {
    position: absolute;
    font-weight: 900;
    font-size: 0.7rem;
    letter-spacing: 0.5em;
    opacity: 0.3;
}

.visual-label--bottom { bottom: -40px; }

.scroll-hint {
    position: absolute;
    bottom: 60px;
    left: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.scroll-hint-text {
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: var(--clr-text-muted);
}

.scroll-hint-line {
    width: 60px;
    height: 1px;
    background: var(--clr-text-muted);
}

/* --- Section Headers --- */
.section-header {
    margin-bottom: 100px;
}

.section-number {
    font-size: 0.85rem;
    font-weight: 900;
    color: var(--clr-text-muted);
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.section-subtitle {
    margin-top: 20px;
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    max-width: 500px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* --- Artist Roster System --- */
.roster-container {
    margin-top: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.roster-tier {
    display: grid;
    gap: 40px;
    margin-bottom: 80px;
    justify-content: center;
}

/* Headline Tier: Centered grid for sharp 320px images */
.roster-tier--headline {
    grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
    justify-content: center;
    gap: 40px;
}

/* Emerging Tier: Centered index feel */
.roster-tier--emerging {
    grid-template-columns: repeat(auto-fit, minmax(180px, 220px));
    justify-content: center;
    gap: 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 1s var(--ease-out), opacity 0.8s ease;
    margin-bottom: 0;
}

.roster-tier--emerging.is-visible {
    max-height: 2000px;
    opacity: 1;
    margin-bottom: 80px;
}

.artist-card {
    background: var(--clr-surface);
    position: relative;
    border: 1px solid var(--clr-border);
    transition: border-color 0.4s;
}

.artist-card:hover {
    border-color: #fff;
}

.artist-card--headline {
    background: transparent;
    border: none;
}

.artist-card--headline .card-image-wrap {
    aspect-ratio: 4/5;
    border: 1px solid var(--clr-border);
    transition: border-color 0.4s;
}

.artist-card--headline:hover .card-image-wrap {
    border-color: #fff;
}

.card-image-wrap {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s;
}

.artist-card:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.card-info {
    padding: 20px;
}

.artist-card--headline .card-info {
    padding-left: 0;
    padding-right: 0;
    text-align: left;
}

.card-tag {
    display: block;
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    color: var(--clr-text-muted);
    margin-bottom: 10px;
}

.card-name {
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.2;
}

.card-stats {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Roster Divider */
.roster-divider {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: var(--clr-border);
}

.divider-text {
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.4em;
    color: var(--clr-text-muted);
}

/* Actions & Buttons */
.roster-actions {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.btn-minimalist {
    background: transparent;
    border: 1px solid var(--clr-border);
    color: #fff;
    padding: 15px 40px;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.25em;
    cursor: pointer;
    transition: 0.4s;
    text-transform: uppercase;
}

.btn-minimalist:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.btn-minimalist.is-hidden {
    display: none;
}

/* --- Services --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.service-card {
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: 40px;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.service-card p {
    color: var(--clr-text-muted);
    font-weight: 300;
    line-height: 1.8;
}

/* --- Philosophy --- */
.philosophy-content {
    max-width: 1200px;
}

.philosophy-statement blockquote {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 100px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

.philosophy-block h3 {
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.philosophy-block p {
    color: var(--clr-text-muted);
    font-weight: 300;
}

.philosophy-details {
    margin-top: 100px;
    display: flex;
    gap: 100px;
    border-top: 1px solid var(--clr-border);
    padding-top: 60px;
}

.detail-label {
    font-size: 0.7rem;
    font-weight: 900;
    color: var(--clr-text-muted);
    display: block;
    margin-bottom: 15px;
}

.detail-value {
    font-weight: 700;
}

/* --- FAQ --- */
.faq-list {
    max-width: 1000px;
}

.faq-item {
    border-bottom: 1px solid var(--clr-border);
}

.faq-question {
    width: 100%;
    padding: 40px 0;
    background: none;
    border: none;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 900;
    text-align: left;
}

.faq-icon { font-size: 1.5rem; transition: transform 0.4s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out);
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 40px;
    color: var(--clr-text-muted);
    font-weight: 300;
}

/* --- Connect --- */
.connect-tabs {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.connect-tab {
    background: none;
    border: none;
    color: var(--clr-text-muted);
    font-size: 1.5rem;
    font-weight: 900;
    cursor: pointer;
    padding: 0;
}

.connect-tab.active { color: #fff; text-decoration: underline; text-underline-offset: 10px; }

.active-form-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.hidden-form-panel { display: none; }

.form-side-info h3 { font-size: 3rem; font-weight: 900; margin-bottom: 20px; }
.email-link { font-size: 1.2rem; font-weight: 700; margin-bottom: 40px; display: block; text-decoration: underline; }

.vega-form { display: grid; gap: 40px; }
.form-group { display: flex; flex-direction: column; gap: 15px; }
.form-group label { font-size: 0.7rem; font-weight: 900; color: var(--clr-text-muted); }
.vega-form input, .vega-form select, .vega-form textarea {
    background: none; 
    border: none; 
    border-bottom: 1px solid var(--clr-border);
    padding: 15px 0; 
    color: #fff; 
    font-family: inherit; 
    font-size: 1rem; 
    outline: none; 
    transition: border-color 0.3s;
}

/* Fix for unreadable white-on-white dropdowns */
.vega-form select option {
    background-color: var(--clr-surface);
    color: #fff;
    padding: 10px;
}

.vega-form input:focus, .vega-form select:focus, .vega-form textarea:focus { 
    border-color: #fff; 
}

.form-submit {
    justify-self: start; background: #fff; color: #000; border: none; padding: 20px 40px;
    font-weight: 900; letter-spacing: 0.1em; cursor: pointer; transition: 0.3s;
}
.form-submit:hover { background: #888; color: #fff; }

/* --- Footer --- */
.site-footer {
    padding: 100px 60px;
    border-top: 1px solid var(--clr-border);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand { font-size: 1.5rem; font-weight: 900; }
.footer-links { display: flex; gap: 40px; }
.footer-links a { font-size: 0.7rem; font-weight: 900; color: var(--clr-text-muted); }
.footer-copy { font-size: 0.7rem; color: var(--clr-text-muted); font-weight: 700; }

/* --- Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

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

/* --- Mobile Fixes --- */
@media (max-width: 1024px) {
    .site-header { padding: 30px; }
    .hero-grid { grid-template-columns: 1fr; gap: 60px; }
    .hero-right { display: none; }
    .artist-grid { grid-template-columns: repeat(2, 1fr); }
    .philosophy-grid { grid-template-columns: 1fr; gap: 40px; }
    .philosophy-details { flex-direction: column; gap: 30px; }
    .active-form-panel { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .mobile-toggle { display: flex; }
    .artist-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .connect-tabs { gap: 30px; }
    .connect-tab { font-size: 1.2rem; }
}
