:root {
    --primary-gold: #c5a059;
    --primary-dark: #c5a059;
    --gold-gradient: linear-gradient(135deg, #c5a059 0%, #947440 100%);
    --bg-deep: #0a0a0a;
    --bg-card: #141414;
    --bg-lighter: #1e1e1e;
    --text-white: #ffffff;
    --text-dim: #a0a0a0;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gold {
    color: var(--primary-gold);
}

.text-center {
    text-align: center;
}

.section-tag {
    color: var(--primary-gold);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 15px;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 800;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    /* Slightly smaller to fit long name */
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-gold);
}

/* Buttons */
.btn-primary {
    background: var(--gold-gradient);
    color: #000;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-block;
    transition: var(--transition);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.btn-outline {
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 12px 26px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-block;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: #000;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('images/image.jpeg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin: 20px 0;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.badge {
    color: var(--primary-gold);
    font-weight: 700;
    letter-spacing: 4px;
    font-size: 0.9rem;
    border-left: 3px solid var(--primary-gold);
    padding-left: 15px;
}

/* Studio Intro */
section {
    padding: 120px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.studio-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.studio-intro p {
    color: var(--text-dim);
    margin-bottom: 30px;
}

.studio-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.studio-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 20px 20px 0 var(--primary-gold);
}

/* Services */
.services {
    background-color: var(--bg-card);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    justify-content: center;
    /* Centers cards when they wrap */
}

.service-card {
    background: var(--bg-lighter);
    padding: 50px 40px;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center content inside cards */
    text-align: center;
}

.service-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
}

.service-card.active {
    background: linear-gradient(rgba(30, 30, 30, 0.9), rgba(30, 30, 30, 0.9)), url('images/image2.jpeg') center/cover;
    border-color: var(--primary-gold);
}

/* ... (skipping unchanged lines) ... */

/* Listen section */
.listen {
    background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.85)), url('images/image3.jpeg') center/cover fixed;
}

.listen h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.listen p {
    color: var(--text-dim);
    margin-bottom: 40px;
}

.btn-spotify {
    background: #1DB954;
    color: #000;
    padding: 16px 36px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.btn-spotify:hover {
    transform: scale(1.05);
    background: #1ed760;
}

/* Availability Dashboard */
.availability {
    background-color: var(--bg-deep);
}

.availability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.day-card {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.day-card:hover {
    border-color: var(--primary-gold);
}

.day-card h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-gold);
    display: inline-block;
}

.slots-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.slot-btn {
    background: var(--bg-lighter);
    color: var(--text-white);
    padding: 10px 15px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid transparent;
}

.slot-btn:hover {
    background: var(--primary-gold);
    color: #000;
}

.slot-btn .status {
    font-size: 0.7rem;
    text-transform: uppercase;
    background: rgba(197, 160, 89, 0.2);
    padding: 2px 8px;
    border-radius: 20px;
    color: var(--primary-gold);
}

.slot-btn:hover .status {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-items {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.contact-item strong {
    display: block;
    color: var(--primary-gold);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.contact-map iframe {
    border-radius: 8px;
    filter: grayscale(1) invert(0.9);
}

/* Footer */
footer {
    padding: 60px 0;
    background-color: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo img {
    height: 60px;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-social a {
    color: var(--text-white);
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--primary-gold);
}

.copyright {
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.floating-wa:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Reveal Helper */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition);
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .grid-2,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hide-mobile {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-deep);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px;
        transition: 0.5s ease;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }
}

@media (max-width: 768px) {
    .hero {
        background-size: contain;
        background-position: center;
        background-color: var(--bg-deep);
        min-height: 70vh;
        /* Better fit for content + full image */
    }

    .hero-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.9) 100%);
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-outline {
        text-align: center;
        width: 100%;
    }

    .studio-image img {
        box-shadow: 10px 10px 0 var(--primary-gold);
    }
}