/**
 * Fluidité 2026 - Design System
 * Christiane Najjar - Official Website
 * 
 * Colors: Cream #F9F5F2, Burgundy #6D1A22, Gold #D4AF37, Anthracite #333
 * Fonts: Playfair Display (titles), Inter (body)
 */

/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
    --fl-cream: #F9F5F2;
    --fl-burgundy: #6D1A22;
    --fl-burgundy-dark: #4A1218;
    --fl-gold: #D4AF37;
    --fl-anthracite: #333333;
    --fl-dark: #221610;
    --fl-white: #FFFFFF;
    --fl-light-border: rgba(109, 26, 34, 0.1);
}

/* ========================================
   BASE RESETS
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--fl-cream);
    color: var(--fl-anthracite);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    min-height: 100dvh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========================================
   GLASS EFFECT
   ======================================== */
.glass-effect {
    background: rgba(249, 245, 242, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
.font-serif {
    font-family: 'Playfair Display', Georgia, serif;
}

h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.15;
}

/* ========================================
   BOTTOM NAVIGATION
   ======================================== */
.fl-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(249, 245, 242, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--fl-light-border);
    padding: 8px 16px calc(env(safe-area-inset-bottom, 8px) + 8px);
}

.fl-bottom-nav__inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.fl-bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: #999;
    transition: color 0.2s;
    padding: 4px 8px;
}

.fl-bottom-nav__item:hover,
.fl-bottom-nav__item--active {
    color: var(--fl-burgundy);
}

.fl-bottom-nav__item--active .material-symbols-outlined {
    font-variation-settings: 'FILL' 1;
}

.fl-bottom-nav__label {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   FLOATING AUDIO PLAYER
   ======================================== */
.fl-audio-player {
    position: fixed;
    bottom: 72px;
    right: 12px;
    left: auto;
    z-index: 90;
    max-width: 220px;
}

.fl-audio-player__inner {
    background: rgba(74, 18, 24, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: var(--fl-white);
    border-radius: 999px;
    padding: 6px 12px 6px 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255,255,255,0.1);
}

.fl-audio-player__cover {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--fl-burgundy);
}

.fl-audio-player__info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    display: none;
}

.fl-audio-player__title {
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fl-audio-player__artist {
    font-size: 10px;
    opacity: 0.6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fl-audio-player__controls {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}

.fl-audio-player__btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    font-size: 18px;
}

.fl-audio-player__btn:hover {
    color: var(--fl-white);
}

.fl-audio-player__btn--play {
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    color: var(--fl-white);
}

.fl-audio-player__btn--play:hover {
    background: var(--fl-gold);
    color: var(--fl-dark);
}

/* ========================================
   STICKY HEADER
   ======================================== */
.fl-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(249, 245, 242, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--fl-light-border);
    transition: transform 0.3s;
}

.fl-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.fl-header__brand {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    font-style: italic;
    color: var(--fl-burgundy);
    letter-spacing: -0.02em;
}

.fl-header__btn {
    background: none;
    border: none;
    color: var(--fl-burgundy);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.fl-header__btn:hover {
    background: rgba(109, 26, 34, 0.08);
}

/* ========================================
   MENU DRAWER
   ======================================== */
.fl-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
    z-index: 160;
}

.fl-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.fl-menu-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(320px, 84vw);
    background: var(--fl-cream);
    border-right: 1px solid var(--fl-light-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    transform: translateX(-100%);
    transition: transform 0.22s ease;
    z-index: 170;
    display: flex;
    flex-direction: column;
}

.fl-menu-drawer.active {
    transform: translateX(0);
}

.fl-menu-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--fl-light-border);
    color: var(--fl-burgundy);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
}

.fl-menu-drawer__nav {
    display: flex;
    flex-direction: column;
    padding: 8px;
    gap: 2px;
}

.fl-menu-drawer__nav a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--fl-anthracite);
    font-weight: 500;
}

.fl-menu-drawer__nav a:hover {
    background: rgba(109, 26, 34, 0.08);
    color: var(--fl-burgundy);
}

/* ========================================
   HERO SECTION
   ======================================== */
.fl-hero {
    position: relative;
    height: 85vh;
    min-height: 500px;
    max-height: 900px;
    width: 100%;
    overflow: hidden;
}

