/* ============================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================ */

/* About Hero Section */
.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    overflow: hidden;
    padding: 8rem 4rem;
}

.about-hero-container {
    max-width: 1400px;
    width: 100%;
    z-index: 2;
    position: relative;
    text-align: center;
}

.about-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 8rem);
    letter-spacing: 10px;
    line-height: 1.1;
    margin-bottom: 3rem;
}

.about-hero-title .title-line {
    display: block;
    opacity: 0;
}

.about-hero-title .title-line.accent {
    color: #3B444B;
}

.about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
}

.about-hero-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
   
}

.about-hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    margin-top: 4rem;
}

.about-hero-scroll span {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

/* Artist Bio Section */
.artist-bio {
    padding: 12rem 4rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #0d0d12 50%, #0a0a0a 100%);
}

.bio-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.bio-content {
    max-width: 600px;
}



.bio-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: 8px;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.bio-title .title-word.highlight {
    color: #3B444B;
}

.bio-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bio-text p {
    font-size: 1.05rem;
    line-height: 2;
    opacity: 0.9;
}

.bio-image {
    position: relative;
    height: 700px;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9);
}

.bio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: all 0.8s ease;
}

.bio-image:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.bio-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 68, 75, 0.2) 0%, transparent 60%);
    pointer-events: none;
}



/* ============================================
   PROMO VIDEO SECTION
   ============================================ */

.promo-video-section {
    padding: 15rem 4rem;
    background: linear-gradient(180deg, #0d0d12 0%, #0a0a0a 50%, #0d0d12 100%);
    position: relative;
    overflow: hidden;
}

.promo-video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(59, 68, 75, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.promo-video-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.promo-video-header {
    text-align: center;
    margin-bottom: 6rem;
}

.promo-video-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 6rem);
    letter-spacing: 10px;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.promo-video-title .title-word.highlight {
    color: #3B444B;
}

.promo-video-description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Video Player Wrapper */
.promo-video-wrapper {
    opacity: 0;
    transform: scale(0.95);
}

.promo-video-player {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    box-shadow: 
        0 30px 90px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.promo-video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Custom Video Controls */
.promo-video-controls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(59, 68, 75, 0.4) 100%
    );
    backdrop-filter: blur(5px);
    transition: all 0.5s ease;
    z-index: 5;
}

.promo-video-controls.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Play Button */
.promo-play-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 10;
}

.play-icon-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.play-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.play-icon,
.pause-icon {
    width: 50px;
    height: 50px;
    color: #fff;
    transition: transform 0.3s ease;
}

.promo-play-btn:hover .play-icon-wrapper {
    background: rgba(59, 68, 75, 0.9);
    border-color: #3B444B;
    transform: scale(1.1);
}

.promo-play-btn:hover .play-icon,
.promo-play-btn:hover .pause-icon {
    transform: scale(1.1);
}

.play-text {
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.9;
}

/* Video Info Overlay */
.promo-video-info {
    position: absolute;
    top: 3rem;
    left: 3rem;
    max-width: 500px;
}

.video-info-top {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.video-duration,
.video-quality {
    padding: 0.5rem 1.2rem;
    background: rgba(59, 68, 75, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.video-overlay-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.video-overlay-subtitle {
    font-size: 0.95rem;
    opacity: 0.8;
    letter-spacing: 1px;
}

/* Progress Bar */
.promo-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    z-index: 10;
    transition: height 0.3s ease;
}

.promo-progress-bar:hover {
    height: 10px;
}

.promo-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3B444B 0%, #5a6570 100%);
    width: 0;
    transition: width 0.1s linear;
    position: relative;
}

.promo-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
    animation: shimmer-progress 2s infinite;
}

