/* Studio Premium Stylesheet - Architected for Excellence */
:root {
    --primary-purple: #4A148C;
    --accent-orange: #FF9100;
    --deep-purple: #310D5E;
    --studio-white: #FFFFFF;
    --studio-bg: #F9F8FD; /* Hint of purple in the background */
    --text-deep: #1A0B2E; /* Deep purple-black for text */
    --text-soft: #6B5E7E;
    --glass-border: rgba(74, 20, 140, 0.1);
    --glass-fill: rgba(255, 255, 255, 0.7);
    --shadow-premium: 0 25px 50px rgba(74, 20, 140, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--studio-bg);
    color: var(--text-deep);
    overflow-x: hidden;
    width: 100%;
    line-height: 1.4;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Cinematic Canvas */
.canvas-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.2;
}

#orb-1 { width: 900px; height: 900px; background: rgba(74, 20, 140, 0.15); top: -300px; right: -200px; }
#orb-2 { width: 700px; height: 700px; background: rgba(255, 145, 0, 0.12); bottom: -200px; left: -100px; }
#orb-3 { width: 500px; height: 500px; background: rgba(74, 20, 140, 0.1); top: 30%; left: 20%; }

/* Navigation: Floating Glass */
.glass-nav-container {
    position: fixed;
    top: 30px;
    width: 100%;
    z-index: 2000;
}

.glass-nav {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 6px 12px 6px 32px;
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

.nav-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-logo:hover {
    transform: scale(1.1) rotate(-2deg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-item {
    text-decoration: none;
    color: var(--text-deep);
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-item:hover {
    opacity: 0.6;
}

.btn-minimal {
    text-decoration: none;
    color: var(--text-deep);
    font-size: 0.9rem;
    font-weight: 600;
    margin-right: 24px;
}

.btn-glass-cta {
    background: var(--primary-purple);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-glass-cta:hover {
    transform: scale(1.05);
}

/* Hero Studio */
.hero-studio {
    padding: 240px 0 120px;
    text-align: center;
}

.hero-tagline {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: var(--primary-purple);
    margin-bottom: 24px;
    opacity: 0.8;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
}

.serif-italic {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
}

.accent-orange {
    color: var(--accent-orange);
}

.hero-lead {
    font-size: 1.35rem;
    color: var(--text-soft);
    max-width: 760px;
    margin: 0 auto 48px;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.btn-solid-premium {
    background: var(--primary-purple);
    color: white;
    padding: 20px 42px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(74, 20, 140, 0.2);
}

.btn-solid-premium:hover {
    background: var(--deep-purple);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(74, 20, 140, 0.3);
}

.btn-text-premium {
    color: var(--text-deep);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Bento Grid: Dashboard Redesign */
.bento-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
}

.glass-premium {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 32px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.glass-premium:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 30px 60px rgba(0,0,0,0.04);
}

.bento-card.featured {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 500px;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.card-category {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--primary-purple);
    opacity: 0.6;
}

.status-pill {
    background: rgba(74, 20, 140, 0.08);
    color: var(--primary-purple);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(74, 20, 140, 0.1);
}

.status-pill .dot {
    width: 8px;
    height: 8px;
    background: var(--accent-orange);
    border-radius: 50%;
    animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange { 
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 145, 0, 0.7); }
    70% { transform: scale(1.2); box-shadow: 0 0 0 10px rgba(255, 145, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 145, 0, 0); }
}

.featured h2 { font-size: 3.5rem; line-height: 1; margin-bottom: 24px; letter-spacing: -0.04em; }
.featured p { font-size: 1.25rem; color: var(--text-soft); max-width: 80%; }

/* Visuals */
.card-footer-visual {
    margin-top: 40px;
    height: 120px;
    background: rgba(0,0,0,0.02);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.portal-scanner {
    position: absolute;
    width: 100%;
    height: 100%;
}

.scan-line {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--primary-purple), transparent);
    left: 0;
    animation: scan 4s linear infinite;
}

@keyframes scan { from { left: 0%; } to { left: 100%; } }

.node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-purple);
    border-radius: 50%;
}
.n1 { top: 20%; left: 20%; }
.n2 { top: 50%; left: 50%; }
.n3 { top: 80%; left: 80%; }

.connector-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    stroke: var(--primary-purple);
    stroke-width: 1;
    fill: none;
    opacity: 0.1;
}

/* Small Cards */
.small-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.small-card p { font-size: 0.95rem; color: var(--text-soft); }

.mini-graph {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-top: 24px;
    height: 40px;
}

.bar {
    flex: 1;
    background: var(--accent-orange);
    opacity: 0.2;
    border-radius: 4px;
    transition: all 0.5s ease;
}

.small-card:hover .bar { opacity: 0.6; }

.precision-dots {
    display: flex;
    gap: 6px;
    margin-top: 24px;
}

.precision-dots span {
    width: 6px;
    height: 6px;
    background: var(--accent-orange);
    border-radius: 50%;
    opacity: 0.3;
}

/* Wide Card Metrics */
.wide-card {
    grid-column: span 3;
    padding: 30px 60px;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric-item {
    text-align: center;
}

.m-val {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
}

.m-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Precision Method */
.precision-method {
    padding: 120px 0;
}

.section-meta {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    margin-bottom: 80px;
    opacity: 0.5;
}

.method-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.method-card {
    padding: 40px;
    border-left: 1px solid var(--text-deep);
}

.step-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 24px;
}

.step-index {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-style: italic;
    color: var(--accent-orange);
}

.method-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Collective Gallery */
.collective {
    padding: 100px 0;
}

.collective-header {
    margin-bottom: 80px;
}

.serif-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 500;
    line-height: 1;
}

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