.fl-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 20%;
}

.fl-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(249, 245, 242, 0.95) 100%);
}

.fl-hero--home .fl-hero__overlay {
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.30), rgba(0, 0, 0, 0.12) 36%, rgba(249, 245, 242, 0.9) 100%),
        linear-gradient(to right, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
}

.fl-hero__content {
    position: absolute;
    bottom: 48px;
    left: 0;
    right: 0;
    padding: 0 24px;
    text-align: center;
}

.fl-hero--home .fl-hero__content {
    max-width: 760px;
    margin: 0 auto;
}

.fl-hero__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--fl-gold);
    margin-bottom: 12px;
}

.fl-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 10vw, 64px);
    font-weight: 700;
    color: var(--fl-burgundy);
    margin-bottom: 12px;
    line-height: 1.05;
}

.fl-hero--home .fl-hero__title {
    color: #7b1725;
    text-shadow: 0 2px 16px rgba(255, 255, 255, 0.45);
    font-size: clamp(36px, 8.2vw, 74px);
}

.fl-hero--home .fl-hero__subtitle {
    color: #4c4c4c;
    opacity: 0.9;
    text-shadow: 0 1px 10px rgba(255, 255, 255, 0.45);
}

.fl-hero__subtitle {
    font-size: 15px;
    font-style: italic;
    color: var(--fl-anthracite);
    opacity: 0.7;
    max-width: 320px;
    margin: 0 auto 24px;
    line-height: 1.5;
}

.fl-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--fl-burgundy);
    color: var(--fl-white);
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(109, 26, 34, 0.25);
}

.fl-hero__cta:hover {
    background: var(--fl-burgundy-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(109, 26, 34, 0.35);
}

/* ========================================
   CINEMATIC HERO (Homepage)
   - <img> for sharp rendering (no CSS bg stretch/blur)
   - Frosted glass card for guaranteed text contrast
   - Entrance animation
   ======================================== */
.fl-hero--cinematic {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    max-height: 1200px;
    overflow: hidden;
    background: #0a0505;
}

.fl-hero--cinematic__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    animation: heroReveal 2.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Vignette overlay — subtle, lets image breathe */
.fl-hero--cinematic__vignette {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 120% 100% at 50% 0%, transparent 50%, rgba(10, 5, 5, 0.55) 100%),
        linear-gradient(to top, rgba(10, 5, 5, 0.85) 0%, rgba(10, 5, 5, 0.15) 35%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* Frosted glass card — centered on mobile, LEFT side on desktop */
.fl-hero--cinematic__card {
    position: absolute;
    bottom: 64px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 90%;
    max-width: 520px;
    padding: 36px 40px 32px;
    text-align: center;

    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);

    animation: cardSlideUp 1.6s 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Desktop: card on the RIGHT, face visible on the LEFT */
@media (min-width: 900px) {
    .fl-hero--cinematic__card {
        left: auto;
        right: 5%;
        bottom: auto;
        top: 50%;
        transform: translateY(-50%);
        text-align: right;
        max-width: 440px;
        animation: cardSlideIn 1.6s 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    .fl-hero--cinematic__img {
        object-position: 30% top;
    }

    .fl-hero--cinematic__vignette {
        background:
            linear-gradient(to left, rgba(10, 5, 5, 0.75) 0%, rgba(10, 5, 5, 0.3) 40%, transparent 60%),
            linear-gradient(to top, rgba(10, 5, 5, 0.5) 0%, transparent 30%);
    }

    .fl-hero--cinematic__divider {
        margin: 0 0 16px auto;
    }

    .fl-hero--cinematic__quote {
        margin: 0 0 24px auto;
    }
}

/* Tag / subtitle */
.fl-hero--cinematic__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--fl-gold);
    margin-bottom: 10px;
}

/* Gold divider line */
.fl-hero--cinematic__divider {
    width: 48px;
    height: 2px;
    margin: 0 auto 16px;
    background: linear-gradient(90deg, transparent, var(--fl-gold), transparent);
    border-radius: 1px;
}

/* Artist name */
.fl-hero--cinematic__name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 5vw, 38px);
    font-weight: 700;
    color: var(--fl-white);
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

