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

:root {
    --bg: #FAF9F7;
    --bg-card: #FFFFFF;
    --bg-alt: #F3F1EE;
    --text: #1C1C1E;
    --text-secondary: #636366;
    --text-tertiary: #AEAEB2;
    --accent: #E8860C;
    --accent-dark: #C97208;
    --accent-light: #FFF3E0;
    --accent-gradient: linear-gradient(135deg, #E8860C 0%, #D4710A 100%);
    --border: rgba(0,0,0,0.06);
    --border-md: rgba(0,0,0,0.10);
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05), 0 4px 16px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.07), 0 12px 40px rgba(0,0,0,0.05);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.10), 0 24px 80px rgba(0,0,0,0.06);
    --shadow-accent: 0 6px 24px rgba(232,134,12,0.3);
    --r-sm: 12px;
    --r-md: 20px;
    --r-lg: 28px;
    --r-xl: 36px;
    --nav-h: 64px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg); color: var(--text); line-height: 1.6;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ===== NAV ===== */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: 72px; display: flex; align-items: center;
    padding: 0 clamp(20px, 4vw, 48px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
nav.scrolled {
    background: rgba(250, 249, 247, 0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 1px 0 var(--border), var(--shadow-xs);
}
nav.scrolled .nav-logo span { color: var(--text); text-shadow: none; }
nav.scrolled .nav-links a { color: var(--text-secondary); text-shadow: none; }
nav.scrolled .nav-links a:hover { color: var(--text); }
nav.scrolled .nav-links a.active { color: var(--accent); }
nav.scrolled .nav-hamburger span { background: var(--text); }
.nav-inner {
    max-width: 1200px; width: 100%; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 42px; width: auto; }
.nav-logo span { font-size: 20px; font-weight: 800; color: white; letter-spacing: -0.3px; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
    font-size: 16px; font-weight: 600; color: rgba(255,255,255,0.9);
    text-decoration: none; transition: color 0.2s; position: relative; padding: 4px 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.nav-links a:hover { color: white; }
.nav-links a.active { color: var(--accent); font-weight: 700; text-shadow: none; }
.nav-links a.active::after {
    content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
    height: 2px; background: var(--accent-gradient); border-radius: 99px;
}
.nav-hamburger {
    display: none; background: none; border: none; cursor: pointer; padding: 8px;
    flex-direction: column; gap: 5px;
}
.nav-hamburger span {
    display: block; width: 22px; height: 2px; background: white;
    border-radius: 99px; transition: all 0.3s ease;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.hero-bg {
    position: absolute; inset: 0;
    background-position: center center; background-size: cover; background-repeat: no-repeat;
}
.hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 70% at 50% 48%, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 45%, transparent 100%),
        linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.1) 25%, rgba(0,0,0,0.1) 65%, rgba(0,0,0,0.5) 100%);
}
.hero-content {
    position: relative; z-index: 1; text-align: center;
    padding: 120px 32px 80px; max-width: 800px;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: clamp(16px, 2.2vw, 22px); font-weight: 700; color: var(--accent);
    text-transform: uppercase; letter-spacing: 3px; margin-bottom: 28px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.hero-eyebrow::before, .hero-eyebrow::after {
    content: ''; width: 40px; height: 2px; background: var(--accent); opacity: 0.7;
}
.hero-title {
    font-size: clamp(52px, 9vw, 96px); font-weight: 900;
    line-height: 1.0; letter-spacing: -3px; color: white; margin-bottom: 24px;
}
.hero-title .accent { color: var(--accent); }
.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px); color: rgba(255,255,255,0.95);
    max-width: 600px; margin: 0 auto 48px; line-height: 1.65; font-weight: 500;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 99px; font-size: 15px; font-weight: 600;
    text-decoration: none; border: none; cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.btn-primary { background: var(--accent-gradient); color: white; box-shadow: var(--shadow-accent); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(232,134,12,0.45); }
.btn-ghost {
    background: rgba(255,255,255,0.12); color: white;
    border: 1.5px solid rgba(255,255,255,0.25); backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }
.btn-outline {
    background: transparent; color: var(--text);
    border: 1.5px solid var(--border-md);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }

.hero-scroll {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-dot {
    width: 6px; height: 6px; background: white; border-radius: 50%; opacity: 0.5;
    animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-line { width: 1px; height: 32px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); }
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(6px); opacity: 1; }
}

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
section { padding: clamp(64px, 10vw, 120px) 0; }
.bg-alt { background: var(--bg-alt); }

