/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES
   ========================================================================== */
:root {
    /* Color Palette - Bordeaux & Soft Pink Theme */
    --color-bg: #2d060e;
    --color-bg-alt: #3d0c17;
    --color-glass: rgba(45, 6, 14, 0.82);
    --color-border: rgba(255, 184, 198, 0.12);
    
    --color-text-primary: #ffd6db;
    --color-text-secondary: #c78d96;
    --color-text-muted: #804a52;
    
    --color-crimson: #7c1a28;
    --color-crimson-bright: #ffb8c6;
    --color-crimson-dark: #1b0207;
    --color-crimson-glow: rgba(255, 184, 198, 0.15);

    /* Fonts */
    --font-heading: 'Cormorant Garamond', serif;
    --font-heading-secondary: 'Syne', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-snappy: all 0.2s ease-out;
    
    /* Layout */
    --header-height: 80px;
    --max-width: 1200px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--color-crimson) var(--color-bg);
}

body {
    background-color: var(--color-bg);
    background-image: linear-gradient(180deg, rgba(7, 7, 7, 0.94) 0%, rgba(7, 7, 7, 0.88) 50%, rgba(7, 7, 7, 0.94) 100%), url('Segundo%20Fonfo%20PAgina%20web.webp');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-snappy);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

section {
    padding: 120px 0;
    position: relative;
    background-color: transparent;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Custom Cursor (Desktops only via Native CSS) */
@media (pointer: fine) {
    *, *::before, *::after {
        cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><path d='M4 3v15l4-4 3 7 2-1-3-7 5 0z' fill='%23ffb8c6' stroke='%237c1a28' stroke-width='1.5' stroke-linejoin='miter'/></svg>") 4 3, auto;
    }
    
    a, a *, button, button *, .work-card, .work-card *, [role="button"], [role="button"] * {
        cursor: pointer !important;
    }
    
    input, textarea {
        cursor: text !important;
    }
}
/* ==========================================================================
   REUSABLE UI COMPONENTS
   ========================================================================== */
.section-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--color-crimson-bright);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading-secondary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.accent-line {
    width: 60px;
    height: 3px;
    background-color: var(--color-crimson);
    margin-bottom: 32px;
}

.accent-line.center {
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-crimson);
    color: var(--color-text-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-crimson-bright);
    box-shadow: 0 4px 25px var(--color-crimson-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-primary);
    border-color: var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-crimson-bright);
    background-color: rgba(255, 255, 255, 0.02);
    transform: translateY(-2px);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--color-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    height: 70px;
    background-color: rgba(5, 5, 5, 0.9);
}

.header-container {
    max-width: var(--max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 4px;
    color: var(--color-text-primary);
    position: relative;
    transition: var(--transition-smooth);
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30%;
    height: 2px;
    background-color: var(--color-crimson);
    transition: var(--transition-smooth);
}

.logo:hover .logo-text::after {
    width: 100%;
}

.nav-menu ul {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-crimson-bright);
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 14px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text-primary);
    position: relative;
    transition: var(--transition-snappy);
}

.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--color-text-primary);
    transition: var(--transition-snappy);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Nav toggle active state */
.nav-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.4);
    z-index: 2;
}

.hero-media-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 7, 7, 0.2) 0%, rgba(7, 7, 7, 0.95) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: var(--max-width);
    padding: 0 24px;
    text-align: center;
}

.hero-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 6px;
    color: var(--color-crimson-bright);
    margin-bottom: 24px;
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    font-weight: 300;
    letter-spacing: 6px;
    line-height: 1;
    margin-bottom: 24px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-tagline {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--color-text-secondary);
    margin-bottom: 48px;
    font-weight: 300;
    letter-spacing: 1px;
}

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

/* Scroll Mouse Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 3;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-text-secondary);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-crimson-bright);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel-anim 1.6s ease-out infinite;
}

.scroll-text {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-secondary);
}

@keyframes scroll-wheel-anim {
    0% { top: 6px; opacity: 0; }
    30% { opacity: 1; }
    100% { top: 22px; opacity: 0; }
}

/* ==========================================================================
   PHILOSOPHY / ABOUT SECTION
   ========================================================================== */