/* Quote */
.fl-hero--cinematic__quote {
    font-size: 14px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    max-width: 400px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

/* CTA button */
.fl-hero--cinematic__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--fl-white);
    color: var(--fl-burgundy);
    padding: 14px 36px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.fl-hero--cinematic__cta:hover {
    background: var(--fl-gold);
    color: var(--fl-dark);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 36px rgba(212, 175, 55, 0.35);
}

/* Entrance animations — slow & elegant */
@keyframes heroReveal {
    0% { opacity: 0; transform: scale(1.06); }
    100% { opacity: 1; transform: scale(1); }
}

/* Mobile: slide up from bottom center */
@keyframes cardSlideUp {
    0% { opacity: 0; transform: translateX(-50%) translateY(60px); }
    100% { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Desktop: slide in from the right side */
@keyframes cardSlideIn {
    0% { opacity: 0; transform: translateY(-50%) translateX(40px); }
    100% { opacity: 1; transform: translateY(-50%) translateX(0); }
}

/* Mobile adjustments for cinematic hero */
@media (max-width: 767px) {
    .fl-hero--cinematic {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .fl-hero--cinematic__card {
        bottom: 100px;
        padding: 28px 24px 24px;
        border-radius: 20px;
    }

    .fl-hero--cinematic__name {
        font-size: clamp(28px, 8vw, 42px);
    }
}

/* ========================================
   SECTIONS
   ======================================== */
.fl-section {
    padding: 64px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.fl-section--dark {
    background: var(--fl-dark);
    color: var(--fl-white);
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.fl-section--dark .fl-section__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.fl-section__tag {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--fl-burgundy);
    margin-bottom: 8px;
}

.fl-section--dark .fl-section__tag {
    color: var(--fl-gold);
}

.fl-section__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 6vw, 40px);
    font-weight: 700;
    font-style: italic;
    margin-bottom: 12px;
}

.fl-section__subtitle {
    font-size: 15px;
    color: #777;
    line-height: 1.6;
    max-width: 500px;
}

.fl-section--dark .fl-section__subtitle {
    color: rgba(255,255,255,0.6);
}

/* ========================================
   BENTO GRID (Featured Gallery)
   ======================================== */
.fl-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    height: 420px;
}

.fl-bento__item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s;
}

.fl-bento__item:hover {
    transform: scale(1.01);
}

.fl-bento__item--tall {
    grid-row: span 2;
}

.fl-bento__item-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
}

.fl-bento__item-label p:first-child {
    font-size: 13px;
    font-weight: 700;
    color: var(--fl-white);
}

.fl-bento__item-label p:last-child {
    font-size: 11px;
    color: var(--fl-gold);
}

.fl-bento__quote {
    background: rgba(109, 26, 34, 0.06);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fl-bento__quote blockquote {
    font-size: 13px;
    font-style: italic;
    color: #666;
    line-height: 1.5;
}

.fl-bento__quote cite {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--fl-burgundy);
    font-style: normal;
}

/* ========================================
   EVENT CARD (Next Performance)
   ======================================== */
.fl-event-card {
    background: rgba(109, 26, 34, 0.05);
    border: 1px solid var(--fl-light-border);
    border-radius: 16px;
    padding: 24px;
}

.fl-event-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.fl-event-card__icon {
    width: 48px;
    height: 48px;
    background: rgba(109, 26, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fl-burgundy);
}

.fl-event-card__label {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--fl-burgundy);
}

.fl-event-card__sublabel {
    font-size: 12px;
    color: #999;
}

.fl-event-card__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--fl-light-border);
}

.fl-event-card__item:last-child {
    border-bottom: none;
}

.fl-event-card__name {
    font-size: 14px;
    font-weight: 600;
}

.fl-event-card__detail {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

.fl-event-card__arrow {
    color: var(--fl-gold);
    font-size: 16px;
}

/* ========================================
   ABOUT / BIO TEASER
   ======================================== */
.fl-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.fl-about__image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.fl-about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.fl-about__text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 5vw, 36px);
    color: var(--fl-burgundy);
    margin-bottom: 16px;
}

.fl-about__text p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 24px;
}

.fl-about__stats {
    display: flex;
    gap: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(109, 26, 34, 0.1);
}