/* ===== SECTION HEADERS ===== */
.section-header { margin-bottom: clamp(40px, 6vw, 72px); }
.section-eyebrow {
    font-size: 12px; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.section-title {
    font-size: clamp(32px, 4.5vw, 52px); font-weight: 800;
    letter-spacing: -1.5px; line-height: 1.08; margin-bottom: 16px;
}
.section-desc {
    font-size: 17px; color: var(--text-secondary);
    max-width: 480px; line-height: 1.7;
}
.section-line {
    width: 48px; height: 3px; background: var(--accent-gradient);
    border-radius: 99px; margin-top: 20px;
}

/* ===== CARDS ===== */
.featured-card {
    background: var(--bg-card); border-radius: var(--r-xl); overflow: hidden;
    box-shadow: var(--shadow-lg); border: 1px solid var(--border);
    display: grid; grid-template-columns: 1.1fr 0.9fr;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s;
}
.featured-card:hover { transform: translateY(-5px); box-shadow: 0 28px 80px rgba(0,0,0,0.14); }
.featured-card.reverse { direction: rtl; }
.featured-card.reverse > * { direction: ltr; }
.featured-media { position: relative; min-height: 340px; overflow: hidden; cursor: pointer; }
.featured-media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.featured-card:hover .featured-media img { transform: scale(1.04); }
.featured-media::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
    pointer-events: none;
}
.play-btn {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 72px; height: 72px; border-radius: 50%;
    background: rgba(255,255,255,0.18); backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; z-index: 2; cursor: pointer;
}
.play-btn:hover { background: rgba(255,255,255,0.3); transform: translate(-50%,-50%) scale(1.1); }
.play-btn svg { margin-left: 3px; }
.media-badge {
    position: absolute; top: 16px; left: 16px; z-index: 2;
    background: rgba(0,0,0,0.45); backdrop-filter: blur(8px);
    border-radius: 99px; padding: 5px 14px;
    font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.85);
    letter-spacing: 0.5px; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.12);
}
.featured-info {
    padding: clamp(28px, 4vw, 48px); display: flex;
    flex-direction: column; justify-content: center;
}
.tag {
    display: inline-block; background: var(--accent-light); color: var(--accent-dark);
    font-size: 12px; font-weight: 700; padding: 5px 14px;
    border-radius: 99px; margin-bottom: 16px; align-self: flex-start;
}
.featured-info h3 {
    font-size: clamp(22px, 2.5vw, 30px); font-weight: 700;
    letter-spacing: -0.5px; line-height: 1.2; margin-bottom: 12px;
}
.featured-info p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 28px; }
.featured-info .btn { align-self: flex-start; }
.year-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--accent-gradient); color: white;
    font-size: 13px; font-weight: 700; padding: 6px 16px;
    border-radius: 99px; margin-bottom: 16px; align-self: flex-start;
}

/* ===== VIDEO GRID ===== */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.video-card {
    background: var(--bg-card); border-radius: var(--r-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); border: 1px solid var(--border);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
}
.video-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: var(--shadow-lg); }
.video-card .featured-media { height: 220px; min-height: auto; }
.video-card-body { padding: 24px; }
.video-card-tag {
    font-size: 11px; font-weight: 700; color: var(--accent);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px;
}
.video-card-body h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 6px; }
.video-card-body p { font-size: 13px; color: var(--text-secondary); }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 12px; }
.gallery-item { border-radius: var(--r-md); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 40%);
    opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item.span-2 { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }

/* ===== AUDIO CARDS ===== */
.audio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.audio-card {
    background: var(--bg-card); border-radius: var(--r-md); padding: 28px;
    border: 1px solid var(--border); box-shadow: var(--shadow-xs);
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1); cursor: pointer;
    position: relative; overflow: hidden;
}
.audio-card::before {
    content: ''; position: absolute; inset: 0;
    background: var(--accent-gradient); opacity: 0; transition: opacity 0.3s;
}
.audio-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.audio-card.playing { border-color: var(--accent); }
.audio-card.playing::before { opacity: 0.04; }
.audio-card-inner { position: relative; z-index: 1; }
.audio-play-btn {
    width: 52px; height: 52px; background: var(--accent-gradient); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; box-shadow: var(--shadow-accent);
    transition: transform 0.25s, box-shadow 0.25s; border: none; cursor: pointer;
}
.audio-play-btn:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(232,134,12,0.45); }
.audio-play-icon {
    width: 0; height: 0;
    border-top: 8px solid transparent; border-bottom: 8px solid transparent;
    border-left: 14px solid white; margin-left: 3px;
}
.audio-pause-icon { display: flex; gap: 3px; }
.audio-pause-icon span { display: block; width: 3.5px; height: 16px; background: white; border-radius: 99px; }
.audio-card h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.2px; margin-bottom: 3px; }
.audio-meta { font-size: 13px; color: var(--text-secondary); margin-bottom: 18px; }
.waveform { display: flex; align-items: center; gap: 2.5px; height: 36px; margin-bottom: 14px; }
.waveform-bar { width: 3px; background: var(--border-md); border-radius: 99px; transition: background 0.3s; }
.audio-card.playing .waveform-bar {
    background: var(--accent);
    animation: wave var(--speed, 0.8s) ease-in-out infinite alternate;
}
@keyframes wave { 0% { transform: scaleY(0.4); } 100% { transform: scaleY(var(--scale, 1.8)); } }
.progress-track { height: 3px; background: var(--border); border-radius: 99px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--accent-gradient); border-radius: 99px; width: 0%; transition: width 0.15s linear; }
.duration-row { display: flex; justify-content: space-between; margin-top: 8px; font-size: 12px; color: var(--text-tertiary); }

/* ===== CONTENT BLOCKS ===== */
.text-block { max-width: 720px; }
.text-block p { font-size: 17px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; }
.text-block p:last-child { margin-bottom: 0; }

.info-card {
    background: var(--bg-card); border-radius: var(--r-lg); padding: clamp(28px, 4vw, 48px);
    box-shadow: var(--shadow-sm); border: 1px solid var(--border);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.profile-card {
    background: var(--bg-card); border-radius: var(--r-xl); overflow: hidden;
    box-shadow: var(--shadow-lg); border: 1px solid var(--border);
    display: grid; grid-template-columns: 0.8fr 1.2fr;
}
.profile-card .profile-img { overflow: hidden; }
.profile-card .profile-img img { width: 100%; height: 100%; object-fit: cover; }
.profile-card .profile-info { padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; }
.profile-card .profile-info h3 { font-size: 28px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 4px; }
.profile-card .profile-info .role { font-size: 14px; color: var(--accent); font-weight: 600; margin-bottom: 20px; }
.profile-card .profile-info p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.profile-card .profile-info a { color: var(--accent); text-decoration: none; font-weight: 600; font-size: 14px; }
.profile-card .profile-info a:hover { text-decoration: underline; }

.voice-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.voice-card {
    background: var(--bg-card); border-radius: var(--r-md); padding: 28px;
    border: 1px solid var(--border); box-shadow: var(--shadow-xs);
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;
}
.voice-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.voice-card h4 {
    font-size: 14px; font-weight: 700; color: var(--accent);
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px;
    padding-bottom: 12px; border-bottom: 2px solid var(--accent-light);
}
.voice-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.8; }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
    content: ''; position: absolute; left: 14px; top: 0; bottom: 0;
    width: 2px; background: var(--border-md); border-radius: 99px;
}
.timeline-item { position: relative; margin-bottom: 48px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
    position: absolute; left: -40px; top: 4px;
    width: 30px; height: 30px; border-radius: 50%;
    background: var(--accent-gradient); box-shadow: var(--shadow-accent);
    display: flex; align-items: center; justify-content: center;
}
.timeline-dot::after {
    content: ''; width: 8px; height: 8px; border-radius: 50%; background: white;
}
.timeline-date {
    font-size: 12px; font-weight: 700; color: var(--accent);
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px;
}
.timeline-item h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 10px; }
.timeline-item p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; max-width: 600px; }
@media (max-width: 640px) {
    .timeline-item p {
        hyphens: auto;
        -webkit-hyphens: auto;
        hyphenate-limit-chars: 8 3 4;
        -webkit-hyphenate-limit-chars: 8 3 4;
        hyphenate-limit-lines: 2;
        overflow-wrap: break-word;
        text-wrap: pretty;
    }
}