.mentor-luxury-card {
    cursor: pointer;
}

.mentor-frame {
    height: 480px;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    margin-bottom: 24px;
    background: rgba(0,0,0,0.03);
}

.mentor-filler {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.05) 0%, rgba(255, 121, 63, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mentor-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.mentor-luxury-card:hover img {
    transform: scale(1.1);
}

.uni-logo-pill {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: white;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: var(--shadow-premium);
}

.mentor-meta h5 { font-size: 1.4rem; margin-bottom: 8px; }
.mentor-meta p { color: var(--text-soft); font-size: 0.95rem; }

/* Booking Section */
.consultation {
    padding: 120px 0;
}

.booking-glass-card {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(40px);
    border: 1px solid var(--glass-border);
    border-radius: 60px;
    padding: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.booking-info h2 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 32px; }
.booking-info p { font-size: 1.25rem; color: var(--text-soft); margin-bottom: 40px; }

.live-availability {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.9rem;
}

.pulse {
    width: 10px;
    height: 10px;
    background: var(--accent-orange);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-orange);
    animation: glow 2s infinite;
}

@keyframes glow { 0% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0.5; } 100% { transform: scale(1); opacity: 1; } }

.glass-inner {
    background: white;
    border-radius: 40px;
    padding: 48px;
    box-shadow: var(--shadow-premium);
}

.cal-month { font-weight: 800; margin-bottom: 32px; text-align: center; }
.cal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
.c-day { padding: 16px; border-radius: 16px; background: var(--studio-bg); text-align: center; font-weight: 700; cursor: pointer; }
.c-day.active { background: var(--accent-orange); color: white; }

.booking-interface {
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    background: white;
}

.booking-glass-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(40px);
    border: 1px solid var(--glass-border);
    border-radius: 60px;
    padding: 80px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* Community Banner */
.elite-community {
    padding: 120px 0;
}

.community-banner-glass {
    padding: 120px 60px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, #2E0E5A 100%);
    border-radius: 80px;
    text-align: center;
    color: white;
}

.community-banner-glass h2 { color: white; font-size: 4rem; margin-bottom: 32px; }
.community-banner-glass p { opacity: 0.7; margin-bottom: 60px; font-size: 1.4rem; }

/* Footer */
.studio-footer {
    padding: 120px 0 60px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}

.footer-logo { 
    height: 56px; 
    width: 56px;
    object-fit: cover;
    margin-bottom: 32px; 
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(74, 20, 140, 0.1);
}
.footer-nav { display: flex; gap: 100px; }
.f-col h6 { margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.1em; }
.f-col a { display: block; margin-bottom: 12px; text-decoration: none; color: var(--text-soft); transition: color 0.3s; }
.f-col a:hover { color: var(--primary-purple); }

.footer-bottom { border-top: 1px solid rgba(0,0,0,0.05); padding-top: 40px; text-align: center; color: var(--text-soft); font-size: 0.85rem; }

/* Responsive Design: The Great Refinement */

@media (max-width: 1200px) {
    .container { padding: 0 40px; }
    .hero-title { font-size: 4rem; }
    .featured h2 { font-size: 2.8rem; }
}

@media (max-width: 480px) {
    .btn-vision-mobile { display: none; }
    .hero-studio { padding: 150px 0 30px; }
    .hero-title { font-size: 3.5rem; }
    .bento-grid-premium { grid-template-columns: repeat(2, 1fr); }
    .bento-card.featured { grid-column: span 2; }
    .wide-card { grid-column: span 2; }
    .booking-glass-card { padding: 60px; }
}

