/*
 * Immersive.css - Elegant, Gallery-Like Design System
 * Full-screen sections, generous whitespace, cinematic feel
 */

/* ========================================
   RESET & BASE
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-light);
    color: var(--color-gray-100);
    background-color: var(--forest-deepest);
    line-height: var(--line-height-relaxed);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font: inherit;
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    transition: transform var(--transition-base), background-color var(--transition-base);
}

/* Navbar always visible - no hide on scroll */
/* .nav-wrapper.nav-hidden {
    transform: translateY(-100%);
} */

.nav-wrapper.nav-scrolled {
    background-color: rgba(10, 31, 10, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--space-6) var(--space-8);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-primary);
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.1em;
    transition: opacity var(--transition-fast);
}

.nav-logo:hover {
    opacity: 0.7;
}

.nav-menu {
    display: flex;
    gap: var(--space-8);
    align-items: center;
}

.nav-link {
    font-size: var(--font-size-sm);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: var(--font-weight-normal);
    position: relative;
    transition: color 0.4s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-primary);
    transition: width 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.language-toggle {
    display: flex;
    gap: var(--space-2);
    margin-left: var(--space-4);
}

.lang-btn {
    font-size: var(--font-size-xs);
    letter-spacing: 0.1em;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-sm);
    border: none;
    outline: none;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.lang-btn.active {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.lang-btn:hover:not(.active) {
    background-color: rgba(201, 162, 39, 0.1);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* ========================================
   SECTION FOUNDATIONS
   ======================================== */

.section-full {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: var(--space-16) var(--space-8);
}

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

.section-container-narrow {
    max-width: 900px;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    height: 90vh;
    min-height: 90vh;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.0) 0%,
        rgba(10, 10, 10, 0.05) 50%,
        rgba(10, 10, 10, 0.25) 100%
    );
    z-index: 2;
}

.hero-content {
    position: absolute;
    bottom: 5vh;
    right: 5vw;
    z-index: 10;
    text-align: right;
    padding: var(--space-8);
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-6);
    animation: fadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: var(--font-weight-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gray-300);
    animation: fadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-12);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: fadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.9s both, bounce 2s infinite 2s;
}

.scroll-indicator-icon {
    font-size: var(--font-size-2xl);
    color: var(--color-white);
    opacity: 0.6;
}

/* ========================================
   THE ARTIST SECTION
   ======================================== */

.artist-section {
    background: linear-gradient(180deg, var(--forest-deepest) 0%, var(--forest-deep) 50%, var(--forest-deepest) 100%);
}

.artist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.artist-image-wrapper {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.artist-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.artist-image-wrapper:hover .artist-image {
    transform: scale(1.05);
}

/* Artist Video Embed */
.artist-video-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--radius-card);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.artist-video {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-card);
}

.artist-content {
    padding: var(--space-8);
}

/* Unified label styling - consistent small uppercase labels */
.artist-label,
.section-label {
    font-size: var(--font-size-sm);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-4);
    display: block;
}

/* Unified heading styling - consistent large display headings */
.artist-heading,
.section-heading {
    font-family: var(--font-primary);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-8);
    letter-spacing: -0.02em;
}

.artist-text {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
    color: var(--color-gray-300);
    margin-bottom: var(--space-6);
}

.artist-text:last-of-type {
    margin-bottom: 0;
}

/* ========================================
   VÍDEOS SECTION
   ======================================== */

.videos-section {
    background: linear-gradient(180deg, var(--forest-deep) 0%, var(--forest-deepest) 100%);
}

.videos-section .artist-video-wrapper {
    max-width: 960px;
    margin: 0 auto;
}

/* ========================================
   MUSIC / ÁLBUNS SECTION
   ======================================== */

.music-section {
    background: linear-gradient(180deg, var(--forest-deepest) 0%, var(--forest-deep) 100%);
}

/* Section heading specific: centered alignment for section-heading class */
.section-heading {
    text-align: center;
}