/* ===== REPERTOIRE ===== */
.repertoire-list {
    display: flex; flex-wrap: wrap; gap: 8px;
}
.repertoire-item {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 99px;
    padding: 8px 18px; font-size: 14px; font-weight: 500; color: var(--text-secondary);
    transition: all 0.25s;
}
/* Repertoire accordion - mobile only */
.repertoire-toggle { display: none; }
@media (max-width: 640px) {
    .repertoire-accordion {
        background: var(--bg-alt);
        border-radius: var(--r-lg);
        border: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        position: relative;
    }
    .repertoire-accordion::before,
    .repertoire-accordion::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(to bottom, transparent 4%, var(--accent) 18%, var(--accent) 82%, transparent 96%);
        z-index: 1;
        transition: background 0.6s ease;
    }
    .repertoire-accordion::before { left: 0; }
    .repertoire-accordion::after { right: 0; }
    .repertoire-accordion.open::before,
    .repertoire-accordion.open::after {
        background: linear-gradient(to bottom, transparent 1%, var(--accent) 6%, var(--accent) 94%, transparent 99%);
    }
    .repertoire-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 20px 20px;
        background: none;
        border: none;
        font-family: inherit;
        font-size: 15px;
        font-weight: 600;
        color: var(--text);
        cursor: pointer;
    }
    .repertoire-toggle .chevron {
        transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        color: var(--accent);
    }
    .repertoire-accordion.open .chevron {
        transform: rotate(180deg);
    }
    .repertoire-accordion .repertoire-content {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease 0.1s;
    }
    .repertoire-accordion.open .repertoire-content {
        max-height: 1600px;
        opacity: 1;
        transition: max-height 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease 0.15s;
    }
    .repertoire-accordion .repertoire-list {
        display: block;
        columns: 2;
        column-gap: 16px;
        padding: 14px 18px 18px;
        border-top: 1px solid var(--border);
    }
    .repertoire-accordion .repertoire-item {
        display: block;
        break-inside: avoid;
        background: none;
        border: none;
        border-radius: 0;
        padding: 7px 0;
        font-size: 13px;
        line-height: 1.4;
        color: var(--text-secondary);
        border-bottom: 1px solid var(--border);
    }
    .repertoire-accordion .repertoire-item:last-child {
        border-bottom: none;
    }
    .repertoire-accordion .repertoire-item::after { content: none; }
    .repertoire-accordion .repertoire-item:hover { background: none; transform: none; }
}
.repertoire-item:hover {
    background: var(--accent-light); border-color: var(--accent);
    color: var(--accent-dark); transform: translateY(-2px);
}

/* ===== FORM ===== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 640px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: span 2; }
.form-group label {
    font-size: 13px; font-weight: 600; color: var(--text-secondary);
    text-transform: uppercase; letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px; border-radius: var(--r-sm); border: 1.5px solid var(--border-md);
    font-family: inherit; font-size: 15px; color: var(--text);
    background: var(--bg-card); transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,134,12,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== FOOTER ===== */
footer { background: #1A1A1C; color: #F5F5F5; padding: 64px 0 36px; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 48px; gap: 40px; flex-wrap: wrap; }
.footer-brand { max-width: 300px; }
.footer-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand-row img { height: 32px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand-row span { font-size: 18px; font-weight: 800; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.6; font-style: italic; }
.footer-cols { display: flex; gap: 56px; }
.footer-col h4 {
    font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.35); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; color: rgba(255,255,255,0.3);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
    opacity: 0; transform: translateY(36px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,0.92);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s; backdrop-filter: blur(16px);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
    max-width: 90vw; max-height: 85vh; border-radius: var(--r-md);
    object-fit: contain; box-shadow: 0 24px 80px rgba(0,0,0,0.5);
    transform: scale(0.92); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.lightbox.open img { transform: scale(1); }
.lightbox-close {
    position: absolute; top: 20px; right: 24px;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.12); border: none;
    color: white; font-size: 22px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
    position: fixed; inset: 0; z-index: 99;
    background: rgba(250,249,247,0.97); backdrop-filter: blur(24px);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 24px; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav a {
    font-size: 22px; font-weight: 600; color: var(--text); text-decoration: none; transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .featured-card, .featured-card.reverse { grid-template-columns: 1fr; }
    .featured-media { min-height: 260px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .gallery-item.span-2 { grid-column: span 1; }
    .profile-card { grid-template-columns: 1fr; }
    .profile-card .profile-img { max-height: 360px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full { grid-column: span 1; }
}
@media (max-width: 640px) {
    :root { --nav-h: 56px; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .video-grid { grid-template-columns: 1fr; }
    .audio-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
    .voice-grid { grid-template-columns: 1fr; }
    .footer-top { flex-direction: column; }
    .footer-cols { flex-direction: column; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