@keyframes shimmer-progress {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.promo-progress-handle {
    position: absolute;
    top: 50%;
    left: 0;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.promo-progress-bar:hover .promo-progress-handle {
    opacity: 1;
}

/* Sound Button */
.promo-sound-btn {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(59, 68, 75, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.promo-sound-btn:hover {
    background: #3B444B;
    border-color: #3B444B;
    transform: scale(1.1);
}

.promo-sound-btn.muted i {
    color: rgba(255, 255, 255, 0.5);
}

/* Fullscreen Button */
.promo-fullscreen-btn {
    position: absolute;
    bottom: 2rem;
    right: 6rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(59, 68, 75, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.promo-fullscreen-btn:hover {
    background: #3B444B;
    border-color: #3B444B;
    transform: scale(1.1);
}

/* Loading Indicator */
.promo-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 15;
}

.promo-loading.active {
    opacity: 1;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: #3B444B;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.promo-loading span {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
}

/* Video Stats */
.promo-video-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(59, 68, 75, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(59, 68, 75, 0.1);
}

.video-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
}

.video-stat i {
    font-size: 1.5rem;
    color: #3B444B;
}

.video-stat span {
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Background Decoration */
.promo-video-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border: 2px solid rgba(59, 68, 75, 0.1);
    border-radius: 50%;
}

.decoration-circle:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: float-circle 20s ease-in-out infinite;
}

.decoration-circle:nth-child(2) {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation: float-circle 25s ease-in-out infinite reverse;
}

.decoration-circle:nth-child(3) {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float-circle 30s ease-in-out infinite;
}

@keyframes float-circle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* Playing State */
.promo-video-player.playing .promo-video-controls {
    opacity: 0;
    pointer-events: none;
}

.promo-video-player.playing:hover .promo-sound-btn,
.promo-video-player.playing:hover .promo-fullscreen-btn,
.promo-video-player.playing:hover .promo-progress-bar {
    opacity: 1;
}

.promo-video-player.playing .promo-sound-btn,
.promo-video-player.playing .promo-fullscreen-btn {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .promo-video-section {
        padding: 10rem 3rem;
    }
    
    .promo-video-player {
        height: 60vh;
        min-height: 400px;
    }
    
    .promo-video-info {
        top: 2rem;
        left: 2rem;
    }
    
    .video-overlay-title {
        font-size: 2rem;
    }
    
    .promo-video-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .promo-video-section {
        padding: 8rem 1.5rem;
    }
    
    .promo-video-header {
        margin-bottom: 4rem;
    }
    
    .promo-video-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .promo-video-description {
        font-size: 1rem;
    }
    
    .promo-video-player {
        height: 50vh;
        min-height: 350px;
        border-radius: 16px;
    }
    
    .play-icon-wrapper {
        width: 90px;
        height: 90px;
    }
    
    .play-icon-wrapper::before {
        width: 110px;
        height: 110px;
    }
    
    .play-icon,
    .pause-icon {
        width: 40px;
        height: 40px;
    }
    
    .play-text {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    
    .promo-video-info {
        top: 1.5rem;
        left: 1.5rem;
        max-width: calc(100% - 3rem);
    }
    
    .video-overlay-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .video-overlay-subtitle {
        font-size: 0.85rem;
    }
    
    .promo-sound-btn,
    .promo-fullscreen-btn {
        width: 45px;
        height: 45px;
        bottom: 1.5rem;
        font-size: 1rem;
    }
    
    .promo-fullscreen-btn {
        right: 5rem;
    }
    
    .promo-video-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        text-align: center;
    }
    
    .video-stat {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .promo-video-player {
        height: 45vh;
        min-height: 300px;
    }
    
    .play-icon-wrapper {
        width: 75px;
        height: 75px;
    }
    
    .play-icon-wrapper::before {
        width: 90px;
        height: 90px;
    }
    
    .play-icon,
    .pause-icon {
        width: 32px;
        height: 32px;
    }
    
    .promo-video-info {
        top: 1rem;
        left: 1rem;
    }
    
    .video-info-top {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .video-duration,
    .video-quality {
        padding: 0.4rem 1rem;
        font-size: 0.7rem;
    }
    
    .video-overlay-title {
        font-size: 1.3rem;
    }
    
    .promo-sound-btn {
        right: 1rem;
        bottom: 1rem;
    }
    
    .promo-fullscreen-btn {
        display: none; /* Hide on very small screens */
    }
}

/* Philosophy Section */
.philosophy-section {
    padding: 10rem 4rem;
    background: #0a0a0a;
}

.philosophy-container {
    max-width: 1400px;
    margin: 0 auto;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.philosophy-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(59, 68, 75, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(59, 68, 75, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(50px);
}

.philosophy-card:hover {
    transform: translateY(-10px);
    background: rgba(59, 68, 75, 0.1);
    border-color: rgba(59, 68, 75, 0.3);
    box-shadow: 0 20px 60px rgba(59, 68, 75, 0.3);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #3B444B;
    border-radius: 50%;
    font-size: 2rem;
    color: #3B444B;
    transition: all 0.5s ease;
}

.philosophy-card:hover .philosophy-icon {
    background: #3B444B;
    color: #fff;
    transform: rotate(360deg);
}

.philosophy-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: #fff;
}

.philosophy-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.8;
}

/* Timeline Section */
.timeline-section {
    padding: 12rem 4rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #0d0d12 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    margin-top: 6rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, #3B444B, transparent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(50px);
}

.timeline-item:nth-child(odd) {
    padding-right: calc(50% + 4rem);
}

.timeline-item:nth-child(even) {
    padding-left: calc(50% + 4rem);
}

.timeline-year {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 4px;
    color: #3B444B;
    background: #0a0a0a;
    padding: 0.5rem 1.5rem;
    border: 2px solid #3B444B;
    border-radius: 30px;
    z-index: 2;
}

.timeline-content {
    background: rgba(59, 68, 75, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(59, 68, 75, 0.1);
    transition: all 0.5s ease;
}

.timeline-item:hover .timeline-content {
    background: rgba(59, 68, 75, 0.1);
    border-color: rgba(59, 68, 75, 0.3);
    transform: scale(1.05);
}

.timeline-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #fff;
}

.timeline-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.8;
}

/* Skills Section */
.skills-section {
    padding: 10rem 4rem;
    background: #0a0a0a;
}

.skills-container {
    max-width: 1400px;
    margin: 0 auto;
}

.skills-header {
    text-align: center;
    margin-bottom: 6rem;
}

.skills-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: 8px;
    line-height: 1.2;
}

.skills-title .title-word.highlight {
    color: #3B444B;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
}

.skill-category {
    opacity: 0;
    transform: translateY(50px);
}

.skill-category h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    color: #3B444B;
}

.skill-item {
    margin-bottom: 2rem;
}

.skill-name {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.skill-bar {
    height: 8px;
    background: rgba(59, 68, 75, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.skill-fill {
    height: 100%;
    background: linear-gradient(90deg, #3B444B 0%, #5a6570 100%);
    border-radius: 10px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.skill-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Achievements Section */
.achievements-section {
    padding: 10rem 4rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #0d0d12 50%, #0a0a0a 100%);
}

.achievements-container {
    max-width: 1400px;
    margin: 0 auto;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.achievement-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(59, 68, 75, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(59, 68, 75, 0.1);
    transition: all 0.5s ease;
    opacity: 0;
    transform: scale(0.9);
}

.achievement-card:hover {
    transform: scale(1.05) translateY(-10px);
    background: rgba(59, 68, 75, 0.1);
    border-color: rgba(59, 68, 75, 0.3);
    box-shadow: 0 20px 60px rgba(59, 68, 75, 0.3);
}

.achievement-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: #3B444B;
    line-height: 1;
    margin-bottom: 1rem;
}

.achievement-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: #fff;
}

.achievement-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.7;
}

/* Studio Section */
.studio-section {
    padding: 12rem 4rem;
    background: #0a0a0a;
}

.studio-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.studio-content {
    max-width: 600px;
}

.studio-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: 8px;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.studio-title .title-word.highlight {
    color: #3B444B;
}

.studio-images {
    display: grid;
    grid-template-rows: 2fr 1fr;
    gap: 2rem;
    opacity: 0;
    transform: scale(0.9);
}

.studio-image-main {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.studio-image-main video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.studio-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.studio-image-small {
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
}

.studio-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: all 0.6s ease;
}

.studio-image-small:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* CTA Section */
.cta-section {
    padding: 12rem 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #0d0d12 100%);
    text-align: center;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 8px;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.cta-title .title-line.accent {
    color: #3B444B;
}

.cta-text {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: #3B444B;
    color: #fff;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #3B444B;
    color: #fff;
}

.cta-button.secondary:hover {
    background: #3B444B;
    color: #fff;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .bio-container,
    .studio-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .bio-image,
    .studio-images {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-right: 0;
        padding-left: 4rem;
    }
    
    .timeline::before {
        left: 0;
    }
    
    .timeline-year {
        left: 0;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 1.5rem;
        min-height: 80vh;
    }
    
    .about-hero-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .artist-bio,
    .philosophy-section,
    .timeline-section,
    .skills-section,
    .achievements-section,
    .studio-section,
    .cta-section {
        padding: 6rem 1.5rem;
    }
    
    .bio-title,
    .skills-title,
    .studio-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .philosophy-grid,
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .timeline-item {
        padding-left: 3rem;
    }
    
    .timeline-year {
        font-size: 1.5rem;
        padding: 0.4rem 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .bio-text p,
    .studio-content p {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    
    .philosophy-card,
    .achievement-card {
        padding: 2rem 1.5rem;
    }
    
    .achievement-number {
        font-size: 3rem;
    }
    
    .studio-image-main {
        height: 350px;
    }
    
    .studio-image-small {
        height: 150px;
    }
}


