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

:root {
    --bg: #0b0b0b;
    --bg-secondary: #151515;
    --text: #ffffff;
    --muted: #9a9a9a;
    --accent: #d6a85f;
    --border: #252525;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", sans-serif;
    line-height: 1.7;
}

.container {
    width: min(1200px, 90%);
    margin: 0 auto;
}

.narrow {
    max-width: 800px;
}

header {
    position: fixed;
    width: 100%;
    z-index: 1000;

    background: rgba(11, 11, 11, 0.92);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid var(--border);
}

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

    height: 80px;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.logo:hover img {
    opacity: 0.85;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    color: var(--accent);
}

.hero {
    position: relative;

    height: 100vh;

    background:
        url("../images/hero.jpg")
        center center / cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            rgba(0,0,0,0.85),
            rgba(0,0,0,0.96)
        );
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}
.hero-logo {
    width: min(700px, 80vw);
    height: auto;
    margin-bottom: 30px;
}

.eyebrow {
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(4rem, 10vw, 7rem);
    margin-bottom: 20px;
}

.hero-text {
    color: #d3d3d3;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    display: inline-block;

    padding: 14px 28px;

    text-decoration: none;
    border-radius: 4px;

    transition: 0.3s;
}

.btn-primary {
    background: var(--accent);
    color: black;
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid white;
    color: white;
}

.section {
    padding: 120px 0;
}

.section-label {
    display: block;

    color: var(--accent);

    margin-bottom: 15px;

    letter-spacing: 2px;
}

.section h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.section p {
    color: var(--muted);
    margin-bottom: 20px;
}

.dark {
    background: var(--bg-secondary);
}

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

.card {
    background: #1a1a1a;
    border: 1px solid var(--border);
}

.card-image {
    height: 260px;
    background: #2c2c2c;
}

.card h3 {
    padding: 25px 25px 10px;
}

.card p {
    padding: 0 25px 25px;
}

.gallery {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    margin-bottom: 80px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            rgba(0,0,0,0.15),
            rgba(0,0,0,0.35)
        );

    pointer-events: none;
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;

    filter:
        brightness(0.75)
        contrast(1.1)
        saturate(0.9);

    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);

    filter:
        brightness(0.9)
        contrast(1.15)
        saturate(1);
}

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

.gear-grid h3 {
    margin-bottom: 20px;
}

.gear-grid ul {
    list-style: none;
}

.gear-grid li {
    padding: 8px 0;
    color: var(--muted);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;

    margin-top: 40px;
}

.contact-form input,
.contact-form textarea {
    background: #1c1c1c;

    border: 1px solid var(--border);

    color: white;

    padding: 16px;
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

footer {
    border-top: 1px solid var(--border);
}

.footer {
    text-align: center;
    padding: 30px 0;
    color: var(--muted);
}

@media (max-width: 900px) {

    .cards,
    .gallery,
    .gear-grid {
        grid-template-columns: 1fr;
    }

    nav ul {
        gap: 1rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.about-gallery img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 4px;
}

#about a {
    color: var(--accent);
    text-decoration: none;
}

#about a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .about-gallery {
        grid-template-columns: 1fr;
    }

    .about-gallery img {
        height: 300px;
    }
}

.studio-description {
    max-width: 800px;
    margin: 0 auto 80px auto;

    text-align: center;

    color: var(--muted);

    font-size: 1.1rem;
    line-height: 1.9;
}

.gear-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    margin-top: 60px;
}

.gear-grid > div {
    background: rgba(255,255,255,0.02);

    border: 1px solid rgba(214,168,95,0.15);

    padding: 32px;

    transition: all 0.3s ease;
}

.gear-grid > div:hover {
    transform: translateY(-4px);

    border-color: rgba(214,168,95,0.4);

    background: rgba(255,255,255,0.04);
}

.gear-grid h3 {
    color: var(--accent);

    margin-bottom: 20px;

    font-size: 1.1rem;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.gear-grid ul {
    list-style: none;
    padding: 0;
}

.gear-grid li {
    color: var(--muted);

    padding: 8px 0;

    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.gear-grid li:last-child {
    border-bottom: none;
}

.session-section {
    margin-top: 100px;

    text-align: center;

    padding: 60px;

    background: rgba(255,255,255,0.02);

    border: 1px solid rgba(214,168,95,0.15);
}

.session-section h3 {
    color: var(--accent);

    margin-bottom: 25px;

    font-size: 1.5rem;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.session-section p {
    max-width: 800px;

    margin: 0 auto;

    color: var(--muted);

    line-height: 1.9;
}

@media (max-width: 1000px) {

    .gear-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {

    .gear-grid {
        grid-template-columns: 1fr;
    }

    .session-section {
        padding: 40px 25px;
    }
}

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.contact-card {
    display: block;

    padding: 40px 30px;

    text-decoration: none;

    background: rgba(255,255,255,0.02);

    border: 1px solid rgba(214,168,95,0.15);

    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);

    border-color: rgba(214,168,95,0.5);

    background: rgba(255,255,255,0.04);
}

.contact-label {
    display: block;

    color: var(--accent);

    font-size: 0.8rem;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 15px;
}

.contact-card h3 {
    color: white;

    font-size: 1.3rem;

    font-weight: 500;

    word-break: break-word;
}

@media (max-width: 900px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

.portfolio-grid {
    display: grid;
    gap: 30px;

    margin-top: 50px;
}

.track-card {
    background: rgba(255,255,255,0.02);

    border: 1px solid rgba(214,168,95,0.15);

    padding: 35px;

    transition: all 0.3s ease;
}

.track-card:hover {
    border-color: rgba(214,168,95,0.4);

    transform: translateY(-4px);
}

.track-card h3 {
    color: white;
    margin-bottom: 12px;
}

.track-card p {
    color: var(--muted);
    margin-bottom: 25px;
}

.track-card audio {
    width: 100%;
    height: 42px;
}

.menu-toggle {
    display: none;

    background: none;
    border: none;

    color: white;

    font-size: 2rem;

    cursor: pointer;
}

@media (max-width: 900px) {

    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;

        position: absolute;

        top: 80px;
        left: 0;
        right: 0;

        background: #0b0b0b;

        border-bottom: 1px solid var(--border);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;

        gap: 20px;

        padding: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .gallery,
    .gear-grid,
    .about-gallery,
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .hero-logo {
        width: 90vw;
    }

    .gallery-item img {
        height: 280px;
    }

    .section {
        padding: 80px 0;
    }

    .section h2 {
        font-size: 2rem;
    }
}