/* Featured Latest Album */
.featured-album {
    max-width: 400px;
    margin: 0 auto var(--space-10);
    text-align: center;
}

.featured-album-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.featured-album-link:hover .featured-album-cover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.featured-album-link:hover .featured-label {
    letter-spacing: 0.2em;
}

.featured-album-link:hover .featured-album-title {
    color: var(--color-primary);
}

.featured-album-cover {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-card);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    margin-bottom: var(--space-6);
    transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-album-info {
    padding: var(--space-4);
}

.featured-label {
    display: inline-block;
    font-family: var(--font-secondary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    margin-bottom: var(--space-2);
    transition: letter-spacing 0.4s ease;
}

.featured-album-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-white);
    margin-bottom: var(--space-1);
    transition: color 0.4s ease;
}

.featured-album-year {
    font-family: var(--font-secondary);
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.6);
}

.albums-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-12);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.album-card {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-card);
    cursor: pointer;
    transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.album-card:hover {
    transform: translateY(-3px);
}

.album-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.album-card:hover .album-cover {
    transform: scale(1.03);
}

.album-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 31, 10, 0.95) 0%,
        rgba(10, 31, 10, 0.7) 50%,
        rgba(10, 31, 10, 0.3) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-8);
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.album-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-2);
}

.album-year {
    font-size: var(--font-size-sm);
    color: var(--color-gray-400);
    letter-spacing: 0.1em;
}

.music-platforms {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.platform-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    width: 140px;
    height: 140px;
    padding: var(--space-5);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-card);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.platform-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--platform-color, rgba(255,255,255,0.1)) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.platform-link:hover::before {
    opacity: 0.15;
}

.platform-link:hover {
    transform: translateY(-4px);
    border-color: var(--platform-color, var(--color-secondary));
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.3),
        0 0 15px var(--platform-glow, rgba(212, 196, 168, 0.2));
}

/* Platform-specific brand colors */
.platform-link[aria-label*="Spotify"] {
    --platform-color: #1DB954;
    --platform-glow: rgba(29, 185, 84, 0.3);
}

.platform-link[aria-label*="Apple"] {
    --platform-color: #FA57C1;
    --platform-glow: rgba(250, 87, 193, 0.3);
}

.platform-link[aria-label*="YouTube"] {
    --platform-color: #FF0000;
    --platform-glow: rgba(255, 0, 0, 0.3);
}

.platform-link[aria-label*="Deezer"] {
    --platform-color: #FEAA2D;
    --platform-glow: rgba(254, 170, 45, 0.3);
}

.platform-link:hover .platform-icon {
    color: var(--platform-color, var(--color-secondary));
    filter: drop-shadow(0 0 12px var(--platform-glow, rgba(212, 196, 168, 0.5)));
}

