:root {
    --bg-primary: #080808;
    --text-primary: #E8E8E8;
    --text-secondary: #A6A6A6;
    --text-muted: #666666;
    --bg-card: #111111;
    --accent-glow: rgba(255, 255, 255, 0.05);
    --font-display: 'Cormorant Garamond', serif;
    --font-ui: 'Syne', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-ui);
    overflow-x: hidden;
}

/* Grain Effect */
.grain-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('bg-4.jpg');
    background-repeat: repeat;
    opacity: 0.22;
    pointer-events: none;
    z-index: 999;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 5%;
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #1A1A1A;
    z-index: 100;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    text-align: center;
    padding: 0 20px;
}

/* Skomplikowany Logotyp 6DM */
.brand-logo-main {
    position: relative;
    margin-bottom: 40px;
}

.bg-digit {
    font-family: var(--font-display);
    font-size: clamp(200px, 40vw, 450px);
    font-weight: 900;
    color: #FFFFFF;
    opacity: 0.08;
    line-height: 1;
}

.fg-letters {
    position: absolute;
    top: 55%; left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    font-family: var(--font-display);
    font-size: clamp(80px, 15vw, 160px);
    font-weight: 900;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
}

.letter-m {
    margin-left: -20px;
    margin-top: 30px;
}

/* Typography */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 10px;
}