.about-section {
    background-color: var(--color-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.about-lead {
    font-size: 1.2rem;
    color: var(--color-text-primary);
    margin-bottom: 24px;
    font-weight: 500;
    line-height: 1.5;
}

.about-body {
    color: var(--color-text-secondary);
    margin-bottom: 36px;
    font-weight: 300;
}

.about-quote {
    border-left: 3px solid var(--color-crimson);
    padding-left: 24px;
    margin-top: 40px;
}

.about-quote blockquote {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.about-quote cite {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    font-style: normal;
}

.image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background-color: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.abstract-dance-placeholder {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 80%, rgba(158, 27, 27, 0.4) 0%, rgba(7, 7, 7, 1) 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.abstract-dance-placeholder .glow-effect {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--color-crimson);
    filter: blur(80px);
    border-radius: 50%;
    animation: glow-pulse 6s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    0% { transform: scale(1) translate(0, 0); opacity: 0.5; }
    100% { transform: scale(1.5) translate(20px, -20px); opacity: 0.8; }
}

.placeholder-text {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.35);
    z-index: 2;
    text-transform: uppercase;
}

/* ==========================================================================
   INTERPRETERS SECTION
   ========================================================================== */
.interpretes-section {
    background-color: transparent;
}

.interpretes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 20px;
}

.interpreter-card {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border: 1px solid var(--color-border);
    background-color: var(--color-bg);
    cursor: none;
}

.interpreter-img-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.interpreter-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.interpreter-img-container .img-secondary {
    opacity: 0;
    transform: scale(1.05);
}

.interpreter-card:hover .img-secondary {
    opacity: 1;
    transform: scale(1);
}

.interpreter-card:hover .img-primary {
    opacity: 0;
    transform: scale(0.95);
}

/* ==========================================================================
   WORKS SECTION
   ========================================================================== */
.works-section {
    background-color: rgba(7, 7, 7, 0.35);
    border-top: 1px solid var(--color-border);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 30px;
}

.work-card {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border: 1px solid var(--color-border);
    background-color: var(--color-bg);
}

.work-img-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.abstract-work-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

/* Different gradients for placeholders to feel dynamic */
.work-1 {
    background: linear-gradient(135deg, #101010 0%, #300808 100%);
}

.work-2 {
    background: linear-gradient(135deg, #090909 0%, #500a0a 100%);
}

.work-3 {
    background: linear-gradient(135deg, #161616 0%, #200404 100%);
}

.work-card:hover .abstract-work-placeholder {
    transform: scale(1.05);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgba(7, 7, 7, 0.95) 0%, rgba(7, 7, 7, 0.4) 60%, rgba(7, 7, 7, 0.1) 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    opacity: 0.9;
    transition: var(--transition-smooth);
}

.work-card:hover .work-overlay {
    background: linear-gradient(360deg, rgba(158, 27, 27, 0.9) 0%, rgba(7, 7, 7, 0.5) 70%, rgba(7, 7, 7, 0.2) 100%);
}

.work-details {
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.work-card:hover .work-details {
    transform: translateY(0);
}

.work-year {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-crimson-bright);
    margin-bottom: 8px;
}

.work-card:hover .work-year {
    color: var(--color-text-primary);
}

.work-card-title {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.work-desc {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    font-weight: 300;
    margin-bottom: 24px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s, max-height 0.4s;
}

.work-card:hover .work-desc {
    opacity: 1;
    max-height: 100px;
}

.work-link {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-primary);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    background-color: rgba(7, 7, 7, 0.55);
    border-bottom: 1px solid var(--color-border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.contact-text {
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
    color: var(--color-text-primary);
}

.contact-icon {
    color: var(--color-crimson-bright);
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-secondary);
    transition: var(--transition-smooth);
}

.social-links a:hover {
    color: var(--color-text-primary);
    border-color: var(--color-crimson-bright);
    background-color: var(--color-crimson-glow);
    transform: translateY(-3px);
}

/* Form Styling */
.contact-form-container {
    background-color: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    padding: 48px;
    position: relative;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
    transition: var(--transition-smooth);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-secondary);
}

.form-group input, .form-group textarea {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    padding: 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-snappy);
    border-radius: 0;
    width: 100%;
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--color-crimson-bright);
    box-shadow: 0 0 10px rgba(158, 27, 27, 0.15);
}

.btn-submit {
    align-self: flex-start;
    gap: 12px;
    background-color: var(--color-crimson);
    border: none;
    color: var(--color-text-primary);
}

.btn-submit:hover {
    background-color: var(--color-crimson-bright);
}

.submit-arrow {
    transition: transform 0.3s ease;
}

.btn-submit:hover .submit-arrow {
    transform: translateX(4px);
}

.form-success-msg {
    display: none;
    text-align: center;
    padding: 40px 0;
}

.form-success-msg p {
    font-size: 1.1rem;
    color: var(--color-text-primary);
    font-weight: 500;
}

.form-success-msg.show {
    display: block;
}

.contact-form-container.success .contact-form {
    opacity: 0;
    pointer-events: none;
    display: none;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: #050505;
    padding: 60px 0;
    border-top: 1px solid var(--color-border);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.footer-credit {
    font-weight: 500;
    letter-spacing: 1px;
}

/* ==========================================================================
   ANIMATIONS & TRANSITIONS (SCROLL REVEAL)
   ========================================================================== */
/* Entry animations (Loaded with page) */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpAnim 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUpAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Triggered Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Add custom delays for scroll grids */
.scroll-reveal.delay-1 { transition-delay: 0.15s; }
.scroll-reveal.delay-2 { transition-delay: 0.3s; }

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .image-wrapper {
        aspect-ratio: 16/9;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    /* Navigation toggle visibility */
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: #070707;
        z-index: 1000;
        transition: var(--transition-smooth);
        padding-top: 120px;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}



/* ==========================================================================
   EQUIPO / TEAM SECTION
   ========================================================================== */
.team-section {
    background-color: rgba(7, 7, 7, 0.2);
    border-top: 1px solid var(--color-border);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 30px;
}

.team-member-card {
    background: rgba(18, 18, 18, 0.55);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 35px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.team-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background-color: var(--color-crimson);
    transition: var(--transition-smooth);
}

.team-member-card:hover {
    transform: translateY(-5px);
    border-color: rgba(158, 27, 27, 0.3);
    background: rgba(22, 10, 10, 0.65);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.team-member-card:hover::before {
    height: 100%;
}

.member-role {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-crimson-bright);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.member-name {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--color-text-primary);
    margin-bottom: 18px;
}

.member-bio {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    font-weight: 300;
}

/* ==========================================================================
   WORK DETAILS LAYOUTS & SUBPAGES STYLE SYSTEM (RESPONSIVE)
   ========================================================================== */
.work-details-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
    margin-bottom: 60px;
}

.artistic-card {
    background: rgba(18, 18, 18, 0.55);
    border: 1px solid var(--color-border);
    padding: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.bio-item {
    background: rgba(18, 18, 18, 0.45);
    border: 1px solid var(--color-border);
    padding: 25px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.bio-item:hover {
    border-color: rgba(158, 27, 27, 0.3);
    background: rgba(22, 10, 10, 0.55);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.gallery-item {
    aspect-ratio: 3/2;
    overflow: hidden;
    border: 1px solid var(--color-border);
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

/* Responsive Overrides for Subpages */
@media (max-width: 992px) {
    .work-details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 20px;
    }
    
    .artistic-card {
        padding: 24px;
    }
}

@media (max-width: 576px) {
    .artistic-card {
        padding: 20px 16px;
    }
    
    .bio-item {
        padding: 20px 16px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .team-member-card {
        padding: 24px 16px;
    }
    
    .work-overlay {
        padding: 20px;
    }
    
    .contact-form-container {
        padding: 24px 16px;
    }
    
    .contact-form {
        gap: 20px;
    }
    
    .form-group input, .form-group textarea {
        padding: 14px;
        font-size: 0.9rem;
    }
    
    .btn-submit {
        align-self: stretch;
        width: 100%;
    }
}