.platform-icon {
    font-size: 3rem;
    color: var(--color-secondary-light);
    filter: drop-shadow(0 0 8px rgba(212, 196, 168, 0.2));
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.platform-name {
    font-size: var(--font-size-xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: var(--font-weight-semibold);
    color: var(--color-secondary-light);
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.platform-link:hover .platform-name {
    color: var(--platform-color, var(--color-secondary));
}

/* ========================================
   LIVE / PERFORMANCES SECTION
   ======================================== */

.live-section {
    background: linear-gradient(to bottom, var(--forest-deep) 0%, var(--forest-mid) 50%, var(--forest-deep) 100%);
    padding: var(--space-10) var(--space-8);
    min-height: auto;
}

.live-section .section-label {
    text-align: center;
}

.live-section .section-heading {
    margin-bottom: var(--space-6);
}

.live-section .section-intro {
    font-size: var(--font-size-lg);
    color: var(--color-gray-400);
    text-align: center;
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   PRESS / NEWS SECTION
   ======================================== */

.press-section {
    background: linear-gradient(180deg, var(--forest-deep) 0%, var(--forest-deepest) 100%);
    min-height: auto;
    padding: var(--space-10) var(--space-8);
}

.press-section .section-label {
    text-align: center;
}

.press-section .section-heading {
    margin-bottom: var(--space-8);
}

.press-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    max-width: 1200px;
    margin: 0 auto var(--space-12);
}

.press-item {
    padding: 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-card);
    transition: border-color 0.4s ease, background 0.4s ease, transform 0.4s ease;
    overflow: hidden;
}

.press-item-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.press-item:hover .press-item-image {
    transform: scale(1.05);
}

.press-item-content {
    padding: var(--space-5);
}

.press-item:hover {
    border-color: var(--color-secondary);
    background: linear-gradient(
        135deg,
        rgba(212, 196, 168, 0.05) 0%,
        rgba(192, 192, 192, 0.03) 100%
    );
}

.press-date {
    font-size: var(--font-size-xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
}

.press-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    margin: var(--space-3) 0 var(--space-4);
    color: var(--color-white);
}

.press-description {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-relaxed);
    color: var(--color-gray-400);
}

.press-cta {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.press-cta .cta-button-minimal {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
}

.press-cta .cta-button-minimal i {
    font-size: var(--font-size-sm);
}

@media (max-width: 1024px) {
    .press-highlights {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .press-cta {
        flex-direction: column;
        align-items: center;
    }
}

/* ========================================
   THE TEACHER SECTION - PARALLAX
   ======================================== */

.teacher-section-parallax {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.teacher-parallax-bg {
    position: absolute;
    top: -15%;
    left: -5%;
    right: -5%;
    bottom: -15%;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    transform: scale(1.15);
    filter: brightness(0.35) contrast(1.1);
    will-change: transform;
    transition: none;
}

.teacher-parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(10, 10, 10, 0.4) 30%,
        rgba(10, 10, 10, 0.4) 70%,
        rgba(10, 10, 10, 0.8) 100%
    );
    pointer-events: none;
}

.teacher-parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-12) var(--space-6);
    max-width: 900px;
}

.teacher-header {
    margin-bottom: var(--space-10);
}

.teacher-header .artist-label {
    display: inline-block;
    margin-bottom: var(--space-4);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.teacher-header .artist-heading {
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    margin-bottom: var(--space-6);
}

.teacher-header .artist-text {
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    color: var(--color-gray-200);
}

/* Lessons Pillars on Parallax Background */
.teacher-section-parallax .lessons-pillars {
    display: flex;
    justify-content: center;
    gap: var(--space-10);
    flex-wrap: wrap;
    margin-bottom: var(--space-8);
}

.teacher-section-parallax .pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-8) var(--space-10);
    background: transparent;
    border: none;
    min-width: 200px;
    cursor: default;
    position: relative;
    isolation: isolate;
}

.teacher-section-parallax .pillar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(
        circle at center,
        rgba(212, 175, 55, 0) 0%,
        rgba(212, 175, 55, 0) 50%,
        rgba(212, 175, 55, 0) 100%
    );
    border-radius: 50%;
    opacity: 0;
    filter: blur(50px);
    transition: opacity 0.4s ease, background 0.4s ease;
    z-index: -1;
    pointer-events: none;
}

.teacher-section-parallax .pillar:hover::before {
    background: radial-gradient(
        circle at center,
        rgba(212, 175, 55, 0.12) 0%,
        rgba(212, 196, 168, 0.06) 40%,
        rgba(212, 196, 168, 0) 70%
    );
    opacity: 1;
}

.teacher-section-parallax .pillar-word {
    font-family: var(--font-primary);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-white);
    margin-bottom: var(--space-2);
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.4s ease, filter 0.5s ease;
    filter: drop-shadow(0 0 0px rgba(212, 175, 55, 0));
}

.teacher-section-parallax .pillar:hover .pillar-word {
    color: rgb(212, 175, 55);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.25))
            drop-shadow(0 0 50px rgba(212, 175, 55, 0.1));
}