.fl-about__stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--fl-gold);
    line-height: 1;
}

.fl-about__stat-label {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

/* ========================================
   TESTIMONIAL
   ======================================== */
.fl-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.fl-testimonial {
    background: var(--fl-white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: transform 0.3s;
}

.fl-testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.fl-testimonial__platform {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.fl-testimonial__text {
    font-size: 14px;
    font-style: italic;
    line-height: 1.6;
    color: #666;
    margin-bottom: 12px;
}

.fl-testimonial__date {
    font-size: 12px;
    color: #bbb;
}

/* ========================================
   VIDEO SECTION
   ======================================== */
.fl-video {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.fl-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ========================================
   CTA SECTION
   ======================================== */
.fl-cta {
    background: linear-gradient(135deg, var(--fl-burgundy) 0%, var(--fl-burgundy-dark) 100%);
    color: var(--fl-white);
    padding: 80px 24px;
    text-align: center;
}

.fl-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 6vw, 42px);
    margin-bottom: 16px;
}

.fl-cta p {
    font-size: 16px;
    opacity: 0.8;
    max-width: 550px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.fl-cta__buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   BUTTONS
   ======================================== */
.fl-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.fl-btn--primary {
    background: var(--fl-gold);
    color: var(--fl-dark);
}

.fl-btn--primary:hover {
    background: #E0BD45;
    transform: translateY(-1px);
}

.fl-btn--outline {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.35);
    color: var(--fl-white);
}

.fl-btn--outline:hover {
    border-color: var(--fl-white);
    background: rgba(255,255,255,0.08);
}

.fl-btn--secondary {
    background: rgba(109, 26, 34, 0.08);
    color: var(--fl-burgundy);
}

.fl-btn--secondary:hover {
    background: rgba(109, 26, 34, 0.15);
}

/* ========================================
   BELIEVE / SPIRITUAL SECTION
   ======================================== */
.fl-believe {
    background: linear-gradient(135deg, var(--fl-dark) 0%, #1A1215 50%, var(--fl-burgundy-dark) 100%);
    padding: 100px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fl-believe__img {
    max-width: min(500px, 85vw);
    height: auto;
    display: block;
    margin: 0 auto 24px;
    filter: drop-shadow(0 4px 30px rgba(212, 175, 55, 0.25));
}

.fl-believe__quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   FOOTER
   ======================================== */
.fl-footer {
    background: var(--fl-dark);
    color: var(--fl-white);
    padding: 48px 24px 120px;
}

.fl-footer__inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.fl-footer__brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 12px;
}

.fl-footer__brand p {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.fl-footer__social {
    display: flex;
    gap: 10px;
}

.fl-footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fl-white);
    transition: all 0.3s;
    font-size: 16px;
}

.fl-footer__social a:hover {
    background: var(--fl-gold);
    color: var(--fl-dark);
}

.fl-social-badge {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.fl-social-svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    vertical-align: middle;
}

.fl-footer__links h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    color: var(--fl-gold);
}

.fl-footer__links ul {
    list-style: none;
}

.fl-footer__links li {
    margin-bottom: 10px;
}

.fl-footer__links a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: color 0.2s;
}

.fl-footer__links a:hover {
    color: var(--fl-white);
}

.fl-footer__bottom {
    max-width: 900px;
    margin: 36px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 12px;
}

/* ========================================
   EVENTS PAGE - Timeline
   ======================================== */
.fl-timeline {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.fl-timeline__item {
    display: flex;
    gap: 16px;
}

.fl-timeline__date {
    min-width: 56px;
    text-align: center;
    padding-top: 4px;
}

.fl-timeline__day {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
}

.fl-timeline__month {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--fl-burgundy);
}

.fl-timeline__content {
    flex: 1;
    border-left: 2px solid rgba(109, 26, 34, 0.15);
    padding-left: 20px;
    padding-bottom: 8px;
}

.fl-timeline__title {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 4px;
    transition: color 0.2s;
}

.fl-timeline__item:hover .fl-timeline__title {
    color: var(--fl-burgundy);
}

.fl-timeline__venue {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
}

.fl-timeline__btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--fl-anthracite);
    color: var(--fl-white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: background 0.2s;
}