.btn-vision-mobile {
    display: none;
    text-decoration: none;
    color: var(--text-deep);
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 15px;
}

@media (max-width: 768px) {
    .glass-nav-container { top: 15px; }
    .btn-vision-mobile { display: none !important; }
    .nav-center { display: none; }
    .nav-links { display: none; }
    .glass-nav { padding: 6px 12px; width: 100%; border-radius: 50px; justify-content: space-between; }
    .nav-logo { height: 32px; width: auto; border-radius: 8px; }
    .btn-minimal { display: none; }
    .btn-glass-cta { padding: 8px 16px; font-size: 0.75rem; border-radius: 40px; white-space: nowrap; }

    /* Ultra Compact Spacing */
    section { padding: 30px 0 !important; }
    .container { padding: 0 15px; }

    /* Hero Section */
    .hero-studio { padding: 200px 0 40px; }
    .hero-tagline { font-size: 0.65rem; letter-spacing: 0.15em; margin-bottom: 20px; }
    .hero-title { font-size: 1.8rem; margin-bottom: 16px; }
    .hero-lead { font-size: 0.9rem; margin-bottom: 24px; line-height: 1.3; }
    .btn-solid-premium { padding: 12px 24px; font-size: 0.85rem; border-radius: 10px; width: 100%; }

    /* Bento Grid (Vertical Stack) */
    .bento-grid-premium { gap: 12px; display: flex; flex-direction: column; }
    .glass-premium { padding: 20px; border-radius: 20px; min-height: auto !important; }
    .featured h2 { font-size: 1.4rem; margin-bottom: 12px; }
    .featured p { font-size: 0.9rem; line-height: 1.3; }
    .card-top { margin-bottom: 12px; gap: 10px; }
    .status-pill { padding: 4px 10px; font-size: 0.55rem; gap: 6px; }
    .status-pill .dot { width: 5px; height: 5px; }
    .card-category { font-size: 0.55rem; }
    .card-footer-visual { height: 80px; margin-top: 20px; }
    .metric-row { gap: 15px; }
    .m-val { font-size: 1.5rem; }
    .m-label { font-size: 0.65rem; }
    
    /* Method Steps */
    .method-steps { display: flex; flex-direction: column; gap: 10px; }
    .method-card { padding: 15px; border-radius: 15px; }
    .step-index { font-size: 1.2rem; }
    .method-card h4 { font-size: 1rem; }
    .method-card p { font-size: 0.8rem; }
    
    /* Collective */
    .collective-grid { display: flex; flex-direction: column; gap: 20px; }
    .mentor-frame { height: 260px; border-radius: 20px; margin-bottom: 12px; }
    .uni-logo-pill { padding: 6px 12px; font-size: 0.65rem; bottom: 16px; left: 16px; }
    .serif-title { font-size: 1.6rem; }
    .mentor-meta h5 { font-size: 1.1rem; }
    .mentor-meta p { font-size: 0.75rem; }

    /* Booking Card */
    .booking-glass-card { 
        display: flex;
        flex-direction: column;
        padding: 20px; 
        border-radius: 24px;
        gap: 20px;
    }
    .booking-info h2 { font-size: 1.5rem; }
    .booking-info p { font-size: 0.85rem; margin-bottom: 16px; }
    .live-availability { font-size: 0.75rem; }
    .glass-inner { padding: 20px; border-radius: 18px; }
    .cal-month { font-size: 0.8rem; margin-bottom: 16px; }
    .cal-grid { gap: 8px; margin-bottom: 20px; }
    .c-day { padding: 8px; font-size: 0.75rem; border-radius: 10px; }
    
    /* Community Banner */
    .community-banner-glass { padding: 30px 15px; border-radius: 24px; }
    .community-banner-glass h2 { font-size: 1.5rem; }
    .community-banner-glass p { font-size: 0.85rem; margin-bottom: 24px; }
    
    /* Footer */
    .studio-footer { padding: 40px 0 20px; }
    .footer-inner { gap: 20px; }
    .footer-logo { height: 40px; margin-bottom: 16px; }
    .footer-brand p { font-size: 0.8rem; }
    .f-col h6 { font-size: 0.75rem; margin-bottom: 12px; }
    .f-col a { font-size: 0.8rem; margin-bottom: 8px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.6rem; }
    .featured h2 { font-size: 1.3rem; }
    .serif-title { font-size: 1.4rem; }
}

@media (max-width: 360px) {
    .hero-title { font-size: 1.8rem; }
    .nav-logo { height: 28px; width: 28px; }
    .btn-glass-cta { padding: 6px 12px; font-size: 0.75rem; }
}