.teacher-section-parallax .pillar-detail {
    font-size: var(--font-size-sm);
    color: var(--color-gray-400);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.4s ease, filter 0.5s ease;
    filter: drop-shadow(0 0 0px rgba(255, 255, 255, 0));
}

.teacher-section-parallax .pillar:hover .pillar-detail {
    color: rgba(255, 255, 255, 0.6);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.08));
}

.teacher-section-parallax .lessons-cta {
    text-align: center;
    margin-top: var(--space-8);
}

/* Teacher section button - inherits unified button system */
.teacher-section-parallax .cta-button {
    backdrop-filter: blur(10px);
}

/* Mobile Parallax */
@media (max-width: 768px) {
    .teacher-parallax-bg {
        top: -10%;
        bottom: -10%;
        background-position: center 20%;
    }

    .teacher-section-parallax .lessons-pillars {
        flex-direction: column;
        align-items: center;
        gap: var(--space-6);
    }

    .teacher-section-parallax .pillar {
        width: 100%;
        max-width: 300px;
        min-width: unset;
        padding: var(--space-6) var(--space-8);
    }

    .teacher-parallax-content {
        padding: var(--space-10) var(--space-4);
    }

    .teacher-header {
        margin-bottom: var(--space-8);
    }
}

@media (max-width: 480px) {
    .teacher-section-parallax {
        min-height: auto;
        padding: var(--space-10) 0;
    }

    .teacher-parallax-content {
        padding: var(--space-8) var(--space-4);
    }

    .teacher-header {
        margin-bottom: var(--space-6);
    }

    .teacher-section-parallax .pillar-word {
        font-size: var(--font-size-xl);
    }

    .teacher-section-parallax .pillar-detail {
        font-size: var(--font-size-xs);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .teacher-parallax-bg {
        transform: scale(1.05) !important;
        will-change: auto;
    }

    .teacher-section-parallax .pillar,
    .teacher-section-parallax .pillar::before,
    .teacher-section-parallax .pillar-word,
    .teacher-section-parallax .pillar-detail {
        transition: none;
    }

    .teacher-section-parallax .pillar:hover .pillar-word,
    .teacher-section-parallax .pillar:hover .pillar-detail {
        transform: none;
    }
}

.lessons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-10);
    margin-bottom: var(--space-12);
}

.lesson-item {
    padding: var(--space-10);
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-card);
    transition: background-color 0.4s ease, border-color 0.4s ease;
}

.lesson-item:hover {
    background: linear-gradient(
        135deg,
        rgba(212, 196, 168, 0.06) 0%,
        rgba(192, 192, 192, 0.04) 100%
    );
    border-color: var(--color-secondary);
}

.lesson-icon {
    font-size: var(--font-size-5xl);
    color: var(--color-primary);
    margin-bottom: var(--space-6);
}

.lesson-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-4);
}

.lesson-description {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--color-gray-400);
}

.lessons-cta {
    text-align: center;
}

/* ========================================
   UNIFIED BUTTON SYSTEM
   All buttons share consistent styling
   ======================================== */

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: var(--space-5) var(--space-8);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.15em;
    text-transform: lowercase;
    background: transparent;
    color: var(--color-secondary-light);
    border: 1px solid var(--color-secondary);
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.cta-button:hover {
    color: var(--color-white) !important;
    border-color: var(--color-secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
}

.cta-button:hover::before {
    opacity: 1;
}

/* Ensure ALL child elements turn white on hover */
.cta-button:hover i,
.cta-button:hover span,
.cta-button:hover .fa,
.cta-button:hover .fas,
.cta-button:hover .fab {
    color: var(--color-white) !important;
}

.cta-button i {
    font-size: var(--font-size-sm);
    transition: transform 0.4s ease, color 0.4s ease;
}

.cta-button span {
    transition: color 0.4s ease;
}

.cta-button:hover i {
    transform: translateX(2px);
}

/* Minimal variant - same base, subtle differences */
.cta-button-minimal {
    background: transparent;
    border-color: var(--color-secondary);
    color: var(--color-secondary-light);
}

.cta-button-minimal i,
.cta-button-minimal span {
    color: var(--color-secondary-light);
}

.cta-icon {
    transition: transform 0.4s ease;
}

.cta-button:hover .cta-icon {
    transform: translateX(4px);
}

/* ========================================
   CONNECT SECTION
   ======================================== */

.connect-section {
    background: linear-gradient(180deg, var(--forest-deepest) 0%, var(--forest-deep) 50%, var(--forest-deepest) 100%);
    position: relative;
}

.connect-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-secondary) 30%, var(--golden-glow) 50%, var(--color-secondary) 70%, transparent 100%);
    opacity: 0.3;
}

