/* Studio Page Styles */

/* --- Hero Section (Preserved) --- */
.studioHero {
    padding: 180px 20px 100px;
    background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #000000 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.studioHero::before {
    content: attr(data-background-text);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 20vw;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
    pointer-events: none;
    letter-spacing: 5vw;
    white-space: nowrap;
}

.studioHero .container {
    position: relative;
    z-index: 1;
}

.studioHero h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.studioHero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

/* --- Main Layout --- */
.studio-main {
    padding: 120px 0;
    background: #fdfdfd;
}

.studio-header-minimal {
    text-align: center;
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sub-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    opacity: 0.9;
}

.studio-header-minimal h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: rgb(20, 20, 20);
    letter-spacing: -0.01em;
    font-weight: 400;
}

.studio-header-minimal h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: rgb(30, 30, 30);
    letter-spacing: -0.01em;
    font-weight: 400;
}


/* --- Featured Grid (The Atelier) --- */
.featured-studio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 160px;
}

.featured-card {
    position: relative;
    background: #fff;
    height: 650px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(197, 160, 89, 0.3);
}

.featured-content {
    padding: 60px;
    z-index: 10;
    position: relative;
}

.featured-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 15px;
}

.featured-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #111;
    margin-bottom: 20px;
    font-weight: 400;
}

.featured-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    max-width: 320px;
    margin-bottom: 30px;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--accent);
    transition: gap 0.3s ease;
}

.featured-card:hover .cta-link {
    gap: 15px;
}

.featured-image {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 65%;
    height: 60%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.featured-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.featured-card:hover .featured-image {
    transform: scale(1.05) translate(-10px, -10px);
}

/* Specific Badge for Timepiece Studio */
.coming-soon-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: #111;
    color: #fff;
    padding: 8px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 20;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Timepiece Studio Grey State */
.timepiece-studio {
    background: #fafafa;
}

.timepiece-studio:hover {
    background: #fff;
    cursor: default;
    /* Since it's coming soon, maybe no pointer? Or keep pointer for 'Notify Me' interaction feel */
    cursor: not-allowed;
}


/* --- Secondary Grid (The Pipeline) --- */
.secondary-studio-section {
    padding-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.secondary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.secondary-card {
    background: #fff;
    padding: 40px 30px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.secondary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(197, 160, 89, 0.3);
}

.status-badge {
    display: inline-block;
    padding: 4px 8px;
    background: #f5f5f5;
    color: #888;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
}

.secondary-icon {
    font-size: 2.5rem;
    color: #ddd;
    margin-bottom: 25px;
    transition: color 0.3s ease;
}

.secondary-card:hover .secondary-icon {
    color: var(--accent);
}

.secondary-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #222;
}

.secondary-card p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
}


/* --- Responsive --- */
@media (max-width: 992px) {
    .featured-studio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .featured-card {
        height: 500px;
    }

    .featured-image {
        width: 60%;
        bottom: -30px;
        right: -30px;
    }
}

@media (max-width: 768px) {
    .studioHero h1 {
        font-size: 3.5rem;
    }

    .studio-header-minimal h2 {
        font-size: 2.5rem;
    }

    .featured-content {
        padding: 40px;
    }

    .featured-card h3 {
        font-size: 2rem;
    }

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