.fl-timeline__btn:hover {
    background: var(--fl-burgundy);
}

/* ========================================
   FILTER PILLS
   ======================================== */
.fl-pills {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.fl-pills::-webkit-scrollbar {
    display: none;
}

.fl-pill {
    flex-shrink: 0;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid rgba(109, 26, 34, 0.08);
    background: rgba(109, 26, 34, 0.06);
    color: var(--fl-anthracite);
    transition: all 0.2s;
}

.fl-pill:hover {
    background: rgba(109, 26, 34, 0.12);
}

.fl-pill--active {
    background: var(--fl-burgundy);
    color: var(--fl-white);
    border-color: var(--fl-burgundy);
}

/* ========================================
   MUSIC / TRACK LIST
   ======================================== */
.fl-track {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    transition: background 0.2s;
    cursor: pointer;
}

.fl-track:hover {
    background: rgba(109, 26, 34, 0.05);
}

.fl-track__cover {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(109, 26, 34, 0.1);
}

.fl-track__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fl-track__info {
    flex: 1;
    min-width: 0;
}

.fl-track__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--fl-burgundy-dark);
}

.fl-track__meta {
    font-size: 12px;
    color: #999;
}

.fl-track__play {
    color: var(--fl-burgundy);
    opacity: 0;
    transition: opacity 0.2s;
}

.fl-track:hover .fl-track__play {
    opacity: 1;
}

/* ========================================
   CONTACT FORM
   ======================================== */
.fl-form__group {
    margin-bottom: 16px;
}

.fl-form__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.fl-form__input,
.fl-form__textarea {
    width: 100%;
    background: rgba(109, 26, 34, 0.04);
    border: none;
    border-radius: 12px;
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--fl-anthracite);
    transition: box-shadow 0.2s;
    outline: none;
}

.fl-form__input:focus,
.fl-form__textarea:focus {
    box-shadow: 0 0 0 2px var(--fl-burgundy);
}

.fl-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.fl-form__submit {
    width: 100%;
    background: var(--fl-burgundy);
    color: var(--fl-white);
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.fl-form__submit:hover {
    background: var(--fl-burgundy-dark);
}

.fl-form__submit:active {
    transform: scale(0.98);
}

/* ========================================
   BOOKING BOX
   ======================================== */
.fl-booking-box {
    background: rgba(109, 26, 34, 0.06);
    border: 1px solid rgba(109, 26, 34, 0.12);
    border-radius: 16px;
    padding: 28px;
}

.fl-booking-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 12px;
    margin-bottom: 8px;
}

.fl-booking-box p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* ========================================
   RETROSPECTIVE GRID
   ======================================== */
.fl-retro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.fl-retro-card {
    cursor: pointer;
}

.fl-retro-card__img {
    aspect-ratio: 4/5;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 8px;
}

.fl-retro-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.fl-retro-card:hover .fl-retro-card__img img {
    transform: scale(1.05);
}

.fl-retro-card__year {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--fl-burgundy);
    margin-bottom: 2px;
}

.fl-retro-card__title {
    font-size: 14px;
    font-weight: 500;
}

/* ========================================
   MUSIC TABS
   ======================================== */
.fl-tabs {
    display: flex;
    border-bottom: 1px solid var(--fl-light-border);
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: none;
}

.fl-tabs::-webkit-scrollbar {
    display: none;
}

.fl-tab {
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    color: #999;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: 'Inter', sans-serif;
}

.fl-tab:hover {
    color: var(--fl-anthracite);
}

.fl-tab--active {
    color: var(--fl-burgundy);
    border-bottom-color: var(--fl-burgundy);
    font-weight: 700;
}

/* ========================================
   VIDEO GALLERY
   ======================================== */
.fl-video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.fl-video-card {
    cursor: pointer;
}

.fl-video-card__thumb {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #ddd;
    margin-bottom: 8px;
}

.fl-video-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fl-video-card__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.2);
    transition: background 0.2s;
}

.fl-video-card:hover .fl-video-card__play {
    background: rgba(0,0,0,0.4);
}

.fl-video-card__play .material-symbols-outlined {
    color: white;
    font-size: 40px;
}