.connect-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.connect-heading {
    font-family: var(--font-primary);
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-8);
    letter-spacing: -0.02em;
}

.connect-text {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-relaxed);
    color: var(--color-gray-300);
    margin-bottom: var(--space-12);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    margin-bottom: var(--space-12);
}

.form-input {
    padding: var(--space-5) var(--space-6);
    font-size: var(--font-size-base);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-card);
    color: var(--color-white);
    transition: background-color 0.4s ease, border-color 0.4s ease;
}

.form-input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--forest-sage);
}

.form-input::placeholder {
    color: var(--color-gray-500);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    flex-wrap: wrap;
    margin-bottom: var(--space-8);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-size: var(--font-size-2xl);
    background: linear-gradient(135deg, rgba(212, 196, 168, 0.08) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 196, 168, 0.15);
    outline: none;
    border-radius: var(--radius-full);
    color: var(--color-secondary);
    transition: all 0.4s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(212, 175, 55, 0.15) 100%);
    border-color: var(--golden-glow);
    transform: translateY(-2px);
    color: var(--golden-glow);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

/* Contact Options - Press & Lessons */
.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-16);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-option {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-5);
    padding: var(--space-8) var(--space-8);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-card);
    text-align: left;
    transition: all 0.4s ease;
    cursor: pointer;
}

.contact-option:hover {
    background: linear-gradient(
        135deg,
        rgba(212, 196, 168, 0.08) 0%,
        rgba(192, 192, 192, 0.05) 100%
    );
    border-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 196, 168, 0.15);
}

.contact-option-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    font-size: var(--font-size-2xl);
    color: var(--golden-glow);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-radius: var(--radius-card);
    transition: transform 0.4s ease, background-color 0.4s ease;
}

.contact-option:hover .contact-option-icon {
    transform: scale(1.05);
    background: linear-gradient(
        135deg,
        rgba(212, 196, 168, 0.25) 0%,
        rgba(192, 192, 192, 0.15) 100%
    );
    box-shadow: 0 0 20px rgba(212, 196, 168, 0.4);
}

.contact-option-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    flex: 1;
}

.contact-option-label {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-white);
    display: block;
}

.contact-option-desc {
    font-size: var(--font-size-sm);
    color: var(--color-gray-400);
    display: block;
}

.contact-option-value {
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
    line-height: var(--line-height-relaxed);
    margin-top: var(--space-3);
    font-style: italic;
}

/* Testimonials */
.testimonials {
    max-width: 700px;
    margin: 0 auto var(--space-16);
    text-align: center;
    padding: var(--space-10);
    background: rgba(212, 196, 168, 0.03);
    border: 1px solid rgba(212, 196, 168, 0.1);
    border-radius: var(--radius-card);
}

.testimonial {
    padding: var(--space-4);
}

.testimonial-quote {
    font-size: var(--font-size-lg);
    font-style: italic;
    color: var(--color-gray-200);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-5);
}

.testimonial-author {
    font-size: var(--font-size-sm);
    color: var(--color-secondary);
    letter-spacing: 0.1em;
    font-weight: var(--font-weight-medium);
}