.hero-subtitle {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.4em;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.hero-description {
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 24px auto;
}

/* Buttons */
.btn {
    padding: 14px 28px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
    margin: 10px;
}

.btn-ghost {
    border: 1px solid #333;
    color: var(--text-primary);
}

.btn-ghost:hover { border-color: #888; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #D9D9D9;
    outline-offset: 3px;
}

.btn-solid {
    background: #1A1A1A;
    color: white;
}

.hero-footer-labels {
    position: absolute;
    bottom: 40px;
    display: flex; gap: 30px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: #444;
}
/* Sekcja Muzyka */
.music-section {
    padding: 120px 5%;
    background-color: var(--bg-primary);
}

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

.section-header {
    margin-bottom: 80px;
    text-align: left;
}

.label {
    font-family: var(--font-mono);
    color: var(--text-secondary);
    font-size: 12px;
    letter-spacing: 0.2em;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-top: 10px;
}

/* Featured Track */
.featured-track {
    margin-bottom: 100px;
}

.mono-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.sc-wrapper {
    border: 1px solid #1F1F1F;
    filter: grayscale(1) contrast(1.1);
    transition: filter 0.5s ease;
}

.sc-wrapper:hover {
    filter: grayscale(0) contrast(1);
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-bottom: 100px;
}

@media (max-width: 600px) {
    .video-grid { grid-template-columns: 1fr; }
}

.video-card {
    background: var(--bg-card);
    border: 1px solid #1F1F1F;
    padding: 15px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-card:hover {
    border-color: #444;
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.03);
    transform: translateY(-5px);
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: #000;
    margin-bottom: 20px;
}

.video-placeholder iframe {
    width: 100%;
    height: 100%;
}

.video-info .video-date {
    font-family: var(--font-mono);
    font-size: 11px;
    color: #444;
}

.video-info .video-title {
    font-family: var(--font-ui);
    font-size: 18px;
    font-weight: 400;
    margin-top: 5px;
}

/* CTA Box pod muzyką */
.music-cta-box {
    text-align: center;
    padding: 80px 40px;
    background: radial-gradient(ellipse at center, #111 0%, #080808 100%);
    border: 1px solid #1A1A1A;
    border-radius: 2px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 40px;
}
.about-section {
    padding: 160px 5%;
    background-color: #080808;
    border-top: 1px solid #1A1A1A;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

@media (max-width: 968px) {
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
}

/* Stylizacja zdjęcia */
.about-portrait {
    position: relative;
    margin: 40px 0;
    overflow: hidden;
    border: 1px solid #1F1F1F;
}

.bw-grain {
    width: 100%;
    display: block;
    filter: grayscale(1) contrast(1.1) brightness(0.8);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-portrait:hover .bw-grain {
    transform: scale(1.03);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 500px;
}

/* Karty Filarów */
.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pillar-card {
    background: #111111;
    border: 1px solid #1F1F1F;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-card:hover {
    border-color: #333;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.04);
}

.pillar-icon {
    width: 32px;
    height: 32px;
    color: #FFF;
    margin-bottom: 20px;
    opacity: 0.8;
}

.pillar-card h3 {
    font-family: var(--font-ui);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.pillar-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.full-width {
    width: 100%;
    text-align: center;
    margin-top: 20px !important;
}

.pillar-card:hover .pillar-icon {
    transform: translateY(-3px);
    transition: transform 0.3s ease;
}

.offer-section {
    padding: 120px 5%;
    background-color: #0A0A0A;
}

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

@media (max-width: 768px) {
    .offer-grid { grid-template-columns: 1fr; }
}

.offer-card {
    background: #111111;
    padding: 40px;
    border: 1px solid #1F1F1F;
    border-top: 2px solid #222; /* Subtelna linia u góry */
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.offer-card:hover {
    border-top: 2px solid #555; /* Rozjaśnienie na hover */
    background: #141414;
    transform: translateY(-5px);
}

.card-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: #444;
    margin-bottom: 20px;
}

.card-title {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 15px;
}

.card-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-features {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.card-features li {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.card-features li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #333;
}

.card-link {
    font-size: 13px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    border-bottom: 1px solid transparent;
    transition: border 0.3s;
    width: fit-content;
}

.card-link:hover {
    border-bottom: 1px solid #888;
}

.offer-footer {
    margin-top: 80px;
    text-align: center;
    border-top: 1px solid #1A1A1A;
    padding-top: 60px;
}

.offer-footer p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.process-section {
    padding: 140px 5%;
    background-color: var(--bg-primary);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 80px auto 0 auto;
}

/* Pionowa linia w tle */
.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, #222 0%, #111 100%);
}

.process-step {
    position: relative;
    padding-left: 100px;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
}

.process-step:last-child {
    margin-bottom: 0;
}

/* Wielkie cyfry w tle */
.step-number {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: 120px;
    font-weight: 900;
    color: white;
    opacity: 0.04; /* Bardzo subtelny znak wodny */
    line-height: 1;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.process-step:hover .step-number {
    opacity: 0.08;
}

.step-content {
    max-width: 600px;
}

.step-title {
    font-family: var(--font-ui);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-primary);
    margin-bottom: 12px;
    position: relative;
}

/* Kropka na osi czasu */
.step-title::before {
    content: '';
    position: absolute;
    left: -64px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.process-step:hover .step-title::before {
    background: #888;
}

.step-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.process-cta {
    margin-top: 100px;
    text-align: center;
}

@media (max-width: 600px) {
    .process-timeline::before { left: 20px; }
    .process-step { padding-left: 60px; }
    .step-title::before { left: -44px; }
    .step-number { font-size: 80px; }
}

.contact-section {
    padding: 140px 5%;
    background-color: #0D0D0D;
    border-top: 1px solid #1A1A1A;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: start;
}

@media (max-width: 968px) {
    .contact-grid { grid-template-columns: 1fr; gap: 60px; }
}

/* Formularz */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 18px;
    background: #111111;
    border: 1px solid #222;
    color: var(--text-primary);
    font-family: var(--font-ui);
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    border-radius: 0; /* Surowy, ostry look */
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: #555;
    background: #161616;
}

.btn-submit {
    width: 100%;
    background: #E8E8E8;
    color: #080808;
    border: none;
    padding: 20px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #FFFFFF;
}

/* Prawa kolumna - Info */
.contact-statement p {
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 60px;
}

.method-item {
    margin-bottom: 40px;
}

.method-item span {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    color: #444;
    margin-bottom: 10px;
    letter-spacing: 0.2em;
}

.method-item a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.method-item a:hover { color: var(--text-secondary); }

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links a { font-size: 16px; }

/* Newsletter */
.newsletter-mini {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #1A1A1A;
}

.newsletter-mini p { font-size: 13px; color: #666; margin-bottom: 15px; }

.newsletter-form { display: flex; }

.newsletter-form input {
    background: transparent;
    border: 1px solid #222;
    padding: 10px;
    color: white;
    flex-grow: 1;
}

.newsletter-form button {
    background: #222;
    color: white;
    border: none;
    padding: 0 20px;
    cursor: pointer;
}

.faq-section {
    padding: 120px 5%;
    background-color: var(--bg-primary);
}

.faq-accordion {
    max-width: 800px;
    margin: 60px auto 0 auto;
    border-top: 1px solid #1A1A1A;
}

.faq-item {
    border-bottom: 1px solid #1A1A1A;
}

.faq-question {
    width: 100%;
    padding: 30px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-primary);
    font-family: var(--font-ui);
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #FFF;
}

/* Ikona + / x */
.faq-icon {
    position: relative;
    width: 16px;
    height: 16px;
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background-color: #444;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Pozioma kreska */
.faq-icon::before {
    top: 7px; left: 0; width: 100%; height: 2px;
}

/* Pionowa kreska */
.faq-icon::after {
    top: 0; left: 7px; width: 2px; height: 100%;
}

/* Stan aktywny - obrót ikony */
.faq-item.active .faq-icon::before { transform: rotate(45deg); background-color: #888; }
.faq-item.active .faq-icon::after { transform: rotate(45deg); background-color: #888; }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    padding-bottom: 30px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
    max-width: 90%;
}

.faq-footer {
    margin-top: 60px;
    text-align: center;
    font-size: 14px;
    color: #444;
}

.faq-footer a { color: var(--text-secondary); text-decoration: none; border-bottom: 1px solid #222; }
.faq-footer a:hover { border-color: #888; }

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

.reveal.active,
.hero-content.active,
.brand-logo-main.active {
    opacity: 1;
    transform: translateY(0);
}

/* Nawigacja */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(8, 8, 8, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid #1a1a1a;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo-img {
    height: 40px; /* Dopasuj pod swoje logo */
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.btn-nav {
    border: 1px solid #333;
    padding: 8px 16px;
    font-size: 11px;
}

/* Stopka */
.footer {
    padding: 60px 0;
    border-top: 1px solid #1a1a1a;
    text-align: center;
    background: #050505;
}

.footer p {
    font-family: var(--font-mono);
    font-size: 10px;
    color: #444;
    letter-spacing: 0.2em;
}

/* Menu Mobilne */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links,
    .btn-nav {
        display: none;
    }

    .menu-toggle { display: block; }

    .nav-links.is-open {
        display: flex;
        position: absolute;
        top: 70px;
        right: 5%;
        flex-direction: column;
        gap: 16px;
        padding: 16px;
        min-width: 200px;
        border: 1px solid #222;
        background: rgba(8, 8, 8, 0.98);
    }
}

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