.fl-video-card__title {
    font-size: 13px;
    font-weight: 600;
}

/* ========================================
   BIO PAGE SPECIFICS
   ======================================== */
.fl-bio-philosophy {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.fl-bio-philosophy__icon {
    font-size: 40px;
    color: var(--fl-burgundy);
    margin-bottom: 16px;
}

.fl-bio-philosophy h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.fl-bio-philosophy__quote {
    font-size: 18px;
    font-style: italic;
    color: #666;
    line-height: 1.6;
}

.fl-bio-philosophy p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.fl-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(109, 26, 34, 0.2), transparent);
    margin: 32px 0;
}

.fl-traditions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.fl-tradition-card {
    background: var(--fl-white);
    border: 1px solid rgba(109, 26, 34, 0.05);
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.fl-tradition-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fl-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fl-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hidden utility */
.hidden {
    display: none !important;
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Main content padding for fixed header/nav */
.fl-main {
    padding-bottom: 120px;
}

@media (min-width: 768px) {
    .fl-hero {
        height: 90vh;
        max-height: 950px;
    }

    .fl-bento {
        height: 500px;
    }

    .fl-video-grid {
        grid-template-columns: 1fr 1fr;
    }

    .fl-contact-grid {
        grid-template-columns: 1.2fr 1fr !important;
    }
}

@media (max-width: 767px) {
    .fl-about {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .fl-footer__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .fl-bento {
        height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .fl-bento__item--tall {
        grid-row: span 1;
        min-height: 200px;
    }

    .fl-bento__item {
        min-height: 160px;
    }

    .fl-video-grid {
        grid-template-columns: 1fr;
    }

    .fl-retro-grid {
        grid-template-columns: 1fr;
    }

    .fl-about__stats {
        gap: 20px;
    }

    .fl-contact-grid {
        grid-template-columns: 1fr !important;
    }

    .fl-form__group + .fl-form__group {
        margin-top: 12px;
    }

    /* Stack name/email on mobile */
    .fl-section form > div:first-of-type {
        grid-template-columns: 1fr !important;
    }

    .fl-hero {
        height: 60vh !important;
        min-height: 300px !important;
    }
}

.fl-tradition-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}

/* ========================================
   CONTACT GRID
   ======================================== */
.fl-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

/* ========================================
   LANGUAGE SELECTOR (mobile-friendly)
   ======================================== */
.fl-lang-selector {
    position: relative;
}

.fl-lang-btn {
    background: none;
    border: none;
    color: var(--fl-burgundy);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.2s;
}

.fl-lang-btn:hover {
    background: rgba(109, 26, 34, 0.06);
}

.fl-lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--fl-white);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 6px;
    min-width: 140px;
    display: none;
    z-index: 200;
}

.fl-lang-dropdown.active {
    display: block;
}

.fl-lang-dropdown a {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    transition: background 0.15s;
}

.fl-lang-dropdown a:hover {
    background: rgba(109, 26, 34, 0.06);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .fl-about {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .fl-footer__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .fl-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .fl-contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .fl-bento {
        height: 360px;
    }
    
    .fl-video-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .fl-hero {
        height: 75vh;
    }
    
    .fl-hero__title {
        font-size: 36px;
    }
    
    .fl-section {
        padding: 48px 16px;
    }
    
    .fl-bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    
    .fl-bento__item--tall {
        grid-row: span 1;
        height: 200px;
    }
    
    .fl-bento__item {
        height: 160px;
    }
    
    .fl-about__stats {
        gap: 20px;
    }
    
    .fl-about__stat-value {
        font-size: 28px;
    }
    
    .fl-retro-grid {
        grid-template-columns: 1fr;
    }
}

/* Padding for bottom nav + audio player */
.fl-main {
    padding-top: 60px;
    padding-bottom: 150px;
}

/* ========================================
   ANIMATIONS (Scroll-triggered)
   ======================================== */
.fl-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fl-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Shimmer loader */
.fl-shimmer {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    background-size: 200% 100%;
    animation: fl-shimmer 2s infinite;
}

@keyframes fl-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ========================================
   PAGE TRANSITIONS
   ======================================== */
.fl-page-enter {
    animation: fl-fadeIn 0.4s ease-out;
}

@keyframes fl-fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