/* Newsletter Form */
.newsletter-form {
    margin-bottom: var(--space-10);
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-label {
    font-size: var(--font-size-base);
    letter-spacing: 0.08em;
    text-transform: lowercase;
    color: var(--color-secondary);
    margin-bottom: var(--space-5);
    font-weight: var(--font-weight-medium);
}

.newsletter-form .contact-form {
    display: flex;
    flex-direction: row;
    gap: var(--space-4);
    align-items: stretch;
}

.newsletter-form .form-input {
    flex: 1;
}

/* Newsletter button inherits unified button system */
.newsletter-form .cta-button-minimal {
    padding: var(--space-5) var(--space-10);
}

@media (max-width: 480px) {
    .newsletter-form .contact-form {
        flex-direction: column;
    }

    .newsletter-form .cta-button-minimal {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-options {
        grid-template-columns: 1fr;
    }

    .contact-option {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    padding: var(--space-6) var(--space-8) var(--space-6);
    background-color: var(--forest-deepest);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Main Navigation Links - Most Prominent */
.footer-nav {
    max-width: var(--container-max-width);
    margin: 0 auto var(--space-4);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-1) var(--space-2);
}

.footer-nav-link + .footer-nav-link::before {
    content: '·';
    margin-right: var(--space-2);
    color: rgba(255, 255, 255, 0.2);
}

.footer-nav-link {
    font-size: var(--font-size-sm);
    color: var(--color-gray-400);
    transition: color 0.4s ease;
}

.footer-nav-link:hover {
    color: var(--color-secondary-light);
}

/* WebMar Studio Signature - Second Most Prominent */
.footer-credit {
    width: 100%;
    text-align: center;
    padding-top: var(--space-6);
    margin-top: var(--space-6);
    font-size: var(--font-size-xs);
    color: var(--color-gray-600);
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
}

.footer-credit a {
    color: var(--color-gray-400);
    transition: color 0.4s ease;
}

.footer-credit a:hover {
    color: var(--golden-glow);
}

/* Legal Links & Copyright - Least Prominent */
.footer-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding-top: var(--space-6);
    margin-top: var(--space-6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-6);
}

.footer-text {
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
}

.footer-links {
    display: flex;
    gap: var(--space-6);
}

.footer-link {
    font-size: var(--font-size-sm);
    color: var(--color-gray-400);
    transition: color 0.4s ease;
}

.footer-link:hover {
    color: var(--color-secondary-light);
}

/* ========================================
   UTILITIES
   ======================================== */

.hidden {
    display: none !important;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .artist-grid,
    .teacher-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }

    .teacher-grid {
        direction: ltr;
    }

    .teacher-content {
        order: -1;
    }

    .albums-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-4);
    }

    .featured-album {
        max-width: 350px;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 70vh;
        background-color: rgba(10, 31, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-6);
        transition: right 0.4s ease;
        border-bottom-left-radius: var(--radius-lg);
        border-bottom-right-radius: var(--radius-lg);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: var(--font-size-xl);
    }

    .mobile-toggle {
        display: flex;
        z-index: calc(var(--z-fixed) + 1);
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .section-full {
        padding: var(--space-8) var(--space-6);
    }

    .section-heading {
        margin-bottom: var(--space-8);
    }

    .featured-album {
        max-width: 300px;
        margin-bottom: var(--space-8);
    }

    .featured-album-title {
        font-size: var(--font-size-xl);
    }

    .albums-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
        max-width: 100%;
        margin-bottom: var(--space-8);
    }

    .lessons-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .music-platforms {
        gap: var(--space-4);
    }

    .platform-link {
        width: 120px;
        height: 120px;
    }

    .platform-icon {
        font-size: 2.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: var(--space-4) var(--space-6);
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 5rem);
    }

    .artist-content,
    .teacher-content {
        padding: 0;
    }

    .section-full {
        padding: var(--space-6) var(--space-4);
    }

    .section-heading {
        margin-bottom: var(--space-6);
    }

    .cta-button {
        padding: var(--space-5) var(--space-8);
        font-size: var(--font-size-base);
    }
}

/* ========================================
   LOADING STATES
   ======================================== */

.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(201, 162, 39, 0.2);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: inherit;
}

/* Remove default focus outline */
button:focus,
a:focus {
    outline: none;
}

/* Ensure focus-visible still works for accessibility */
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: inherit;
}

/* ========================================
   ELEGANT MINIMAL ADDITIONS
   ======================================== */

/* Hero Essence - The poetic tagline */
.hero-essence {
    font-family: var(--font-secondary);
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    font-weight: var(--font-weight-light);
    letter-spacing: 0.3em;
    text-transform: lowercase;
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--space-8);
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
}

/* Scroll indicator arrow */
.scroll-arrow {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.3);
    animation: float 3s ease-in-out infinite;
    display: block;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Artist text highlight */
.artist-text-highlight {
    background: linear-gradient(
        135deg,
        var(--golden-glow) 0%,
        var(--color-secondary-light) 50%,
        var(--golden-glow) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    animation: goldShimmer 6s linear infinite;
}

@keyframes goldShimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Artist text large - for impactful statements */
.artist-text-large {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: var(--font-weight-light);
    line-height: 1.3;
    margin-top: var(--space-4);
}

/* Lessons Pillars - Elegant three-column */
.lessons-pillars {
    display: flex;
    justify-content: center;
    gap: clamp(var(--space-10), 10vw, var(--space-16));
    padding: var(--space-10) 0;
}

.pillar {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.pillar-word {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 4vw, 2.75rem);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.05em;
    color: var(--color-white);
    transition: color 0.4s ease;
}

.pillar:hover .pillar-word {
    color: rgb(212, 175, 55);
}

.pillar-detail {
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: lowercase;
    color: rgba(255, 255, 255, 0.5);
}

/* Minimal CTA button - uses unified button system defined above */

/* Email link */
.email-link {
    display: inline-block;
    margin-top: var(--space-6);
    font-size: var(--font-size-sm);
    letter-spacing: 0.1em;
    color: var(--color-secondary);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-sm);
    background: rgba(212, 196, 168, 0.05);
    border: 1px solid rgba(212, 196, 168, 0.1);
    transition: all 0.4s ease;
}

.email-link:hover {
    color: var(--golden-glow);
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--color-secondary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

/* Footer separator */
.footer-separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 var(--space-2);
}

/* Responsive pillars */
@media (max-width: 768px) {
    .lessons-pillars {
        flex-direction: column;
        gap: var(--space-8);
        align-items: center;
        padding: var(--space-8) 0;
    }

    .pillar {
        max-width: 280px;
    }

    .artist-text-large {
        font-size: 1.5rem;
    }
}

/* ========================================
   COOKIE BANNER
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    padding: var(--space-4);
    background: linear-gradient(180deg, transparent 0%, rgba(10, 16, 10, 0.95) 20%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease,
                opacity 0.4s ease;
}

.cookie-banner-visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    max-width: 1000px;
    padding: var(--space-5) var(--space-6);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-card);
}

.cookie-text {
    font-size: var(--font-size-sm);
    color: var(--color-gray-300);
    line-height: var(--line-height-relaxed);
    margin: 0;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-shrink: 0;
}

.cookie-btn {
    padding: var(--space-3) var(--space-6);
    font-size: var(--font-size-xs);
}

.cookie-btn-text {
    background: transparent;
    border: none;
    color: var(--color-gray-400);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.1em;
    text-transform: lowercase;
    cursor: pointer;
    padding: var(--space-3) var(--space-4);
    transition: color 0.4s ease;
}

.cookie-btn-text:hover {
    color: var(--color-white);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-4);
    }

    .cookie-text {
        font-size: var(--font-size-xs);
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}

/* Enhanced reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease,
                transform 0.8s ease;
}

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